From lwhsu at FreeBSD.org Wed Jul 1 00:30:03 2009 From: lwhsu at FreeBSD.org (Li-Wen Hsu) Date: Wed Jul 1 00:30:10 2009 Subject: ports/136199: [PATCH] databases/py-gdbm: Fix building with python3* Message-ID: <20090630215456.0DEC5147C1B@lucky7.csie.net> >Number: 136199 >Category: ports >Synopsis: [PATCH] databases/py-gdbm: Fix building with python3* >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 00:30:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD lucky7 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jun 11 00:29:36 CST 2009 >Description: - Fix building with python3* - Use checksum file under lang/python${PYTHON_SUFFIX}/, for removal lang/python/distinfo Added file(s): - files/setup3.py Port maintainer (perky@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- py26-gdbm-2.6.2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/py-gdbm/Makefile,v retrieving revision 1.13 diff -u -u -r1.13 Makefile --- Makefile 30 Jul 2007 09:41:05 -0000 1.13 +++ Makefile 30 Jun 2009 21:53:12 -0000 @@ -24,9 +24,15 @@ USE_PYDISTUTILS=yes PYDISTUTILS_PKGVERSION= 0.0.0 WRKSRC= ${PYTHON_WRKSRC}/Modules -MD5_FILE= ${PORTSDIR}/lang/python/distinfo +MD5_FILE= ${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo + +.include post-extract: +.if ${PYTHON_REL} < 300 @${CP} ${FILESDIR}/setup.py ${WRKSRC} +.else + @${CP} ${FILESDIR}/setup3.py ${WRKSRC}/setup.py +.endif -.include +.include Index: files/setup3.py =================================================================== RCS file: files/setup3.py diff -N files/setup3.py --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/setup3.py 30 Jun 2009 21:53:12 -0000 @@ -0,0 +1,28 @@ +#!/usr/bin/env python +# To use: +# python setup.py install +# + +__version__ = "$FreeBSD$" + +try: + import distutils + from distutils import sysconfig + from distutils.command.install import install + from distutils.core import setup, Extension +except: + raise SystemExit("Distutils problem") + +prefix = sysconfig.PREFIX +inc_dirs = [prefix + "/include"] +lib_dirs = [prefix + "/lib"] +libs = ["gdbm"] + +setup(name = "gdbm", + description = "GDBM Extension to Python", + + ext_modules = [Extension('gdbm', ['_gdbmmodule.c'], + include_dirs = inc_dirs, + libraries = libs, + library_dirs = lib_dirs)] + ) --- py26-gdbm-2.6.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 00:30:15 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 00:30:21 2009 Subject: ports/136199: [PATCH] databases/py-gdbm: Fix building with python3* Message-ID: <200907010030.n610UFWT015135@freefall.freebsd.org> Synopsis: [PATCH] databases/py-gdbm: Fix building with python3* Responsible-Changed-From-To: freebsd-ports-bugs->perky Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 00:30:14 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136199 From lwhsu at FreeBSD.org Wed Jul 1 00:40:02 2009 From: lwhsu at FreeBSD.org (Li-Wen Hsu) Date: Wed Jul 1 00:40:45 2009 Subject: ports/136200: [PATCH] databases/py-bsddb: Use checksum file under lang/python${PYTHON_SUFFIX}/ Message-ID: <20090630220006.CDE96147C1B@lucky7.csie.net> >Number: 136200 >Category: ports >Synopsis: [PATCH] databases/py-bsddb: Use checksum file under lang/python${PYTHON_SUFFIX}/ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 00:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD lucky7 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jun 11 00:29:36 CST 2009 >Description: - Use checksum file under lang/python${PYTHON_SUFFIX}/, for removal lang/python/distinfo Port maintainer (perky@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- py26-bsddb-2.6.2_2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/py-bsddb/Makefile,v retrieving revision 1.11 diff -u -u -r1.11 Makefile --- Makefile 6 Apr 2009 05:12:40 -0000 1.11 +++ Makefile 30 Jun 2009 21:56:39 -0000 @@ -24,7 +24,7 @@ PYDISTUTILS_PKGVERSION= 0.0.0 DIST_SUBDIR= python WRKSRC= ${PYTHON_WRKSRC}/Modules -MD5_FILE= ${PORTSDIR}/lang/python/distinfo +MD5_FILE= ${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo MAKE_ENV= BSDDB_VERSION=${BDB_LIB_NAME} PLIST_FILES= %%PYTHON_SITELIBDIR%%/_bsddb.so --- py26-bsddb-2.6.2_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From lwhsu at FreeBSD.org Wed Jul 1 00:40:02 2009 From: lwhsu at FreeBSD.org (Li-Wen Hsu) Date: Wed Jul 1 00:40:45 2009 Subject: ports/136201: [PATCH] math/py-mpz: Use checksum file under lang/python${PYTHON_SUFFIX}/ Message-ID: <20090630220232.B934A147C1B@lucky7.csie.net> >Number: 136201 >Category: ports >Synopsis: [PATCH] math/py-mpz: Use checksum file under lang/python${PYTHON_SUFFIX}/ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 00:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD lucky7 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jun 11 00:29:36 CST 2009 >Description: - Use checksum file under lang/python${PYTHON_SUFFIX}/, for removal lang/python/distinfo Port maintainer (perky@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- py23-mpz-2.3.7_2,1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/math/py-mpz/Makefile,v retrieving revision 1.16 diff -u -u -r1.16 Makefile --- Makefile 13 May 2009 09:45:55 -0000 1.16 +++ Makefile 30 Jun 2009 22:00:49 -0000 @@ -26,7 +26,7 @@ USE_PYDISTUTILS=yes PYDISTUTILS_PKGVERSION= 0.0.0 WRKSRC= ${PYTHON_WRKSRC}/Modules -MD5_FILE= ${PORTSDIR}/lang/python/distinfo +MD5_FILE= ${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo post-extract: @${CP} ${FILESDIR}/setup.py ${WRKSRC} --- py23-mpz-2.3.7_2,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From lwhsu at FreeBSD.org Wed Jul 1 00:40:02 2009 From: lwhsu at FreeBSD.org (Li-Wen Hsu) Date: Wed Jul 1 00:40:45 2009 Subject: ports/136202: [PATCH] textproc/py-expat: Use checksum file under lang/python${PYTHON_SUFFIX}/ Message-ID: <20090630220357.6725B147C1B@lucky7.csie.net> >Number: 136202 >Category: ports >Synopsis: [PATCH] textproc/py-expat: Use checksum file under lang/python${PYTHON_SUFFIX}/ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 00:40:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD lucky7 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jun 11 00:29:36 CST 2009 >Description: - Use checksum file under lang/python${PYTHON_SUFFIX}/, for removal lang/python/distinfo Port maintainer (perky@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- py26-expat-2.6.2_4.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/py-expat/Makefile,v retrieving revision 1.16 diff -u -u -r1.16 Makefile --- Makefile 30 Jul 2007 09:41:59 -0000 1.16 +++ Makefile 30 Jun 2009 22:03:04 -0000 @@ -26,7 +26,7 @@ PYDISTUTILS_PKGNAME= pyexpat PYDISTUTILS_PKGVERSION= 0.0.0 WRKSRC= ${PYTHON_WRKSRC}/Modules -MD5_FILE= ${PORTSDIR}/lang/python/distinfo +MD5_FILE= ${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo post-extract: @${CP} ${FILESDIR}/setup.py ${WRKSRC} --- py26-expat-2.6.2_4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From wenheping at gmail.com Wed Jul 1 00:40:03 2009 From: wenheping at gmail.com (Wen Heping) Date: Wed Jul 1 00:40:46 2009 Subject: ports/136203: [Update]databases/py-PyGreSQL:update to 4.0 Message-ID: <200907010031.n610V6pJ046656@www.freebsd.org> >Number: 136203 >Category: ports >Synopsis: [Update]databases/py-PyGreSQL:update to 4.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 00:40:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-CURRENT >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Mar 22 22:12:06 CST 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: update to 4.0 from 3.8.1 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-07-01 07:04:56.000000000 +0800 +++ Makefile 2009-07-01 08:08:00.000000000 +0800 @@ -6,13 +6,12 @@ # PORTNAME= PyGreSQL -PORTVERSION= 3.8.1 -PORTREVISION= 1 +PORTVERSION= 4.0 PORTEPOCH= 1 CATEGORIES= databases python -MASTER_SITES= ftp://ftp.pygresql.org/pub/distrib/ +MASTER_SITES= CHEESESHOP \ + ftp://ftp.pygresql.org/pub/distrib/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -EXTRACT_SUFX= .tgz MAINTAINER= girgen@FreeBSD.org COMMENT= A Python interface to PostgreSQL, both classic and DP-API 2.0 @@ -20,31 +19,15 @@ BUILD_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base RUN_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base -USE_PGSQL= yes -USE_PYTHON= yes +USE_PGSQL= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes DATETIME_DEP= ${PYTHON_SITELIBDIR}/mx/DateTime/__init__.py -INSTALLS_EGGINFO= yes - -pre-build: - @ cd ${WRKSRC} ; ${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' setup.py - -do-build: - @ cd ${WRKSRC} ; ${PYTHON_CMD} setup.py build - -do-install: - @ cd ${WRKSRC} ; ${PYTHON_CMD} setup.py install post-install: - @ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -lf \ - ${PYTHONPREFIX_SITELIBDIR} - @ ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py -lf \ - ${PYTHONPREFIX_SITELIBDIR} .if !defined(NOPORTDOCS) -.for docfile in announce.txt changelog.txt pg.txt pgdb.txt - @ ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/${docfile} \ - ${DOCSDIR} -.endfor + @${MKDIR} ${DOCSDIR} + @cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${DOCSDIR} .endif .include --- distinfo.orig 2009-07-01 07:05:04.000000000 +0800 +++ distinfo 2009-07-01 08:03:31.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (PyGreSQL-3.8.1.tgz) = 5575979dac93c9c5795d7693a8f91c86 -SHA256 (PyGreSQL-3.8.1.tgz) = 5638e1f12c8dd4f1ea8c9db4f92a98d19e66dbef2e25ab45ede190c3fcac816d -SIZE (PyGreSQL-3.8.1.tgz) = 81186 +MD5 (PyGreSQL-4.0.tar.gz) = 1aca50e59ff4cc56abe9452a9a49c5ff +SHA256 (PyGreSQL-4.0.tar.gz) = c57e93835de8a881e714baf217d7ab012297d6f0450454e3cde508937bf6bc9b +SIZE (PyGreSQL-4.0.tar.gz) = 89528 --- pkg-plist.orig 2009-07-01 07:05:16.000000000 +0800 +++ pkg-plist 2009-07-01 08:10:13.000000000 +0800 @@ -1,7 +1,20 @@ +%%PORTDOCS%%%%DOCSDIR%%/announce.html %%PORTDOCS%%%%DOCSDIR%%/announce.txt +%%PORTDOCS%%%%DOCSDIR%%/changelog.html %%PORTDOCS%%%%DOCSDIR%%/changelog.txt +%%PORTDOCS%%%%DOCSDIR%%/default.css +%%PORTDOCS%%%%DOCSDIR%%/docs.css +%%PORTDOCS%%%%DOCSDIR%%/future.html +%%PORTDOCS%%%%DOCSDIR%%/future.txt +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/install.html +%%PORTDOCS%%%%DOCSDIR%%/install.txt +%%PORTDOCS%%%%DOCSDIR%%/pg.html %%PORTDOCS%%%%DOCSDIR%%/pg.txt +%%PORTDOCS%%%%DOCSDIR%%/pgdb.html %%PORTDOCS%%%%DOCSDIR%%/pgdb.txt +%%PORTDOCS%%%%DOCSDIR%%/readme.html +%%PORTDOCS%%%%DOCSDIR%%/readme.txt %%PYTHON_SITELIBDIR%%/_pg.so %%PYTHON_SITELIBDIR%%/pg.py %%PYTHON_SITELIBDIR%%/pg.pyc >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 00:40:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 00:40:46 2009 Subject: ports/136200: [PATCH] databases/py-bsddb: Use checksum file under lang/python${PYTHON_SUFFIX}/ Message-ID: <200907010040.n610eCIk026692@freefall.freebsd.org> Synopsis: [PATCH] databases/py-bsddb: Use checksum file under lang/python${PYTHON_SUFFIX}/ Responsible-Changed-From-To: freebsd-ports-bugs->perky Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 00:40:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136200 From edwin at FreeBSD.org Wed Jul 1 00:40:20 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 00:40:46 2009 Subject: ports/136201: [PATCH] math/py-mpz: Use checksum file under lang/python${PYTHON_SUFFIX}/ Message-ID: <200907010040.n610eJlD028030@freefall.freebsd.org> Synopsis: [PATCH] math/py-mpz: Use checksum file under lang/python${PYTHON_SUFFIX}/ Responsible-Changed-From-To: freebsd-ports-bugs->perky Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 00:40:19 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136201 From edwin at FreeBSD.org Wed Jul 1 00:40:27 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 00:40:46 2009 Subject: ports/136202: [PATCH] textproc/py-expat: Use checksum file under lang/python${PYTHON_SUFFIX}/ Message-ID: <200907010040.n610eQHt029318@freefall.freebsd.org> Synopsis: [PATCH] textproc/py-expat: Use checksum file under lang/python${PYTHON_SUFFIX}/ Responsible-Changed-From-To: freebsd-ports-bugs->perky Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 00:40:26 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136202 From edwin at FreeBSD.org Wed Jul 1 00:40:32 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 00:40:46 2009 Subject: ports/136203: [Update]databases/py-PyGreSQL:update to 4.0 Message-ID: <200907010040.n610eVDW030203@freefall.freebsd.org> Synopsis: [Update]databases/py-PyGreSQL:update to 4.0 Responsible-Changed-From-To: freebsd-ports-bugs->girgen Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 00:40:31 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136203 From glen.j.barber at gmail.com Wed Jul 1 01:00:08 2009 From: glen.j.barber at gmail.com (Glen Barber) Date: Wed Jul 1 01:00:15 2009 Subject: ports/136204: [new port] lang/open-cobol-devel - development preview Message-ID: <200907010054.n610s7gX058349@www.freebsd.org> >Number: 136204 >Category: ports >Synopsis: [new port] lang/open-cobol-devel - development preview >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 01:00:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Glen Barber >Release: 7.2-RELEASE >Organization: >Environment: FreeBSD orion 7.2-STABLE FreeBSD 7.2-STABLE #4 r194402: Wed Jun 17 18:08:17 EDT 2009 root@orion:/usr/obj/usr/src/sys/ORION i386 >Description: Although currently unfinished, the open-cobol developers have been working on version 1.1 for some time now. Because this version will eventually replace the 1.0 version, I wanted to get this into the tree for better bug testing, rather than replacing 1.0 with 1.1 upon release. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/lang/open-cobol-devel/Makefile # /usr/ports/lang/open-cobol-devel/distinfo # /usr/ports/lang/open-cobol-devel/pkg-descr # /usr/ports/lang/open-cobol-devel/pkg-plist # echo x - /usr/ports/lang/open-cobol-devel/Makefile sed 's/^X//' >/usr/ports/lang/open-cobol-devel/Makefile << '9ef1d8e7dd8ae923e84df23b3f9537b4' X XPORTNAME= open-cobol XPORTVERSION= 1.1 XPORTREVISION= 0 XCATEGORIES= lang XMASTER_SITES= http://freebsd.dev-urandom.com/open-cobol/ X XMAINTAINER= glen.j.barber@gmail.com XCOMMENT= An open-source COBOL compiler X XLIB_DEPENDS= gmp.8:${PORTSDIR}/math/libgmp4 X XUSE_GNOME= gnometarget XUSE_BDB= yes XUSE_GMAKE= yes XUSE_AUTOTOOLS= libtool:15 XCONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" XUSE_LDCONFIG= yes X XINFO= open-cobol XCONFLICTS= ${PORTSDIR}/lang/open-cobol X XCPPFLAGS= -I${BDB_INCLUDE_DIR} -I${LOCALBASE}/include XLDFLAGS= -L${LOCALBASE}/lib X X.if defined(WITHOUT_NLS) XCONFIGURE_ARGS+= --disable-nls XPLIST_SUB+= NLS="@comment " X.else XUSE_GETTEXT= yes XPLIST_SUB+= NLS="" X.endif X Xpost-patch: X @${REINPLACE_CMD} -e 's|__gmp_randinit|__gmpz_init|g ; \ X s|db-4.[0-9]|${BDB_LIB_NAME}|g' ${WRKSRC}/configure X X.if defined(MAINTAINER_MODE) Xtest: build X (cd ${WRKSRC}/tests; \ X ./syntax; \ X ./run) X.endif X X.include 9ef1d8e7dd8ae923e84df23b3f9537b4 echo x - /usr/ports/lang/open-cobol-devel/distinfo sed 's/^X//' >/usr/ports/lang/open-cobol-devel/distinfo << 'afce0ad22f5ad23adc0001e6dcda31f9' XMD5 (open-cobol-1.1.tar.gz) = e38c898e01d50a7ca6bb3e41cfcb0c64 XSHA256 (open-cobol-1.1.tar.gz) = 6ae7c02eb8622c4ad55097990e9b1688a151254407943f246631d02655aec320 XSIZE (open-cobol-1.1.tar.gz) = 1007791 afce0ad22f5ad23adc0001e6dcda31f9 echo x - /usr/ports/lang/open-cobol-devel/pkg-descr sed 's/^X//' >/usr/ports/lang/open-cobol-devel/pkg-descr << 'a3979c2867bf25e009e94151a1da4363' XOpenCOBOL is an open-source COBOL compiler, which translates COBOL programs Xto C code and compiles it using GCC. X XWWW: http://www.opencobol.org/ a3979c2867bf25e009e94151a1da4363 echo x - /usr/ports/lang/open-cobol-devel/pkg-plist sed 's/^X//' >/usr/ports/lang/open-cobol-devel/pkg-plist << '2f8961bc9bab6478dbb3cdfb420b006b' Xbin/cob-config Xbin/cobc Xbin/cobcrun Xinclude/libcob.h Xinclude/libcob/byteswap.h Xinclude/libcob/call.h Xinclude/libcob/codegen.h Xinclude/libcob/common.h Xinclude/libcob/exception.def Xinclude/libcob/fileio.h Xinclude/libcob/intrinsic.h Xinclude/libcob/move.h Xinclude/libcob/numeric.h Xinclude/libcob/screenio.h Xinclude/libcob/strings.h Xinclude/libcob/system.def Xinclude/libcob/termio.h Xlib/libcob.a Xlib/libcob.la Xlib/libcob.so Xlib/libcob.so.1 X%%NLS%%share/locale/ja/LC_MESSAGES/open-cobol.mo X%%DATADIR%%/config/bs2000.conf X%%DATADIR%%/config/cobol2002.conf X%%DATADIR%%/config/cobol85.conf X%%DATADIR%%/config/default.conf X%%DATADIR%%/config/ibm.conf X%%DATADIR%%/config/mf.conf X%%DATADIR%%/config/mvs.conf X@dirrm %%DATADIR%%/config X@dirrm %%DATADIR%% X@dirrm include/libcob 2f8961bc9bab6478dbb3cdfb420b006b exit >Release-Note: >Audit-Trail: >Unformatted: From wenheping at gmail.com Wed Jul 1 01:10:02 2009 From: wenheping at gmail.com (Wen Heping) Date: Wed Jul 1 01:10:16 2009 Subject: ports/136205: [Maintainer Update]devel/py-pyutil:update to 1.3.32 Message-ID: <200907010106.n6116LRx069205@www.freebsd.org> >Number: 136205 >Category: ports >Synopsis: [Maintainer Update]devel/py-pyutil:update to 1.3.32 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 01:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-CURRENT >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Mar 22 22:12:06 CST 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: update to 1.3.32 from 1.3.30 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-07-01 08:34:29.000000000 +0800 +++ Makefile 2009-07-01 09:03:59.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= pyutil -PORTVERSION= 1.3.30 +PORTVERSION= 1.3.32 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} --- distinfo.orig 2009-07-01 08:34:33.000000000 +0800 +++ distinfo 2009-07-01 08:35:42.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (pyutil-1.3.30.tar.gz) = 5b5314d79e24e86a9fdaa6a85aeccbbb -SHA256 (pyutil-1.3.30.tar.gz) = 2928fafb8968a005fdd7771ad65da512eecd90aa61cbda9a677c948eec234bcf -SIZE (pyutil-1.3.30.tar.gz) = 71569 +MD5 (pyutil-1.3.32.tar.gz) = e779aedbf0df4cc771e594bcee7fd28a +SHA256 (pyutil-1.3.32.tar.gz) = a2abf718668fe4c75702ffb19ee84880fd4d907e9cb6548060d92a667067cb4f +SIZE (pyutil-1.3.32.tar.gz) = 73150 --- pkg-plist.orig 2009-07-01 08:34:36.000000000 +0800 +++ pkg-plist 2009-07-01 08:53:30.000000000 +0800 @@ -4,10 +4,10 @@ bin/adler32sum bin/tailx bin/sha256dsum -bin/find_trial bin/sha1sum_py bin/sha256sum_py bin/sha256dcppsum +bin/unsort %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/_version.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/assertutil.py @@ -84,9 +84,6 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/adler32sum.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/adler32sum.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/adler32sum.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/find_trial.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/find_trial.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/find_trial.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/lines.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/lines.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/lines.pyo @@ -120,6 +117,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/tailx.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/tailx.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/tailx.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/unsort.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/unsort.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/scripts/unsort.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/test/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/test/test_assertutil.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/test/test_cache.py @@ -186,6 +186,8 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/stdeb.cfg +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/stdeb.cfg~ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/benchmarks/ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyutil/xor >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 01:10:20 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 01:10:26 2009 Subject: ports/136205: [Maintainer Update]devel/py-pyutil:update to 1.3.32 Message-ID: <200907010110.n611AJCI049353@freefall.freebsd.org> Synopsis: [Maintainer Update]devel/py-pyutil:update to 1.3.32 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 01:10:19 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136205 From nwhitehorn at FreeBSD.org Wed Jul 1 02:20:02 2009 From: nwhitehorn at FreeBSD.org (Nathan Whitehorn) Date: Wed Jul 1 02:20:09 2009 Subject: ports/136206: [patch] OVERRIDE_LINUX_NONBASE_PORTS not honored Message-ID: <200907010214.n612E2PQ079446@www.freebsd.org> >Number: 136206 >Category: ports >Synopsis: [patch] OVERRIDE_LINUX_NONBASE_PORTS not honored >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 02:20:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Nathan Whitehorn >Release: 8.0-CURRENT >Organization: University of Wisconsin >Environment: FreeBSD comporellon.tachypleus.net 8.0-CURRENT FreeBSD 8.0-CURRENT #20 r194939M: Thu Jun 25 01:54:40 CDT 2009 root@comporellon.tachypleus.net:/usr/obj/usr/src/sys/COMPORELLON amd64 >Description: After the change to Fedora 10 as the default Linux base on -CURRENT, you get messages like this even if OVERRIDE_LINUX_NONBASE_PORTS is set to f8: ** Port marked as IGNORE: x11/linux-f8-xorg-libs: bsd.linux-rpm.mk test failed: default package building at OSVERSION>=800076 was changed to linux-f10 ports, please define OVERRIDE_LINUX_NONBASE_PORTS to build other linux infrastructure ports >How-To-Repeat: >Fix: This is due to over-enthusiastic application of curly braces in the test on line 70 of bsd.linux-rpm.mk. Instead of testing defined(${OVERRIDE_LINUX_NONBASE_PORTS}), it should test defined(OVERRIDE_LINUX_NONBASE_PORTS). Patch attached with submission follows: --- bsd.linux-rpm.mk.dist 2009-06-30 21:09:06.000000000 -0500 +++ bsd.linux-rpm.mk 2009-06-30 21:09:19.000000000 -0500 @@ -67,7 +67,7 @@ LINUX_DIST_VER?= 4 . else LINUX_DIST_VER?= 10 -. if !defined(${OVERRIDE_LINUX_NONBASE_PORTS}) && \ +. if !defined(OVERRIDE_LINUX_NONBASE_PORTS) && \ ${LINUX_DIST_VER} != 10 IGNORE= bsd.linux-rpm.mk test failed: default package building at OSVERSION>=800076 was changed to linux-f10 ports, please define OVERRIDE_LINUX_NONBASE_PORTS to build other linux infrastructure ports . endif >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Wed Jul 1 03:26:23 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Jul 1 03:26:35 2009 Subject: ports/136206: [patch] bsd.linux-rpm.mk: OVERRIDE_LINUX_NONBASE_PORTS not honored Message-ID: <200907010326.n613QMpt054224@freefall.freebsd.org> Old Synopsis: [patch] OVERRIDE_LINUX_NONBASE_PORTS not honored New Synopsis: [patch] bsd.linux-rpm.mk: OVERRIDE_LINUX_NONBASE_PORTS not honored Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-emulation Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 1 03:25:11 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=136206 From bf1783 at gmail.com Wed Jul 1 03:30:02 2009 From: bf1783 at gmail.com (bf) Date: Wed Jul 1 03:30:21 2009 Subject: ports/136207: [PATCH]: graphics/png: update to 1.2.37 (security) Message-ID: <200907010321.n613LEPa024736@www.freebsd.org> >Number: 136207 >Category: ports >Synopsis: [PATCH]: graphics/png: update to 1.2.37 (security) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 03:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: bf >Release: 8-CURRENT amd64 >Organization: - >Environment: >Description: A fix for CVE-2009-2042: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2042 and some other small changes that have been taking place in the course of normal development. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN png.orig/Makefile png/Makefile --- png.orig/Makefile 2009-06-30 23:08:26.000000000 -0400 +++ png/Makefile 2009-06-30 23:11:18.000000000 -0400 @@ -6,12 +6,11 @@ # PORTNAME= png -PORTVERSION= 1.2.35 +PORTVERSION= 1.2.37 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= lib${PORTNAME} DISTNAME= lib${PORTNAME}-${PORTVERSION} - #PATCH_SITES= ${MASTER_SITES} #PATCH_SITE_SUBDIR= ${MASTER_SITE_SUBDIR} #PATCHFILES= diff -ruN png.orig/distinfo png/distinfo --- png.orig/distinfo 2009-06-30 23:08:26.000000000 -0400 +++ png/distinfo 2009-06-30 22:53:52.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (libpng-1.2.35.tar.bz2) = b8b8d09adf6bee2c5902c8e54c4f2e68 -SHA256 (libpng-1.2.35.tar.bz2) = cafe6431f9e6d561fb7b396bf94ff73a9cd0f4279f3eea2fc714ab90e345eee6 -SIZE (libpng-1.2.35.tar.bz2) = 650154 +MD5 (libpng-1.2.37.tar.bz2) = 6d1ee0888dbb711214943cb19c294b49 +SHA256 (libpng-1.2.37.tar.bz2) = 682960b55527b54bada90e959c2d42679444a1db43677c77eb645a29645f86d1 +SIZE (libpng-1.2.37.tar.bz2) = 660314 diff -ruN png.orig/files/patch-ab png/files/patch-ab --- png.orig/files/patch-ab 2009-06-30 23:08:26.000000000 -0400 +++ png/files/patch-ab 2009-06-30 23:06:05.000000000 -0400 @@ -12,7 +12,7 @@ Name: libpng Description: Loads and saves PNG files - Version: 1.2.35 + Version: 1.2.37 -Libs: -L${libdir} -lpng12 +Libs: -L${libdir} -lpng -lz -lm Cflags: -I${includedir} >Release-Note: >Audit-Trail: >Unformatted: From corky1951 at comcast.net Wed Jul 1 03:30:03 2009 From: corky1951 at comcast.net (Charlie Kester) Date: Wed Jul 1 03:30:21 2009 Subject: ports/136208: [MAINTAINER PATCH] sysutils/rdup - fix build problem on 8.0-CURRENT Message-ID: <20090701032810.4FB3D8FC0A@mx1.freebsd.org> >Number: 136208 >Category: ports >Synopsis: [MAINTAINER PATCH] sysutils/rdup - fix build problem on 8.0-CURRENT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 03:30:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Charlie Kester >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: System: FreeBSD atom.local 7.2-RELEASE FreeBSD 7.2-RELEASE #1: Mon May 4 15:50:49 PDT 2009 root@atom.local:/usr/obj/usr/src/sys/ATOM i386 >Description: See build error log at: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/a.8.20090621131742/rdup-1.0.0.log Packaging failed because component rdup-tr was not found. Configure failed to detect libnettle and libarchive, so rdup-tr was not built. Problem was reported on 8.0-CURRENT, but I have seen a similar failure to detect libnettle on 7.2-RELEASE. To fix this problem, the attached patch sets LDFLAGS in CONFIGURE_ENV. It also replaces the original configure script patch with a cleaner patch of configure.ac >How-To-Repeat: This failure will occur whenever environment variable LDFLAGS is undefined or does not point to location of libnettle and libarchive. >Fix: --- rdup-1.0.0.diff begins here --- diff -ruN /usr/ports/sysutils/rdup/Makefile ./rdup/Makefile --- /usr/ports/sysutils/rdup/Makefile 2009-06-30 10:44:44.000000000 -0700 +++ ./rdup/Makefile 2009-06-30 19:54:16.000000000 -0700 @@ -6,23 +6,25 @@ # $FreeBSD: ports/sysutils/rdup/Makefile,v 1.1 2009/06/19 05:29:46 miwi Exp $ # -PORTNAME= rdup +PORTNAME= rdup PORTVERSION= 1.0.0 -CATEGORIES= sysutils +CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://miek.nl/projects/rdup/ + http://miek.nl/projects/rdup/ MAINTAINER= corky1951@comcast.net COMMENT= A tool to generate an (incremental) backup file list LIB_DEPENDS= glib-2.0:${PORTSDIR}/devel/glib20 \ - pcre:${PORTSDIR}/devel/pcre \ - archive:${PORTSDIR}/archivers/libarchive \ - nettle:${PORTSDIR}/security/nettle + pcre:${PORTSDIR}/devel/pcre \ + archive:${PORTSDIR}/archivers/libarchive \ + nettle:${PORTSDIR}/security/nettle -USE_BZIP2= yes +USE_BZIP2= yes +USE_AUTOTOOLS= autoconf:262 GNU_CONFIGURE= yes +CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib ${LDFLAGS}" USE_GMAKE= yes MAKEFILE= GNUmakefile diff -ruN /usr/ports/sysutils/rdup/files/patch-configure ./rdup/files/patch-configure --- /usr/ports/sysutils/rdup/files/patch-configure 2009-06-18 22:29:46.000000000 -0700 +++ ./rdup/files/patch-configure 1969-12-31 16:00:00.000000000 -0800 @@ -1,20 +0,0 @@ ---- configure.orig 2009-05-31 00:38:33.000000000 -0700 -+++ configure 2009-06-12 16:34:06.000000000 -0700 -@@ -5003,7 +5003,7 @@ - $as_echo_n "(cached) " >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lnettle $LIBS" -+LIBS="-lgmp -lnettle $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -5067,7 +5067,7 @@ - #define HAVE_LIBNETTLE 1 - _ACEOF - -- LIBS="-lnettle $LIBS" -+ LIBS="-lgmp -lnettle $LIBS" - - else - NETTLE_L="no" diff -ruN /usr/ports/sysutils/rdup/files/patch-configure.ac ./rdup/files/patch-configure.ac --- /usr/ports/sysutils/rdup/files/patch-configure.ac 1969-12-31 16:00:00.000000000 -0800 +++ ./rdup/files/patch-configure.ac 2009-06-30 17:50:00.000000000 -0700 @@ -0,0 +1,11 @@ +--- configure.ac.orig 2009-05-28 10:39:19.000000000 -0700 ++++ configure.ac 2009-06-30 17:49:08.000000000 -0700 +@@ -28,6 +28,8 @@ + #AM_GNU_GETTEXT([external]) + #AM_GNU_GETTEXT_VERSION + ++LIBS="-lgmp $LIBS" ++ + AC_MSG_CHECKING([whether to enable nettle]) + AC_ARG_WITH(nettle, + [ --with-nettle enable nettle support], --- rdup-1.0.0.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 03:30:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 03:30:21 2009 Subject: ports/136207: [PATCH]: graphics/png: update to 1.2.37 (security) Message-ID: <200907010330.n613UCNP055497@freefall.freebsd.org> Synopsis: [PATCH]: graphics/png: update to 1.2.37 (security) Responsible-Changed-From-To: freebsd-ports-bugs->ache Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 03:30:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136207 From mluckie at cs.waikato.ac.nz Wed Jul 1 03:50:02 2009 From: mluckie at cs.waikato.ac.nz (Matthew Luckie) Date: Wed Jul 1 03:50:08 2009 Subject: ports/136209: [patch] p5-Net-Patricia missing dependency on p5-version Message-ID: >Number: 136209 >Category: ports >Synopsis: [patch] p5-Net-Patricia missing dependency on p5-version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 03:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Matthew Luckie >Release: FreeBSD 7.1-RELEASE-p4 i386 >Organization: University of Waikato >Environment: System: FreeBSD sorcerer.cs.waikato.ac.nz 7.1-RELEASE-p4 FreeBSD 7.1-RELEASE-p4 #0: Sat Mar 28 11:10:56 NZDT 2009 root@sorcerer.cs.waikato.ac.nz:/usr/obj/usr/src/sys/GENERIC i386 >Description: p5-Net-Patricia requires p5-version to run. if it is not installed, then anything depending on Net::Patricia will not work. >How-To-Repeat: install p5-Net-Patricia on a system without p5-version installed. >Fix: --- patch-p5-Net-Patricia begins here --- diff -uNr p5-Net-Patricia.orig/Makefile p5-Net-Patricia/Makefile --- p5-Net-Patricia.orig/Makefile 2009-06-26 07:02:46.000000000 +1200 +++ p5-Net-Patricia/Makefile 2009-07-01 15:17:25.000000000 +1200 @@ -16,6 +16,8 @@ PERL_CONFIGURE= YES +RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/version.pm:${PORTSDIR}/devel/p5-version + MAN3= Net::Patricia.3 .include --- patch-p5-Net-Patricia ends here --- >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Wed Jul 1 04:45:46 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Jul 1 04:45:52 2009 Subject: ports/136209: [patch] pnet/p5-Net-Patricia missing dependency on p5-version Message-ID: <200907010445.n614jktN015673@freefall.freebsd.org> Old Synopsis: [patch] p5-Net-Patricia missing dependency on p5-version New Synopsis: [patch] pnet/p5-Net-Patricia missing dependency on p5-version Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 1 04:45:15 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=136209 From m129kss at omgp.ru Wed Jul 1 04:50:02 2009 From: m129kss at omgp.ru (mas kassem) Date: Wed Jul 1 04:50:09 2009 Subject: ports/136210: wrong location of vnstat.conf in /etc/ for /usr/ports/net/vnstat Message-ID: <200907010441.n614fKLC091070@www.freebsd.org> >Number: 136210 >Category: ports >Synopsis: wrong location of vnstat.conf in /etc/ for /usr/ports/net/vnstat >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 04:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: mas kassem >Release: 7.2 >Organization: >Environment: 7.2-STABLE i386 GENERIC >Description: cd /usr/ports/net/vnstat/work/vnstat-1.7/src grep -n etc/vnstat.conf * cfg.c:137: /* possible config files: 1) --config 2) $HOME/.vnstatrc 3) /etc/vnstat.conf 4) none */ cfg.c:165: } else if ((fd=fopen("/etc/vnstat.conf", "r"))!=NULL) { cfg.c:167: printf("Config file: /etc/vnstat.conf\n"); >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 04:50:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 04:50:18 2009 Subject: ports/136210: wrong location of vnstat.conf in /etc/ for /usr/ports/net/vnstat Message-ID: <200907010450.n614oBWV016455@freefall.freebsd.org> Synopsis: wrong location of vnstat.conf in /etc/ for /usr/ports/net/vnstat Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 04:50:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136210 From taguchi at iij.ad.jp Wed Jul 1 07:10:03 2009 From: taguchi at iij.ad.jp (Takeshi Taguchi) Date: Wed Jul 1 07:10:09 2009 Subject: ports/136211: fix bug: sysutils/fusefs-kmod Message-ID: <200907010709.n6179oM7082280@www.freebsd.org> >Number: 136211 >Category: ports >Synopsis: fix bug: sysutils/fusefs-kmod >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 07:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Takeshi Taguchi >Release: 7.2-RELEASE-p2 >Organization: IIJ >Environment: FreeBSD fbsd-amd64-72 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Tru Jun 30 14:54:41 JST 2009 root#fbsd-amd64-72:/usr/obj/usr/src/sys/GENERIC amd64 >Description: fusefs-kmod has a bug. This bug is described in: http://fuse4bsd.creo.hu/darcsweb/darcsweb.cgi?r=fuse4bsd;a=commit;h=20090226212158-29619-f5fbe1f545c85669c0e8e9047b76756a82960803.gz but FreeBSD port one does not fix yet. >How-To-Repeat: >Fix: would you like to check and commit this patch. thanks. Patch attached with submission follows: diff -ur fusefs-kmod.orig/Makefile fusefs-kmod/Makefile --- fusefs-kmod.orig/Makefile 2009-07-01 15:58:09.000000000 +0900 +++ fusefs-kmod/Makefile 2009-07-01 15:58:40.000000000 +0900 @@ -7,7 +7,7 @@ PORTNAME= fusefs DISTVERSION= 0.3.9-pre1.20080208 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= sysutils kld MASTER_SITES= http://mercurial.creo.hu/repos/fuse4bsd-hg/index.cgi/archive/ PKGNAMESUFFIX= -kmod diff -ur fusefs-kmod.orig/files/patch-fuse_module__fuse_io.c fusefs-kmod/files/patch-fuse_module__fuse_io.c --- fusefs-kmod.orig/files/patch-fuse_module__fuse_io.c 2009-07-01 15:58:09.000000000 +0900 +++ fusefs-kmod/files/patch-fuse_module__fuse_io.c 2009-07-01 15:58:25.000000000 +0900 @@ -1,5 +1,5 @@ ---- fuse_module/fuse_io.c.orig 2008-02-05 00:25:57.000000000 -0500 -+++ fuse_module/fuse_io.c 2008-09-26 13:15:56.000000000 -0400 +--- fuse_module/fuse_io.c.orig 2008-02-05 14:25:57.000000000 +0900 ++++ fuse_module/fuse_io.c 2009-07-01 15:45:23.000000000 +0900 @@ -157,7 +157,11 @@ goto out; @@ -13,6 +13,71 @@ goto out; uio->uio_offset = va.va_size; } else if ((flags & FOF_OFFSET) == 0) +@@ -227,7 +231,7 @@ + return (0); + + biosize = vp->v_mount->mnt_stat.f_iosize; +- bcount = min(MAXBSIZE, biosize); ++ bcount = MIN(MAXBSIZE, biosize); + + DEBUG2G("entering loop\n"); + do { +@@ -352,7 +356,7 @@ + fri = fdi.indata; + fri->fh = fufh->fh_id; + fri->offset = uio->uio_offset; +- fri->size = min(uio->uio_resid, ++ fri->size = MIN(uio->uio_resid, + fusefs_get_data(vp->v_mount)->max_read); + + DEBUG2G("fri->fh %llu, fri->offset %d, fri->size %d\n", +@@ -399,7 +403,7 @@ + while (uio->uio_resid > 0) { + int transfersize; + +- chunksize = min(iov->iov_len, nmax); ++ chunksize = MIN(iov->iov_len, nmax); + + if (uio->uio_rw == UIO_READ) { + struct fuse_read_in *fri; +@@ -464,7 +468,7 @@ + { + int err; + +- if ((err = uiomove(buf, min(reqsize, bufsize), uio))) ++ if ((err = uiomove(buf, MIN(reqsize, bufsize), uio))) + return (err); + + if (bufsize < reqsize) +@@ -502,7 +506,7 @@ + } + + while (uio->uio_resid > 0) { +- chunksize = min(uio->uio_resid, ++ chunksize = MIN(uio->uio_resid, + fusefs_get_data(vp->v_mount)->max_write); + + fdi.iosize = sizeof(*fwi) + chunksize; +@@ -569,7 +573,7 @@ + do { + lbn = uio->uio_offset / biosize; + on = uio->uio_offset & (biosize-1); +- n = min((unsigned)(biosize - on), uio->uio_resid); ++ n = MIN((unsigned)(biosize - on), uio->uio_resid); + + DEBUG2G("lbn %d, on %d, n %d, uio offset %d, uio resid %d\n", + (int)lbn, on, n, (int)uio->uio_offset, uio->uio_resid); +@@ -739,8 +743,8 @@ + */ + if (n) { + if (bp->b_dirtyend > 0) { +- bp->b_dirtyoff = min(on, bp->b_dirtyoff); +- bp->b_dirtyend = max((on + n), bp->b_dirtyend); ++ bp->b_dirtyoff = MIN(on, bp->b_dirtyoff); ++ bp->b_dirtyend = MAX((on + n), bp->b_dirtyend); + } else { + bp->b_dirtyoff = on; + bp->b_dirtyend = on + n; @@ -823,7 +827,11 @@ #if FUSELIB_CONFORM_BIOREAD struct vattr va; @@ -26,3 +91,32 @@ goto out; #endif +@@ -831,7 +839,7 @@ + bp->b_resid = bp->b_bcount; + while (bp->b_resid > 0) { + DEBUG2G("starting bio with resid %ld\n", bp->b_resid); +- chunksize = min(bp->b_resid, ++ chunksize = MIN(bp->b_resid, + fusefs_get_data(vp->v_mount)->max_read); + fdi.iosize = sizeof(*fri); + if (! op) +@@ -842,8 +850,8 @@ + fri->fh = fufh->fh_id; + fri->offset = ((off_t)bp->b_blkno) * biosize + ioff; + #if FUSELIB_CONFORM_BIOREAD +- chunksize = min(chunksize, +- min(fri->offset + bp->b_resid, ++ chunksize = MIN(chunksize, ++ MIN(fri->offset + bp->b_resid, + va.va_size) - fri->offset); + if (chunksize == 0) { + respsize = -1; +@@ -901,7 +909,7 @@ + + bufdat = bp->b_data + bp->b_dirtyoff; + while (bp->b_dirtyend > bp->b_dirtyoff) { +- chunksize = min(bp->b_dirtyend - bp->b_dirtyoff, ++ chunksize = MIN(bp->b_dirtyend - bp->b_dirtyoff, + fusefs_get_data(vp->v_mount)->max_write); + + fdi.iosize = sizeof(*fwi); >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 07:10:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 07:10:19 2009 Subject: ports/136211: fix bug: sysutils/fusefs-kmod Message-ID: <200907010710.n617ACkv033209@freefall.freebsd.org> Synopsis: fix bug: sysutils/fusefs-kmod State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Jul 1 07:10:12 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136211 From edwin at FreeBSD.org Wed Jul 1 07:20:04 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Wed Jul 1 07:20:10 2009 Subject: ports/136211: fix bug: sysutils/fusefs-kmod Message-ID: <200907010720.n617K4w4042535@freefall.freebsd.org> The following reply was made to PR ports/136211; it has been noted by GNATS. From: Edwin Groothuis To: amistry@am-productions.biz Cc: bug-followup@FreeBSD.org Subject: Re: ports/136211: fix bug: sysutils/fusefs-kmod Date: Wed, 1 Jul 2009 07:10:10 UT Maintainer of sysutils/fusefs-kmod, Please note that PR ports/136211 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136211 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From linimon at FreeBSD.org Wed Jul 1 08:22:14 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Jul 1 08:22:21 2009 Subject: ports/136212: Re: ports/135929: [REPOCOPY] www/nanoblogger -> www/nanoblogger-extra Message-ID: <200907010822.n618MDIa023761@freefall.freebsd.org> Old Synopsis: =?iso-8859-15?Q?Re:_ports/135929:_[REPOCOPY]_www/nanoblogger_->_www/na?= New Synopsis: Re: ports/135929: [REPOCOPY] www/nanoblogger -> www/nanoblogger-extra State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Jul 1 08:17:52 UTC 2009 State-Changed-Why: Misfiled followup to ports/135929; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jul 1 08:17:52 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=136212 From miwi at FreeBSD.org Wed Jul 1 08:53:32 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Wed Jul 1 08:53:48 2009 Subject: ports/136208: [MAINTAINER PATCH] sysutils/rdup - fix build problem on 8.0-CURRENT Message-ID: <200907010853.n618rVVq049561@freefall.freebsd.org> Synopsis: [MAINTAINER PATCH] sysutils/rdup - fix build problem on 8.0-CURRENT Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jul 1 08:53:30 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136208 From c.petrik.sosa at gmail.com Wed Jul 1 09:00:15 2009 From: c.petrik.sosa at gmail.com (Chris Petrik) Date: Wed Jul 1 09:00:23 2009 Subject: ports/136213: new port editors/diakonos Message-ID: <200907010853.n618ruaD061481@www.freebsd.org> >Number: 136213 >Category: ports >Synopsis: new port editors/diakonos >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 09:00:14 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 7.2-Pre >Organization: Officialunix >Environment: FreeBSD 7.2-Pre >Description: A Linux editor for the masses. A nice editor made in ruby. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # diakonos # diakonos/Makefile # diakonos/distinfo # diakonos/pkg-descr # diakonos/pkg-plist # echo c - diakonos mkdir -p diakonos > /dev/null 2>&1 echo x - diakonos/Makefile sed 's/^X//' >diakonos/Makefile << '3a240179b1fa003bf071a05e1d63cace' X# New ports collection makefile for: diakonos X# Date created: 30 June 2009 X# Whom: chris@officialunix.com X# X# $FreeBSD: Exp $ X# X XPORTNAME= diakonos XPORTVERSION= 0.8.10 XCATEGORIES= editors XMASTER_SITES= http://purepistos.net/diakonos/ X XMAINTAINER= chris@officialunix.com XCOMMENT= A Linux editor for the masses X XUSE_RUBY= yes XRUBY_VERSION= 1.9 X XNO_BUILD= yes X Xdo-install: X.for f in ${WRKSRC}/bin/* X ${INSTALL_SCRIPT} ${WRKSRC}${f} ${PREFIX}/bin X.endfor X.for f in ${WRKSRC}/lib/*.rb X ${INSTALL_DATA} ${WRKSRC}${f} ${RUBY_SITELIBDIR}/ X.endfor X.if !exists(${RUBY_SITELIBDIR}/${PORTNAME}) X ${MKDIR} ${RUBY_SITELIBDIR}/${PORTNAME} X ${CP} -R -p ${WRKSRC}/lib/${PORTNAME} ${RUBY_SITELIBDIR}/ X.endif X.if !exists(${PREFIX}/etc/diakonos.conf) X ${INSTALL_DATA} ${WRKSRC}/*.conf ${PREFIX}/etc/ X.endif X.if !defined(NOPORTDOCS) X.if !exists(${PREFIX}/share/${PORTNAME}/help) X ${MKDIR} ${PREFIX}/share/${PORTNAME}/help X ${INSTALL_DATA} ${WRKSRC}/help/* ${PREFIX}/share/${PORTNAME}/help X.endif X.if !exists(${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}) X ${MKDIR} ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} X ${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}/ X ${INSTALL_DATA} ${WRKSRC}/LICENCE ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}/ X ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}/ X.endif X.endif X X.include 3a240179b1fa003bf071a05e1d63cace echo x - diakonos/distinfo sed 's/^X//' >diakonos/distinfo << '5db31760fcecfb13e84efb608fac5c72' XMD5 (diakonos-0.8.10.tar.gz) = d2cc09044b291be4d570d080f2f7153a XSHA256 (diakonos-0.8.10.tar.gz) = 39d964ca71398ce0471eade9f0a9121198cb4c53343f6c14dc344de69b8adb91 XSIZE (diakonos-0.8.10.tar.gz) = 105388 5db31760fcecfb13e84efb608fac5c72 echo x - diakonos/pkg-descr sed 's/^X//' >diakonos/pkg-descr << 'cc4f7d12a253783a357128b9b48ec28b' XDiakonos, the console text editor with a key mapping you practically already X Xknow. Easy to use and easy to configure, but potent in the hands of power Xusers. X XChris Petrik (chris@officialunix.com) XWWW: http://purepistos.net/diakonos cc4f7d12a253783a357128b9b48ec28b echo x - diakonos/pkg-plist sed 's/^X//' >diakonos/pkg-plist << 'bb6e6476a4dc50f5d28507105574f0f9' Xbin/diakonos Xetc/diakonos-256-colour.conf Xetc/diakonos.conf Xetc/osx.conf X%%RUBY_SITELIBDIR%%/diakonos.rb X%%RUBY_SITELIBDIR%%/diakonos/bookmark.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer-hash.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer-management.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/bookmarking.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/cursor.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/delete.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/display.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/file.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/indentation.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/searching.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/selection.rb X%%RUBY_SITELIBDIR%%/diakonos/buffer/undo.rb X%%RUBY_SITELIBDIR%%/diakonos/clipboard-klipper.rb X%%RUBY_SITELIBDIR%%/diakonos/clipboard-xclip.rb X%%RUBY_SITELIBDIR%%/diakonos/clipboard.rb X%%RUBY_SITELIBDIR%%/diakonos/config.rb X%%RUBY_SITELIBDIR%%/diakonos/core-ext/bignum.rb X%%RUBY_SITELIBDIR%%/diakonos/core-ext/enumerable.rb X%%RUBY_SITELIBDIR%%/diakonos/core-ext/fixnum.rb X%%RUBY_SITELIBDIR%%/diakonos/core-ext/hash.rb X%%RUBY_SITELIBDIR%%/diakonos/core-ext/object.rb X%%RUBY_SITELIBDIR%%/diakonos/core-ext/regexp.rb X%%RUBY_SITELIBDIR%%/diakonos/core-ext/string.rb X%%RUBY_SITELIBDIR%%/diakonos/ctag.rb X%%RUBY_SITELIBDIR%%/diakonos/display.rb X%%RUBY_SITELIBDIR%%/diakonos/display/format.rb X%%RUBY_SITELIBDIR%%/diakonos/finding.rb X%%RUBY_SITELIBDIR%%/diakonos/functions-deprecated.rb X%%RUBY_SITELIBDIR%%/diakonos/functions.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/basics.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/bookmarking.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/buffers.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/clipboard.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/cursor.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/grepping.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/indentation.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/search.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/selection.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/sessions.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/shell.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/tags.rb X%%RUBY_SITELIBDIR%%/diakonos/functions/text-manipulation.rb X%%RUBY_SITELIBDIR%%/diakonos/grep.rb X%%RUBY_SITELIBDIR%%/diakonos/help.rb X%%RUBY_SITELIBDIR%%/diakonos/hooks.rb X%%RUBY_SITELIBDIR%%/diakonos/installation.rb X%%RUBY_SITELIBDIR%%/diakonos/interaction.rb X%%RUBY_SITELIBDIR%%/diakonos/keying.rb X%%RUBY_SITELIBDIR%%/diakonos/list.rb X%%RUBY_SITELIBDIR%%/diakonos/logging.rb X%%RUBY_SITELIBDIR%%/diakonos/readline.rb X%%RUBY_SITELIBDIR%%/diakonos/sessions.rb X%%RUBY_SITELIBDIR%%/diakonos/sized-array.rb X%%RUBY_SITELIBDIR%%/diakonos/text-mark.rb X%%RUBY_SITELIBDIR%%/diakonos/vendor/fuzzy_file_finder.rb X%%RUBY_SITELIBDIR%%/diakonos/version.rb X%%RUBY_SITELIBDIR%%/diakonos/window.rb Xshare/diakonos/help/about-help.dhf Xshare/diakonos/help/clipboard.dhf Xshare/diakonos/help/close-file.dhf Xshare/diakonos/help/code-block-navigation.dhf Xshare/diakonos/help/column-markers.dhf Xshare/diakonos/help/config.dhf Xshare/diakonos/help/cursor-stack.dhf Xshare/diakonos/help/delete.dhf Xshare/diakonos/help/file-type.dhf Xshare/diakonos/help/key-mapping.dhf Xshare/diakonos/help/line-numbers.dhf Xshare/diakonos/help/macros.dhf Xshare/diakonos/help/new-file.dhf Xshare/diakonos/help/open-file.dhf Xshare/diakonos/help/quit.dhf Xshare/diakonos/help/resizing.dhf Xshare/diakonos/help/ruby.dhf Xshare/diakonos/help/save-file.dhf Xshare/diakonos/help/scripting.dhf Xshare/diakonos/help/search.dhf Xshare/diakonos/help/shell.dhf Xshare/diakonos/help/speed.dhf Xshare/diakonos/help/support.dhf Xshare/diakonos/help/switch-buffers.dhf Xshare/diakonos/help/tabs.dhf Xshare/diakonos/help/undo.dhf Xshare/diakonos/help/uninstall.dhf Xshare/diakonos/help/welcome.dhf Xshare/diakonos/help/word-wrap.dhf Xshare/doc/diakonos-0.8.10/CHANGELOG Xshare/doc/diakonos-0.8.10/LICENCE Xshare/doc/diakonos-0.8.10/README X@dirrm %%RUBY_SITELIBDIR%%/diakonos/buffer X@dirrm %%RUBY_SITELIBDIR%%/diakonos/core-ext X@dirrm %%RUBY_SITELIBDIR%%/diakonos/display X@dirrm %%RUBY_SITELIBDIR%%/diakonos/functions X@dirrm %%RUBY_SITELIBDIR%%/diakonos/vendor X@dirrm share/diakonos/help X@dirrm share/diakonos X@dirrm share/doc/diakonos-0.8.10 X@dirrm %%RUBY_SITELIBDIR%%/diakonos bb6e6476a4dc50f5d28507105574f0f9 exit >Release-Note: >Audit-Trail: >Unformatted: From c.petrik.sosa at gmail.com Wed Jul 1 09:20:03 2009 From: c.petrik.sosa at gmail.com (Chris Petrik) Date: Wed Jul 1 09:20:10 2009 Subject: ports/136213: new port editors/diakonos Message-ID: <200907010920.n619K2uS065638@freefall.freebsd.org> The following reply was made to PR ports/136213; it has been noted by GNATS. From: Chris Petrik To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/136213: new port editors/diakonos Date: Wed, 01 Jul 2009 04:11:16 -0500 The port should work without issue, as I now test it using tinderbox before submitting. I would very much appreciate it if I could get suggestions or ways to do it better privately please :) Chris From c.petrik.sosa at gmail.com Wed Jul 1 09:50:03 2009 From: c.petrik.sosa at gmail.com (Chris Petrik) Date: Wed Jul 1 09:50:10 2009 Subject: ports/136142: Removal of irc/kvirc-devel Message-ID: <200907010950.n619o3m9090605@freefall.freebsd.org> The following reply was made to PR ports/136142; it has been noted by GNATS. From: Chris Petrik To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/136142: Removal of irc/kvirc-devel Date: Wed, 01 Jul 2009 04:48:05 -0500 Another idea would be to check the latest from SVN, tar it up and put it on a site, and add in the site as mastersite. every couple of days update the devel branch and make sure it compiles/installs/deinstalls. it's devel so it will be updated constantly. and may break obviously. :) From aragon at phat.za.net Wed Jul 1 10:20:01 2009 From: aragon at phat.za.net (Aragon Gouveia) Date: Wed Jul 1 10:20:08 2009 Subject: ports/136214: New port: x11-wm/scrotwm scrotwm X11 window manager Message-ID: <200907011018.n61AIxHF043100@www.freebsd.org> >Number: 136214 >Category: ports >Synopsis: New port: x11-wm/scrotwm scrotwm X11 window manager >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 10:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Aragon Gouveia >Release: 7.1-STABLE >Organization: >Environment: FreeBSD igor.geek.sh 7.1-STABLE FreeBSD 7.1-STABLE #3: Wed Mar 11 14:24:50 SAST 2009 root@igor.geek.sh:/usr/src/sys/amd64/compile/IGOR amd64 >Description: Scrotwm is a small dynamic tiling window manager for X11. It tries to stay out of the way so that valuable screen real estate can be used for much more important stuff. It has sane defaults and does not require one to learn a language to do any configuration. It was written by hackers for hackers and it strives to be small, compact and fast. It was largely inspired by xmonad and dwm. Both are fine products but suffer from things like: crazy-unportable-language-syndrome, silly defaults, asymmetrical window layout, "how hard can it be?" and good old NIH. Nevertheless dwm was a phenomenal resource and many good ideas and code was borrowed from it. On the other hand xmonad has great defaults, key bindings and xinerama support but is crippled by not being written in C. WWW: http://www.peereboom.us/scrotwm/html/scrotwm.html >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # scrotwm # scrotwm/files # scrotwm/files/clock_format.patch # scrotwm/files/spawn_menu_colourfix.patch # scrotwm/files/spawn_menu_atbottom.patch # scrotwm/files/patch-globalconfig # scrotwm/Makefile # scrotwm/distinfo # scrotwm/pkg-descr # echo c - scrotwm mkdir -p scrotwm > /dev/null 2>&1 echo c - scrotwm/files mkdir -p scrotwm/files > /dev/null 2>&1 echo x - scrotwm/files/clock_format.patch sed 's/^X//' >scrotwm/files/clock_format.patch << '297846d790ce1b6a4a0a09c955a8ee1d' X--- scrotwm.c.orig 2009-06-29 03:46:08.000000000 +0200 X+++ scrotwm.c 2009-06-28 10:07:24.000000000 +0200 X@@ -182,6 +182,7 @@ X int bar_verbose = 1; X int bar_height = 0; X int clock_enabled = 1; X+char clock_format[31] = "%a %b %d %R %Z %Y"; X pid_t bar_pid; X GC bar_gc; X XGCValues bar_gcv; X@@ -557,6 +558,7 @@ X X /* conf file stuff */ X #define SWM_CONF_WS "\n= \t" X+#define SWM_CONF_VAL_WS "\n\t" X #define SWM_CONF_FILE "scrotwm.conf" X int X conf_load(char *filename) X@@ -594,7 +596,7 @@ X if ((var = strsep(&cp, SWM_CONF_WS)) == NULL || cp == NULL) X break; X cp += (long)strspn(cp, SWM_CONF_WS); X- if ((val = strsep(&cp, SWM_CONF_WS)) == NULL) X+ if ((val = strsep(&cp, SWM_CONF_VAL_WS)) == NULL) X break; X X DNPRINTF(SWM_D_MISC, "conf_load: %s=%s\n",var ,val); X@@ -624,6 +626,8 @@ X case 'c': X if (!strncmp(var, "clock_enabled", strlen("clock_enabled"))) X clock_enabled = atoi(val); X+ else if (!strncmp(var, "clock_format", strlen("clock_format"))) X+ strlcpy(clock_format, val, 31); X else if (!varmatch(var, "color_focus", &i)) X setscreencolor(val, i, SWM_S_COLOR_FOCUS); X else if (!varmatch(var, "color_unfocus", &i)) X@@ -779,12 +783,12 @@ X else { X time(&tmt); X localtime_r(&tmt, &tm); X- strftime(s, sizeof s, "%a %b %d %R %Z %Y ", &tm); X+ strftime(s, sizeof s, clock_format, &tm); X } X for (i = 0; i < ScreenCount(display); i++) { X x = 1; X TAILQ_FOREACH(r, &screens[i].rl, entry) { X- snprintf(loc, sizeof loc, "%d:%d %s%s %s", X+ snprintf(loc, sizeof loc, "%d:%d %s %s %s", X x++, r->ws->idx + 1, s, bar_ext, bar_vertext); X bar_print(r, loc); X } 297846d790ce1b6a4a0a09c955a8ee1d echo x - scrotwm/files/spawn_menu_colourfix.patch sed 's/^X//' >scrotwm/files/spawn_menu_colourfix.patch << '4d2fdd98c382a625c9f8783feaa15040' X--- scrotwm.c.orig 2009-06-29 03:46:08.000000000 +0200 X+++ scrotwm.c 2009-06-28 10:07:24.000000000 +0200 X@@ -1139,7 +1143,7 @@ X spawn_menu[SWM_MENU_FN] = bar_fonts[bar_fidx]; X spawn_menu[SWM_MENU_NB] = r->s->c[SWM_S_COLOR_BAR].name; X spawn_menu[SWM_MENU_NF] = r->s->c[SWM_S_COLOR_BAR_FONT].name; X- spawn_menu[SWM_MENU_SB] = r->s->c[SWM_S_COLOR_BAR_BORDER].name; X+ spawn_menu[SWM_MENU_SB] = r->s->c[SWM_S_COLOR_BAR_FONT].name; X spawn_menu[SWM_MENU_SF] = r->s->c[SWM_S_COLOR_BAR].name; X X spawn(r, args); 4d2fdd98c382a625c9f8783feaa15040 echo x - scrotwm/files/spawn_menu_atbottom.patch sed 's/^X//' >scrotwm/files/spawn_menu_atbottom.patch << '813e12c00447524db8c05acbb274acbf' X--- scrotwm.c.orig 2009-06-29 03:46:08.000000000 +0200 X+++ scrotwm.c 2009-06-28 10:07:24.000000000 +0200 X@@ -199,7 +200,7 @@ X char *spawn_lock[] = { "xlock", NULL }; X char *spawn_initscr[] = { "initscreen.sh", NULL }; X char *spawn_menu[] = { "dmenu_run", "-fn", NULL, "-nb", NULL, X- "-nf", NULL, "-sb", NULL, "-sf", NULL, NULL }; X+ "-nf", NULL, "-sb", NULL, "-sf", NULL, "-b", NULL }; X X #define SWM_MENU_FN (2) X #define SWM_MENU_NB (4) 813e12c00447524db8c05acbb274acbf echo x - scrotwm/files/patch-globalconfig sed 's/^X//' >scrotwm/files/patch-globalconfig << '19df3de6b7558e0806fa27aa40efd8b2' X--- scrotwm.c.orig 2009-06-29 04:32:04.000000000 +0200 X+++ scrotwm.c 2009-06-29 04:32:13.000000000 +0200 X@@ -3499,7 +3499,7 @@ X cfile = conf; X } else { X /* try global conf file */ X- snprintf(conf, sizeof conf, "/etc/%s", SWM_CONF_FILE); X+ snprintf(conf, sizeof conf, "/usr/local/etc/%s", SWM_CONF_FILE); X if (!stat(conf, &sb)) X if (S_ISREG(sb.st_mode)) X cfile = conf; X--- scrotwm.1.orig 2009-06-29 04:37:19.000000000 +0200 X+++ scrotwm.1 2009-06-29 04:37:26.000000000 +0200 X@@ -66,7 +66,7 @@ X .Pa ~/.scrotwm.conf . X If that file is unavailable, X it then tries to open the global configuration file X-.Pa /etc/scrotwm.conf . X+.Pa /usr/local/etc/scrotwm.conf . X .Pp X The format of the file is \*(Ltkeyword\*(Gt = \*(Ltsetting\*(Gt. X For example: 19df3de6b7558e0806fa27aa40efd8b2 echo x - scrotwm/Makefile sed 's/^X//' >scrotwm/Makefile << '22ec8049968c0a93a52f5b91d6ea9e1f' X# New ports collection makefile for: scrotwm X# Date created: June 29, 2009 X# Whom: Aragon Gouveia X# X XPORTNAME= scrotwm XPORTVERSION= 0.9.5 XCATEGORIES= x11-wm XMASTER_SITES= http://www.peereboom.us/scrotwm/snapshot/ XEXTRACT_SUFX= .tgz X XMAINTAINER= aragon@phat.za.net XCOMMENT= A small, dynamic tiling window manager for X11 X XOPTIONS= DMENU "Depend on x11/dmenu" On \ X DMENU_COLFIX "Fix inverted/select colour on dmenu" On \ X DMENU_BOTTOM "dmenu at screen bottom (instead of top)" Off \ X CLOCKFORMAT "Configurable strftime(3) clock format" Off X X.include X XUSE_XORG= x11 xproto xrandr X XMAN1= scrotwm.1 XPLIST_FILES= bin/scrotwm lib/swmhack.so etc/scrotwm.conf X X.if defined(WITH_DMENU) XRUN_DEPENDS= dmenu:${PORTSDIR}/x11/dmenu X.endif X.if defined(WITH_DMENU_COLFIX) XEXTRA_PATCHES+= ${FILESDIR}/spawn_menu_colourfix.patch X.endif X.if defined(WITH_DMENU_BOTTOM) XEXTRA_PATCHES+= ${FILESDIR}/spawn_menu_atbottom.patch X.endif X.if defined(WITH_CLOCKFORMAT) XEXTRA_PATCHES+= ${FILESDIR}/clock_format.patch X.endif X Xdo-build: X ${CC} ${CFLAGS} -I${X11BASE}/include -DSWM_DEBUG \ X -I${WRKSRC}/linux -lutil -L${X11BASE}/lib -lX11 -lXrandr \ X -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c X ${CC} ${CFLAGS} -I${X11BASE}/include -shared -fPIC \ X -o ${WRKSRC}/swmhack.so ${WRKSRC}/lib/swm_hack.c X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/swmhack.so ${PREFIX}/lib X ${INSTALL_DATA} ${WRKSRC}/scrotwm.conf ${PREFIX}/etc X ${INSTALL_MAN} ${WRKSRC}/scrotwm.1 ${PREFIX}/man/man1 X Xpost-install: X.if defined(WITH_CLOCKFORMAT) X @${ECHO_MSG} X @${ECHO_MSG} "CLOCK FORMAT" X @${ECHO_MSG} X @${ECHO_MSG} "To set the clock's format, add a clock_format directive" X @${ECHO_MSG} "to your configuration file and set it to a format string" X @${ECHO_MSG} "following strftime(3) convention." X @${ECHO_MSG} X.endif X X.include 22ec8049968c0a93a52f5b91d6ea9e1f echo x - scrotwm/distinfo sed 's/^X//' >scrotwm/distinfo << 'd07c61f12f17478b4f12607dec2c4b28' XMD5 (scrotwm-0.9.5.tgz) = d0ae2cdcaefa953627a250a183261670 XSHA256 (scrotwm-0.9.5.tgz) = 35a7e3ab805fc680459390e2e165f224268cec39bceb9679385c86a3054035ae XSIZE (scrotwm-0.9.5.tgz) = 36134 d07c61f12f17478b4f12607dec2c4b28 echo x - scrotwm/pkg-descr sed 's/^X//' >scrotwm/pkg-descr << '5f9b52ff2216db9937d6dcf87b080326' XScrotwm is a small dynamic tiling window manager for X11. It tries to stay out Xof the way so that valuable screen real estate can be used for much more Ximportant stuff. It has sane defaults and does not require one to learn a Xlanguage to do any configuration. It was written by hackers for hackers and it Xstrives to be small, compact and fast. X XIt was largely inspired by xmonad and dwm. Both are fine products but suffer Xfrom things like: crazy-unportable-language-syndrome, silly defaults, Xasymmetrical window layout, "how hard can it be?" and good old NIH. XNevertheless dwm was a phenomenal resource and many good ideas and code was Xborrowed from it. On the other hand xmonad has great defaults, key bindings Xand xinerama support but is crippled by not being written in C. X XWWW: http://www.peereboom.us/scrotwm/html/scrotwm.html 5f9b52ff2216db9937d6dcf87b080326 exit >Release-Note: >Audit-Trail: >Unformatted: From vovkasm at gmail.com Wed Jul 1 10:30:02 2009 From: vovkasm at gmail.com (Vladimir Timofeev) Date: Wed Jul 1 10:30:08 2009 Subject: ports/136215: [MAINTAINER] databases/p5-DBIx-Class-FrozenColumns: update to 0.08 Message-ID: <200907011023.n61ANAUq052543@veda.park.rambler.ru> >Number: 136215 >Category: ports >Synopsis: [MAINTAINER] databases/p5-DBIx-Class-FrozenColumns: update to 0.08 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 10:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Vladimir Timofeev >Release: FreeBSD 7.1-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD veda.park.rambler.ru 7.1-RELEASE-p2 FreeBSD 7.1-RELEASE-p2 #0: Thu Feb 12 22:34:21 MSK 2009 >Description: - Update to 0.08 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-DBIx-Class-FrozenColumns-0.08.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-FrozenColumns/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 20 Jan 2009 08:22:13 -0000 1.2 +++ Makefile 1 Jul 2009 10:18:40 -0000 @@ -6,7 +6,7 @@ # PORTNAME= DBIx-Class-FrozenColumns -PORTVERSION= 0.07 +PORTVERSION= 0.08 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-FrozenColumns/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 20 Jan 2009 08:22:13 -0000 1.2 +++ distinfo 1 Jul 2009 10:18:40 -0000 @@ -1,3 +1,3 @@ -MD5 (DBIx-Class-FrozenColumns-0.07.tar.gz) = eedd6c3c52ef855297767f7d698b0bb3 -SHA256 (DBIx-Class-FrozenColumns-0.07.tar.gz) = 5eb7efe05a6d1d9b5536988b66715e49861ea3f1e207e9ecf63203e6ddece699 -SIZE (DBIx-Class-FrozenColumns-0.07.tar.gz) = 23686 +MD5 (DBIx-Class-FrozenColumns-0.08.tar.gz) = f48230bb02da5e2f94cd2ed20b3f5fdf +SHA256 (DBIx-Class-FrozenColumns-0.08.tar.gz) = 1773965c64c830cd52ee07eb50c39984d9ccb50d82869834eb6389a6ae4d444e +SIZE (DBIx-Class-FrozenColumns-0.08.tar.gz) = 24536 --- p5-DBIx-Class-FrozenColumns-0.08.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From yasu at utahime.org Wed Jul 1 12:40:07 2009 From: yasu at utahime.org (Yasuhiro KIMURA) Date: Wed Jul 1 12:40:18 2009 Subject: ports/136217: [PATCH] mail/maildrop: Update to 2.2 Message-ID: <20090701121144.83D40175CF@eastasia.home.utahime.org> >Number: 136217 >Category: ports >Synopsis: [PATCH] mail/maildrop: Update to 2.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 12:40:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD xxxx 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Fri Jun 26 02:11:21 JST 2009 xxxx i386 >Description: Update to 2.2. >How-To-Repeat: >Fix: --- patch-maildrop begins here --- Index: Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/mail/maildrop/Makefile,v retrieving revision 1.55 diff -u -r1.55 Makefile --- Makefile 28 Mar 2009 17:53:20 -0000 1.55 +++ Makefile 1 Jul 2009 10:31:19 -0000 @@ -18,10 +18,11 @@ # MAILDROP_LOG_COLUMNS lenght of 'File:' line in log - 8; default: 72 PORTNAME= maildrop -PORTVERSION= 2.0.4 +PORTVERSION= 2.2 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= courier +DISTVERSIONSUFFIX= .0 MAINTAINER= garga@FreeBSD.org COMMENT= Mail delivery agent (MDA) with filtering abilities Index: distinfo =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/mail/maildrop/distinfo,v retrieving revision 1.22 diff -u -r1.22 distinfo --- distinfo 6 Jun 2007 01:57:14 -0000 1.22 +++ distinfo 1 Jul 2009 09:13:10 -0000 @@ -1,3 +1,3 @@ -MD5 (maildrop-2.0.4.tar.bz2) = 6a760efe429716ab0be67a1ddc554ed7 -SHA256 (maildrop-2.0.4.tar.bz2) = 573032d6525ac7454377eb400372c363446bb3d9abd9249da9cf6676aef85671 -SIZE (maildrop-2.0.4.tar.bz2) = 2286125 +MD5 (maildrop-2.2.0.tar.bz2) = 1fd5293c73adb64a01cb3d3e59e54618 +SHA256 (maildrop-2.2.0.tar.bz2) = 15c99c3c1e7b1d7c078da92bcf643da411be414994eff7f387e3302baa189b3f +SIZE (maildrop-2.2.0.tar.bz2) = 2412329 Index: files/patch-Makefile.in =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/mail/maildrop/files/patch-Makefile.in,v retrieving revision 1.5 diff -u -r1.5 patch-Makefile.in --- files/patch-Makefile.in 21 Feb 2005 11:31:55 -0000 1.5 +++ files/patch-Makefile.in 1 Jul 2009 09:22:19 -0000 @@ -1,11 +1,11 @@ ---- Makefile.in.orig Sat Jan 22 23:54:33 2005 -+++ Makefile.in Sat Jan 22 23:54:58 2005 -@@ -230,7 +230,7 @@ - SUBDIRS = numlib liblock unicode rfc822 rfc2045 gdbmobj bdbobj maildir maildrop - EXTRA_DIST = README.html INSTALL.html UPGRADE.html README.postfix maildroptips.txt automake.fix COPYING.GPL manpage.css - scriptdir = $(pkgdatadir)/scripts +--- Makefile.in.orig 2009-06-28 04:13:40.000000000 +0900 ++++ Makefile.in 2009-07-01 18:21:44.000000000 +0900 +@@ -259,7 +259,7 @@ + host_cpu = @host_cpu@ + host_os = @host_os@ + host_vendor = @host_vendor@ -htmldir = $(pkgdatadir)/html +htmldir = $(datadir)/doc/@PACKAGE@ - DELIVERQUOTAHTMLSOURCE = maildirquota.html deliverquota.html - @INSTALL_DELIVERQUOTA_FALSE@DELIVERQUOTAHTML = - @INSTALL_DELIVERQUOTA_TRUE@DELIVERQUOTAHTML = $(DELIVERQUOTAHTMLSOURCE) + includedir = @includedir@ + infodir = @infodir@ + install_sh = @install_sh@ Index: files/patch-dbobj.h.in =================================================================== RCS file: files/patch-dbobj.h.in diff -N files/patch-dbobj.h.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-dbobj.h.in 1 Jul 2009 11:07:17 -0000 @@ -0,0 +1,14 @@ +--- dbobj.h.in.orig 2000-07-02 08:41:53.000000000 +0900 ++++ dbobj.h.in 2009-07-01 19:58:56.000000000 +0900 +@@ -29,9 +29,9 @@ + #define dbobj_nextkey gdbmobj_nextkey + + #define DBNAME "gdbm" +-#endif + +-#if @USE_DB@ ++#else ++ + #include "bdbobj/bdbobj.h" + #define DbObj BDbObj + Index: files/patch-makedat-Makefile.in =================================================================== RCS file: files/patch-makedat-Makefile.in diff -N files/patch-makedat-Makefile.in --- files/patch-makedat-Makefile.in 6 Jun 2007 01:57:14 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,12 +0,0 @@ ---- makedat/Makefile.in.orig Sat Apr 28 12:58:01 2007 -+++ makedat/Makefile.in Sat Apr 28 12:58:31 2007 -@@ -41,8 +41,7 @@ - POST_UNINSTALL = : - build_triplet = @build@ - host_triplet = @host@ --noinst_PROGRAMS = @makedatprog_target@ --EXTRA_PROGRAMS = makedatprog$(EXEEXT) -+noinst_PROGRAMS = makedatprog$(EXEEXT) - DIST_COMMON = $(am__configure_deps) $(srcdir)/../config.guess \ - $(srcdir)/../config.sub $(srcdir)/../depcomp \ - $(srcdir)/../install-sh $(srcdir)/../ltmain.sh \ --- patch-maildrop ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 12:40:22 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 12:40:28 2009 Subject: ports/136217: [PATCH] mail/maildrop: Update to 2.2 Message-ID: <200907011240.n61CeMZ8029239@freefall.freebsd.org> Synopsis: [PATCH] mail/maildrop: Update to 2.2 Responsible-Changed-From-To: freebsd-ports-bugs->garga Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 12:40:21 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136217 From jadawin at FreeBSD.org Wed Jul 1 13:37:00 2009 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Wed Jul 1 13:37:07 2009 Subject: ports/136215: [MAINTAINER] databases/p5-DBIx-Class-FrozenColumns: update to 0.08 Message-ID: <200907011337.n61Db0NK072972@freefall.freebsd.org> Synopsis: [MAINTAINER] databases/p5-DBIx-Class-FrozenColumns: update to 0.08 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: jadawin Responsible-Changed-When: Wed Jul 1 13:37:00 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136215 From jdc at parodius.com Wed Jul 1 15:00:10 2009 From: jdc at parodius.com (Jeremy Chadwick) Date: Wed Jul 1 15:00:17 2009 Subject: ports/136220: Add WITH_STATUSCOLORS knob + statuscolors patch Message-ID: <20090701144543.4352833C43@icarus.home.lan> >Number: 136220 >Category: ports >Synopsis: Add WITH_STATUSCOLORS knob + statuscolors patch >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 15:00:09 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Jeremy Chadwick >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD icarus.home.lan 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu May 21 07:50:35 PDT 2009 root@icarus.home.lan:/usr/obj/usr/src/sys/X7SBA_RELENG_7_amd64 amd64 >Description: Adds support for the (optional) statuscolors patch, via the knob WITH_STATUSCOLORS. Official patch page is here: http://bilious.homelinux.org/?142 This patch conflicts with WITH_HPMON, so an .ifdef check is done to ensure both are not used together (using IGNORE to bail out). Also note that the version of the statuscolors patch provided is a fixed version; the stock version causes problems for users who prefer IBMgraphics (CP437). The fix is mentioned in one of the comments at the above web page, and my patch includes that fix. It would be good for the maintainer to add the patch to his/her public_distfiles/ directory on freefall so that there are two available sites for the patch. >How-To-Repeat: Tested on FreeBSD 7.2-STABLE, i386 and amd64. >Fix: n/a diff -ruN nethack34.orig/Makefile nethack34/Makefile --- nethack34.orig/Makefile 2009-05-09 04:01:06.000000000 -0700 +++ nethack34/Makefile 2009-07-01 05:41:01.000000000 -0700 @@ -45,16 +45,28 @@ GRAPHICS= GNOME_GRAPHICS .elif ${PKGNAMESUFFIX} == "-nox11" GRAPHICS= # none +# +# Patch notes: +# 1) hpmon and statuscolors conflict with one another +# 2) menucolors patch must be applied before statuscolors +# +.if defined(WITH_HPMON) && defined(WITH_STATUSCOLORS) +IGNORE= you cannot enable both HPMON and STATUSCOLORS +.endif .if defined(WITH_MENUCOLORS) PATCHFILES+= nh343-menucolor.diff PATCH_SITES+= http://bilious.homelinux.org/~paxed/nethack/ PATCH_DIST_STRIP= -p1 CFLAGS+= -DMENU_COLOR_REGEX_POSIX .endif +.if defined(WITH_STATUSCOLORS) +PATCHFILES+= nh343-statuscolors.fixed.patch +PATCH_SITES+= http://jdc.parodius.com/nethack/ +PATCH_DIST_STRIP= -p1 +.endif .if defined(WITH_HPMON) PATCHFILES+= hpmon.diff -PATCH_SITES+= http://www.netsonic.fi/~walker/nh/ \ - ${MASTER_SITE_LOCAL:S|%SUBDIR%|koitsu|} +PATCH_SITES+= http://www.netsonic.fi/~walker/nh/ PATCH_DIST_STRIP= -p1 CFLAGS+= -DHPMON .endif diff -ruN nethack34.orig/distinfo nethack34/distinfo --- nethack34.orig/distinfo 2008-05-27 01:22:29.000000000 -0700 +++ nethack34/distinfo 2009-07-01 05:41:17.000000000 -0700 @@ -4,6 +4,6 @@ MD5 (nh343-menucolor.diff) = ade00f9cb51f1b0140557d329d56844c SHA256 (nh343-menucolor.diff) = 21f37f759686ac405f1032648d38977096930200e04aeec989d8a450d5532733 SIZE (nh343-menucolor.diff) = 20010 -MD5 (hpmon.diff) = a8e5cab6a93100612d428f3973dc418f -SHA256 (hpmon.diff) = d9369768f81f06e75b7349609bdff6fd9deff226452f04a89597190e4489074f -SIZE (hpmon.diff) = 2041 +MD5 (nh343-statuscolors.fixed.patch) = 2d0cf44770867f42e7b5b28951af048b +SHA256 (nh343-statuscolors.fixed.patch) = 1c0c7a5e7a5cd564b5bd3fa790393f13ea584bdb0cbd4c34942e551cb9a6656e +SIZE (nh343-statuscolors.fixed.patch) = 19090 >Release-Note: >Audit-Trail: >Unformatted: From wenheping at gmail.com Wed Jul 1 15:10:01 2009 From: wenheping at gmail.com (Wen Heping) Date: Wed Jul 1 15:10:16 2009 Subject: ports/136221: [NEW PORT]devel/py-ToscaWidgets:A python framework for building reusable web components Message-ID: <200907011500.n61F0AYp036768@www.freebsd.org> >Number: 136221 >Category: ports >Synopsis: [NEW PORT]devel/py-ToscaWidgets:A python framework for building reusable web components >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 15:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-CURRENT >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Mar 22 22:12:06 CST 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: ToscaWidgets is a framework for building reusable web components. The system allows a web developer to use a complex widget in their application with ease - the internal complexity of the widget is hidden. This helps rapidly develop compelling web applications. WWW: http://toscawidgets.org/ (prepare for tg2) >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-ToscaWidgets # py-ToscaWidgets/pkg-descr # py-ToscaWidgets/Makefile # py-ToscaWidgets/distinfo # py-ToscaWidgets/pkg-plist # echo c - py-ToscaWidgets mkdir -p py-ToscaWidgets > /dev/null 2>&1 echo x - py-ToscaWidgets/pkg-descr sed 's/^X//' >py-ToscaWidgets/pkg-descr << 'acea143296ec51b55686b6e3664de3f7' XToscaWidgets is a framework for building reusable web components. XThe system allows a web developer to use a complex widget in their Xapplication with ease - the internal complexity of the widget is Xhidden. This helps rapidly develop compelling web applications. X XWWW: http://toscawidgets.org/ acea143296ec51b55686b6e3664de3f7 echo x - py-ToscaWidgets/Makefile sed 's/^X//' >py-ToscaWidgets/Makefile << '701a96129546ec7ae049122ddd414b5a' X# New ports collection makefile for: py-ToscaWidgets X# Date created: 1st July, 2009 X# Whom: Wen Heping X# X# $FreeBSD$ X XPORTNAME= ToscaWidgets XPORTVERSION= 0.9.7.1 XCATEGORIES= devel python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= wenheping@gmail.com XCOMMENT= A python framework for building reusable web components X XBUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}webob>=0:${PORTSDIR}/www/py-webob \ X ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:${PORTSDIR}/devel/py-simplejson XRUN_DEPENDS= ${BUILD_DEPENDS} X XUSE_PYTHON= 2.4+ XUSE_PYDISTUTILS= easy_install X X.include 701a96129546ec7ae049122ddd414b5a echo x - py-ToscaWidgets/distinfo sed 's/^X//' >py-ToscaWidgets/distinfo << '81c62eaffc2daf2053d8d2a1b443db7a' XMD5 (ToscaWidgets-0.9.7.1.tar.gz) = 3994904d8b0091ccce357eb61ab1caec XSHA256 (ToscaWidgets-0.9.7.1.tar.gz) = fa083724e6827f7ab3273a52c6e49edc4e8db67886a91e69edac238381772b24 XSIZE (ToscaWidgets-0.9.7.1.tar.gz) = 50936 81c62eaffc2daf2053d8d2a1b443db7a echo x - py-ToscaWidgets/pkg-plist sed 's/^X//' >py-ToscaWidgets/pkg-plist << 'a7607604915366a49eb469544e24ba91' X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/namespace_packages.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/api.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/api.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/api.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/base.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/base.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/base.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/command.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/command.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/command.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/engine_plugin.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/engine_plugin.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/engine_plugin.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/exceptions.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/exceptions.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/exceptions.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/js.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/js.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/js.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/mako_util.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/mako_util.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/mako_util.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/meta.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/meta.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/meta.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/middleware.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/middleware.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/middleware.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/registry.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/registry.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/registry.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/resource_injector.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/resource_injector.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/resource_injector.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/resources.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/resources.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/resources.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/testutil.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/testutil.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/testutil.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/util.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/util.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/util.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/view.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/view.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core/view.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/base.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/base.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/base.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/cp2.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/cp2.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/cp2.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/cp3.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/cp3.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/cp3.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/pylonshf.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/pylonshf.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/pylonshf.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/tg.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/tg.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/tg.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/wsgi.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/wsgi.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods/wsgi.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_template.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_template.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_template.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/+egg+.egg-info/paster_plugins.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/MANIFEST.in_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/docs/conf.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/docs/index.rst_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/setup.cfg_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/setup.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tests/__init__.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tests/test_widget.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tw/+package+/__init__.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tw/+package+/release.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tw/+package+/samples.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tw/+package+/widgets.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tw/__init__.py_tmpl X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/release.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/release.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/release.pyo X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/core X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/mods X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/+egg+.egg-info X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/docs X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tests X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tw/+package+ X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template/tw X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates/widget_template X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw/paste_templates X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/tw X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% a7607604915366a49eb469544e24ba91 exit >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 15:10:22 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 15:10:28 2009 Subject: ports/136221: [NEW PORT]devel/py-ToscaWidgets:A python framework for building reusable web components Message-ID: <200907011510.n61FALES044120@freefall.freebsd.org> Synopsis: [NEW PORT]devel/py-ToscaWidgets:A python framework for building reusable web components Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 15:10:20 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136221 From lapo at lapo.it Wed Jul 1 15:20:01 2009 From: lapo at lapo.it (Lapo Luchini) Date: Wed Jul 1 15:20:08 2009 Subject: ports/136222: [MAINTAINER] www/xpi-searchstatus: update to 1.30 Message-ID: <4A4B7E72.7090008@lapo.it> >Number: 136222 >Category: ports >Synopsis: [MAINTAINER] www/xpi-searchstatus: update to 1.30 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 15:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Lapo Luchini >Release: FreeBSD 7.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD lapo.andxor.it 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:14:35 UTC 2009 >Description: - Update to 1.30 (works with Firefox 3.5) Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- xpi-searchstatus-1.30.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/xpi-searchstatus.orig/Makefile /usr/ports/www/xpi-searchstatus/Makefile --- /usr/ports/www/xpi-searchstatus.orig/Makefile 2009-07-01 17:11:17.000000000 +0200 +++ /usr/ports/www/xpi-searchstatus/Makefile 2009-07-01 17:11:25.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= searchstatus -PORTVERSION= 1.27 +PORTVERSION= 1.30 DISTVERSIONSUFFIX= -fx CATEGORIES= www diff -ruN --exclude=CVS /usr/ports/www/xpi-searchstatus.orig/distinfo /usr/ports/www/xpi-searchstatus/distinfo --- /usr/ports/www/xpi-searchstatus.orig/distinfo 2009-07-01 17:11:17.000000000 +0200 +++ /usr/ports/www/xpi-searchstatus/distinfo 2009-07-01 17:11:40.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (xpi/searchstatus-1.27-fx.xpi) = 05e0536675b62299e3c882a493cfe248 -SHA256 (xpi/searchstatus-1.27-fx.xpi) = 4f622e625d8b9cf51939f89457ec4147f9400a49cd1cbc03563e95a2929d7d1b -SIZE (xpi/searchstatus-1.27-fx.xpi) = 46679 +MD5 (xpi/searchstatus-1.30-fx.xpi) = 984986357b4c1285c8ab015dfd292f55 +SHA256 (xpi/searchstatus-1.30-fx.xpi) = 7844b55140269f6de53e4dbaceaa8db72f72f1c7503403d9cb731e14a1095827 +SIZE (xpi/searchstatus-1.30-fx.xpi) = 65760 --- xpi-searchstatus-1.30.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Wed Jul 1 15:22:07 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Wed Jul 1 15:22:13 2009 Subject: ports/136222: [MAINTAINER] www/xpi-searchstatus: update to 1.30 Message-ID: <200907011522.n61FM7hR056442@freefall.freebsd.org> Synopsis: [MAINTAINER] www/xpi-searchstatus: update to 1.30 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jul 1 15:22:06 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136222 From dhn at FreeBSD.org Wed Jul 1 15:35:15 2009 From: dhn at FreeBSD.org (dhn@FreeBSD.org) Date: Wed Jul 1 15:35:22 2009 Subject: ports/136214: New port: x11-wm/scrotwm scrotwm X11 window manager Message-ID: <200907011535.n61FZFL8067952@freefall.freebsd.org> Synopsis: New port: x11-wm/scrotwm scrotwm X11 window manager Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Wed Jul 1 15:35:14 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136214 From c0rn at o2.pl Wed Jul 1 17:00:11 2009 From: c0rn at o2.pl (Pawel Pekala) Date: Wed Jul 1 17:00:22 2009 Subject: ports/136224: [maintainer update] mail/libetpan: update to version 0.58 Message-ID: <1246466037.75186@caprica.slowicza.org> >Number: 136224 >Category: ports >Synopsis: [maintainer update] mail/libetpan: update to version 0.58 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 17:00:10 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD 7.2-RELEASE-p2 #4: Tue Jun 30 20:40:20 CEST 2009 root@caprica.slowicza.org:/usr/obj/usr/src/sys/MINI >Description: Update to version 0.58 Changes: Improvements on SSL implementation >How-To-Repeat: >Fix: --- libetpan.diff begins here --- diff -urN /usr/ports/mail/libetpan/Makefile libetpan/Makefile --- /usr/ports/mail/libetpan/Makefile 2009-01-25 13:03:53.000000000 +0100 +++ libetpan/Makefile 2009-07-01 17:46:30.000000000 +0200 @@ -7,8 +7,7 @@ # PORTNAME= libetpan -PORTVERSION= 0.57 -PORTREVISION= 1 +PORTVERSION= 0.58 CATEGORIES= mail ipv6 MASTER_SITES= SF @@ -32,8 +31,6 @@ OPTIONS= GNUTLS "Enable gnuTLS support" off \ IPV6 "Enable ipv6 support." on -.include - .if defined(WITH_GNUTLS) LIB_DEPENDS+= gnutls.26:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+= --without-openssl --with-gnutls @@ -51,4 +48,4 @@ post-patch: @${REINPLACE_CMD} -e 's|2.61|2.62|g' ${WRKSRC}/aclocal.m4 -.include +.include diff -urN /usr/ports/mail/libetpan/distinfo libetpan/distinfo --- /usr/ports/mail/libetpan/distinfo 2009-01-12 15:45:04.000000000 +0100 +++ libetpan/distinfo 2009-07-01 17:35:31.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (libetpan-0.57.tar.gz) = 8ce8c6c071e81884a475b12b7f9a9cc0 -SHA256 (libetpan-0.57.tar.gz) = 1f3fda5c9e2961d1a6298dc8aadae321493d37727d8db45bc2e8d58f20547011 -SIZE (libetpan-0.57.tar.gz) = 1676498 +MD5 (libetpan-0.58.tar.gz) = bf20b5c0548f06b94bc588afdf5b3436 +SHA256 (libetpan-0.58.tar.gz) = 49cc237b1fdb2da9b03ff63f61920045c66bb830380d76f783a1868738f167bb +SIZE (libetpan-0.58.tar.gz) = 1672554 --- libetpan.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From mrkvrg at acm.org Wed Jul 1 17:30:04 2009 From: mrkvrg at acm.org (marek) Date: Wed Jul 1 17:30:10 2009 Subject: ports/136227: Gramps Crashes When Opening a Family File Message-ID: <200907011721.n61HL6Sv045607@www.freebsd.org> >Number: 136227 >Category: ports >Synopsis: Gramps Crashes When Opening a Family File >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 17:30:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: marek >Release: 7.2 i386 >Organization: >Environment: FreeBSD gecko3.bs.net 7.2-STABLE FreeBSD 7.2-STABLE #0: Mon Jun 15 12:39:30 EDT 2009 root@gecko3.bs.net:/usr/obj/usr/src/sys/GECKO-7.2.1 i386 >Description: The genealogy program science/gramps will crash when using an existing file or trying to create a new one. All ports are up to date on the above cited machine, including gramps itself. Did some research on the web and discovered that there was imcompatibility between the program and Berkley databases. According to pkg_info this machine has the following up to date files: GNOME gramps 3.0.4-1 db41-4.1.25_4 The Berkeley DB package, revision 4.1 db42-4.2.52_5 The Berkeley DB package, revision 4.2 db43-4.3.29_1 The Berkeley DB package, revision 4.3 py26-bsddb-2.6.2_2 Python bindings to the Berkeley DB library >How-To-Repeat: 1. Start gramps ; 2. Click on "New Button" to create new family database file ; and 3. Program will crash. >Fix: 1. Use "pkg_delete -f" to delete existing "py*-bsddb*" port. For this particular machine it is py26-bsddb-2.6.2_2 ; 2. Edit "/usr/ports/databases/py-bsddb/Makefile" ; 3. Replace "USE_BDB= yes" with "USE_BDB= 43+" ; and 4. Recompile "/usr/ports/databases/py-bsddb" NB: This Makefile will be over written the next time the ports tree is updated. >Release-Note: >Audit-Trail: >Unformatted: From alexey at renatasystems.org Wed Jul 1 18:10:03 2009 From: alexey at renatasystems.org (Alexey V.Degtyarev) Date: Wed Jul 1 18:10:16 2009 Subject: ports/136228: [maintainer update] databases/mysqlbackup - update to 2.3 release Message-ID: <20090701180215.19183.qmail@hs-9.renatasystems.org> >Number: 136228 >Category: ports >Synopsis: [maintainer update] databases/mysqlbackup - update to 2.3 release >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 18:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexey V. Degtyarev >Release: FreeBSD 7.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD renatasystems.org 7.1-RELEASE FreeBSD 7.1-RELEASE #0: Thu Jan 1 08:58:24 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Changelog: - Added periodic(8) scripts - Fix error with traps handling (a `no backups' problem) Submitted by: Denis Shaposhnikov - Fix problem with -P option handling (an `invalid arguments' error) >How-To-Repeat: >Fix: --- mysqlbackup.patch begins here --- diff -u -r mysqlbackup.orig/Makefile mysqlbackup/Makefile --- mysqlbackup.orig/Makefile 2009-07-01 19:29:28.000000000 +0400 +++ mysqlbackup/Makefile 2009-06-29 13:34:54.000000000 +0400 @@ -6,7 +6,7 @@ # PORTNAME= mysqlbackup -PORTVERSION= 2.2 +PORTVERSION= 2.3 CATEGORIES= databases MASTER_SITES= ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/ @@ -16,11 +16,28 @@ USE_MYSQL= yes NO_BUILD= yes +PERIODICS= 200.mysqlbackup.daily \ + 200.mysqlbackup.weekly \ + 200.mysqlbackup.monthly + MAN1= mysqlbackup.1 -PLIST_FILES= bin/mysqlbackup +PLIST_FILES= bin/mysqlbackup \ + ${PERIODICS:C,^(.*)\.(.*)$,\2/\1,:S,^,etc/periodic/,} +PLIST_DIRS= ${PERIODICS:C,^(.*)\.(.*)$,etc/periodic/\2,:u} \ + etc/periodic + +pre-install: + ${REINPLACE_CMD} ${SUB_LIST:S,$,!g,:S,^, -e s!%%,:S,=,%%!,} \ + ${PERIODICS:S,^,${WRKSRC}/,} do-install: - ${INSTALL_MAN} ${WRKSRC}/mysqlbackup.1 ${MAN1PREFIX}/man/man1/mysqlbackup.1 +.for periodic in ${PERIODICS} + ${MKDIR} ${PREFIX}/etc/periodic/${periodic:E} + ${INSTALL_SCRIPT} ${WRKSRC}/${periodic} \ + ${PREFIX}/etc/periodic/${periodic:E}/${periodic:R} +.endfor + ${INSTALL_MAN} ${WRKSRC}/mysqlbackup.1 \ + ${MAN1PREFIX}/man/man1/mysqlbackup.1 ${INSTALL_SCRIPT} ${WRKSRC}/mysqlbackup ${PREFIX}/bin/mysqlbackup .include diff -u -r mysqlbackup.orig/distinfo mysqlbackup/distinfo --- mysqlbackup.orig/distinfo 2009-07-01 19:29:28.000000000 +0400 +++ mysqlbackup/distinfo 2009-07-01 21:35:42.000000000 +0400 @@ -1,3 +1,3 @@ -MD5 (mysqlbackup-2.2.tar.gz) = 1c7028d7e1c1386d08e491d7d8b36e54 -SHA256 (mysqlbackup-2.2.tar.gz) = ffc5d0a05745e23c8a7eca9365d952b81710942ebd971bb7a43bd1033364dd5c -SIZE (mysqlbackup-2.2.tar.gz) = 11647 +MD5 (mysqlbackup-2.3.tar.gz) = 6ad21297153e8d139a12c36a88da298d +SHA256 (mysqlbackup-2.3.tar.gz) = 1cc555d1637f8c27df14ff7ae22ef181cab8af1133cab3e3c0fde3ed479e35fb +SIZE (mysqlbackup-2.3.tar.gz) = 13669 --- mysqlbackup.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From alexbestms at math.uni-muenster.de Wed Jul 1 18:10:03 2009 From: alexbestms at math.uni-muenster.de (Alexander Best) Date: Wed Jul 1 18:10:16 2009 Subject: ports/136229: [linux] linux_base* and /usr/compat/linux/usr/(local & X11R6) Message-ID: <200907011808.n61I8Y8Z098248@www.freebsd.org> >Number: 136229 >Category: ports >Synopsis: [linux] linux_base* and /usr/compat/linux/usr/(local & X11R6) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 18:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander Best >Release: 8.0-CURRENT >Organization: >Environment: FreeBSD moshnroll 8.0-CURRENT FreeBSD 8.0-CURRENT #5 r195173M: Mon Jun 29 22:11:48 CEST 2009 root@moshnroll:/usr/obj/usr/src/sys/ARUNDEL i386 >Description: a few linux apps look for certain libraries using a hardcoded path. here's the output of `/usr/local/lib/quake4/quake4.x86` e.g.: quake4.x86: libSDL-1.2.so.0 => /usr/local/lib/libSDL-1.2.so.0 (0x284dd000) libpthread.so.0 => /lib/libpthread.so.0 (0x28584000) libdl.so.2 => /lib/libdl.so.2 (0x2859e000) libX11.so.6 => /usr/local/lib/libX11.so.6 (0x285a3000) libXext.so.6 => /usr/local/lib/libXext.so.6 (0x286a4000) libz.so.1 => /lib/libz.so.1 (0x286b4000) libstdc++.so.6 => /usr/local/lib/libstdc++.so.6 (0x286c9000) libm.so.6 => /lib/libm.so.6 (0x287b9000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x287e2000) libc.so.6 => /lib/libc.so.6 (0x287f0000) /lib/ld-linux.so.2 (0x284ba000) libxcb-xlib.so.0 => /usr/local/lib/libxcb-xlib.so.0 (0x28968000) libxcb.so.1 => /usr/local/lib/libxcb.so.1 (0x2896b000) libXau.so.6 => /usr/local/lib/libXau.so.6 (0x28987000) libXdmcp.so.6 => /usr/local/lib/libXdmcp.so.6 (0x2898a000) so ports/games/linux-quake4 e.g. looks for them in "/usr/local/lib" others use "/usr/X11R6/lib". these dirs get translated into "/usr/compat/linux/${ACTUAL_DIR}". but since all libs get installed into "/usr/compat/linux/usr/lib" those apps are unable to find the libs they need and thus fail. how about changing all the linux_base* ports so they create symlinks to local and X11R6. this is how my /usr/compat/linux/usr dir looks like (`ls -la`): total 1 drwxr-xr-x 12 root wheel 512 1 Jul 19:50 . drwxr-xr-x 17 root wheel 512 28 Jun 14:57 .. lrwxr-xr-x 1 root wheel 6 1 Jul 19:50 X11R6 -> ../usr drwxr-xr-x 2 root wheel 3072 28 Jun 21:48 bin drwxr-xr-x 2 root wheel 512 7 Jun 11:04 etc drwxr-xr-x 2 root wheel 512 7 Jun 11:04 games drwxr-xr-x 2 root wheel 512 7 Jun 11:04 include drwxr-xr-x 4 root wheel 512 7 Jun 11:04 kerberos drwxr-xr-x 17 root wheel 7680 1 Jul 19:45 lib drwxr-xr-x 3 root wheel 512 7 Jun 11:05 libexec lrwxr-xr-x 1 root wheel 5 11 Jun 18:39 local -> X11R6 drwxr-xr-x 2 root wheel 512 28 Jun 21:23 sbin drwxr-xr-x 24 root wheel 512 18 Jun 00:19 share drwxr-xr-x 3 root wheel 512 7 Jun 11:04 src lrwxr-xr-x 1 root wheel 8 7 Jun 11:05 tmp -> /var/tmp >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From umq at ueo.co.jp Wed Jul 1 18:20:01 2009 From: umq at ueo.co.jp (Hirohisa Yamaguchi) Date: Wed Jul 1 18:20:08 2009 Subject: ports/136230: [maintainer] devel/ocaml-camlp5 update to 5.12 References: <20090701160131.89D243982A@qat.tcbug.org> Message-ID: <861vp05lbx.wl%umq@ueo.co.jp> >Number: 136230 >Category: ports >Synopsis: [maintainer] devel/ocaml-camlp5 update to 5.12 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 18:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Hirohisa Yamaguchi >Release: FreeBSD 8.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD calliope.****.org 8.0-CURRENT FreeBSD 8.0-CURRENT #20: Wed Apr 29 14:09:02 JST 2009 root@calliope.****.org:/usr/obj/usr/src/sys/CALLIOPE64 amd64 >Description: There's a new version of devel/ocaml-camlp5 5.12. The new version includes a fix for build against lang/ocaml-5.11.1. >How-To-Repeat: There're build errors logged for previous version: http://QAT.TecNik93.com/logs/7-STABLE-FPT-NPD/ocaml-camlp5-5.11.log >Fix: The patch follows: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/ocaml-camlp5/Makefile,v retrieving revision 1.3 diff -p -u -r1.3 Makefile --- Makefile 23 Jan 2009 14:16:53 -0000 1.3 +++ Makefile 1 Jul 2009 18:08:47 -0000 @@ -7,7 +7,7 @@ # PORTNAME= camlp5 -PORTVERSION= 5.11 +PORTVERSION= 5.12 CATEGORIES= devel MASTER_SITES= http://cristal.inria.fr/~ddr/camlp5/distrib/src/ \ http://pauillac.inria.fr/~ddr/camlp5/distrib/src/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/ocaml-camlp5/distinfo,v retrieving revision 1.2 diff -p -u -r1.2 distinfo --- distinfo 23 Jan 2009 14:16:53 -0000 1.2 +++ distinfo 1 Jul 2009 18:08:47 -0000 @@ -1,3 +1,3 @@ -MD5 (camlp5-5.11.tgz) = 26d69abd669c5fda43dbf35074debc81 -SHA256 (camlp5-5.11.tgz) = 92824264ac4bf2f3a67b1b0ae9bb38260d2070a7a595f2e7220c29d70d3142f9 -SIZE (camlp5-5.11.tgz) = 671457 +MD5 (camlp5-5.12.tgz) = 28a86d4f1da8983b7fc773262fa52f1f +SHA256 (camlp5-5.12.tgz) = 985a5e373ea75f89667e71bc857c868c395769fce664cba88aa76f93b0ad8461 +SIZE (camlp5-5.12.tgz) = 685032 >Release-Note: >Audit-Trail: >Unformatted: From itetcu at FreeBSD.org Wed Jul 1 18:30:40 2009 From: itetcu at FreeBSD.org (itetcu@FreeBSD.org) Date: Wed Jul 1 18:30:46 2009 Subject: ports/136230: [maintainer] devel/ocaml-camlp5 update to 5.12 Message-ID: <200907011830.n61IUec7098986@freefall.freebsd.org> Synopsis: [maintainer] devel/ocaml-camlp5 update to 5.12 Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: itetcu Responsible-Changed-When: Wed Jul 1 18:30:39 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136230 From dhn at FreeBSD.org Wed Jul 1 19:08:59 2009 From: dhn at FreeBSD.org (dhn@FreeBSD.org) Date: Wed Jul 1 19:09:06 2009 Subject: ports/136224: [maintainer update] mail/libetpan: update to version 0.58 Message-ID: <200907011908.n61J8ws1024341@freefall.freebsd.org> Synopsis: [maintainer update] mail/libetpan: update to version 0.58 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Wed Jul 1 19:08:58 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136224 From naddy at FreeBSD.org Wed Jul 1 20:00:13 2009 From: naddy at FreeBSD.org (Christian Weisgerber) Date: Wed Jul 1 20:00:20 2009 Subject: ports/136231: Firefox 3.5 crashes for embedded video Message-ID: <200907011918.n61JIrId012825@lorvorc.mips.inka.de> >Number: 136231 >Category: ports >Synopsis: Firefox 3.5 crashes for embedded video >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 20:00:12 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD lorvorc.mips.inka.de 7.2-STABLE FreeBSD 7.2-STABLE #0: Sun Jun 28 13:32:53 CEST 2009 naddy@lorvorc.mips.inka.de:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Firefox 3.5 (www/firefox35) now supports embedded Ogg Theora videos. Unfortunately, in practice it crashes when it encounters one. >How-To-Repeat: http://www.mozilla.com/en-US/firefox/video/firefox-3.5.html >Fix: >Release-Note: >Audit-Trail: >Unformatted: From mandrews at bit0.com Wed Jul 1 20:20:03 2009 From: mandrews at bit0.com (Mike Andrews) Date: Wed Jul 1 20:20:09 2009 Subject: ports/136232: nginx: Add 'gracefulstop' option to rc script Message-ID: <20090701201852.4941AED51@bourbon.fark.com> >Number: 136232 >Category: ports >Synopsis: nginx: Add 'gracefulstop' option to rc script >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 20:20:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mike Andrews >Release: FreeBSD 7.2-STABLE amd64 >Organization: Fark, Inc >Environment: System: FreeBSD bourbon.fark.com 7.2-STABLE FreeBSD 7.2-STABLE #15: Tue Jun 16 01:46:10 EDT 2009 mandrews@vodka.int.fark.com:/usr/obj/usr/src/sys/FARK64 amd64 >Description: The /usr/local/etc/rc.d script for Apache has a "gracefulstop" and "gracefulrestart" option in it. nginx has this capability via signals, but the rc script doesn't directly support all of it. The "upgrade" option more or less handles the "gracefulrestart" case. Here is a very simple patch for the "gracefulstop" case. >How-To-Repeat: n/a >Fix: *** /usr/local/etc/rc.d/nginx.orig Fri Jun 19 23:52:48 2009 --- /usr/local/etc/rc.d/nginx Wed Jul 1 16:12:40 2009 *************** *** 30,35 **** --- 30,36 ---- configtest_cmd="nginx_checkconfig" upgrade_precmd="nginx_checkconfig" upgrade_cmd="nginx_upgrade" + gracefulstop_cmd="nginx_gracefulstop" command="/usr/local/sbin/nginx" _pidprefix="/var/run/nginx" pidfile="${_pidprefix}.pid" *************** *** 100,105 **** --- 101,114 ---- run_rc_command ${rc_prefix}reload $rc_extra_args || return 1 } + nginx_gracefulstop() + { + echo "Performing a graceful stop" + + sig_stop="QUIT" + run_rc_command ${rc_prefix}stop $rc_extra_args || return 1 + } + nginx_precmd() { nginx_checkconfig *************** *** 112,116 **** fi } ! extra_commands="reload configtest upgrade" run_rc_command "$1" --- 121,125 ---- fi } ! extra_commands="reload configtest upgrade gracefulstop" run_rc_command "$1" >Release-Note: >Audit-Trail: >Unformatted: From tundra at tundraware.com Wed Jul 1 20:50:02 2009 From: tundra at tundraware.com (Tim Daneliuk) Date: Wed Jul 1 20:50:14 2009 Subject: ports/136233: Maintainer Port Upgrade: x11-fm/twander Message-ID: <200907012043.n61KhsoI031252@www.freebsd.org> >Number: 136233 >Category: ports >Synopsis: Maintainer Port Upgrade: x11-fm/twander >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 20:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Tim Daneliuk >Release: 7.2-STABLE >Organization: TundraWare Inc. >Environment: >Description: diff -urN /usr/ports/x11-fm/twander/Makefile twande/r/Makefile --- /usr/ports/x11-fm/twander/Makefile 2007-06-03 00:05:59.000000000 -0500 +++ twande/r/Makefile 1969-12-31 18:00:00.000000000 -0600 @@ -1,32 +0,0 @@ -# New ports collection makefile for: twander -# Date Created: 17 February 2003 -# Whom: tundra -# -# $FreeBSD: ports/x11-fm/twander/Makefile,v 1.10 2007/06/03 01:18:32 edwin Exp $ -# - -PORTNAME= twander -PORTVERSION= 3.224 -CATEGORIES= x11-fm -MASTER_SITES= http://www.tundraware.com/Software/twander/ - -MAINTAINER= twander@tundraware.com -COMMENT= A Better Filesystem Browser - -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter - -USE_PYTHON= yes - -MANCOMPRESSED= yes -MAN1= twander.1 - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for f in READ-1ST.txt WHATSNEW.txt .twander twander-license.txt twander.html twander.pdf twander.ps twander.txt - @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - -.include diff -urN /usr/ports/x11-fm/twander/distinfo twande/r/distinfo --- /usr/ports/x11-fm/twander/distinfo 2007-06-03 00:05:59.000000000 -0500 +++ twande/r/distinfo 1969-12-31 18:00:00.000000000 -0600 @@ -1,3 +0,0 @@ -MD5 (twander-3.224.tar.gz) = c4229c3623508d683c3e560fd6ef54ae -SHA256 (twander-3.224.tar.gz) = a83eb6710416bad56f0f109fa70330465ebe2dc4cd396c0f3fa65ed04def69e6 -SIZE (twander-3.224.tar.gz) = 744817 diff -urN /usr/ports/x11-fm/twander/pkg-descr twande/r/pkg-descr --- /usr/ports/x11-fm/twander/pkg-descr 2003-03-02 17:20:26.000000000 -0600 +++ twande/r/pkg-descr 1969-12-31 18:00:00.000000000 -0600 @@ -1,24 +0,0 @@ -"twander" is a Filesystem Browser which runs on both Unix-like systems -as well as Win32 systems. It embraces the best ideas of both similar -GUI-driven programs (Konqueror, Windows Explorer) as well as -text-based interfaces (Midnight Commander, List, Sweep). - -While the "twander" interface is graphical, all the major navigation, -selection, and execution commands can be entered from the keyboard, -not just the mouse. This means Power Users who are strong typists can -minimize dependency on the mouse and materially speed up their -interactions with the system. - -Moreover, unlike the other programs, "twander" does not have a -built-in set of commands (which typically cannot be changed). -Instead, "twander" supports a rich macro configuration language for -virtually limitless user-definition of commands. The configuration -language provides a simple mechanism for communicating the list of -items currently selected in the GUI to the user-defined commands. - -Each user is thus free to configure a command set unique and -appropriate to their needs. As with the navigation commands, -user-defined commands can be invoked with either the keyboard (a -single keystroke) or the mouse (a menu selection). - -WWW: http://www.tundraware.com/Software/twander/ diff -urN /usr/ports/x11-fm/twander/pkg-plist twande/r/pkg-plist --- /usr/ports/x11-fm/twander/pkg-plist 2005-02-08 16:47:52.000000000 -0600 +++ twande/r/pkg-plist 1969-12-31 18:00:00.000000000 -0600 @@ -1,11 +0,0 @@ -bin/twander.py -bin/twander.pyo -%%PORTDOCS%%%%DOCSDIR%%/READ-1ST.txt -%%PORTDOCS%%%%DOCSDIR%%/WHATSNEW.txt -%%PORTDOCS%%%%DOCSDIR%%/twander-license.txt -%%PORTDOCS%%%%DOCSDIR%%/.twander -%%PORTDOCS%%%%DOCSDIR%%/twander.html -%%PORTDOCS%%%%DOCSDIR%%/twander.pdf -%%PORTDOCS%%%%DOCSDIR%%/twander.ps -%%PORTDOCS%%%%DOCSDIR%%/twander.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed Jul 1 20:50:19 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 20:50:32 2009 Subject: ports/136233: Maintainer Port Upgrade: x11-fm/twander Message-ID: <200907012050.n61KoI55007030@freefall.freebsd.org> Synopsis: Maintainer Port Upgrade: x11-fm/twander Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Wed Jul 1 20:50:18 UTC 2009 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136233 From edwin at FreeBSD.org Wed Jul 1 20:50:23 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 20:50:33 2009 Subject: ports/136233: Maintainer Port Upgrade: x11-fm/twander Message-ID: <200907012050.n61KoNwq007807@freefall.freebsd.org> Synopsis: Maintainer Port Upgrade: x11-fm/twander State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Jul 1 20:50:22 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136233 From edwin at FreeBSD.org Wed Jul 1 21:00:11 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Wed Jul 1 21:00:17 2009 Subject: ports/136233: Maintainer Port Upgrade: x11-fm/twander Message-ID: <200907012100.n61L0Ble012599@freefall.freebsd.org> The following reply was made to PR ports/136233; it has been noted by GNATS. From: Edwin Groothuis To: twander@tundraware.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/136233: Maintainer Port Upgrade: x11-fm/twander Date: Wed, 1 Jul 2009 20:50:20 UT Maintainer of x11-fm/twander, Please note that PR ports/136233 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136233 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From kamikaze at bsdforen.de Wed Jul 1 21:10:15 2009 From: kamikaze at bsdforen.de (Dominic Fandrey) Date: Wed Jul 1 21:10:21 2009 Subject: ports/136234: [maintainer-update] www/xpi-modify_headers Message-ID: <200907012108.n61L8hvX045036@www.freebsd.org> >Number: 136234 >Category: ports >Synopsis: [maintainer-update] www/xpi-modify_headers >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 21:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Dominic Fandrey >Release: RELENG_7 >Organization: private >Environment: FreeBSD mobileKamikaze.norad 7.2-STABLE FreeBSD 7.2-STABLE #3: Thu May 7 11:36:54 CEST 2009 root@mobileKamikaze.norad:/usr/obj/HP6510b/amd64/usr/src/sys/HP6510b amd64 >Description: Update to the latest release. >How-To-Repeat: >Fix: diff -Nur ports/www/xpi-modify_headers.orig/Makefile ports/www/xpi-modify_headers/Makefile --- ports/www/xpi-modify_headers.orig/Makefile 2009-07-01 22:36:58.000000000 +0200 +++ ports/www/xpi-modify_headers/Makefile 2009-07-01 22:57:37.000000000 +0200 @@ -6,8 +6,8 @@ # PORTNAME= modify_headers -PORTVERSION= 0.6.5 -DISTVERSIONSUFFIX= -fx+mz+sm +PORTVERSION= 0.6.6 +DISTVERSIONSUFFIX= -fx+sm+mz CATEGORIES= www MAINTAINER= kamikaze@bsdforen.de diff -Nur ports/www/xpi-modify_headers.orig/distinfo ports/www/xpi-modify_headers/distinfo --- ports/www/xpi-modify_headers.orig/distinfo 2009-07-01 22:36:58.000000000 +0200 +++ ports/www/xpi-modify_headers/distinfo 2009-07-01 23:01:09.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (xpi/modify_headers-0.6.5-fx+mz+sm.xpi) = 558c4c4fb8f70b92410b14f7f6d866af -SHA256 (xpi/modify_headers-0.6.5-fx+mz+sm.xpi) = 3e51e33d660d032e4ff43fd208ed7373ddf38700c2ef6226ed9bfb8846447761 -SIZE (xpi/modify_headers-0.6.5-fx+mz+sm.xpi) = 73217 +MD5 (xpi/modify_headers-0.6.6-fx+sm+mz.xpi) = 02d7ca7d1cf47533546c3f941a6463b8 +SHA256 (xpi/modify_headers-0.6.6-fx+sm+mz.xpi) = e21751b675ed78dd6a22896b5676ed9001cb61a7656cde85e4e8f98f013d5f19 +SIZE (xpi/modify_headers-0.6.6-fx+sm+mz.xpi) = 73197 diff -Nur ports/www/xpi-modify_headers.orig/files/patch-install.rdf ports/www/xpi-modify_headers/files/patch-install.rdf --- ports/www/xpi-modify_headers.orig/files/patch-install.rdf 1970-01-01 01:00:00.000000000 +0100 +++ ports/www/xpi-modify_headers/files/patch-install.rdf 2009-07-01 23:03:34.000000000 +0200 @@ -0,0 +1,11 @@ +--- install.rdf.orig 2009-07-01 23:01:51.000000000 +0200 ++++ install.rdf 2009-07-01 23:02:07.000000000 +0200 +@@ -25,7 +25,7 @@ + + {ec8030f7-c20a-464f-9b0e-13a3a9e97384} + 1.0 +- 3.1b3 ++ 3.5 + + + >Release-Note: >Audit-Trail: >Unformatted: From tundra at tundraware.com Wed Jul 1 21:20:02 2009 From: tundra at tundraware.com (Tim Daneliuk) Date: Wed Jul 1 21:20:09 2009 Subject: ports/136233: Maintainer Port Upgrade: x11-fm/twander Message-ID: <200907012120.n61LK1hT027692@freefall.freebsd.org> The following reply was made to PR ports/136233; it has been noted by GNATS. From: Tim Daneliuk To: bug-followup@FreeBSD.ORG Cc: Subject: Re: ports/136233: Maintainer Port Upgrade: x11-fm/twander Date: Wed, 01 Jul 2009 15:57:30 -0500 Edwin Groothuis wrote: > Maintainer of x11-fm/twander, > > Please note that PR ports/136233 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136233 > Approved. -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From edwin at FreeBSD.org Wed Jul 1 21:36:05 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 21:36:11 2009 Subject: ports/136220: games/nethack34 - Add WITH_STATUSCOLORS knob + statuscolors patch Message-ID: <200907012136.n61La5EP043735@freefall.freebsd.org> Synopsis: games/nethack34 - Add WITH_STATUSCOLORS knob + statuscolors patch Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 21:36:04 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136220 From edwin at FreeBSD.org Wed Jul 1 21:36:29 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 21:36:35 2009 Subject: ports/136227: science/Gramps Crashes When Opening a Family File Message-ID: <200907012136.n61LaS3c043848@freefall.freebsd.org> Synopsis: science/Gramps Crashes When Opening a Family File State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Jul 1 21:36:28 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136227 From edwin at FreeBSD.org Wed Jul 1 21:38:54 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 21:39:05 2009 Subject: ports/136229: [linux] linux_base* and /usr/compat/linux/usr/(local & X11R6) Message-ID: <200907012138.n61LcrYt043975@freefall.freebsd.org> Synopsis: [linux] linux_base* and /usr/compat/linux/usr/(local & X11R6) Responsible-Changed-From-To: freebsd-ports-bugs->emulation Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 21:35:12 UTC 2009 Responsible-Changed-Why: Over to a group of people who might have a good opinion about this. http://www.freebsd.org/cgi/query-pr.cgi?pr=136229 From edwin at FreeBSD.org Wed Jul 1 21:39:50 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 21:40:02 2009 Subject: ports/136231: www/Firefox35 - Firefox 3.5 crashes for embedded video Message-ID: <200907012139.n61Ldo00044021@freefall.freebsd.org> Old Synopsis: Firefox 3.5 crashes for embedded video New Synopsis: www/Firefox35 - Firefox 3.5 crashes for embedded video Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-ports-bugs Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 21:35:12 UTC 2009 Responsible-Changed-Why: n/a http://www.freebsd.org/cgi/query-pr.cgi?pr=136231 From edwin at FreeBSD.org Wed Jul 1 21:39:53 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 21:40:03 2009 Subject: ports/136231: www/Firefox35 - Firefox 3.5 crashes for embedded video Message-ID: <200907012139.n61LdqBW044106@freefall.freebsd.org> Synopsis: www/Firefox35 - Firefox 3.5 crashes for embedded video Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 21:39:52 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136231 From edwin at FreeBSD.org Wed Jul 1 21:40:05 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Wed Jul 1 21:40:12 2009 Subject: ports/136227: science/Gramps Crashes When Opening a Family File Message-ID: <200907012140.n61Le3ZV044174@freefall.freebsd.org> The following reply was made to PR ports/136227; it has been noted by GNATS. From: Edwin Groothuis To: freebsd@troback.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/136227: science/Gramps Crashes When Opening a Family File Date: Wed, 1 Jul 2009 21:36:26 UT Maintainer of science/gramps, Please note that PR ports/136227 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136227 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From edwin at FreeBSD.org Wed Jul 1 21:40:58 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 21:41:05 2009 Subject: ports/136232: www/nginx: Add 'gracefulstop' option to rc script Message-ID: <200907012140.n61Lev7u050989@freefall.freebsd.org> Old Synopsis: nginx: Add 'gracefulstop' option to rc script New Synopsis: www/nginx: Add 'gracefulstop' option to rc script Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-ports-bugs Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 21:35:12 UTC 2009 Responsible-Changed-Why: n/a http://www.freebsd.org/cgi/query-pr.cgi?pr=136232 From edwin at FreeBSD.org Wed Jul 1 21:46:47 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Jul 1 21:46:53 2009 Subject: ports/136232: www/nginx: Add 'gracefulstop' option to rc script Message-ID: <200907012146.n61Lklb7051170@freefall.freebsd.org> Synopsis: www/nginx: Add 'gracefulstop' option to rc script Responsible-Changed-From-To: freebsd-ports-bugs->osa Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 1 21:46:46 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136232 From dindin at dindin.ru Wed Jul 1 22:30:02 2009 From: dindin at dindin.ru (Denis Barov) Date: Wed Jul 1 22:30:10 2009 Subject: ports/136236: [NEW PORT] www/py25-amplee: Amplee is a implementation of the AtomPub protocol (RFC5023) Message-ID: <200907012221.n61MLQAc092248@sepulca.yandex.ru> >Number: 136236 >Category: ports >Synopsis: [NEW PORT] www/py25-amplee: Amplee is a implementation of the AtomPub protocol (RFC5023) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 01 22:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Denis Barov >Release: FreeBSD 7.2-RELEASE i386 >Organization: Yandex >Environment: System: FreeBSD sepulca.yandex.ru 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Tue Jun 2 19:57:10 MSD >Description: amplee is a Python implementation of the Atom Publishing Protocol (AtomPub), as specified in RFC5023. WWW: http://trac.defuze.org/wiki/amplee/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- py25-amplee-0.6.1.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-amplee # py-amplee/Makefile # py-amplee/pkg-descr # py-amplee/distinfo # py-amplee/pkg-plist # echo c - py-amplee mkdir -p py-amplee > /dev/null 2>&1 echo x - py-amplee/Makefile sed 's/^X//' >py-amplee/Makefile << '77a4d66342659afbb963c2161f98731f' X# New ports collection makefile for: py-amplee X# Date created: July 2, 2009 X# Whom: dindin@dindin.ru X# X# $FreeBSD$ X XPORTNAME= amplee XPORTVERSION= 0.6.1 XCATEGORIES= www python XMASTER_SITES= http://www.defuze.org/oss/amplee/ \ X http://dindin.ru/download/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= dindin@dindin.ru XCOMMENT= Amplee is a implementation of the AtomPub protocol (RFC5023) X XUSE_PYTHON= yes XUSE_PYDISTUTILS= easy_install X X.include 77a4d66342659afbb963c2161f98731f echo x - py-amplee/pkg-descr sed 's/^X//' >py-amplee/pkg-descr << 'd1d296776183e1ee0438ccf351d6ff3e' Xamplee is a Python implementation of the Atom Publishing Protocol X(AtomPub), as specified in RFC5023. X XWWW: http://trac.defuze.org/wiki/amplee/ d1d296776183e1ee0438ccf351d6ff3e echo x - py-amplee/distinfo sed 's/^X//' >py-amplee/distinfo << '8aef1117d037500fc4da23f76fd133dd' XMD5 (amplee-0.6.1.tar.gz) = 079aa7cc4b0602cc2f94dabc181bc782 XSHA256 (amplee-0.6.1.tar.gz) = ae4a84454dc90e5549d18b0b1c0f119e72bebff4189732300ceaf959cd3fe38f XSIZE (amplee-0.6.1.tar.gz) = 110272 8aef1117d037500fc4da23f76fd133dd echo x - py-amplee/pkg-plist sed 's/^X//' >py-amplee/pkg-plist << '4492afc28506f93ab3a65204363f2610' X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/collection.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/collection.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/collection.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/member/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/member/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/member/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/member/helper.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/member/helper.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/member/helper.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/service.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/service.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/service.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/store.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/store.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/store.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/workspace.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/workspace.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/workspace.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/comparer.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/comparer.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/comparer.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/atomschematron.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/atomschematron.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/atomschematron.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/crawler.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/crawler.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib/crawler.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/error.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/error.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/error.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/description.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/description.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/description.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/image.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/image.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/image.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/query.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/query.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/query.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/url.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/url.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch/url.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/indexer/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/indexer/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/indexer/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/iniloader.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/iniloader.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/iniloader.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/storage.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/storage.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/storage.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/utils.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/utils.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader/utils.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storedejavu.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storedejavu.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storedejavu.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storefs.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storefs.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storefs.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storememcache.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storememcache.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storememcache.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/stores3.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/stores3.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/stores3.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storesvn.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storesvn.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storesvn.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storetar.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storetar.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storetar.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storezodb.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storezodb.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage/storezodb.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/__init__.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/__init__.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/__init__.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/isodate.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/isodate.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/isodate.pyo X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/mediatype.py X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/mediatype.pyc X%%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils/mediatype.pyo X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/utils X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/storage X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/loader X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/indexer X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext/opensearch X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/ext X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/contrib X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub/member X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee/atompub X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/amplee X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%%/EGG-INFO X@dirrmtry %%PYTHON_LIBDIR%%/site-packages/%%PYEASYINSTALL_EGG%% 4492afc28506f93ab3a65204363f2610 exit --- py25-amplee-0.6.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Wed Jul 1 22:32:11 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Wed Jul 1 22:32:27 2009 Subject: ports/136234: [maintainer-update] www/xpi-modify_headers Message-ID: <200907012232.n61MWA8M088519@freefall.freebsd.org> Synopsis: [maintainer-update] www/xpi-modify_headers Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jul 1 22:32:10 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136234 From miwi at FreeBSD.org Wed Jul 1 22:32:15 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Wed Jul 1 22:32:28 2009 Subject: ports/136236: [NEW PORT] www/py25-amplee: Amplee is a implementation of the AtomPub protocol (RFC5023) Message-ID: <200907012232.n61MWFlv088585@freefall.freebsd.org> Synopsis: [NEW PORT] www/py25-amplee: Amplee is a implementation of the AtomPub protocol (RFC5023) Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jul 1 22:32:14 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136236 From miwi at FreeBSD.org Wed Jul 1 22:32:20 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Wed Jul 1 22:32:28 2009 Subject: ports/136228: [maintainer update] databases/mysqlbackup - update to 2.3 release Message-ID: <200907012232.n61MWJuh088651@freefall.freebsd.org> Synopsis: [maintainer update] databases/mysqlbackup - update to 2.3 release Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Jul 1 22:32:18 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136228 From sbrabez at gmail.com Thu Jul 2 00:20:04 2009 From: sbrabez at gmail.com (Sofian brabez) Date: Thu Jul 2 00:20:10 2009 Subject: ports/136237: [maintainer update] net/scnc: update to 1.02 Message-ID: <200907020018.n620IlSm092218@www.freebsd.org> >Number: 136237 >Category: ports >Synopsis: [maintainer update] net/scnc: update to 1.02 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 00:20:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sofian brabez >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: FreeBSD atemi 7.2-STABLE FreeBSD 7.2-STABLE #0: Mon Jun 22 23:54:10 CEST 2009 >Description: - Update to 1.02 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN scnc.orig/Makefile scnc/Makefile --- scnc.orig/Makefile 2009-07-02 02:01:13.000000000 +0200 +++ scnc/Makefile 2009-07-02 01:53:31.000000000 +0200 @@ -5,26 +5,24 @@ # $FreeBSD: ports/net/scnc/Makefile,v 1.1 2008/05/03 09:20:44 jadawin Exp $ # -PORTNAME= scnc -PORTVERSION= 1.00 -CATEGORIES= net security -MASTER_SITES= http://gomor.org/files/ \ - http://knkorp.info/patches/freebsd/ -#DISTFILES= ${PORTNAME} -DISTNAME= ${PORTNAME} -EXTRACT_SUFX= # none -DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= sbrabez@gmail.com -COMMENT= SSL Capable Netcat - -RUN_DEPENDS= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL \ - ${SITE_PERL}/Net/Telnet.pm:${PORTSDIR}/net/p5-Net-Telnet \ - ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-INET6 -BUILD_DEPENDS= ${RUN_DEPENDS} +PORTNAME= scnc +PORTVERSION= 1.02 +CATEGORIES= net security +MASTER_SITES= http://gomor.org/files/ +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= # none +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= sbrabez@gmail.com +COMMENT= SSL Capable Netcat + +RUN_DEPENDS= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL \ + ${SITE_PERL}/Net/Telnet.pm:${PORTSDIR}/net/p5-Net-Telnet \ + ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-INET6 +BUILD_DEPENDS= ${RUN_DEPENDS} -PLIST_FILES= bin/${PORTNAME} -NO_BUILD= yes +PLIST_FILES= bin/${PORTNAME} +NO_BUILD= yes do-extract: @${MKDIR} ${WRKSRC} diff -urN scnc.orig/distinfo scnc/distinfo --- scnc.orig/distinfo 2009-07-02 02:01:13.000000000 +0200 +++ scnc/distinfo 2009-07-02 01:53:31.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (scnc-1.00/scnc) = 1a465d90c6788de1da6a1932cc16c6ab -SHA256 (scnc-1.00/scnc) = c5c02a373c31c3a2ef0d5c3a1d5066713bddb2997518fbb1972bc4118343eb96 -SIZE (scnc-1.00/scnc) = 14620 +MD5 (scnc-1.02/scnc) = eae96962071cf4de8fe8b6fb82a79ecd +SHA256 (scnc-1.02/scnc) = c7f62e36bf3aae8d003502631d80b2bb8ec78d2ebb6a0fd30cba61bcf5c5d3b4 +SIZE (scnc-1.02/scnc) = 19211 >Release-Note: >Audit-Trail: >Unformatted: From gslin at gslin.org Thu Jul 2 03:20:03 2009 From: gslin at gslin.org (Gea-Suan Lin) Date: Thu Jul 2 03:20:09 2009 Subject: ports/136238: [MAINTAINER] databases/pecl-memcached: update to 0.2.0 Message-ID: <20090702031833.A8EFB7E81B@colo-p.gslin.org> >Number: 136238 >Category: ports >Synopsis: [MAINTAINER] databases/pecl-memcached: update to 0.2.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 03:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 7.1-STABLE i386 >Organization: >Environment: System: FreeBSD colo-p.gslin.org 7.1-STABLE FreeBSD 7.1-STABLE #0: Sat Jan 31 21:46:23 UTC 2009 >Description: - Update to 0.2.0 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- pecl-memcached-0.2.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/pecl-memcached/Makefile /home/staff/gslin/work/ports/pecl-memcached/Makefile --- /usr/ports/databases/pecl-memcached/Makefile 2009-06-10 23:49:25.000000000 +0800 +++ /home/staff/gslin/work/ports/pecl-memcached/Makefile 2009-07-02 11:17:40.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= memcached -PORTVERSION= 0.1.5 +PORTVERSION= 0.2.0 CATEGORIES= databases MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- @@ -21,7 +21,7 @@ RUN_DEPENDS= ${LOCALBASE}/bin/pear:${PORTSDIR}/devel/pear PHP_MODNAME= memcached -USE_PHP= session +USE_PHP= json session USE_PHPEXT= yes USE_PHPIZE= yes USE_PHP_BUILD= yes diff -ruN --exclude=CVS /usr/ports/databases/pecl-memcached/distinfo /home/staff/gslin/work/ports/pecl-memcached/distinfo --- /usr/ports/databases/pecl-memcached/distinfo 2009-04-12 06:32:29.000000000 +0800 +++ /home/staff/gslin/work/ports/pecl-memcached/distinfo 2009-07-02 11:17:47.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (PECL/memcached-0.1.5.tgz) = 646c3ffb622adc0379a3951155f7f4bb -SHA256 (PECL/memcached-0.1.5.tgz) = 81b0956dd6fbadf4d463753ab91e678b463d48d8df657ae3f3b7b2e55ac286e0 -SIZE (PECL/memcached-0.1.5.tgz) = 20816 +MD5 (PECL/memcached-0.2.0.tgz) = 4a5eb666956ab69567fa9e76719669ae +SHA256 (PECL/memcached-0.2.0.tgz) = 04e1f8e9cb4e6a73ce2fbd8a50785c5014a95f7c0ae954e3e371790e437f5986 +SIZE (PECL/memcached-0.2.0.tgz) = 21910 --- pecl-memcached-0.2.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Thu Jul 2 03:20:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Thu Jul 2 03:20:19 2009 Subject: ports/136238: [MAINTAINER] databases/pecl-memcached: update to 0.2.0 Message-ID: <200907020320.n623KCkv004966@freefall.freebsd.org> Synopsis: [MAINTAINER] databases/pecl-memcached: update to 0.2.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jul 2 03:20:12 UTC 2009 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136238 From chifeng at gmail.com Thu Jul 2 06:00:11 2009 From: chifeng at gmail.com (Chifeng Qu) Date: Thu Jul 2 06:00:17 2009 Subject: ports/136239: [UPDATE] mail/policyd2 update to 2.0.7 Message-ID: <200907020555.n625tlYr016518@www.freebsd.org> >Number: 136239 >Category: ports >Synopsis: [UPDATE] mail/policyd2 update to 2.0.7 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 06:00:10 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Chifeng Qu >Release: FreeBSD 7.2-RELEASE >Organization: extmail team >Environment: FreeBSD test.asia.corp.platform.com 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: update mail/policyd2 to 2.0.7, please commit! thanks! >How-To-Repeat: NONE. >Fix: apply this patch. Patch attached with submission follows: diff -ruN policyd2.bak/Makefile policyd2/Makefile --- policyd2.bak/Makefile 2009-02-15 10:57:41.000000000 +0000 +++ policyd2/Makefile 2009-07-02 11:56:33.000000000 +0000 @@ -6,7 +6,7 @@ # PORTNAME= policyd2 -PORTVERSION= 2.0.6 +PORTVERSION= 2.0.7 CATEGORIES= mail MASTER_SITES= SF MASTER_SITE_SUBDIR= policyd diff -ruN policyd2.bak/distinfo policyd2/distinfo --- policyd2.bak/distinfo 2009-02-15 10:57:41.000000000 +0000 +++ policyd2/distinfo 2009-07-02 11:56:50.000000000 +0000 @@ -1,3 +1,3 @@ -MD5 (cluebringer-2.0.6.tar.gz) = d4c4b2de3d61a819b044acfc9593f9a9 -SHA256 (cluebringer-2.0.6.tar.gz) = f44ed0bbfc1f6b786c15e819ad1e23fe05bb7bf46b4dd8cd09ec1d34739ab33e -SIZE (cluebringer-2.0.6.tar.gz) = 115589 +MD5 (cluebringer-2.0.7.tar.gz) = f4e4a7a3d353ae637424e357414096d8 +SHA256 (cluebringer-2.0.7.tar.gz) = dae8f9916d01c0144a7213423fc152ef3146b4cac2cc029b694223feb2c1da69 +SIZE (cluebringer-2.0.7.tar.gz) = 117514 diff -ruN policyd2.bak/pkg-plist policyd2/pkg-plist --- policyd2.bak/pkg-plist 2008-12-04 03:53:23.000000000 +0000 +++ policyd2/pkg-plist 2009-07-02 13:44:54.000000000 +0000 @@ -98,10 +98,8 @@ www/policyd/tooltips/bt.gif %%SITE_PERL%%/cbp/cache.pm %%SITE_PERL%%/cbp/config.pm -%%SITE_PERL%%/cbp/database/dbi.pm %%SITE_PERL%%/cbp/dbilayer.pm %%SITE_PERL%%/cbp/dblayer.pm -%%SITE_PERL%%/cbp/dummy.pm %%SITE_PERL%%/cbp/logging.pm %%SITE_PERL%%/cbp/modules/AccessControl.pm %%SITE_PERL%%/cbp/modules/CheckHelo.pm @@ -126,5 +124,4 @@ @dirrmtry www/policyd @dirrm %%SITE_PERL%%/cbp/protocols @dirrm %%SITE_PERL%%/cbp/modules -@dirrm %%SITE_PERL%%/cbp/database @dirrm %%SITE_PERL%%/cbp >Release-Note: >Audit-Trail: >Unformatted: From jadawin at FreeBSD.org Thu Jul 2 06:54:09 2009 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Thu Jul 2 06:54:16 2009 Subject: ports/136237: [maintainer update] net/scnc: update to 1.02 Message-ID: <200907020654.n626s8eb077902@freefall.freebsd.org> Synopsis: [maintainer update] net/scnc: update to 1.02 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: jadawin Responsible-Changed-When: Thu Jul 2 06:54:07 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136237 From chifeng at gmail.com Thu Jul 2 07:20:01 2009 From: chifeng at gmail.com (Chifeng Qu) Date: Thu Jul 2 07:20:07 2009 Subject: ports/136240: [UPDATE] benchmarks/iozone update to 3.326 Message-ID: <200907020718.n627ISho075242@www.freebsd.org> >Number: 136240 >Category: ports >Synopsis: [UPDATE] benchmarks/iozone update to 3.326 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 07:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Chifeng Qu >Release: FreeBSD 7.2-RELEASE >Organization: extmail team >Environment: FreeBSD test.asia.corp.platform.com 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: update benchmarks/iozone to 3.326, please commit! thanks! >How-To-Repeat: NONE. >Fix: apply this patch. Patch attached with submission follows: diff -ruN iozone.bak/Makefile iozone/Makefile --- iozone.bak/Makefile 2009-02-17 10:08:12.000000000 +0000 +++ iozone/Makefile 2009-07-02 15:05:09.000000000 +0000 @@ -6,7 +6,7 @@ # PORTNAME= iozone -PORTVERSION= 3.319 +PORTVERSION= 3.326 CATEGORIES= benchmarks MASTER_SITES= http://www.iozone.org/src/current/ DISTNAME= ${PORTNAME}${PORTVERSION:S/./_/} diff -ruN iozone.bak/distinfo iozone/distinfo --- iozone.bak/distinfo 2009-02-17 10:08:12.000000000 +0000 +++ iozone/distinfo 2009-07-02 15:06:36.000000000 +0000 @@ -1,3 +1,3 @@ -MD5 (iozone3_319.tar) = 16ded14f530b15bc698936452a1ebbd7 -SHA256 (iozone3_319.tar) = 77db62f556467ad676b26b521d549acf2755b2b88a26e270a59f59582fbab220 -SIZE (iozone3_319.tar) = 1576960 +MD5 (iozone3_326.tar) = e80f06da89d314f7fc08fcef4046d367 +SHA256 (iozone3_326.tar) = bc0a40b2cc7f2e8c6dcfbbff82f1df82ad735f02c9a7db59f8364b76f43f7063 +SIZE (iozone3_326.tar) = 1587200 >Release-Note: >Audit-Trail: >Unformatted: From jadawin at FreeBSD.org Thu Jul 2 07:25:17 2009 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Thu Jul 2 07:25:26 2009 Subject: ports/136240: [UPDATE] benchmarks/iozone update to 3.326 Message-ID: <200907020725.n627PGjI001729@freefall.freebsd.org> Synopsis: [UPDATE] benchmarks/iozone update to 3.326 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: jadawin Responsible-Changed-When: Thu Jul 2 07:25:15 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136240 From sbrabez at gmail.com Thu Jul 2 08:35:46 2009 From: sbrabez at gmail.com (Sofian Brabez) Date: Thu Jul 2 08:35:52 2009 Subject: ports/136237: [maintainer update] net/scnc: update to 1.02 In-Reply-To: <200907020020.n620K3D5063813@freefall.freebsd.org> References: <200907020018.n620IlSm092218@www.freebsd.org> <200907020020.n620K3D5063813@freefall.freebsd.org> Message-ID: <3456f9ca0907020112l2ec6bcbcnfb6839d46f328878@mail.gmail.com> - Update to 1.03 Thanks to apply this new patch because upstream developer release new version this night. On Thu, Jul 2, 2009 at 2:20 AM, wrote: > Thank you very much for your problem report. > It has the internal identification `ports/136237'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=136237 > >>Category: ? ? ? ports >>Responsible: ? ?freebsd-ports-bugs >>Synopsis: ? ? ? [maintainer update] net/scnc: update to 1.02 >>Arrival-Date: ? Thu Jul 02 00:20:03 UTC 2009 > -- sbz -------------- next part -------------- diff -urN scnc.orig/Makefile scnc/Makefile --- scnc.orig/Makefile 2009-07-02 10:24:47.000000000 +0200 +++ scnc/Makefile 2009-07-02 10:27:28.000000000 +0200 @@ -5,26 +5,24 @@ # $FreeBSD: ports/net/scnc/Makefile,v 1.1 2008/05/03 09:20:44 jadawin Exp $ # -PORTNAME= scnc -PORTVERSION= 1.00 -CATEGORIES= net security -MASTER_SITES= http://gomor.org/files/ \ - http://knkorp.info/patches/freebsd/ -#DISTFILES= ${PORTNAME} -DISTNAME= ${PORTNAME} -EXTRACT_SUFX= # none -DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= sbrabez@gmail.com -COMMENT= SSL Capable Netcat - -RUN_DEPENDS= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL \ - ${SITE_PERL}/Net/Telnet.pm:${PORTSDIR}/net/p5-Net-Telnet \ - ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-INET6 -BUILD_DEPENDS= ${RUN_DEPENDS} +PORTNAME= scnc +PORTVERSION= 1.03 +CATEGORIES= net security +MASTER_SITES= http://gomor.org/files/ +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= # none +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= sbrabez@gmail.com +COMMENT= SSL Capable Netcat + +RUN_DEPENDS= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL \ + ${SITE_PERL}/Net/Telnet.pm:${PORTSDIR}/net/p5-Net-Telnet \ + ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-INET6 +BUILD_DEPENDS= ${RUN_DEPENDS} -PLIST_FILES= bin/${PORTNAME} -NO_BUILD= yes +PLIST_FILES= bin/${PORTNAME} +NO_BUILD= yes do-extract: @${MKDIR} ${WRKSRC} diff -urN scnc.orig/distinfo scnc/distinfo --- scnc.orig/distinfo 2009-07-02 10:24:47.000000000 +0200 +++ scnc/distinfo 2009-07-02 10:26:50.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (scnc-1.00/scnc) = 1a465d90c6788de1da6a1932cc16c6ab -SHA256 (scnc-1.00/scnc) = c5c02a373c31c3a2ef0d5c3a1d5066713bddb2997518fbb1972bc4118343eb96 -SIZE (scnc-1.00/scnc) = 14620 +MD5 (scnc-1.03/scnc) = eae96962071cf4de8fe8b6fb82a79ecd +SHA256 (scnc-1.03/scnc) = c7f62e36bf3aae8d003502631d80b2bb8ec78d2ebb6a0fd30cba61bcf5c5d3b4 +SIZE (scnc-1.03/scnc) = 19211 From yvan.vanhullebus at netasq.com Thu Jul 2 09:30:05 2009 From: yvan.vanhullebus at netasq.com (VANHULLEBUS Yvan) Date: Thu Jul 2 09:30:12 2009 Subject: ports/136160: [net/scapy] Add config options and fix a bug with VPython Message-ID: <200907020930.n629U4L7026517@freefall.freebsd.org> The following reply was made to PR ports/136160; it has been noted by GNATS. From: VANHULLEBUS Yvan To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/136160: [net/scapy] Add config options and fix a bug with VPython Date: Thu, 2 Jul 2009 11:27:35 +0200 --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 29, 2009 at 01:00:21PM +0000, Edwin Groothuis wrote: > Maintainer of net/scapy, >=20 > Please note that PR ports/136160 has just been submitted. >=20 > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. >=20 > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/136160 Ok for me. Yvan. --=20 NETASQ http://www.netasq.com --SUOF0GtieIMvvwua Content-Type: application/x-pkcs7-signature Content-Disposition: attachment; filename="smime.p7s" Content-Transfer-Encoding: base64 MIINOgYJKoZIhvcNAQcCoIINKzCCDScCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC CoYwggZ8MIIFZKADAgECAgpwxrFIFmvykGpdMA0GCSqGSIb3DQEBBAUAMIGRMQswCQYDVQQG EwJGUjENMAsGA1UECBMETm9yZDEaMBgGA1UEBxMRVmlsbGVuZXV2ZSBkJ0FzY3ExLjAsBgNV BAoTJU5FVEFTUSAtIFNlY3VyZSBJbnRlcm5ldCBDb25uZWN0aXZpdHkxJzAlBgNVBAsTHk5F VEFTUSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNzA3MTYwOTU4MDhaFw0wOTA3MTUw OTU4MDhaMIHYMQswCQYDVQQGFAJGUjENMAsGA1UECBQETm9yZDEuMCwGA1UEChQlTkVUQVNR IC0gU2VjdXJlIEludGVybmV0IENvbm5lY3Rpdml0eTEnMCUGA1UECxQeTkVUQVNRIENlcnRp ZmljYXRpb24gQXV0aG9yaXR5MRowGAYDVQQHFBFWaWxsZW5ldXZlIGQnQXNjcTEZMBcGA1UE AxQQeXZhbiBWQU5IVUxMRUJVUzEqMCgGCSqGSIb3DQEJARYbeXZhbi52YW5odWxsZWJ1c0Bu ZXRhc3EuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArqZ+vhct7xUvoDOL yI6I/WS8H1qx5M31ECuEzMpO7dNEAeEnjQ0SsmgqJi0IUvlsnHQaOuMhzLMACThad5Z9cA2B tg7d9qk9cOU40BNL3L14qROaoowCKqPG9uNMtCaQM3p5iMnIbud4Z+gvoezjlOSVzLH6Brcp HC1iKAfPb2JI0xqWlvVRT+nOhdG+hEtPSKeGQaniSCcUFRsdyKB20qZVNCXNXskOiJoAohp6 mPopsAEnuitFE+u8ps9Pdly8N+BLMIKGzO5aEg0vxUX2UMN0kBBrLopmIj1ed+NOZKEshiKS 20Bqz24725Uh0Fn/9PftjFiBY6hFiJKU4CQ2QwIDAQABo4ICizCCAocwDAYDVR0TAQH/BAIw ADAdBgNVHQ4EFgQUq8DCXoQV2AIeiRLvzDPubbew5Dgwgb4GA1UdIwSBtjCBs4AUJyrrHdlE 2joXc2oJICDJJaj5f7KhgZekgZQwgZExCzAJBgNVBAYTAkZSMQ0wCwYDVQQIEwROb3JkMRow GAYDVQQHExFWaWxsZW5ldXZlIGQnQXNjcTEuMCwGA1UEChMlTkVUQVNRIC0gU2VjdXJlIElu dGVybmV0IENvbm5lY3Rpdml0eTEnMCUGA1UECxMeTkVUQVNRIENlcnRpZmljYXRpb24gQXV0 aG9yaXR5ggEAMA4GA1UdDwEB/wQEAwIF4DARBglghkgBhvhCAQEEBAMCBaAwKwYJKwYBBAGC NxQCBB4eHABTAG0AYQByAHQAYwBhAHIAZABMAG8AZwBvAG4wKQYDVR0lBCIwIAYIKwYBBQUH AwQGCCsGAQUFBwMCBgorBgEEAYI3FAICMCsGA1UdEQQkMCKgIAYKKwYBBAGCNxQCA6ASDBB5 dmFudkBuZXRhc3EuY29tMIHNBgNVHR8EgcUwgcIwWqBYoFaGVGxkYXA6Ly9wa2kubmV0YXNx LmNvbS9jbj1md2NhLG91PWNhcyxvPW5ldGFzcSxkYz1mcj9jZXJ0aWZpY2F0ZVJldm9jYXRp b25MaXN0O2JpbmFyeTA4oDagNIYyaHR0cDovL2ludHJhbmV0Lm5ldGFzcS5jb20vaW50cmFu ZXQvcGtpL25ldGFzcS5jcmwwKqAooCaGJGh0dHA6Ly93d3cubmV0YXNxLmNvbS9wa2kvbmV0 YXNxLmNybDAfBglghkgBhvhCAQ0EEhYQVXNlciBDZXJ0aWZpY2F0ZTANBgkqhkiG9w0BAQQF AAOCAQEAUiSvrad7pGSGQblLF8U9SwjSelyRYicqihVnWKHoHZ3kRYI6QoVRcZlStDegZ+yU CLOoRGF+KCMnZzP7YfxqucdB06i/deP26R7YHK/4vjOSvIyfT2Z/wspPQqYCkqq3BwcbJ4Fz 3KK1mqkxcevTuLSugcaaYC6csbxfVa12UN47+3Cd37ViHU2L1z1GunY5dzCW1CaZEqJ5YvD4 x0ylsCDuxifp7uEw1bc1fXMC3XPO1Nlf6SAVcqn4u+jNL812jwndPg6C6WdUXDwAV6KHzxCA dVH+6AoV5tU2TScdXGCk8/AzwxVKCo9SdwvQut57ko20FFx5xFRJV7F49k/EWjCCBAIwggLq oAMCAQICAQAwDQYJKoZIhvcNAQEEBQAwgZExCzAJBgNVBAYTAkZSMQ0wCwYDVQQIEwROb3Jk MRowGAYDVQQHExFWaWxsZW5ldXZlIGQnQXNjcTEuMCwGA1UEChMlTkVUQVNRIC0gU2VjdXJl IEludGVybmV0IENvbm5lY3Rpdml0eTEnMCUGA1UECxMeTkVUQVNRIENlcnRpZmljYXRpb24g QXV0aG9yaXR5MB4XDTAyMDIxOTEyMzQ1NVoXDTIyMDIxNDEyMzQ1NVowgZExCzAJBgNVBAYT AkZSMQ0wCwYDVQQIEwROb3JkMRowGAYDVQQHExFWaWxsZW5ldXZlIGQnQXNjcTEuMCwGA1UE ChMlTkVUQVNRIC0gU2VjdXJlIEludGVybmV0IENvbm5lY3Rpdml0eTEnMCUGA1UECxMeTkVU QVNRIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB CgKCAQEAwYBPi3ref6t0tuJMoj5R4H7sa+WMSZwDh4XHjZV5e6P6LObyrleC6oNFDZJrgBtK k9Swzfnnf4m3xc0QS9kKCPLFwLpmIK3RCx0K4YYi+uBrrL347kH4UPfrI6KvrYcFpG3YwFZU K+7LZn/Y9HSB6n4gvdiCk7cmkuFr1ifFtDYZqktNUss9yQCPqh0d9dXfuhRV8vyggvVkcfTZ cCyVpRaDYaDm0j30Urba62KsKxfh6cEAt6kmPUxviGVaoEiiaABDZVSu6PjS17qDcZaQzlnw hLacKyM1zR7+lvfFR03/h6m8JYGBPMP7zccH2uJfufh+Of3AvOfCFZFcNhzHCwIDAQABo2Mw YTAdBgNVHQ4EFgQUJyrrHdlE2joXc2oJICDJJaj5f7IwHwYDVR0jBBgwFoAUJyrrHdlE2joX c2oJICDJJaj5f7IwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcN AQEEBQADggEBAJclqFN/WqYmhcZlXabrw6KJQNq/TK6TLDHzwZVcyjn0QhujHRr+EcVpaE1p IS4fjsywzpINE3fe9DSlC4IzyeqDq3EtM4eQDSXm4YRGLZp8X2M5TdccmxlElDgZzlVXMOlo /Ehhh4vqzSbc1M4FEfETiEV+vLX5MaWEHH8dmzlEL632mOme19QJN6BQKJPmCCj1VbxJDrJS pF01kXFJUtyrA0ilrEG0mA+FLFjfsWuZXzYEPjv1/FIPMlSnCCiW8ZSzwstQX2BhLEi0ugZJ RpakVMY/TkdoLEErYt0mjZD+d/oXFR7QNzMxAHpDEPmlZRotP1W7sO6kpBP7lyh/Yc4xggJ8 MIICeAIBATCBoDCBkTELMAkGA1UEBhMCRlIxDTALBgNVBAgTBE5vcmQxGjAYBgNVBAcTEVZp bGxlbmV1dmUgZCdBc2NxMS4wLAYDVQQKEyVORVRBU1EgLSBTZWN1cmUgSW50ZXJuZXQgQ29u bmVjdGl2aXR5MScwJQYDVQQLEx5ORVRBU1EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkCCnDG sUgWa/KQal0wCQYFKw4DAhoFAKCBsTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqG SIb3DQEJBTEPFw0wOTA3MDIwOTI3MzVaMCMGCSqGSIb3DQEJBDEWBBSOK3sZExbjnHiPXWUb 1CwzQB+HsDBSBgkqhkiG9w0BCQ8xRTBDMAoGCCqGSIb3DQMHMA4GCCqGSIb3DQMCAgIAgDAN BggqhkiG9w0DAgIBQDAHBgUrDgMCBzANBggqhkiG9w0DAgIBKDANBgkqhkiG9w0BAQEFAASC AQBkxtoWzu+S+BVYhf47k9tn/7jhCA/68A1dy8IRA651g+hs9LsKG38sfSaBVBgX/wxUPmQF uj7sl02RUVs3cuPGjyiwtsLG9RkAqXPJv1nIsLAVcAqcBYVZPcP3+dL17bi8S+86jM3zquXw DvKSCEsostYvDw9ogsFaRrUOrxDhFhJ1TuFVb1kDX0RqZ6F1kHmcc19DAcmtAz7zIZ4y6K2d OVWl4ApvedJ8s2D4CuKKyBsXJ7dNHjtyFHlekb4sqaVMy6pmFIOdxwuMiA7nfTcSqlhJOb8p J9ZGbCKtE/6y/alk5fmvAmRGNlo/3aD+wjICWV8Qg4ps0bBoalIrfvN4 --SUOF0GtieIMvvwua-- From gavin at FreeBSD.org Thu Jul 2 09:46:55 2009 From: gavin at FreeBSD.org (gavin@FreeBSD.org) Date: Thu Jul 2 09:47:02 2009 Subject: ports/136127: [patch][update] games/quake3-ut to latest version; make fetchable Message-ID: <200907020946.n629ks55042417@freefall.freebsd.org> Synopsis: [patch][update] games/quake3-ut to latest version; make fetchable State-Changed-From-To: open->closed State-Changed-By: gavin State-Changed-When: Thu Jul 2 09:45:44 UTC 2009 State-Changed-Why: Submitter is happy for this to be closed. Responsible-Changed-From-To: freebsd-ports-bugs->gavin Responsible-Changed-By: gavin Responsible-Changed-When: Thu Jul 2 09:45:44 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=136127 From mathias at monnerville.com Thu Jul 2 09:50:01 2009 From: mathias at monnerville.com (Mathias Monnerville) Date: Thu Jul 2 09:50:07 2009 Subject: ports/136241: [maintainer update] www/glpi 0.71.6 Message-ID: <200907020920.n629KEgs010024@terabsd.iap.fr> >Number: 136241 >Category: ports >Synopsis: [maintainer update] www/glpi 0.71.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 09:50:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mathias Monnerville >Release: FreeBSD 7.1-BETA amd64 >Organization: >Environment: System: FreeBSD terabsd.iap.fr 7.1-BETA FreeBSD 7.1-BETA #0: Sun Sep 7 09:38:41 UTC 2008 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: New release available. Announcement: http://www.glpi-project.org/spip.php?page=annonce&id_breve=171&lang=en >How-To-Repeat: >Fix: --- glpi.diff begins here --- diff -ru glpi.orig/Makefile glpi/Makefile --- glpi.orig/Makefile 2009-01-30 09:57:14.000000000 +0100 +++ glpi/Makefile 2009-07-02 10:57:32.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= glpi -DISTVERSION= 0.71.5 +DISTVERSION= 0.71.6 CATEGORIES= www MASTER_SITES= http://glpi-project.org/IMG/gz/ \ http://download.gna.org/kanicule/freebsd/distfiles/ diff -ru glpi.orig/distinfo glpi/distinfo --- glpi.orig/distinfo 2009-01-30 09:57:14.000000000 +0100 +++ glpi/distinfo 2009-07-02 10:58:35.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (glpi-0.71.5.tar.gz) = 033c223432e5eb77919a668e1807f2f7 -SHA256 (glpi-0.71.5.tar.gz) = bbf21d2456389dc1758df667a002c9bd789a379561285bd506183c51290e18ef -SIZE (glpi-0.71.5.tar.gz) = 2022076 +MD5 (glpi-0.71.6.tar.gz) = d7137027c2a9f79cadd193bbe6ebab92 +SHA256 (glpi-0.71.6.tar.gz) = c11a20dbae4d4e2b985c2fd6c2445c67a3bd18f15fc9d5a15aea67b6aacd8f93 +SIZE (glpi-0.71.6.tar.gz) = 2024632 --- glpi.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From lapo at lapo.it Thu Jul 2 10:00:13 2009 From: lapo at lapo.it (Lapo Luchini) Date: Thu Jul 2 10:00:24 2009 Subject: ports/134743: devel/Monotone and pthreaded dependencies Message-ID: <200907021000.n62A0CAd049564@freefall.freebsd.org> The following reply was made to PR ports/134743; it has been noted by GNATS. From: Lapo Luchini To: bug-followup@FreeBSD.org, eirnym@gmail.com Cc: Subject: Re: ports/134743: devel/Monotone and pthreaded dependencies Date: Thu, 02 Jul 2009 11:51:34 +0200 If a -lpthread option is needed not only for a static-link of sqlite but also for the dynamic-lining that monotone uses, I guess if the more proper solution isn't to fix sqlite's pkg-config .pc file to emit that requirements also when used without --static option. I opened this bug about it: http://www.sqlite.org/cvstrac/tktview?tn=3943 If anyone knows threading issues better than me and thinks I'm wrong about it, please tell so. ;) From chifeng at gmail.com Thu Jul 2 10:10:02 2009 From: chifeng at gmail.com (Chifeng Qu) Date: Thu Jul 2 10:10:16 2009 Subject: ports/136242: [UPDATE] net/delegate update to 9.9.3 Message-ID: <200907021000.n62A0Onk020213@www.freebsd.org> >Number: 136242 >Category: ports >Synopsis: [UPDATE] net/delegate update to 9.9.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 10:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Chifeng Qu >Release: FreeBSD 7.2-RELEASE >Organization: extmail team >Environment: FreeBSD test.asia.corp.platform.com 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: net/delegate update to 9.9.3, please commit! thanks! >How-To-Repeat: NONE. >Fix: apply this patch. Patch attached with submission follows: diff -ruN delegate.bak/Makefile delegate/Makefile --- delegate.bak/Makefile 2009-02-19 19:23:30.000000000 +0000 +++ delegate/Makefile 2009-07-02 17:44:26.000000000 +0000 @@ -6,8 +6,8 @@ # PORTNAME= delegate -PORTVERSION= 9.9.1 -PORTREVISION= 1 +PORTVERSION= 9.9.3 +#PORTREVISION= 1 CATEGORIES= net www MASTER_SITES= http://www.chifeng.name/dist/delegate/ DISTNAME= ${PORTNAME}${PORTVERSION} diff -ruN delegate.bak/distinfo delegate/distinfo --- delegate.bak/distinfo 2009-02-18 23:22:49.000000000 +0000 +++ delegate/distinfo 2009-07-02 17:45:15.000000000 +0000 @@ -1,3 +1,3 @@ -MD5 (delegate9.9.1.tar.gz) = b483d93a89831711ebd9b3ced991f33f -SHA256 (delegate9.9.1.tar.gz) = eb589f33768681486a8e80860d8d0cdc3df753fc6cab7dde9c4dbd2455543181 -SIZE (delegate9.9.1.tar.gz) = 1944670 +MD5 (delegate9.9.3.tar.gz) = 16b49244d04490eb48b70e61efb24244 +SHA256 (delegate9.9.3.tar.gz) = fa9c862fdc09305568752681eca1990a577031cb3491080c681da0582fd9230a +SIZE (delegate9.9.3.tar.gz) = 1965268 >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Thu Jul 2 10:33:58 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Thu Jul 2 10:34:05 2009 Subject: ports/136160: net/scapy: Add config options and fix a bug with VPython Message-ID: <200907021033.n62AXvgA082448@freefall.freebsd.org> Synopsis: net/scapy: Add config options and fix a bug with VPython State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Thu Jul 2 10:33:51 UTC 2009 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=136160 From lapo at lapo.it Thu Jul 2 10:50:04 2009 From: lapo at lapo.it (Lapo Luchini) Date: Thu Jul 2 10:50:10 2009 Subject: ports/136244: [MAINTAINER] www/xpi-stumbleupon: update to 3.29 Message-ID: <4A4C8F5A.3040102@lapo.it> >Number: 136244 >Category: ports >Synopsis: [MAINTAINER] www/xpi-stumbleupon: update to 3.29 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 10:50:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Lapo Luchini >Release: FreeBSD 7.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD lapo.andxor.it 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:14:35 UTC 2009 >Description: - Update to 3.29 (needed for usage with Firefox 3.5) Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- xpi-stumbleupon-3.29.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/xpi-stumbleupon.orig/Makefile /usr/ports/www/xpi-stumbleupon/Makefile --- /usr/ports/www/xpi-stumbleupon.orig/Makefile 2009-07-01 17:07:49.000000000 +0200 +++ /usr/ports/www/xpi-stumbleupon/Makefile 2009-07-02 11:55:46.000000000 +0200 @@ -6,8 +6,8 @@ # PORTNAME= stumbleupon -PORTVERSION= 3.28 -DISTVERSIONSUFFIX= -fx+mz+sm +PORTVERSION= 3.29 +DISTVERSIONSUFFIX= -fx+sm+mz CATEGORIES= www MAINTAINER= lapo@lapo.it diff -ruN --exclude=CVS /usr/ports/www/xpi-stumbleupon.orig/distinfo /usr/ports/www/xpi-stumbleupon/distinfo --- /usr/ports/www/xpi-stumbleupon.orig/distinfo 2009-07-01 17:07:49.000000000 +0200 +++ /usr/ports/www/xpi-stumbleupon/distinfo 2009-07-02 11:55:54.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (xpi/stumbleupon-3.28-fx+mz+sm.xpi) = 5bd5a510b1305b408701bd28eae65c13 -SHA256 (xpi/stumbleupon-3.28-fx+mz+sm.xpi) = 1c5b91a8d76c68a1cfd502844e8e001c21c9ee164da2d9a695d71984862242a4 -SIZE (xpi/stumbleupon-3.28-fx+mz+sm.xpi) = 291531 +MD5 (xpi/stumbleupon-3.29-fx+sm+mz.xpi) = 3319490d45c0d1557b2575ca86ca4a33 +SHA256 (xpi/stumbleupon-3.29-fx+sm+mz.xpi) = c9a5d5ef84a1bda55f7eff1c9bc1c536ac9b360be61e3f14e6cbd9e8ed07233b +SIZE (xpi/stumbleupon-3.29-fx+sm+mz.xpi) = 296354 --- xpi-stumbleupon-3.29.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From lapo at lapo.it Thu Jul 2 11:00:11 2009 From: lapo at lapo.it (Lapo Luchini) Date: Thu Jul 2 11:00:19 2009 Subject: ports/136245: [MAINTAINER] www/xpi-firebug: update to 1.4.0b3 Message-ID: <4A4C91CD.6070508@lapo.it> >Number: 136245 >Category: ports >Synopsis: [MAINTAINER] www/xpi-firebug: update to 1.4.0b3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 11:00:10 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Lapo Luchini >Release: FreeBSD 7.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD lapo.andxor.it 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:14:35 UTC 2009 >Description: - Update to 1.4.0b3 (needed for usage with Firefox 3.5) - moved PORTEPOCH line to please lint Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- xpi-firebug-1.4.0b3,2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/xpi-firebug.orig/Makefile /usr/ports/www/xpi-firebug/Makefile --- /usr/ports/www/xpi-firebug.orig/Makefile 2009-07-02 12:43:58.000000000 +0200 +++ /usr/ports/www/xpi-firebug/Makefile 2009-07-02 12:45:17.000000000 +0200 @@ -6,9 +6,9 @@ # PORTNAME= firebug -PORTVERSION= 1.3.0 -PORTEPOCH= 2 +PORTVERSION= 1.4.0b3 DISTVERSIONSUFFIX= -fx +PORTEPOCH= 2 CATEGORIES= www MAINTAINER= lapo@lapo.it diff -ruN --exclude=CVS /usr/ports/www/xpi-firebug.orig/distinfo /usr/ports/www/xpi-firebug/distinfo --- /usr/ports/www/xpi-firebug.orig/distinfo 2009-07-02 12:43:58.000000000 +0200 +++ /usr/ports/www/xpi-firebug/distinfo 2009-07-02 12:44:25.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (xpi/firebug-1.3.0-fx.xpi) = 7721e9eeae88c7c344cfa821d7716726 -SHA256 (xpi/firebug-1.3.0-fx.xpi) = 3961f4ad9898348b224afbe65764be94002a511000c8c0e057cb115c07527575 -SIZE (xpi/firebug-1.3.0-fx.xpi) = 531598 +MD5 (xpi/firebug-1.4.0b3-fx.xpi) = 6a55547b13b673504a0c1d596dd06ef1 +SHA256 (xpi/firebug-1.4.0b3-fx.xpi) = f22038b2fc978458462ff3149e97050d83d5c85cc8d2c9ee26b04fc501762c83 +SIZE (xpi/firebug-1.4.0b3-fx.xpi) = 623263 diff -ruN --exclude=CVS /usr/ports/www/xpi-firebug.orig/pkg-plist /usr/ports/www/xpi-firebug/pkg-plist --- /usr/ports/www/xpi-firebug.orig/pkg-plist 2009-07-02 12:43:58.000000000 +0200 +++ /usr/ports/www/xpi-firebug/pkg-plist 2009-07-02 12:46:13.000000000 +0200 @@ -1,8 +1,10 @@ %%XPI_XPIDIR%%/build.xml %%XPI_XPIDIR%%/chrome.manifest +%%XPI_XPIDIR%%/components/firebug-channel-listener.js %%XPI_XPIDIR%%/components/firebug-http-observer.js %%XPI_XPIDIR%%/components/firebug-service.js %%XPI_XPIDIR%%/components/firebug-trace-service.js +%%XPI_XPIDIR%%/content/firebug/a11y.js %%XPI_XPIDIR%%/content/firebug/bindings.xml %%XPI_XPIDIR%%/content/firebug/blank.gif %%XPI_XPIDIR%%/content/firebug/branch.properties @@ -15,11 +17,15 @@ %%XPI_XPIDIR%%/content/firebug/consoleInjected.js %%XPI_XPIDIR%%/content/firebug/consoleInjector.js %%XPI_XPIDIR%%/content/firebug/css.js +%%XPI_XPIDIR%%/content/firebug/customizeShortcuts.js +%%XPI_XPIDIR%%/content/firebug/customizeShortcuts.xul %%XPI_XPIDIR%%/content/firebug/customizeToolbarOverlay.xul %%XPI_XPIDIR%%/content/firebug/debugger.js +%%XPI_XPIDIR%%/content/firebug/debuggerHalter.js %%XPI_XPIDIR%%/content/firebug/dom.js %%XPI_XPIDIR%%/content/firebug/domplate.js %%XPI_XPIDIR%%/content/firebug/editor.js +%%XPI_XPIDIR%%/content/firebug/editorToContextMenu.js %%XPI_XPIDIR%%/content/firebug/editors.js %%XPI_XPIDIR%%/content/firebug/editors.xul %%XPI_XPIDIR%%/content/firebug/errors.js @@ -33,33 +39,36 @@ %%XPI_XPIDIR%%/content/firebug/infotip.js %%XPI_XPIDIR%%/content/firebug/insideOutBox.js %%XPI_XPIDIR%%/content/firebug/inspector.js +%%XPI_XPIDIR%%/content/firebug/jsonViewer.js %%XPI_XPIDIR%%/content/firebug/layout.js %%XPI_XPIDIR%%/content/firebug/lib.js %%XPI_XPIDIR%%/content/firebug/net.js %%XPI_XPIDIR%%/content/firebug/panel.html -%%XPI_XPIDIR%%/content/firebug/permissionsOverlay.js -%%XPI_XPIDIR%%/content/firebug/permissionsOverlay.xul %%XPI_XPIDIR%%/content/firebug/plugin.js %%XPI_XPIDIR%%/content/firebug/profiler.js %%XPI_XPIDIR%%/content/firebug/reps.js %%XPI_XPIDIR%%/content/firebug/search.js +%%XPI_XPIDIR%%/content/firebug/shortcuts.js %%XPI_XPIDIR%%/content/firebug/sourceCache.js %%XPI_XPIDIR%%/content/firebug/spy.js %%XPI_XPIDIR%%/content/firebug/tabCache.js %%XPI_XPIDIR%%/content/firebug/tabContext.js %%XPI_XPIDIR%%/content/firebug/tabWatcher.js +%%XPI_XPIDIR%%/content/firebug/testList.html %%XPI_XPIDIR%%/content/firebug/tests/moved_to_fbug_tests.html %%XPI_XPIDIR%%/content/firebug/trace.js %%XPI_XPIDIR%%/content/firebug/traceConsole.html %%XPI_XPIDIR%%/content/firebug/traceConsole.js %%XPI_XPIDIR%%/content/firebug/traceConsole.xul %%XPI_XPIDIR%%/content/firebug/traceModule.js +%%XPI_XPIDIR%%/content/firebug/traceOverlay.xul %%XPI_XPIDIR%%/content/firebug/xpcom.js %%XPI_XPIDIR%%/defaults/preferences/firebug.js %%XPI_XPIDIR%%/docs/Bugs.txt %%XPI_XPIDIR%%/docs/ReleaseNotes_1.1.txt %%XPI_XPIDIR%%/docs/ReleaseNotes_1.2.txt %%XPI_XPIDIR%%/docs/ReleaseNotes_1.3.txt +%%XPI_XPIDIR%%/docs/ReleaseNotes_1.4.txt %%XPI_XPIDIR%%/docs/TODO.txt %%XPI_XPIDIR%%/docs/index.tpl.html %%XPI_XPIDIR%%/icons/default/TraceConsole.png @@ -93,6 +102,9 @@ %%XPI_XPIDIR%%/locale/en-US/editors.dtd %%XPI_XPIDIR%%/locale/en-US/firebug.dtd %%XPI_XPIDIR%%/locale/en-US/firebug.properties +%%XPI_XPIDIR%%/locale/es-AR/editors.dtd +%%XPI_XPIDIR%%/locale/es-AR/firebug.dtd +%%XPI_XPIDIR%%/locale/es-AR/firebug.properties %%XPI_XPIDIR%%/locale/es-ES/editors.dtd %%XPI_XPIDIR%%/locale/es-ES/firebug.dtd %%XPI_XPIDIR%%/locale/es-ES/firebug.properties @@ -140,9 +152,13 @@ %%XPI_XPIDIR%%/locale/zh-TW/firebug.dtd %%XPI_XPIDIR%%/locale/zh-TW/firebug.properties %%XPI_XPIDIR%%/platform/Darwin/chrome.manifest +%%XPI_XPIDIR%%/skin/classic/activation-menu.png %%XPI_XPIDIR%%/skin/classic/arrowDown.png %%XPI_XPIDIR%%/skin/classic/arrowUp.png %%XPI_XPIDIR%%/skin/classic/bindings.xml +%%XPI_XPIDIR%%/skin/classic/breakNext.png +%%XPI_XPIDIR%%/skin/classic/breakNextActive.png +%%XPI_XPIDIR%%/skin/classic/breakNextArmed.gif %%XPI_XPIDIR%%/skin/classic/breakpoint.png %%XPI_XPIDIR%%/skin/classic/breakpointCondition.png %%XPI_XPIDIR%%/skin/classic/breakpointDisabled.png @@ -171,6 +187,8 @@ %%XPI_XPIDIR%%/skin/classic/firebug16.png %%XPI_XPIDIR%%/skin/classic/firebug24.png %%XPI_XPIDIR%%/skin/classic/firebug32.png +%%XPI_XPIDIR%%/skin/classic/firebugMinimized.png +%%XPI_XPIDIR%%/skin/classic/flashlight.png %%XPI_XPIDIR%%/skin/classic/group.gif %%XPI_XPIDIR%%/skin/classic/html.css %%XPI_XPIDIR%%/skin/classic/infoIcon.png @@ -211,6 +229,7 @@ %%XPI_XPIDIR%%/skin/classic/netBarConnecting.gif %%XPI_XPIDIR%%/skin/classic/netBarLoaded.gif %%XPI_XPIDIR%%/skin/classic/netBarLoading.gif +%%XPI_XPIDIR%%/skin/classic/netBarResolving.gif %%XPI_XPIDIR%%/skin/classic/netBarResponded.gif %%XPI_XPIDIR%%/skin/classic/netBarWaiting.gif %%XPI_XPIDIR%%/skin/classic/notloading_16.png @@ -263,6 +282,9 @@ %%XPI_XPIDIR%%/skin/classic/win/tabRightHover.png %%XPI_XPIDIR%%/skin/classic/win/twistyClosed.png %%XPI_XPIDIR%%/skin/classic/win/twistyOpen.png +%%XPI_XPIDIR%%/skin/classic/win/up.png +%%XPI_XPIDIR%%/skin/classic/win/upActive.png +%%XPI_XPIDIR%%/skin/classic/win/upHover.png %%XPI_XPIDIR%%/skin/classic/win/window.css %%XPI_XPIDIR%%/skin/classic/window.css %%XPI_XPIDIR%%/update.rdf.tpl.xml @@ -282,6 +304,7 @@ @dirrm %%XPI_XPIDIR%%/locale/da-DK @dirrm %%XPI_XPIDIR%%/locale/de-DE @dirrm %%XPI_XPIDIR%%/locale/en-US +@dirrm %%XPI_XPIDIR%%/locale/es-AR @dirrm %%XPI_XPIDIR%%/locale/es-ES @dirrm %%XPI_XPIDIR%%/locale/fr-FR @dirrm %%XPI_XPIDIR%%/locale/hu-HU --- xpi-firebug-1.4.0b3,2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From jadawin at FreeBSD.org Thu Jul 2 11:32:43 2009 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Thu Jul 2 11:32:49 2009 Subject: ports/136241: [maintainer update] www/glpi 0.71.6 Message-ID: <200907021132.n62BWghP028440@freefall.freebsd.org> Synopsis: [maintainer update] www/glpi 0.71.6 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: jadawin Responsible-Changed-When: Thu Jul 2 11:32:41 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136241 From lapo at lapo.it Thu Jul 2 12:10:05 2009 From: lapo at lapo.it (Lapo Luchini) Date: Thu Jul 2 12:10:11 2009 Subject: ports/134743: devel/Monotone and pthreaded dependencies Message-ID: <200907021210.n62CA4TL052018@freefall.freebsd.org> The following reply was made to PR ports/134743; it has been noted by GNATS. From: Lapo Luchini To: bug-followup@FreeBSD.org, eirnym@gmail.com Cc: Subject: Re: ports/134743: devel/Monotone and pthreaded dependencies Date: Thu, 02 Jul 2009 14:08:40 +0200 I meant to say "the more proper solution *is* to fix" (as opposed to "isn't"). From jadawin at FreeBSD.org Thu Jul 2 12:40:12 2009 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Thu Jul 2 12:40:18 2009 Subject: ports/136242: [UPDATE] net/delegate update to 9.9.3 Message-ID: <200907021240.n62CeBL3078269@freefall.freebsd.org> Synopsis: [UPDATE] net/delegate update to 9.9.3 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: jadawin Responsible-Changed-When: Thu Jul 2 12:40:11 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136242 From robi at nunnisoft.ch Thu Jul 2 13:30:04 2009 From: robi at nunnisoft.ch (Robi) Date: Thu Jul 2 13:30:14 2009 Subject: ports/136246: [PATCH] www/joomla15: update to 1.5.12 Message-ID: <200907021329.n62DTdgb072197@pcm2028.dti.supsi.ch> >Number: 136246 >Category: ports >Synopsis: [PATCH] www/joomla15: update to 1.5.12 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 13:30:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Roberto Nunnari >Release: FreeBSD 6.4-RELEASE-p5 i386 >Organization: >Environment: System: FreeBSD pcm2028.dti.supsi.ch 6.4-RELEASE-p5 FreeBSD 6.4-RELEASE-p5 #0: Fri Jun 12 16:51:10 CEST 2009 >Description: - Update to 1.5.12 Port maintainer (robi@nunnisoft.ch) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- joomla15-1.5.12.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/joomla15/Makefile /root/myports.20090702/ports/www/joomla15/Makefile --- /usr/ports/www/joomla15/Makefile 2009-06-16 22:20:33.000000000 +0200 +++ /root/myports.20090702/ports/www/joomla15/Makefile 2009-07-02 14:54:41.000000000 +0200 @@ -5,9 +5,9 @@ # $FreeBSD: ports/www/joomla15/Makefile,v 1.22 2009/06/16 20:20:33 skreuzer Exp $ PORTNAME= joomla15 -PORTVERSION= 1.5.11 +PORTVERSION= 1.5.12 CATEGORIES= www -MASTER_SITES= http://joomlacode.org/gf/download/frsrelease/10209/40306/ \ +MASTER_SITES= http://joomlacode.org/gf/download/frsrelease/10547/41303/ \ http://web.dti.supsi.ch/downloads/ DISTNAME= Joomla_${PORTVERSION}-Stable-Full_Package diff -ruN --exclude=CVS /usr/ports/www/joomla15/distinfo /root/myports.20090702/ports/www/joomla15/distinfo --- /usr/ports/www/joomla15/distinfo 2009-06-16 21:03:59.000000000 +0200 +++ /root/myports.20090702/ports/www/joomla15/distinfo 2009-07-02 15:08:55.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (Joomla_1.5.11-Stable-Full_Package.tar.bz2) = 28c6d8e5d02b4edccfd25af074196826 -SHA256 (Joomla_1.5.11-Stable-Full_Package.tar.bz2) = 1653f353d5351adc3449b92d14d4e16f7109ae437e6270d3d8255e60d61b6921 -SIZE (Joomla_1.5.11-Stable-Full_Package.tar.bz2) = 3646003 +MD5 (Joomla_1.5.12-Stable-Full_Package.tar.bz2) = f7456f87e71e1a973628486f4bee5dfb +SHA256 (Joomla_1.5.12-Stable-Full_Package.tar.bz2) = e349e518e0506bf1fb84a01912cfb00aa063ce19038cb58c6ac84c2fe42d4c35 +SIZE (Joomla_1.5.12-Stable-Full_Package.tar.bz2) = 4121390 diff -ruN --exclude=CVS /usr/ports/www/joomla15/files/pkg-message.in /root/myports.20090702/ports/www/joomla15/files/pkg-message.in --- /usr/ports/www/joomla15/files/pkg-message.in 2009-06-16 21:03:59.000000000 +0200 +++ /root/myports.20090702/ports/www/joomla15/files/pkg-message.in 2009-07-02 14:55:29.000000000 +0200 @@ -6,6 +6,6 @@ If you've just upgraded an existing installation, please read: -http://docs.joomla.org/Category:Version_1.5.11_FAQ +http://docs.joomla.org/Category:Version_1.5.12_FAQ ******************************************************************* diff -ruN --exclude=CVS /usr/ports/www/joomla15/pkg-plist /root/myports.20090702/ports/www/joomla15/pkg-plist --- /usr/ports/www/joomla15/pkg-plist 2009-06-16 21:03:59.000000000 +0200 +++ /root/myports.20090702/ports/www/joomla15/pkg-plist 2009-07-02 15:07:39.000000000 +0200 @@ -1842,6 +1842,9 @@ %%WWWDIR%%/installation/language/lv-LV/index.html %%WWWDIR%%/installation/language/lv-LV/lv-LV.ini %%WWWDIR%%/installation/language/lv-LV/lv-LV.xml +%%WWWDIR%%/installation/language/mk-MK/index.html +%%WWWDIR%%/installation/language/mk-MK/mk-MK.ini +%%WWWDIR%%/installation/language/mk-MK/mk-MK.xml %%WWWDIR%%/installation/language/mn-MN/index.html %%WWWDIR%%/installation/language/mn-MN/mn-MN.ini %%WWWDIR%%/installation/language/mn-MN/mn-MN.xml @@ -2435,6 +2438,7 @@ %%WWWDIR%%/libraries/pattemplate/patTemplate/TemplateCache/index.html %%WWWDIR%%/libraries/pattemplate/patTemplate/index.html %%WWWDIR%%/libraries/pear/PEAR.php +%%WWWDIR%%/libraries/pear/PEAR5.php %%WWWDIR%%/libraries/pear/archive_tar/Archive_Tar.php %%WWWDIR%%/libraries/pear/archive_tar/index.html %%WWWDIR%%/libraries/pear/index.html @@ -2710,6 +2714,7 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/langs/en.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/langs/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/license.txt %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/_template/images/index.html @@ -2725,9 +2730,11 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/images/advhr.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/images/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/rule.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css @@ -2737,19 +2744,24 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images/sample.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/functions.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js @@ -2763,6 +2775,8 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/contextmenu.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js @@ -2814,11 +2828,36 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-undecided.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-wink.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-yell.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/flash/css/content.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/flash/css/flash.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/flash/css/index.html @@ -2845,9 +2884,11 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/images/move_up.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/images/remove.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/jscripts/fullpage.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/content.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/index.html @@ -2882,6 +2923,15 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/index.html @@ -2915,11 +2965,21 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/images/realmedia.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/images/shockwave.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/images/windowsmedia.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/img/flash.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/img/flv_player.swf +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/img/quicktime.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/img/realmedia.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/img/shockwave.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/img/trans.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/img/windowsmedia.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/js/media.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/embed.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/media.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/media.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js @@ -2934,6 +2994,11 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/css/content.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/trans.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/blank.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/css/blank.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/css/index.html @@ -2945,10 +3010,13 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/pasteword.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/selectall.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm @@ -2962,6 +3030,7 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs/en.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/preview/preview.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print/images/index.html @@ -2969,6 +3038,9 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print/langs/en.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print/langs/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/safari/blank.htm +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/safari/editor_plugin.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/safari/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/save/images/cancel.gif @@ -2987,15 +3059,21 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/replace_button_bg.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/search.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/replace.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/search.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/replace.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/search.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/css/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/css/props.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js @@ -3005,11 +3083,15 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/images/style_info.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/images/styleprops.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/js/props.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/props.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/props.htm +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/cell.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/css/index.html @@ -3032,12 +3114,17 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_row_props.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_split_cells.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/js/row.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/js/table.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/cell.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/row.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/table.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/row.htm @@ -3050,11 +3137,56 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/images/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/images/template.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/js/template.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/jscripts/template.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/template.htm +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/config_tinybrowser.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/css/style_tinybrowser.css.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/css/stylefull_tinybrowser.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/edit.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/error.log +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/flexupload.swf +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/fns_tinybrowser.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/folders.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img/asc.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img/back.png +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img/desc.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img/preview.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img/rotate_ac.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img/rotate_c.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img/tabs.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js/swfobject.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js/tinybrowser.js.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/cs.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/da.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/de.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/en.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/es.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/fi.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/fr.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/hr.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/hu.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/it.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/lv.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/nl.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/pl.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/pt.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/ru.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/sk.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/sv.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/zh-cn.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/zh-tw.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/readme.txt +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/tb_standalone.js.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/tb_tinymce.js.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/tinybrowser.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload_file.php +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload_process.php %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/images/index.html @@ -3084,6 +3216,13 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/remove_button_bg.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/abbr.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/acronym.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/attributes.js @@ -3093,6 +3232,7 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/ins.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin_src.js @@ -3178,7 +3318,16 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_sel_bg.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_sel_end.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tabs_bg.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/about.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js @@ -3188,8 +3337,26 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/link.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/link.htm +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/index.html %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/css/editor_content.css @@ -3221,7 +3388,14 @@ %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/images/underline_ru.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/images/underline_tw.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/images/undo.gif +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/index.html +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png +%%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/tiny_mce.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php @@ -4023,11 +4197,24 @@ @dirrm %%WWWDIR%%/plugins/search @dirrm %%WWWDIR%%/plugins/editors/xstandard @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/utils +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7 +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/default +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/langs +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/img @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7 +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/js +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/img @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/css @@ -4036,35 +4223,50 @@ @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/zoom @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/visualchars +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/css +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/table +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tabfocus @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/spellchecker/img +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/spellchecker/css +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/spellchecker @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/save/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/save/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/save +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/safari @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/print @@ -4074,9 +4276,13 @@ @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/preview @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/paste +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/img +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/css +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/noneditable @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs @@ -4084,6 +4290,8 @@ @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/js +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/img @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/media @@ -4093,6 +4301,9 @@ @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2 +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css @@ -4106,6 +4317,7 @@ @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullpage @@ -4114,8 +4326,14 @@ @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/flash/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/flash/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/flash +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/langs +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/js +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/img +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/js +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/img @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/directionality/langs @@ -4129,21 +4347,26 @@ @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/compat2x @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/cleanup @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/bbcode @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/autosave/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/autosave @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/js +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/img @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts +@dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/js @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/images @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr/css @dirrm %%WWWDIR%%/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advhr @@ -4329,6 +4552,7 @@ @dirrm %%WWWDIR%%/installation/language/nl-NL @dirrm %%WWWDIR%%/installation/language/nb-NO @dirrm %%WWWDIR%%/installation/language/mn-MN +@dirrm %%WWWDIR%%/installation/language/mk-MK @dirrm %%WWWDIR%%/installation/language/lv-LV @dirrm %%WWWDIR%%/installation/language/lt-LT @dirrm %%WWWDIR%%/installation/language/lo-LA --- joomla15-1.5.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Thu Jul 2 13:30:20 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Thu Jul 2 13:30:26 2009 Subject: ports/136246: [PATCH] www/joomla15: update to 1.5.12 Message-ID: <200907021330.n62DUJog016230@freefall.freebsd.org> Synopsis: [PATCH] www/joomla15: update to 1.5.12 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Thu Jul 2 13:30:18 UTC 2009 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136246 From lapo at lapo.it Thu Jul 2 13:50:02 2009 From: lapo at lapo.it (Lapo Luchini) Date: Thu Jul 2 13:50:08 2009 Subject: ports/136247: [MAINTAINER] net/whois: update to 4.7.34 Message-ID: <4A4CBAA7.3080904@lapo.it> >Number: 136247 >Category: ports >Synopsis: [MAINTAINER] net/whois: update to 4.7.34 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 13:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Lapo Luchini >Release: FreeBSD 7.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD lapo.andxor.it 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:14:35 UTC 2009 >Description: - Update to 4.7.34 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- whois-4.7.34.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/whois.orig/Makefile /usr/ports/net/whois/Makefile --- /usr/ports/net/whois.orig/Makefile 2009-07-02 15:44:26.000000000 +0200 +++ /usr/ports/net/whois/Makefile 2009-07-02 15:44:56.000000000 +0200 @@ -6,8 +6,7 @@ # PORTNAME= whois -PORTVERSION= 4.7.33 -PORTREVISION= 1 +PORTVERSION= 4.7.34 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= ${PORTNAME}_${PORTVERSION} diff -ruN --exclude=CVS /usr/ports/net/whois.orig/distinfo /usr/ports/net/whois/distinfo --- /usr/ports/net/whois.orig/distinfo 2009-07-02 15:44:26.000000000 +0200 +++ /usr/ports/net/whois/distinfo 2009-07-02 15:45:02.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (whois_4.7.33.tar.gz) = 740915344c06b5566823d86bb5e12a76 -SHA256 (whois_4.7.33.tar.gz) = d27d6936d23a81e481eb35b3ed8d0cde6e2ac801b299580ceae8104bb10e6883 -SIZE (whois_4.7.33.tar.gz) = 71804 +MD5 (whois_4.7.34.tar.gz) = c2d83431a8fd050bc0a3d6a4544f6870 +SHA256 (whois_4.7.34.tar.gz) = 4ab43d1b638cf3603c8117cdfce25b76e15ab828a1e762ba25ec924cb080e299 +SIZE (whois_4.7.34.tar.gz) = 71941 --- whois-4.7.34.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Thu Jul 2 14:06:55 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Thu Jul 2 14:07:11 2009 Subject: ports/136244: [MAINTAINER] www/xpi-stumbleupon: update to 3.29 Message-ID: <200907021406.n62E6tX6044212@freefall.freebsd.org> Synopsis: [MAINTAINER] www/xpi-stumbleupon: update to 3.29 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jul 2 14:06:54 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136244 From miwi at FreeBSD.org Thu Jul 2 14:06:58 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Thu Jul 2 14:07:12 2009 Subject: ports/136245: [MAINTAINER] www/xpi-firebug: update to 1.4.0b3 Message-ID: <200907021406.n62E6vax044278@freefall.freebsd.org> Synopsis: [MAINTAINER] www/xpi-firebug: update to 1.4.0b3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jul 2 14:06:57 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136245 From miwi at FreeBSD.org Thu Jul 2 14:07:00 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Thu Jul 2 14:07:12 2009 Subject: ports/136247: [MAINTAINER] net/whois: update to 4.7.34 Message-ID: <200907021406.n62E6xtU044344@freefall.freebsd.org> Synopsis: [MAINTAINER] net/whois: update to 4.7.34 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jul 2 14:06:59 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136247 From miwi at FreeBSD.org Thu Jul 2 14:07:24 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Thu Jul 2 14:07:31 2009 Subject: ports/136233: Maintainer Port Upgrade: x11-fm/twander Message-ID: <200907021407.n62E7MKj044442@freefall.freebsd.org> Synopsis: Maintainer Port Upgrade: x11-fm/twander Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jul 2 14:07:22 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136233 From ports at christianserving.org Thu Jul 2 14:10:05 2009 From: ports at christianserving.org (Jim Riggs) Date: Thu Jul 2 14:10:12 2009 Subject: ports/136248: [MAINTAINER] mail/imapsync: update to 1.284 Message-ID: <20090702135901.C2E6B237BAC@zion.christianserving.org> >Number: 136248 >Category: ports >Synopsis: [MAINTAINER] mail/imapsync: update to 1.284 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 14:10:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Jim Riggs >Release: FreeBSD 6.3-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD zion.christianserving.org 6.3-RELEASE-p2 FreeBSD 6.3-RELEASE-p2 #3: Mon May 5 21:27:22 CDT >Description: - Update to 1.284 - Remove local Mail::IMAPClient 2.2.9 install as 3.x from ports now works Removed file(s): - pkg-plist Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- imapsync-1.284_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/imapsync/Makefile /root/portwork/imapsync/Makefile --- /usr/ports/mail/imapsync/Makefile 2009-01-14 16:50:13.000000000 -0600 +++ /root/portwork/imapsync/Makefile 2009-07-02 08:55:55.000000000 -0500 @@ -6,53 +6,38 @@ # PORTNAME= imapsync -PORTVERSION= 1.267 +PORTVERSION= 1.284 PORTREVISION= 1 CATEGORIES= mail perl5 -MASTER_SITES= http://www.linux-france.org/prj/imapsync/dist/:imapsync \ - ${MASTER_SITE_PERL_CPAN:S/$/:imapclient229/} \ - http://christianserving.org/ports/mail/imapsync/:imapsync,imapclient229 -MASTER_SITE_SUBDIR= Mail/:imapclient229 -DISTFILES= ${DISTNAME}.tgz:imapsync \ - Mail-IMAPClient-2.2.9.tar.gz:imapclient229 +MASTER_SITES= http://www.linux-france.org/prj/imapsync/dist/ \ + http://christianserving.org/ports/mail/imapsync/ +EXTRACT_SUFX= .tgz MAINTAINER= ports@christianserving.org COMMENT= IMAP synchronization copy or migration tool -BUILD_DEPENDS= p5-Parse-RecDescent>=1.94:${PORTSDIR}/devel/p5-Parse-RecDescent \ - p5-Digest-HMAC>0:${PORTSDIR}/security/p5-Digest-HMAC \ +BUILD_DEPENDS= p5-Mail-IMAPClient>0:${PORTSDIR}/mail/p5-Mail-IMAPClient \ p5-Term-ReadKey>0:${PORTSDIR}/devel/p5-Term-ReadKey \ p5-Date-Manip>0:${PORTSDIR}/devel/p5-Date-Manip \ - p5-Digest-HMAC>0:${PORTSDIR}/security/p5-Digest-HMAC \ p5-IO-Socket-SSL>0:${PORTSDIR}/security/p5-IO-Socket-SSL RUN_DEPENDS= ${BUILD_DEPENDS} USE_PERL5= yes +NO_BUILD= yes +PLIST_FILES= bin/${PORTNAME} MAN1= ${PORTNAME}.1 POD2MAN?= pod2man -IMAPCLIENTNAME= Mail-IMAPClient-2.2.9 -IMAPCLIENTWRKSRC= ${WRKDIR}/${IMAPCLIENTNAME} -IMAPCLIENTDIR= ${DATADIR}/${IMAPCLIENTNAME} - do-patch: ${REINPLACE_CMD} \ -e 's|/usr/bin/perl|${PERL}|g' \ - -e '2{p;s|^|use lib '"'"'${IMAPCLIENTDIR}/lib/perl5/site_perl'"'"';|;G;}' \ ${WRKSRC}/${PORTNAME} -do-configure: - (cd ${IMAPCLIENTWRKSRC} && echo 'n' | ${PERL} Makefile.PL PREFIX=${IMAPCLIENTDIR}) - -do-build: - ${MAKE} -C ${IMAPCLIENTWRKSRC} PREFIX=${IMAPCLIENTDIR} - do-install: ${POD2MAN} ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.1 ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${PREFIX}/man/man1 - ${MAKE} -C ${IMAPCLIENTWRKSRC} pure_install PREFIX=${IMAPCLIENTDIR} INSTALLSITEMAN3DIR=none .include diff -ruN --exclude=CVS /usr/ports/mail/imapsync/distinfo /root/portwork/imapsync/distinfo --- /usr/ports/mail/imapsync/distinfo 2008-10-10 07:02:35.000000000 -0500 +++ /root/portwork/imapsync/distinfo 2009-07-02 08:19:25.000000000 -0500 @@ -1,6 +1,6 @@ -MD5 (imapsync-1.267.tgz) = 3ca055a54b89e2ec01f687cfb6abfd1c -SHA256 (imapsync-1.267.tgz) = be71ff9e9add9c0b785fa322063840c488389d317c62068285d6b54596b83641 -SIZE (imapsync-1.267.tgz) = 488633 +MD5 (imapsync-1.284.tgz) = c2c4e5115f6cccfc52576373731d6d08 +SHA256 (imapsync-1.284.tgz) = 100b70911ed6f60052816b99c93ed471d1f4edf82c5caa679e3448063ccfb78c +SIZE (imapsync-1.284.tgz) = 762697 MD5 (Mail-IMAPClient-2.2.9.tar.gz) = 21c1901d55a2d57f73840cad478c665d SHA256 (Mail-IMAPClient-2.2.9.tar.gz) = fa67a4407295e50a9975769afb9b13ae14db58225d552cbb10c034636c2560c9 SIZE (Mail-IMAPClient-2.2.9.tar.gz) = 376791 diff -ruN --exclude=CVS /usr/ports/mail/imapsync/pkg-plist /root/portwork/imapsync/pkg-plist --- /usr/ports/mail/imapsync/pkg-plist 2009-01-14 16:49:58.000000000 -0600 +++ /root/portwork/imapsync/pkg-plist 1969-12-31 18:00:00.000000000 -0600 @@ -1,21 +0,0 @@ -bin/imapsync -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient.pod -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/BodyStructure.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/BodyStructure/Parse.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/MessageSet.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/Thread.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach/auto/Mail/IMAPClient/.packlist -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach/auto/Mail/IMAPClient -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach/auto/Mail -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach/auto -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/BodyStructure -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%% -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/lib/perl5/site_perl -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/lib/perl5 -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/lib -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9 -@dirrm %%DATADIR%% --- imapsync-1.284_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From gslin at gslin.org Thu Jul 2 15:10:02 2009 From: gslin at gslin.org (Gea-Suan Lin) Date: Thu Jul 2 15:10:09 2009 Subject: ports/136249: [MAINTAINER] devel/gearmand: update to 0.8 Message-ID: <20090702150633.D34867E81B@colo-p.gslin.org> >Number: 136249 >Category: ports >Synopsis: [MAINTAINER] devel/gearmand: update to 0.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 15:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 7.1-STABLE i386 >Organization: >Environment: System: FreeBSD colo-p.gslin.org 7.1-STABLE FreeBSD 7.1-STABLE #0: Sat Jan 31 21:46:23 UTC 2009 >Description: - Update to 0.8 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- gearmand-0.8.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/gearmand/Makefile /home/staff/gslin/work/ports/gearmand/Makefile --- /usr/ports/devel/gearmand/Makefile 2009-07-01 16:58:20.000000000 +0800 +++ /home/staff/gslin/work/ports/gearmand/Makefile 2009-07-02 23:05:20.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= gearmand -PORTVERSION= 0.7 +PORTVERSION= 0.8 CATEGORIES= devel MASTER_SITES= http://launchpad.net/gearmand/trunk/${PORTVERSION}/+download/ @@ -16,7 +16,6 @@ LIB_DEPENDS= event:${PORTSDIR}/devel/libevent \ uuid:${PORTSDIR}/misc/e2fsprogs-libuuid -CFLAGS+= "-I${LOCALBASE}/include" CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" FETCH_ARGS= -pRr GNU_CONFIGURE= yes @@ -64,6 +63,8 @@ gearman_client_set_task_fn_arg_free.3 \ gearman_client_set_warning_fn.3 \ gearman_client_set_workload_fn.3 \ + gearman_client_set_workload_free.3 \ + gearman_client_set_workload_malloc.3 \ gearman_clone.3 \ gearman_con_add.3 \ gearman_con_clone.3 \ @@ -75,6 +76,8 @@ gearman_con_flush.3 \ gearman_con_flush_all.3 \ gearman_con_free.3 \ + gearman_con_protocol_data.3 \ + gearman_con_read.3 \ gearman_con_ready.3 \ gearman_con_recv.3 \ gearman_con_recv_data.3 \ @@ -86,8 +89,29 @@ gearman_con_set_events.3 \ gearman_con_set_fd.3 \ gearman_con_set_options.3 \ + gearman_con_set_packet_pack_fn.3 \ + gearman_con_set_packet_unpack_fn.3 \ + gearman_con_set_protocol_data.3 \ + gearman_con_set_protocol_data_free_fn.3 \ + gearman_con_set_recv_data_fn.3 \ + gearman_con_set_recv_fn.3 \ gearman_con_set_revents.3 \ + gearman_con_set_send_data_fn.3 \ + gearman_con_set_send_fn.3 \ gearman_con_wait.3 \ + gearman_conf_create.3 \ + gearman_conf_errno.3 \ + gearman_conf_error.3 \ + gearman_conf_free.3 \ + gearman_conf_module_add_option.3 \ + gearman_conf_module_create.3 \ + gearman_conf_module_find.3 \ + gearman_conf_module_free.3 \ + gearman_conf_module_value.3 \ + gearman_conf_parse_args.3 \ + gearman_conf_return.3 \ + gearman_conf_set_options.3 \ + gearman_conf_usage.3 \ gearman_create.3 \ gearman_errno.3 \ gearman_error.3 \ @@ -109,25 +133,26 @@ gearman_packet_add_arg.3 \ gearman_packet_create.3 \ gearman_packet_free.3 \ + gearman_packet_pack.3 \ gearman_packet_pack_header.3 \ - gearman_packet_parse.3 \ gearman_packet_set_options.3 \ gearman_packet_take_data.3 \ + gearman_packet_unpack.3 \ gearman_packet_unpack_header.3 \ gearman_parse_servers.3 \ + gearman_protocol_http_conf.3 \ gearman_queue_fn_arg.3 \ + gearman_queue_libdrizzle_conf.3 \ gearman_queue_libdrizzle_deinit.3 \ gearman_queue_libdrizzle_init.3 \ - gearman_queue_libdrizzle_modconf.3 \ + gearman_queue_libmemcached_conf.3 \ gearman_queue_libmemcached_deinit.3 \ gearman_queue_libmemcached_init.3 \ - gearman_queue_libmemcached_modconf.3 \ - gearmand_queue_libmemcached_deinit.3 \ - gearmand_queue_libmemcached_init.3 \ gearman_server_client_add.3 \ gearman_server_client_create.3 \ gearman_server_client_free.3 \ gearman_server_con_add.3 \ + gearman_server_con_con.3 \ gearman_server_con_create.3 \ gearman_server_con_data.3 \ gearman_server_con_free.3 \ @@ -206,6 +231,7 @@ gearman_task_set_fn_arg.3 \ gearman_task_take_data.3 \ gearman_task_uuid.3 \ + gearman_verbose_name.3 \ gearman_version.3 \ gearman_worker_add_function.3 \ gearman_worker_add_server.3 \ @@ -229,8 +255,13 @@ gearmand_con_watch.3 \ gearmand_create.3 \ gearmand_free.3 \ + gearmand_port_add.3 \ + gearmand_protocol_http_deinit.3 \ + gearmand_protocol_http_init.3 \ gearmand_queue_libdrizzle_deinit.3 \ gearmand_queue_libdrizzle_init.3 \ + gearmand_queue_libmemcached_deinit.3 \ + gearmand_queue_libmemcached_init.3 \ gearmand_run.3 \ gearmand_set_backlog.3 \ gearmand_set_log.3 \ diff -ruN --exclude=CVS /usr/ports/devel/gearmand/distinfo /home/staff/gslin/work/ports/gearmand/distinfo --- /usr/ports/devel/gearmand/distinfo 2009-07-01 16:58:20.000000000 +0800 +++ /home/staff/gslin/work/ports/gearmand/distinfo 2009-07-02 23:00:04.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (gearmand-0.7.tar.gz) = 6c799135cf00f3a7cfe9a39d51856b89 -SHA256 (gearmand-0.7.tar.gz) = 39ce8a321e4782970185487dd702a8b6eee6e33066bf38c9d62789fcec9ac76f -SIZE (gearmand-0.7.tar.gz) = 508136 +MD5 (gearmand-0.8.tar.gz) = 2118ad03aa055d22374d3a095554e54a +SHA256 (gearmand-0.8.tar.gz) = d28a64adcc99e837f408d0abb56f62cadcdef3fb2b8efa668518384cfbba5773 +SIZE (gearmand-0.8.tar.gz) = 573862 diff -ruN --exclude=CVS /usr/ports/devel/gearmand/pkg-plist /home/staff/gslin/work/ports/gearmand/pkg-plist --- /usr/ports/devel/gearmand/pkg-plist 2009-07-01 16:58:20.000000000 +0800 +++ /home/staff/gslin/work/ports/gearmand/pkg-plist 2009-07-02 23:02:57.000000000 +0800 @@ -1,18 +1,18 @@ @comment $FreeBSD: ports/devel/gearmand/pkg-plist,v 1.4 2009/07/01 08:58:20 miwi Exp $ bin/gearman include/libgearman/client.h -include/libgearman/con.h +include/libgearman/conf.h +include/libgearman/conf_module.h +include/libgearman/conn.h include/libgearman/constants.h include/libgearman/gearman.h include/libgearman/gearmand.h include/libgearman/gearmand_con.h include/libgearman/gearmand_thread.h include/libgearman/job.h -include/libgearman/modconf.h -include/libgearman/modconf_module.h -include/libgearman/modconf_constants.h -include/libgearman/modconf_structs.h include/libgearman/packet.h +include/libgearman/protocol_http.h +include/libgearman/queue_libmemcached.h include/libgearman/server.h include/libgearman/server_client.h include/libgearman/server_con.h @@ -23,6 +23,7 @@ include/libgearman/server_worker.h include/libgearman/structs.h include/libgearman/task.h +include/libgearman/visibility.h include/libgearman/worker.h lib/libgearman.a lib/libgearman.la --- gearmand-0.8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From gslin at gslin.org Thu Jul 2 15:20:03 2009 From: gslin at gslin.org (Gea-Suan Lin) Date: Thu Jul 2 15:20:10 2009 Subject: ports/136250: [NEW PORT] devel/pecl-gearman: Gearman API Message-ID: <20090702151314.AAD637E81B@colo-p.gslin.org> >Number: 136250 >Category: ports >Synopsis: [NEW PORT] devel/pecl-gearman: Gearman API >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 15:20:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 7.1-STABLE i386 >Organization: >Environment: System: FreeBSD colo-p.gslin.org 7.1-STABLE FreeBSD 7.1-STABLE #0: Sat Jan 31 21:46:23 UTC 2009 >Description: This extension uses libgearman library to provide API for communicating with gearmand, and writing clients and workers. WWW: http://pecl.php.net/package/gearman Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- pecl-gearman-0.4.0.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pecl-gearman # pecl-gearman/pkg-descr # pecl-gearman/Makefile # pecl-gearman/distinfo # echo c - pecl-gearman mkdir -p pecl-gearman > /dev/null 2>&1 echo x - pecl-gearman/pkg-descr sed 's/^X//' >pecl-gearman/pkg-descr << 'f38d57e49142951ce35c48f1004acb0e' XThis extension uses libgearman library to provide API for Xcommunicating with gearmand, and writing clients and workers. X XWWW: http://pecl.php.net/package/gearman f38d57e49142951ce35c48f1004acb0e echo x - pecl-gearman/Makefile sed 's/^X//' >pecl-gearman/Makefile << 'f870f11e72a091fc72906f3875ec56cd' X# New ports collection makefile for: pecl-gearman X# Date created: 2009-07-02 X# Whom: Gea-Suan Lin X# X# $FreeBSD$ X# X XPORTNAME= gearman XPORTVERSION= 0.4.0 XCATEGORIES= devel XMASTER_SITES= http://pecl.php.net/get/ XPKGNAMEPREFIX= pecl- XEXTRACT_SUFX= .tgz XDIST_SUBDIR= PECL X XMAINTAINER= gslin@gslin.org XCOMMENT= Gearman API X XLIB_DEPENDS= gearman:${PORTSDIR}/devel/gearmand X XCONFIGURE_ARGS= --with-gearman XPHP_MODNAME= ${PORTNAME} XUSE_PHP= yes XUSE_PHPEXT= yes X X.include f870f11e72a091fc72906f3875ec56cd echo x - pecl-gearman/distinfo sed 's/^X//' >pecl-gearman/distinfo << '57410b22b194586edb8297dabe637204' XMD5 (PECL/gearman-0.4.0.tgz) = d99dd66eef0d945a420f4a04936d842b XSHA256 (PECL/gearman-0.4.0.tgz) = de4551eb2b2fb5d89d62c6e8ae850a402a71a5e791361156f244be776495d101 XSIZE (PECL/gearman-0.4.0.tgz) = 27885 57410b22b194586edb8297dabe637204 exit --- pecl-gearman-0.4.0.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Thu Jul 2 15:20:14 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Thu Jul 2 15:20:21 2009 Subject: ports/136250: [NEW PORT] devel/pecl-gearman: Gearman API Message-ID: <200907021520.n62FKDDO000696@freefall.freebsd.org> Synopsis: [NEW PORT] devel/pecl-gearman: Gearman API Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jul 2 15:20:13 UTC 2009 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136250 From miwi at FreeBSD.org Thu Jul 2 15:45:58 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Thu Jul 2 15:46:14 2009 Subject: ports/136246: [PATCH] www/joomla15: update to 1.5.12 Message-ID: <200907021545.n62FjvA6025191@freefall.freebsd.org> Synopsis: [PATCH] www/joomla15: update to 1.5.12 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jul 2 15:45:57 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136246 From miwi at FreeBSD.org Thu Jul 2 15:46:00 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Thu Jul 2 15:46:14 2009 Subject: ports/136248: [MAINTAINER] mail/imapsync: update to 1.284 Message-ID: <200907021545.n62FjxQa025257@freefall.freebsd.org> Synopsis: [MAINTAINER] mail/imapsync: update to 1.284 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jul 2 15:45:59 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136248 From miwi at FreeBSD.org Thu Jul 2 15:46:02 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Thu Jul 2 15:46:15 2009 Subject: ports/136249: [MAINTAINER] devel/gearmand: update to 0.8 Message-ID: <200907021546.n62Fk2kP025326@freefall.freebsd.org> Synopsis: [MAINTAINER] devel/gearmand: update to 0.8 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Thu Jul 2 15:46:01 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136249 From proler at gmail.com Thu Jul 2 16:50:07 2009 From: proler at gmail.com (oleg) Date: Thu Jul 2 16:50:14 2009 Subject: ports/136252: Update port: sysutils/fusefs-mhddfs version only Message-ID: <200907021645.n62Gjkfe012200@www.freebsd.org> >Number: 136252 >Category: ports >Synopsis: Update port: sysutils/fusefs-mhddfs version only >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 16:50:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: oleg >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # fusefs-mhddfs # fusefs-mhddfs/Makefile # fusefs-mhddfs/distinfo # fusefs-mhddfs/pkg-descr # fusefs-mhddfs/files # fusefs-mhddfs/files/patch-src-main.c # echo c - fusefs-mhddfs mkdir -p fusefs-mhddfs > /dev/null 2>&1 echo x - fusefs-mhddfs/Makefile sed 's/^X//' >fusefs-mhddfs/Makefile << 'f9f3a1019a1dc9e6b41df79d060f9854' X# New ports collection makefile for: fusefs-mhddfs X# Date created: 2009-06-25 X# Whom: Oleg Alexeenkov X# X# $FreeBSD: ports/sysutils/fusefs-mhddfs/Makefile,v 1.1 2009/06/26 12:31:27 avl Exp $ X# X XPORTNAME= mhddfs XPORTVERSION= 0.1.21 XCATEGORIES= sysutils XMASTER_SITES= http://mhddfs.uvw.ru/downloads/ XPKGNAMEPREFIX= fusefs- XDISTNAME= ${PORTNAME}_${PORTVERSION} X XMAINTAINER= proler@gmail.com XCOMMENT= Multi HDD [FUSE] File System X XBUILD_DEPENDS= ${LOCALBASE}/include/fuse.h:${PORTSDIR}/sysutils/fusefs-libs XRUN_DEPENDS= ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod X XUSE_GMAKE= yes XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} X XMAN1= ${PORTNAME}.1 XPLIST_FILES= bin/${PORTNAME} XPORTDOCS= README ChangeLog X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1 X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR} X.endif X X.include f9f3a1019a1dc9e6b41df79d060f9854 echo x - fusefs-mhddfs/distinfo sed 's/^X//' >fusefs-mhddfs/distinfo << '9a66a6ce7cee3dd067b7513f931d5b63' XMD5 (mhddfs_0.1.21.tar.gz) = 45be57624d391bfe84c806447ead0c13 XSHA256 (mhddfs_0.1.21.tar.gz) = 600ee9a306e6e1bd8e7b1d7d13a693cbaacc98b0ef8a9c55dac20e67c2fe4ba4 XSIZE (mhddfs_0.1.21.tar.gz) = 32047 9a66a6ce7cee3dd067b7513f931d5b63 echo x - fusefs-mhddfs/pkg-descr sed 's/^X//' >fusefs-mhddfs/pkg-descr << 'df80e4e868a4167632a47eab48c380e8' Xmhddfs - Multi HDD [FUSE] File System X XFile system for unifying several mount points into one XThis FUSE-based file system allows mount points (or directories) to be Xcombined, simulating a single big volume which can merge several hard Xdrives or remote file systems. It is like unionfs, but can choose the Xdrive with the most free space to create new files on, and can move Xdata transparently between drives. X XWWW: http://mhddfs.uvw.ru/ df80e4e868a4167632a47eab48c380e8 echo c - fusefs-mhddfs/files mkdir -p fusefs-mhddfs/files > /dev/null 2>&1 echo x - fusefs-mhddfs/files/patch-src-main.c sed 's/^X//' >fusefs-mhddfs/files/patch-src-main.c << '16bf01581fb2d7b591da6cde358ad94d' X--- src/main.c.orig 2009-06-25 05:11:08.000000000 +0400 X+++ src/main.c 2009-06-25 05:23:57.000000000 +0400 X@@ -755,7 +755,7 @@ X return -errno; X } X X-#if _POSIX_SYNCHRONIZED_IO + 0 > 0 X+#if _POSIX_SYNCHRONIZED_IO + 0 > 0 || defined(__FreeBSD__) X #undef HAVE_FDATASYNC X #else X #define HAVE_FDATASYNC 1 16bf01581fb2d7b591da6cde358ad94d exit >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Thu Jul 2 16:50:17 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Thu Jul 2 16:50:23 2009 Subject: ports/136252: Update port: sysutils/fusefs-mhddfs version only Message-ID: <200907021650.n62GoGuQ071302@freefall.freebsd.org> Synopsis: Update port: sysutils/fusefs-mhddfs version only Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Thu Jul 2 16:50:16 UTC 2009 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136252 From wxs at FreeBSD.org Thu Jul 2 18:41:55 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:42:01 2009 Subject: ports/136158: update sysutils/syslog-ng2 2.0.9 to 2.0.10 Message-ID: <200907021841.n62IfsoB060760@freefall.freebsd.org> Synopsis: update sysutils/syslog-ng2 2.0.9 to 2.0.10 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:41:54 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136158 From wxs at FreeBSD.org Thu Jul 2 18:42:07 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:42:13 2009 Subject: ports/136211: fix bug: sysutils/fusefs-kmod Message-ID: <200907021842.n62Ig6hU060867@freefall.freebsd.org> Synopsis: fix bug: sysutils/fusefs-kmod Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:42:06 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136211 From wxs at FreeBSD.org Thu Jul 2 18:46:41 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:46:46 2009 Subject: ports/135311: mail/dovecot-antispam must be rebuilt if dovecot is upgraded Message-ID: <200907021846.n62IkdsB061021@freefall.freebsd.org> Synopsis: mail/dovecot-antispam must be rebuilt if dovecot is upgraded Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:46:39 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=135311 From wxs at FreeBSD.org Thu Jul 2 18:47:55 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:48:01 2009 Subject: ports/136070: [security] please update net-mgmt/nfsen to 1.3.2 Message-ID: <200907021847.n62IlsB2061118@freefall.freebsd.org> Synopsis: [security] please update net-mgmt/nfsen to 1.3.2 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:47:54 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136070 From wxs at FreeBSD.org Thu Jul 2 18:48:55 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:49:16 2009 Subject: ports/136024: [patch] deskutils/plasma-applet-simpleweatherforecast а dded dependency for this port. Message-ID: <200907021848.n62Ims3C061238@freefall.freebsd.org> Synopsis: [patch] deskutils/plasma-applet-simpleweatherforecast аdded dependency for this port. Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:48:53 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136024 From wxs at FreeBSD.org Thu Jul 2 18:49:08 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:49:16 2009 Subject: ports/136239: [UPDATE] mail/policyd2 update to 2.0.7 Message-ID: <200907021849.n62In8JJ061333@freefall.freebsd.org> Synopsis: [UPDATE] mail/policyd2 update to 2.0.7 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:49:08 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136239 From alex-goncharov at comcast.net Thu Jul 2 18:50:05 2009 From: alex-goncharov at comcast.net (Alex Goncharov) Date: Thu Jul 2 18:50:17 2009 Subject: ports/136253: MySQL Database Server: Need a 5.4 port Message-ID: >Number: 136253 >Category: ports >Synopsis: MySQL Database Server: Need a 5.4 port >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 18:50:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alex Goncharov >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: >Description: MySQL 5.4 port is requested by July 10th. I am willing to do it. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From wxs at FreeBSD.org Thu Jul 2 18:50:07 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:50:18 2009 Subject: ports/136164: devel/libpdel does not build on 8-current Message-ID: <200907021850.n62Io52N061499@freefall.freebsd.org> Synopsis: devel/libpdel does not build on 8-current Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:50:04 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136164 From wxs at FreeBSD.org Thu Jul 2 18:51:40 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:51:46 2009 Subject: ports/136131: Update Port: net/libtrace Message-ID: <200907021851.n62IpdJd068453@freefall.freebsd.org> Synopsis: Update Port: net/libtrace Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:51:39 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136131 From wxs at FreeBSD.org Thu Jul 2 18:51:55 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:52:02 2009 Subject: ports/136121: Port Update: misc/p5-Geography-Countries Message-ID: <200907021851.n62IpteT068544@freefall.freebsd.org> Synopsis: Port Update: misc/p5-Geography-Countries Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:51:54 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136121 From wxs at FreeBSD.org Thu Jul 2 18:52:37 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:52:43 2009 Subject: ports/135831: [MAINTAINER] java/sqlitejdbc: update to 056 Message-ID: <200907021852.n62IqaFC068648@freefall.freebsd.org> Synopsis: [MAINTAINER] java/sqlitejdbc: update to 056 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:52:36 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=135831 From wxs at FreeBSD.org Thu Jul 2 18:54:48 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:54:54 2009 Subject: ports/136057: unify nologin path to /usr/sbin/nologin in ports/UIDs Message-ID: <200907021854.n62IslCS068783@freefall.freebsd.org> Synopsis: unify nologin path to /usr/sbin/nologin in ports/UIDs Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:54:47 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136057 From wxs at FreeBSD.org Thu Jul 2 18:55:06 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:55:13 2009 Subject: ports/136032: update to security/opensaml2 port Message-ID: <200907021855.n62It6Kd068878@freefall.freebsd.org> Synopsis: update to security/opensaml2 port Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:55:05 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136032 From wxs at FreeBSD.org Thu Jul 2 18:56:06 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 18:56:14 2009 Subject: ports/136033: update to devel/xmltooling port Message-ID: <200907021856.n62Iu5px068992@freefall.freebsd.org> Synopsis: update to devel/xmltooling port Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 18:56:05 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136033 From david at wood2.org.uk Thu Jul 2 19:00:22 2009 From: david at wood2.org.uk (David Wood) Date: Thu Jul 2 19:00:30 2009 Subject: ports/136254: [maintainer update] update net/freeradius2 to 2.1.6 Message-ID: <200907021852.n62Iqfxq026406@www.freebsd.org> >Number: 136254 >Category: ports >Synopsis: [maintainer update] update net/freeradius2 to 2.1.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 19:00:15 UTC 2009 >Closed-Date: >Last-Modified: >Originator: David Wood >Release: 7.2-RELEASE amd64 >Organization: >Environment: FreeBSD manganese.wood2.org.uk 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Sun Jun 28 19:36:41 BST 2009 david@manganese.wood2.org.uk:/scratch/usr/obj/usr/src/sys/MANGANESE amd64 >Description: Update to FreeRADIUS 2.1.6. There was no version 2.1.5; internally, 2.1.4 declared itself to be 2.1.5 so that version was skipped. FreeBSD notes ============= The Makefile has been refactored to use bsd.port.options.mk now that it is available for use. The extensive diff against Makefile is mostly re-ordering existing lines. The dependencies on Perl and Python have been made optional via the PERL and PYTHON OPTIONs. The main and rlm_perl configure.in files are patched in files/patch-perl to add a --without-perl option so that the dependency on Perl can be properly disabled. This deals with the request in ports/131595 that these dependencies become optional; only now that bsd.port.options.mk is available can this be done without kludges. [Possibly incompatible change] The NOPERL knob, which was never a complete solution, has been retired. Those who used to compile the port -DWITH_NOPERL should disable the PERL option before building this version. A RUBY OPTION has been introduced for the experimental rlm_ruby. [Possibly incompatible change] DHCP support now has its own DHCP OPTION and is not included in EXPERIMENTAL. unixODBC support has been added (mirroring the change in PR ports/133746 for net/freeradius). I do not believe that the two possibly incompatible changes necessarily need mentioning in UPDATING. The first deletes a knob that was deprecated in all versions of net/freeradius2. The second gives each of the two functions previously assigned to the EXPERIMENTAL OPTION their own OPTION. In most if not all cases, the change in OPTIONS= will mean an automatic 'make config' before the port is built. The new OPTIONs do not change the default features, so the feature set of the package is unchanged. rlm_perl and rlm_python remain on by default, following the upstream defaults. Release notes ============= Feature Improvements * radclient exits with 0 on successful (accept / ack), and 1 otherwise (no response / reject) * Added support for %{sql:UPDATE ..}, and insert/delete. Patch from Arran Cudbard-Bell * Added sample "do not respond" policy. See raddb/policy.conf and raddb/sites-available/do_not_respond * Cleanups to Suse spec file from Norbert Wegener * New VSAs for Juniper from Bjorn Mork * Include more RFC dictionaries in the default install * More documentation for the WiMAX module * Added "chase_referrals" and "rebind" configuration to rlm_ldap. This helps with Active Directory. See raddb/modules/ldap * Don't load pre/post-proxy if proxying is disabled. * Added %{md5:...}, which returns MD5 hash in hex. * Added configurable "retry_interval" and "poll_interval" for "detail" listeners. * Added "delete_mppe_keys" configuration option to rlm_wimax. Apparently some WiMAX clients misbehave when they see those keys. * Added experimental rlm_ruby from http://github.com/Antti/freeradius-server/tree/master * Add Tunnel attributes to ldap.attrmap * Enable virtual servers to be reloaded on HUP. For now, only the "authorize", "authenticate", etc. processing sections are reloaded. Clients and "listen" sections are NOT reloaded. * Updated "radwatch" script to be more robust. See scripts/radwatch * Added certificate compatibility notes in raddb/certs/README, for compatibility with different operating systems. (i.e. Windows) Bug Fixes * Minor changes to allow building without VQP. * Minor fixes from John Center * Fixed raddebug example * Don't crash when deleting attributes via unlang * Be friendlier to very fast clients * Updated the "detail" listener so that it only polls once, and not many times in a row, leaking memory each time... * Update comparison for Packet-Src-IP-Address (etc.) so that the operators other than '==' work. * Did autoconf magic to work around weird libtool bug * Make rlm_perl keep tags for tagged attributes in more situations * Update UID checking for radmin * Added "include_length" field for TTLS. It's needed for RFC compliance, but not (apparently) for interoperability. INSTRUCTIONS ============ files/patch-version and files/patch-bootstrap have been been deleted. files/patch-perl and files/patch-bootstrap have been added. Please note: portlint seems not to understand bsd.port.options.mk and throws up a whole bunch of new FATAL errors that are bogus. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: distinfo =================================================================== --- distinfo (.../branches/FreeBSD-ports-tree/freeradius2) (revision 279) +++ distinfo (.../trunk/freeradius2) (revision 279) @@ -1,3 +1,3 @@ -MD5 (freeradius-server-2.1.4.tar.bz2) = ba1fd573222ed5c8bead1cce1383a7a9 -SHA256 (freeradius-server-2.1.4.tar.bz2) = d509191a2a0cd556f23639547d176c662c0fc0de09fc625e1afc62ed84cbd2de -SIZE (freeradius-server-2.1.4.tar.bz2) = 2405962 +MD5 (freeradius-server-2.1.6.tar.bz2) = 645ac631505cde46e93c47e273bdec19 +SHA256 (freeradius-server-2.1.6.tar.bz2) = a3bb9ead594a612442a4ce1d7c6930002486055c3be8f20320634c7f2743cb9e +SIZE (freeradius-server-2.1.6.tar.bz2) = 2512340 Index: files/patch-version =================================================================== --- files/patch-version (.../branches/FreeBSD-ports-tree/freeradius2) (revision 279) +++ files/patch-version (.../trunk/freeradius2) (revision 279) @@ -1,5 +0,0 @@ ---- VERSION 2009-03-19 13:59:05.000000000 +0000 -+++ VERSION 2009-03-19 13:59:14.000000000 +0000 -@@ -1 +1 @@ --2.1.5 -+2.1.4 Index: files/patch-bootstrap =================================================================== --- files/patch-bootstrap (.../branches/FreeBSD-ports-tree/freeradius2) (revision 279) +++ files/patch-bootstrap (.../trunk/freeradius2) (revision 279) @@ -1,11 +0,0 @@ ---- raddb/certs/bootstrap 2009-03-18 20:20:41.000000000 +0000 -+++ raddb/certs/bootstrap 2009-03-18 21:20:25.000000000 +0000 -@@ -17,7 +17,7 @@ - # - # If that worked, exit. Otherwise, run the commands manually. - # --if [ "$?" == "0" ] -+if [ $? -eq 0 ] - then - exit 0 - fi Index: files/patch-perl =================================================================== --- files/patch-perl (.../branches/FreeBSD-ports-tree/freeradius2) (revision 0) +++ files/patch-perl (.../trunk/freeradius2) (revision 279) @@ -0,0 +1,61 @@ +--- configure.in 2009-07-01 17:32:17.000000000 +0100 ++++ configure.in 2009-07-01 17:45:44.000000000 +0100 +@@ -409,6 +409,21 @@ + AC_DEFINE(WITH_UDPFROMTO, [], [define if you want udpfromto]) + fi + ++dnl extra argument: --with-perl ++WITH_PERL=yes ++AC_ARG_WITH(perl, ++[ --with-perl Enable Perl support. (default=yes)], ++[ case "$withval" in ++ yes) ++ ;; ++ *) ++ WITH_PERL=no ++ esac ] ++) ++if test "x$WITH_PERL" = "xno"; then ++ with_rlm_perl=no ++fi ++ + dnl ############################################################# + dnl # + dnl # 1. Checks for programs +@@ -416,10 +431,14 @@ + dnl ############################################################# + + CHECKRAD=checkrad.pl ++if test "x$WITH_PERL" = "xyes"; then + AC_PATH_PROG(PERL, perl, /usr/local/bin/perl) + if test "x$ac_cv_path_PERL" = "x"; then + AC_MSG_WARN(perl not found - Simultaneous-Use and checkrad.pl may not work) + fi ++else ++ AC_MSG_WARN(perl disabled - Simultaneous-Use and checkrad.pl may not work) ++fi + AC_PATH_PROG(SNMPGET, snmpget) + if test "x$ac_cv_path_SNMPGET" = "x"; then + AC_MSG_WARN(snmpget not found - Simultaneous-Use and checkrad.pl may not work) +--- src/modules/rlm_perl/configure.in 2009-07-01 17:58:23.000000000 +0100 ++++ src/modules/rlm_perl/configure.in 2009-07-01 20:09:39.000000000 +0100 +@@ -3,7 +3,18 @@ + AC_REVISION($Revision$) + AC_DEFUN(modname,[rlm_perl]) + +-if test x$with_[]modname != xno; then ++dnl extra argument: --with-perl ++WITH_PERL=yes ++AC_ARG_WITH(perl, ++[ --with-perl Enable Perl support. (default=yes)], ++[ case "$withval" in ++ yes) ++ ;; ++ *) ++ WITH_PERL=no ++ esac ] ++) ++if test x$with_[]modname != xno && test x$WITH_PERL != xno; then + + AC_PROG_CC + AC_PROG_CPP Index: pkg-plist =================================================================== --- pkg-plist (.../branches/FreeBSD-ports-tree/freeradius2) (revision 279) +++ pkg-plist (.../trunk/freeradius2) (revision 279) @@ -374,11 +374,11 @@ %%EXPM%%%%LIBDIR%%/rlm_protocol_filter.a %%EXPM%%%%LIBDIR%%/rlm_protocol_filter.la %%EXPM%%%%LIBDIR%%/rlm_protocol_filter.so -%%LIBDIR%%/rlm_python-%%PORTVERSION%%.la -%%LIBDIR%%/rlm_python-%%PORTVERSION%%.so -%%LIBDIR%%/rlm_python.a -%%LIBDIR%%/rlm_python.la -%%LIBDIR%%/rlm_python.so +%%RLMPYTHON%%%%LIBDIR%%/rlm_python-%%PORTVERSION%%.la +%%RLMPYTHON%%%%LIBDIR%%/rlm_python-%%PORTVERSION%%.so +%%RLMPYTHON%%%%LIBDIR%%/rlm_python.a +%%RLMPYTHON%%%%LIBDIR%%/rlm_python.la +%%RLMPYTHON%%%%LIBDIR%%/rlm_python.so %%LIBDIR%%/rlm_radutmp-%%PORTVERSION%%.la %%LIBDIR%%/rlm_radutmp-%%PORTVERSION%%.so %%LIBDIR%%/rlm_radutmp.a @@ -389,6 +389,11 @@ %%LIBDIR%%/rlm_realm.a %%LIBDIR%%/rlm_realm.la %%LIBDIR%%/rlm_realm.so +%%EXPM%%%%RLMRUBY%%%%LIBDIR%%/rlm_ruby-%%PORTVERSION%%.la +%%EXPM%%%%RLMRUBY%%%%LIBDIR%%/rlm_ruby-%%PORTVERSION%%.so +%%EXPM%%%%RLMRUBY%%%%LIBDIR%%/rlm_ruby.a +%%EXPM%%%%RLMRUBY%%%%LIBDIR%%/rlm_ruby.la +%%EXPM%%%%RLMRUBY%%%%LIBDIR%%/rlm_ruby.so %%EXPM%%%%LIBDIR%%/rlm_sim_files-%%PORTVERSION%%.la %%EXPM%%%%LIBDIR%%/rlm_sim_files-%%PORTVERSION%%.so %%EXPM%%%%LIBDIR%%/rlm_sim_files.a @@ -429,6 +434,11 @@ %%PGSQL%%%%LIBDIR%%/rlm_sql_postgresql.a %%PGSQL%%%%LIBDIR%%/rlm_sql_postgresql.la %%PGSQL%%%%LIBDIR%%/rlm_sql_postgresql.so +%%UNIXODBC%%%%LIBDIR%%/rlm_sql_unixodbc-%%PORTVERSION%%.la +%%UNIXODBC%%%%LIBDIR%%/rlm_sql_unixodbc-%%PORTVERSION%%.so +%%UNIXODBC%%%%LIBDIR%%/rlm_sql_unixodbc.a +%%UNIXODBC%%%%LIBDIR%%/rlm_sql_unixodbc.la +%%UNIXODBC%%%%LIBDIR%%/rlm_sql_unixodbc.so %%LIBDIR%%/rlm_sqlcounter-%%PORTVERSION%%.la %%LIBDIR%%/rlm_sqlcounter-%%PORTVERSION%%.so %%LIBDIR%%/rlm_sqlcounter.a @@ -460,18 +470,34 @@ sbin/radiusd sbin/radmin sbin/radwatch +include/freeradius/autoconf.h +include/freeradius/conf.h +include/freeradius/conffile.h +include/freeradius/detail.h +include/freeradius/dhcp.h +include/freeradius/event.h include/freeradius/hash.h +include/freeradius/heap.h include/freeradius/ident.h include/freeradius/libradius.h include/freeradius/md4.h include/freeradius/md5.h include/freeradius/missing.h +include/freeradius/modcall.h +include/freeradius/modules.h include/freeradius/packet.h +include/freeradius/rad_assert.h include/freeradius/radius.h +include/freeradius/radiusd.h include/freeradius/radpaths.h +include/freeradius/radutmp.h +include/freeradius/realms.h include/freeradius/sha1.h +include/freeradius/stats.h +include/freeradius/sysutmp.h include/freeradius/token.h include/freeradius/udpfromto.h +include/freeradius/vmps.h include/freeradius/vqp.h @dirrm include/freeradius %%PORTDOCS%%%%DOCSDIR%%/Acct-Type @@ -630,6 +656,7 @@ %%DATADIR%%/dictionary.h3c %%DATADIR%%/dictionary.hp %%DATADIR%%/dictionary.huawei +%%DATADIR%%/dictionary.infonet %%DATADIR%%/dictionary.ipunplugged %%DATADIR%%/dictionary.issanni %%DATADIR%%/dictionary.itk Index: Makefile =================================================================== --- Makefile (.../branches/FreeBSD-ports-tree/freeradius2) (revision 279) +++ Makefile (.../trunk/freeradius2) (revision 279) @@ -8,7 +8,7 @@ # PORTNAME= freeradius -DISTVERSION= 2.1.4 +DISTVERSION= 2.1.6 CATEGORIES= net MASTER_SITES= ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \ ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \ @@ -25,7 +25,6 @@ LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm USE_BZIP2= yes -WANT_PERL= yes LOGDIR?= /var/log @@ -36,7 +35,6 @@ USE_AUTOTOOLS= libltdl:15 libtool:15 autoconf:262 USE_GMAKE= yes USE_OPENSSL= yes -USE_PYTHON= yes MAKE_ARGS+= LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib MAKE_JOBS_UNSAFE= yes @@ -49,96 +47,19 @@ LDAP "With LDAP database support" off \ MYSQL "With MySQL database support" off \ PGSQL "With PostgreSQL database support" off \ + UNIXODBC "With unixODBC database support" off \ FIREBIRD "With Firebird database support (EXPERIMENTAL)" off \ - EXPERIMENTAL "Build experimental modules (including DHCP)" off + PERL "With Perl support" on \ + PYTHON "With Python support" on \ + RUBY "With Ruby support (EXPERIMENTAL)" off \ + DHCP "With DHCP support (EXPERIMENTAL)" off \ + EXPERIMENTAL "Build experimental modules" off -.include +.include -.if ${ARCH} == "sparc64" && ${OSVERSION} < 700000 -BROKEN= Does not build on sparc64-6 -.endif - # Default requirements for rc script _REQUIRE= NETWORKING SERVERS -# User and group to use if USER is set -USER= freeradius -GROUP= freeradius - -FREERADIUS_LIBDIR= lib/freeradius-${PORTVERSION} -PLIST_SUB+= LIBDIR="${FREERADIUS_LIBDIR}" -USE_LDCONFIG= ${PREFIX}/${FREERADIUS_LIBDIR} - -CONFIGURE_ARGS= --quiet \ - --prefix=${PREFIX} \ - --libdir=${PREFIX}/${FREERADIUS_LIBDIR} \ - --localstatedir=/var \ - --with-system-libtool -.ifdef(NOPORTDOCS) -CONFIGURE_ARGS+=--without-docdir -PLIST_SUB+= PORTDOCS="@comment " -SUB_LIST+= PORTDOCS="@comment " -.else -CONFIGURE_ARGS+=--with-docdir=${DOCSDIR} -PLIST_SUB+= PORTDOCS="" -SUB_LIST+= PORTDOCS="" -.endif -CONFIGURE_ARGS+=--with-logdir=${LOGDIR} \ - --with-openssl-includes=${OPENSSLINC} -# This conditionality avoids -L/usr/lib in the radiusd build step when -# building with base system OpenSSL -.if ${OPENSSLLIB} != "/usr/lib" -CONFIGURE_ARGS+=--with-openssl-libraries=${OPENSSLLIB} -.endif -CONFIGURE_ARGS+=--with-rlm-python-lib-dir=${PYTHON_LIBDIR} \ - --with-rlm-python-include-dir=${PYTHON_INCLUDEDIR} \ - --without-rlm_eap_ikev2 \ - --without-rlm_eap_tnc \ - --without-rlm_eap2 \ - --without-rlm_opendirectory \ - --without-rlm_sql_db2 \ - --without-rlm_sql_iodbc \ - --without-rlm_sql_oracle \ - --without-rlm_sql_sqlite \ - --without-rlm_sql_sybase \ - --without-rlm_sql_unixodbc \ - --with-vmps - -.if ${ARCH} == amd64 -CONFIGURE_ARGS+= --with-pic -.endif - -# Credentials for WITH_USER are RADIUS_USER, RADIUS_UID, RADIUS_GECOS, -# RADIUS_HOME, RADIUS_SHELL, RADIUS_GROUP and RADIUS_GID. - -# Parse ${PORTSDIR}/UIDs and GIDs for the defaults -USER!= ${GREP} -E '^${USER}:' ${PORTSDIR}/UIDs | \ - ${SED} -Ee 's/^([^:]*):([^:]*):([^:]*):([^:]*)::0:0:([^:]*):([^:]*):([^:]*)$$/USER="\1" UID="\3" GECOS="\5" HOME="\6" SHELL="\7"/' -GROUP!= ${GREP} -E '^${GROUP}:' ${PORTSDIR}/GIDs | \ - ${SED} -Ee 's/^([^:]*):([^:]*):([^:]*):$$/GROUP="\1" GID="\3"/' - -# Apply the defaults where necessary -RADIUS_USER?= ${USER:MUSER*:C/^[^=]*=\"([^\"]*)\"$/\1/} -RADIUS_UID?= ${USER:MUID*:C/^[^=]*=\"([^\"]*)\"$/\1/} -RADIUS_GECOS?= ${USER:MGECOS*:C/^[^=]*=\"([^\"]*)\"$/\1/} -RADIUS_HOME?= ${USER:MHOME*:C/^[^=]*=\"([^\"]*)\"$/\1/} -RADIUS_SHELL?= ${USER:MSHELL*:C/^[^=]*=\"([^\"]*)\"$/\1/} -RADIUS_GROUP?= ${GROUP:MGROUP*:C/^[^=]*=\"([^\"]*)\"$/\1/} -RADIUS_GID?= ${GROUP:MGID*:C/^[^=]*=\"([^\"]*)\"$/\1/} - -SUB_LIST+= USER="${RADIUS_USER}" \ - UID="${RADIUS_UID}" \ - GECOS="${RADIUS_GECOS}" \ - HOME="${RADIUS_HOME}" \ - SHELL="${RADIUS_SHELL}" \ - GROUP="${RADIUS_GROUP}" \ - GID="${RADIUS_GID}" \ - RADDB_WORK="${WRKSRC}/raddb" \ - RADDB="${PREFIX}/etc/raddb" \ - LOGDIR="${LOGDIR}" \ - LIBDIR="${PREFIX}/${FREERADIUS_LIBDIR}" \ - RC_SUBR_SUFFIX="${RC_SUBR_SUFFIX}" -SUB_FILES+= pkg-install pkg-deinstall pkg-message .ifdef(WITH_USER) SUB_LIST+= RUN_AS_USER="yes" .else @@ -195,6 +116,15 @@ PLIST_SUB+= PGSQL="@comment " .endif +.ifdef(WITH_UNIXODBC) +CONFIGURE_ARGS+=--with-rlm_sql_unixodbc +PLIST_SUB+= UNIXODBC="" +LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC +.else +CONFIGURE_ARGS+=--without-rlm_sql_unixodbc +PLIST_SUB+= UNIXODBC="@comment " +.endif + .ifdef(WITH_FIREBIRD) USE_FIREBIRD= YES CONFIGURE_ARGS+=--with-rlm_sql_firebird @@ -209,6 +139,51 @@ WITH_EXPERIMENTAL= yes .endif +.ifdef(WITH_PERL) +USE_PERL5= yes +CONFIGURE_ARGS+=--with-rlm_perl +PLIST_SUB+= RLMPERL="" +.else +CONFIGURE_ARGS+=--without-perl --without-rlm_perl +PLIST_SUB+= RLMPERL="@comment " +.endif + +.ifdef(WITH_PYTHON) +USE_PYTHON= yes +CONFIGURE_ARGS+=--with-rlm_python \ + --with-rlm-python-lib-dir=${PYTHON_LIBDIR} \ + --with-rlm-python-include-dir=${PYTHON_INCLUDEDIR} +PLIST_SUB+= RLMPYTHON="" +.else +CONFIGURE_ARGS+=--without-rlm_python +PLIST_SUB+= RLMPYTHON="@comment " +.endif + +.ifdef(WITH_RUBY) +USE_RUBY= yes +CONFIGURE_ARGS+=--with-rlm_ruby +PLIST_SUB+= RLMRUBY="" +.else +CONFIGURE_ARGS+=--without-rlm_ruby +PLIST_SUB+= RLMRUBY="@comment " +.endif + +# rlm_ruby module is still experimental +.if defined(WITH_RUBY) && !defined(WITH_EXPERIMENTAL) +WITH_EXPERIMENTAL= yes +.endif + +.ifdef(WITH_DHCP) +CONFIGURE_ARGS+=--with-dhcp +.else +CONFIGURE_ARGS+=--without-dhcp +.endif + +# DHCP is still experimental +.if defined(WITH_DHCP) && !defined(WITH_EXPERIMENTAL) +WITH_EXPERIMENTAL= yes +.endif + # No SMB option yet; rlm_smb is still unbuildable .ifdef(WITH_SMB) LIB_DEPENDS= smbclient.0:${PORTSDIR}/net/samba-libsmbclient @@ -227,7 +202,7 @@ .endif .ifdef(WITH_EXPERIMENTAL) -CONFIGURE_ARGS+=--with-experimental-modules --with-dhcp +CONFIGURE_ARGS+=--with-experimental-modules PLIST_SUB+= EXPM="" .else PLIST_SUB+= EXPM="@comment " @@ -239,23 +214,88 @@ CFLAGS!= ${ECHO} ${CFLAGS} | ${SED} -Ee 's:-O[0-9]?[[:space:]]*::g' .endif -# NOPERL has been removed from OPTIONS. It is a nasty hack as it doesn't -# properly remove the dependency on perl. The main configure.in should be -# patched so that the perl detection test fails to make this work properly, -# though that configure run (at least in 2.0.0) only looks for perl to issue -# a warning about Simultaneous-Use and checkrad.pl maybe not working without -# perl. -# Leave WITH_NOPERL as a knob for anyone that really wants it - or for -# a proper fix in the future. -.ifdef(WITH_NOPERL) -CONFIGURE_ARGS+=--without-rlm_perl -PLIST_SUB+= RLMPERL="@comment " +.include + +.if ${ARCH} == "sparc64" && ${OSVERSION} < 700000 +BROKEN= Does not build on sparc64-6 +.endif + +# User and group to use if USER option is chosen +USER= freeradius +GROUP= freeradius + +FREERADIUS_LIBDIR= lib/freeradius-${PORTVERSION} +PLIST_SUB+= LIBDIR="${FREERADIUS_LIBDIR}" +USE_LDCONFIG= ${PREFIX}/${FREERADIUS_LIBDIR} + +CONFIGURE_ARGS+=--quiet \ + --prefix=${PREFIX} \ + --libdir=${PREFIX}/${FREERADIUS_LIBDIR} \ + --localstatedir=/var \ + --with-system-libtool +.ifdef(NOPORTDOCS) +CONFIGURE_ARGS+=--without-docdir +PLIST_SUB+= PORTDOCS="@comment " +SUB_LIST+= PORTDOCS="@comment " .else -USE_PERL5= yes -CONFIGURE_ARGS+=--with-rlm_perl -PLIST_SUB+= RLMPERL="" +CONFIGURE_ARGS+=--with-docdir=${DOCSDIR} +PLIST_SUB+= PORTDOCS="" +SUB_LIST+= PORTDOCS="" .endif +CONFIGURE_ARGS+=--with-logdir=${LOGDIR} \ + --with-openssl-includes=${OPENSSLINC} +# This conditionality avoids -L/usr/lib in the radiusd build step when +# building with base system OpenSSL +.if ${OPENSSLLIB} != "/usr/lib" +CONFIGURE_ARGS+=--with-openssl-libraries=${OPENSSLLIB} +.endif +CONFIGURE_ARGS+=--without-rlm_eap_ikev2 \ + --without-rlm_eap_tnc \ + --without-rlm_eap2 \ + --without-rlm_opendirectory \ + --without-rlm_sql_db2 \ + --without-rlm_sql_iodbc \ + --without-rlm_sql_oracle \ + --without-rlm_sql_sqlite \ + --without-rlm_sql_sybase \ + --with-vmps +.if ${ARCH} == amd64 +CONFIGURE_ARGS+= --with-pic +.endif + +# Credentials for WITH_USER are RADIUS_USER, RADIUS_UID, RADIUS_GECOS, +# RADIUS_HOME, RADIUS_SHELL, RADIUS_GROUP and RADIUS_GID. + +# Parse ${PORTSDIR}/UIDs and GIDs for the defaults +USERCREDS!= ${GREP} -E '^${USER}:' ${PORTSDIR}/UIDs | \ + ${SED} -Ee 's/^([^:]*):([^:]*):([^:]*):([^:]*)::0:0:([^:]*):([^:]*):([^:]*)$$/USER="\1" UID="\3" GECOS="\5" HOME="\6" SHELL="\7"/' +GROUPCREDS!= ${GREP} -E '^${GROUP}:' ${PORTSDIR}/GIDs | \ + ${SED} -Ee 's/^([^:]*):([^:]*):([^:]*):$$/GROUP="\1" GID="\3"/' + +# Apply the defaults where necessary +RADIUS_USER?= ${USERCREDS:MUSER*:C/^[^=]*=\"([^\"]*)\"$/\1/} +RADIUS_UID?= ${USERCREDS:MUID*:C/^[^=]*=\"([^\"]*)\"$/\1/} +RADIUS_GECOS?= ${USERCREDS:MGECOS*:C/^[^=]*=\"([^\"]*)\"$/\1/} +RADIUS_HOME?= ${USERCREDS:MHOME*:C/^[^=]*=\"([^\"]*)\"$/\1/} +RADIUS_SHELL?= ${USERCREDS:MSHELL*:C/^[^=]*=\"([^\"]*)\"$/\1/} +RADIUS_GROUP?= ${GROUPCREDS:MGROUP*:C/^[^=]*=\"([^\"]*)\"$/\1/} +RADIUS_GID?= ${GROUPCREDS:MGID*:C/^[^=]*=\"([^\"]*)\"$/\1/} + +SUB_LIST+= USER="${RADIUS_USER}" \ + UID="${RADIUS_UID}" \ + GECOS="${RADIUS_GECOS}" \ + HOME="${RADIUS_HOME}" \ + SHELL="${RADIUS_SHELL}" \ + GROUP="${RADIUS_GROUP}" \ + GID="${RADIUS_GID}" \ + RADDB_WORK="${WRKSRC}/raddb" \ + RADDB="${PREFIX}/etc/raddb" \ + LOGDIR="${LOGDIR}" \ + LIBDIR="${PREFIX}/${FREERADIUS_LIBDIR}" \ + RC_SUBR_SUFFIX="${RC_SUBR_SUFFIX}" +SUB_FILES+= pkg-install pkg-deinstall pkg-message + MAN1= radclient.1 radeapclient.1 radlast.1 radtest.1 radwho.1 \ radzap.1 MAN5= acct_users.5 clients.conf.5 dictionary.5 radiusd.conf.5 \ @@ -289,8 +329,8 @@ @${FIND} -E ${WRKSRC}/raddb/certs \ -regex '.*/(bootstrap|Makefile)\.(orig|bak)$$' \ -delete -# If EXPERIMENTAL (and therefore DHCP) is enabled, enable the DHCP dictionary -.ifdef(WITH_EXPERIMENTAL) +# If DHCPis enabled, enable the DHCP dictionary +.ifdef(WITH_DHCP) @${REINPLACE_CMD} -Ee 's:^#(.+ dictionary\.dhcp)$$:\1:g' \ ${WRKSRC}/share/dictionary # Clean up (so as not to get an unwanted file in share) @@ -313,6 +353,7 @@ @cd ${WRKSRC}/src/modules/rlm_ldap && ${AUTOCONF} -I ${WRKSRC} @cd ${WRKSRC}/src/modules/rlm_sql/drivers/rlm_sql_mysql \ && ${AUTOCONF} -I ${WRKSRC} + @cd ${WRKSRC}/src/modules/rlm_perl && ${AUTOCONF} -I ${WRKSRC} @cd ${WRKSRC}/src/modules/rlm_python && ${AUTOCONF} -I ${WRKSRC} pre-install: Property changes on: Makefile ___________________________________________________________________ Added: svn:keywords + Id Property changes on: . ___________________________________________________________________ Added: svn:mergeinfo Merged /branches/FreeBSD-ports-tree/freeradius2:r96-270 Merged /trunk/freeradius:r266 >Release-Note: >Audit-Trail: >Unformatted: From wxs at FreeBSD.org Thu Jul 2 19:02:24 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 19:02:30 2009 Subject: ports/136252: Update port: sysutils/fusefs-mhddfs version only Message-ID: <200907021902.n62J2KxZ076004@freefall.freebsd.org> Synopsis: Update port: sysutils/fusefs-mhddfs version only Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 19:02:20 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136252 From wxs at FreeBSD.org Thu Jul 2 19:03:20 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 19:03:26 2009 Subject: ports/136149: [Maintainer] textproc/kmflcomp, textproc/libkmfl, textproc/scim-kmfl-imengine: Update to 0.9.8 Message-ID: <200907021903.n62J3J9U076102@freefall.freebsd.org> Synopsis: [Maintainer] textproc/kmflcomp, textproc/libkmfl, textproc/scim-kmfl-imengine: Update to 0.9.8 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 19:03:18 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136149 From wxs at FreeBSD.org Thu Jul 2 19:04:38 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 19:04:44 2009 Subject: ports/135694: [PATCH] palm/pilot-link: Unbreak on 8-CURRENT Message-ID: <200907021904.n62J4bEj076201@freefall.freebsd.org> Synopsis: [PATCH] palm/pilot-link: Unbreak on 8-CURRENT Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 19:04:36 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=135694 From wxs at FreeBSD.org Thu Jul 2 19:05:24 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 19:05:31 2009 Subject: ports/135660: Update net/jicmp to 1.0.10 Message-ID: <200907021905.n62J5NOr076309@freefall.freebsd.org> Synopsis: Update net/jicmp to 1.0.10 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 19:05:23 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=135660 From wxs at FreeBSD.org Thu Jul 2 19:05:45 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 19:05:51 2009 Subject: ports/135656: Update devel/p5-Class-Gomor to 1.0.2 Message-ID: <200907021905.n62J5iYT076402@freefall.freebsd.org> Synopsis: Update devel/p5-Class-Gomor to 1.0.2 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 19:05:44 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=135656 From wxs at FreeBSD.org Thu Jul 2 19:06:46 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 19:08:29 2009 Subject: ports/135367: [maintainer update] Update port: databases/rubygem-do_mysql 0.9.11 -> 0.9.12 Message-ID: <200907021906.n62J6jew076524@freefall.freebsd.org> Synopsis: [maintainer update] Update port: databases/rubygem-do_mysql 0.9.11 -> 0.9.12 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 19:06:45 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=135367 From wxs at FreeBSD.org Thu Jul 2 19:07:58 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 19:08:53 2009 Subject: ports/134945: [UPDATE] update sysutils/linux-megacli Message-ID: <200907021907.n62J7uWe076645@freefall.freebsd.org> Synopsis: [UPDATE] update sysutils/linux-megacli Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 19:07:56 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134945 From david at wood2.org.uk Thu Jul 2 19:10:07 2009 From: david at wood2.org.uk (David Wood) Date: Thu Jul 2 19:10:40 2009 Subject: ports/133746: [patch] port net/freeradius does not build sql driver for unixODBC Message-ID: <200907021910.n62JA6bk076736@freefall.freebsd.org> The following reply was made to PR ports/133746; it has been noted by GNATS. From: David Wood To: bug-followup@FreeBSD.org, john@dnepro.net Cc: Subject: Re: ports/133746: [patch] port net/freeradius does not build sql driver for unixODBC Date: Thu, 2 Jul 2009 20:07:31 +0100 ports/136254 incorporates this change into net/freeradius2. With best wishes, David -- David Wood david@wood2.org.uk From john.c.prather at gmail.com Thu Jul 2 19:17:37 2009 From: john.c.prather at gmail.com (John Prather) Date: Thu Jul 2 19:18:09 2009 Subject: ports/136165: [maintainer update] net-im/pidgin-sipe to 1.5.0 In-Reply-To: <200906291820.n5TIK4ed078086@freefall.freebsd.org> References: <200906291816.n5TIG0MP026331@www.freebsd.org> <200906291820.n5TIK4ed078086@freefall.freebsd.org> Message-ID: <25aa95030907021157v234a4c2bo77f88baeab5d983e@mail.gmail.com> Corrected. I'm attaching a new unified diff of the port dir to replace the one which was originally included with this PR submission. I tested successfully on a 7.2-release i386 virtualbox. -john begin 644 ps-141-150.txt M9&EF9B`MC(I(#T@ M,S,T.#C(I(#T@.&0R M-V5F935D.3AD.#@S.#4W,S9D.3)D.6%A,&,Y,C0**U-(03(U-B`H<&ED9VEN M+7-I<&4M,2XU+C`N=&%R+F)Z,BD@/2`S,C2`@-R`Q,3HU M.3HP,R`R,#`Y"BTJ*BHJ*BHJ*BHJ*BHJ*BH*+2HJ*B`R-BPS,B`J*BHJ"BTM M+2T@,C8L,S8@+2TM+0HM("`C:6YC;'5D92`\97)R;F\N:#X*+2`@(VEN8VQU M9&4@/&-T>7!E+F@^"BT@("-I9FYD968@7U=)3C,R"BTK("-I9F1E9B!?7T9R M965"4T1?7PHM*R`C:6YC;'5D92`\8V]M7V5R7(O8V]M7V5RPHK("`)"7-T7!E+F@^"BTK("-I9F1E9B!?7T9R965"4T1?7PHM*R`C:6YC;'5D M92`\8V]M7V5R7!EPHM*R`C:69D968@7U]&PHM*R`C96QS90HM("`@("`@("`@("`@("`@("`@:68@*&EO8W1L*',L M(%-)3T-'249(5T%$1%(L("9I9G(I(#T](#`I('L*+2L@(V5N9&EF"BT@("`@ M("`@("`@("`@("`@("`@("`@;VL@/2`Q.PHM("`@("`@("`@("`@("`@("`@ M("`@(&)R96%K.PHM("`@("`@("`@("`@("`@("`@?0HM*BHJ*BHJ*BHJ*BHJ M*BHJ"BTJ*BH@,30S+#$T.2`J*BHJ"BTM+2T@,34Q+#$V,2`M+2TM"BT@(`HM M("`@("`@8VQOFA?0TXO3$-?34534T%'15,O<&ED9VEN+7-I<&4N;6\*('-H87)E+W!I C>&UA<',O<&ED9VEN+W!R;W1O8V]L >Number: 136255 >Category: ports >Synopsis: [maintainer update] devel/p5-Config-IniFiles update to 2.52 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 19:20:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Cezary Morga >Release: >Organization: >Environment: >Description: Update devel/p5-Config-IniFiles to 2.52 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN devel/p5-Config-IniFiles.orig/Makefile devel/p5-Config-IniFiles/Makefile --- devel/p5-Config-IniFiles.orig/Makefile 2009-06-27 15:43:48.000000000 +0200 +++ devel/p5-Config-IniFiles/Makefile 2009-07-02 21:16:29.649587000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= Config-IniFiles -PORTVERSION= 2.51 +PORTVERSION= 2.52 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN devel/p5-Config-IniFiles.orig/distinfo devel/p5-Config-IniFiles/distinfo --- devel/p5-Config-IniFiles.orig/distinfo 2009-06-27 15:43:48.000000000 +0200 +++ devel/p5-Config-IniFiles/distinfo 2009-07-02 21:02:24.146431000 +0200 @@ -1,3 +1,3 @@ -MD5 (Config-IniFiles-2.51.tar.gz) = 314bb8c91d609a5609d2bdc5a5639851 -SHA256 (Config-IniFiles-2.51.tar.gz) = 71e929e6f921b298d12386da01ad01cd8956dc431013c3cd0cbe9d4d327ca56a -SIZE (Config-IniFiles-2.51.tar.gz) = 48425 +MD5 (Config-IniFiles-2.52.tar.gz) = 9a06ffea57d6b08f646f8ffb3014863d +SHA256 (Config-IniFiles-2.52.tar.gz) = 4d4c6edb06df34e5c902a3636b0eb0db391d99084af231e0e654ff2dcbdbf2b2 +SIZE (Config-IniFiles-2.52.tar.gz) = 49160 >Release-Note: >Audit-Trail: >Unformatted: From wxs at FreeBSD.org Thu Jul 2 20:14:53 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 20:15:10 2009 Subject: ports/133746: [patch] port net/freeradius does not build sql driver for unixODBC Message-ID: <200907022014.n62KEr0X029993@freefall.freebsd.org> Synopsis: [patch] port net/freeradius does not build sql driver for unixODBC Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 20:14:52 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=133746 From wxs at FreeBSD.org Thu Jul 2 20:15:02 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 20:15:10 2009 Subject: ports/136254: [maintainer update] update net/freeradius2 to 2.1.6 Message-ID: <200907022015.n62KF1Wc030089@freefall.freebsd.org> Synopsis: [maintainer update] update net/freeradius2 to 2.1.6 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 20:15:01 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136254 From wxs at FreeBSD.org Thu Jul 2 20:15:19 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 20:15:26 2009 Subject: ports/136255: [maintainer update] devel/p5-Config-IniFiles update to 2.52 Message-ID: <200907022015.n62KFILw030183@freefall.freebsd.org> Synopsis: [maintainer update] devel/p5-Config-IniFiles update to 2.52 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Jul 2 20:15:18 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136255 From wxs at FreeBSD.org Thu Jul 2 20:21:30 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Thu Jul 2 20:21:41 2009 Subject: ports/136253: MySQL Database Server: Need a 5.4 port Message-ID: <200907022021.n62KLTMn037264@freefall.freebsd.org> Synopsis: MySQL Database Server: Need a 5.4 port State-Changed-From-To: open->closed State-Changed-By: wxs State-Changed-When: Thu Jul 2 20:21:29 UTC 2009 State-Changed-Why: There is nothing to be done for this PR until a patch is submitted. Please submit a patch when you are ready in a new PR and it will be handled as soon as possible. http://www.freebsd.org/cgi/query-pr.cgi?pr=136253 From info at martenvijn.nl Thu Jul 2 20:50:08 2009 From: info at martenvijn.nl (Marten Vijn) Date: Thu Jul 2 20:50:16 2009 Subject: ports/132786: New port: sysutils/sispmctl Utility for controlling a Powerblock/surgeprotector over USB Message-ID: <200907022050.n62Ko7LR054474@freefall.freebsd.org> The following reply was made to PR ports/132786; it has been noted by GNATS. From: Marten Vijn To: bug-followup@FreeBSD.org, dirkx@webweaving.org Cc: Subject: Re: ports/132786: New port: sysutils/sispmctl Utility for controlling a Powerblock/surgeprotector over USB Date: Thu, 02 Jul 2009 22:48:13 +0200 post fails to build Current has libusb in base master# make ===> sispmctl-2.7 depends on shared library: usb - found ===> Configuring for sispmctl-2.7 checking build system type... i386-portbld-freebsd8.0 checking host system type... i386-portbld-freebsd8.0 checking target system type... i386-portbld-freebsd8.0 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... admin/install-sh -c -d checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of cc... gcc3 checking for libusb-config... /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin configure: error: *** libusb-config not found. You need a working libusb installation. Version >=0.1.7 ===> Script "configure" failed unexpectedly. Please report the problem to dirkx@webweaving.org [maintainer] and attach the "/usr/ports/sysutils/sispmctl/work/sispmctl-2.7/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/sysutils/sispmctl. master# -- http://martenvijn.nl Marten Vijn http://martenvijn.nl/trac/wiki/soas Sugar on a Stick http://bsd.wifisoft.org/nek/ The Network Event Kit http://har2009.org 13th-16th August http://opencommunitycamp.org 26th Jul - 2nd August From ka at nadoby.ru Thu Jul 2 21:30:08 2009 From: ka at nadoby.ru (Alex Kapranoff) Date: Thu Jul 2 21:30:15 2009 Subject: ports/136256: New port for Gearman::XS Perl module Message-ID: <20090702212230.5AF7E1CCBB4B@goodwin.nadoby.ru> >Number: 136256 >Category: ports >Synopsis: New port for Gearman::XS Perl module >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 21:30:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alex Kapranoff >Release: FreeBSD 7.1-RELEASE i386 >Organization: >Environment: System: FreeBSD j3.nadoby.ru 7.1-RELEASE FreeBSD 7.1-RELEASE #0: Mon Feb 2 18:03:36 MSK 2009 root@goodwin.nadoby.ru:/usr/obj/usr/src/sys/GOODWIN i386 >Description: >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Gearman-XS/ # p5-Gearman-XS/Makefile # p5-Gearman-XS/distinfo # p5-Gearman-XS/pkg-descr # p5-Gearman-XS/pkg-plist # echo c - p5-Gearman-XS/ mkdir -p p5-Gearman-XS/ > /dev/null 2>&1 echo x - p5-Gearman-XS/Makefile sed 's/^X//' >p5-Gearman-XS/Makefile << '836db44ebca3bad528206f6b8ad46aa8' X# New ports collection makefile for: p5-Gearman-XS X# Date created: July 3rd 2009 X# Whom: Alex Kapranoff X# X# $FreeBSD$ X# X XPORTNAME= Gearman-XS XPORTVERSION= 0.2 XCATEGORIES= devel perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= ka@nadoby.ru XCOMMENT= Perl front end for the Gearman C library X XLIB_DEPENDS= gearman.1:${PORTSDIR}/devel/gearmand X XCFLAGS+= -I${LOCALBASE}/include X XPERL_CONFIGURE= yes X XINSTALL_TARGET= pure_install X XMAN3= Gearman::XS.3 Gearman::XS::Client.3 \ X Gearman::XS::Job.3 Gearman::XS::Task.3 \ X Gearman::XS::Worker.3 X X.include 836db44ebca3bad528206f6b8ad46aa8 echo x - p5-Gearman-XS/distinfo sed 's/^X//' >p5-Gearman-XS/distinfo << '06ac25a676887f8141b4760ba3104edc' XMD5 (Gearman-XS-0.2.tar.gz) = 5f7389022807cd4de4929c462b4c2e01 XSHA256 (Gearman-XS-0.2.tar.gz) = 8a27179e4dc4a95344eacb57dcd141e0affee382cffd5f5fc94c06ed52b79243 XSIZE (Gearman-XS-0.2.tar.gz) = 11071 06ac25a676887f8141b4760ba3104edc echo x - p5-Gearman-XS/pkg-descr sed 's/^X//' >p5-Gearman-XS/pkg-descr << 'be1c77f1da356409e00889a61f61ec1c' XFrom README: X XThis is a Perl front end for the Gearman C library. It aims to provide Xa simple interface closely tied to the C library. X XDevelopment of Gearman::XS is open and coordinated on launchpad. XVisit http://launchpad.net/gearmanxs for more information X XThere's another Gearman client library which is written in pure Perl Xbut may be more mature. See ports/devel/p5-Gearman. X XWWW: http://www.gearmand.org X X-- Alex Kapranoff be1c77f1da356409e00889a61f61ec1c echo x - p5-Gearman-XS/pkg-plist sed 's/^X//' >p5-Gearman-XS/pkg-plist << '972fdc48a00c36e2bd3b790f9e1212cf' X%%SITE_PERL%%/%%PERL_ARCH%%/Gearman/XS.pm X%%SITE_PERL%%/%%PERL_ARCH%%/Gearman/XS/Client.pm X%%SITE_PERL%%/%%PERL_ARCH%%/Gearman/XS/Job.pm X%%SITE_PERL%%/%%PERL_ARCH%%/Gearman/XS/Task.pm X%%SITE_PERL%%/%%PERL_ARCH%%/Gearman/XS/Worker.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gearman/XS/.packlist X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gearman/XS/XS.so X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gearman/XS/XS.bs X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Gearman X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gearman/XS X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gearman 972fdc48a00c36e2bd3b790f9e1212cf exit >Release-Note: >Audit-Trail: >Unformatted: From hgoodman at admaxmedia.com Thu Jul 2 22:30:05 2009 From: hgoodman at admaxmedia.com (Henry Goodman) Date: Thu Jul 2 22:30:17 2009 Subject: ports/136258: Port for sysutils/heartbeat (1.2.5_6) fails to build Message-ID: <200907022224.n62MOjT5078235@www.freebsd.org> >Number: 136258 >Category: ports >Synopsis: Port for sysutils/heartbeat (1.2.5_6) fails to build >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jul 02 22:30:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Henry Goodman >Release: 7.2 >Organization: >Environment: FreeBSD db0.sbcolo.net 7.2-STABLE FreeBSD 7.2-STABLE #0: Wed Jun 24 12:10:53 PDT 2009 hgoodman@db0.sbcolo.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: The sysutils/heartbeat port fails to build with the following error: .. .. cd ../.. && /bin/sh ./config.status heartbeat/resource.d/BSDService config.status: error: invalid argument: heartbeat/resource.d/BSDService .. .. >How-To-Repeat: cd /usr/ports/sysutils/heartbeat make install clean >Fix: There is a file called "BSDService.in" in the work directory. Copying that file to "BSDService" seems to fix the problem. >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Thu Jul 2 22:30:24 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Thu Jul 2 22:30:30 2009 Subject: ports/136258: Port for sysutils/heartbeat (1.2.5_6) fails to build Message-ID: <200907022230.n62MUNXW030617@freefall.freebsd.org> Synopsis: Port for sysutils/heartbeat (1.2.5_6) fails to build State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Jul 2 22:30:22 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136258 From edwin at FreeBSD.org Thu Jul 2 22:40:05 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Thu Jul 2 22:40:12 2009 Subject: ports/136258: Port for sysutils/heartbeat (1.2.5_6) fails to build Message-ID: <200907022240.n62Me5fQ037704@freefall.freebsd.org> The following reply was made to PR ports/136258; it has been noted by GNATS. From: Edwin Groothuis To: scott-ports@tummy.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/136258: Port for sysutils/heartbeat (1.2.5_6) fails to build Date: Thu, 2 Jul 2009 22:30:19 UT Maintainer of sysutils/heartbeat, Please note that PR ports/136258 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136258 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From amdmi3 at FreeBSD.org Thu Jul 2 22:42:35 2009 From: amdmi3 at FreeBSD.org (amdmi3@FreeBSD.org) Date: Thu Jul 2 22:42:42 2009 Subject: ports/136213: new port editors/diakonos Message-ID: <200907022242.n62MgYKQ044582@freefall.freebsd.org> Synopsis: new port editors/diakonos Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Thu Jul 2 22:42:34 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136213 From amdmi3 at FreeBSD.org Thu Jul 2 22:44:47 2009 From: amdmi3 at FreeBSD.org (amdmi3@FreeBSD.org) Date: Thu Jul 2 22:44:52 2009 Subject: ports/136172: update port textproc/dikt to version 1g Message-ID: <200907022244.n62Mikw1044706@freefall.freebsd.org> Synopsis: update port textproc/dikt to version 1g Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Thu Jul 2 22:44:46 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136172 From hiroto.kagotani at gmail.com Fri Jul 3 01:10:06 2009 From: hiroto.kagotani at gmail.com (Hiroto Kagotani) Date: Fri Jul 3 01:10:13 2009 Subject: ports/136259: [PATCH] sysutils/libcdio: incorrect japanese manpage installation Message-ID: <200907030103.n6313HjO037572@luna3.auto.infsys.cne.okayama-u.ac.jp> >Number: 136259 >Category: ports >Synopsis: [PATCH] sysutils/libcdio: incorrect japanese manpage installation >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 01:10:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Hiroto Kagotani >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD myhost.mydomain 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:57:44 UTC 2009 >Description: Japanese manpage cd-paranoia.1 is installed into /usr/local/man/jp/man1 without gzipping. pkg_delete will not remove this file as it is not registerd in the PLIST. Also, Japanese manpages should be placed in /usr/local/man/ja. Port maintainer (mich@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- libcdio-0.78.2_2.patch begins here --- diff -ruN --exclude=CVS /usr/origports/sysutils/libcdio/Makefile /usr/ports/sysutils/libcdio/Makefile --- /usr/origports/sysutils/libcdio/Makefile 2008-06-06 23:03:13.000000000 +0900 +++ /usr/ports/sysutils/libcdio/Makefile 2009-07-03 09:35:27.000000000 +0900 @@ -36,6 +36,7 @@ .ifdef(WITH_PARANOIA) LIB_DEPENDS+= cdda_paranoia.0:${PORTSDIR}/audio/cdparanoia PLIST_SUB+= PARANOIA="" +MANLANG= "" ja MAN1= cd-paranoia.1 .else CONFIGURE_ARGS+= --without-cd-paranoia @@ -43,7 +44,10 @@ .endif post-patch: -.ifndef(WITH_PARANOIA) +.ifdef(WITH_PARANOIA) + ${REINPLACE_CMD} -e 's|/jp/man1|/ja/man1|' \ + ${WRKSRC}/src/cd-paranoia/doc/jp/Makefile.in +.else ${REINPLACE_CMD} -e 's|libcdio_paranoia.pc||; s|libcdio_cdda.pc||' \ ${WRKSRC}/Makefile.in .endif --- libcdio-0.78.2_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 01:10:17 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 01:10:22 2009 Subject: ports/136259: [PATCH] sysutils/libcdio: incorrect japanese manpage installation Message-ID: <200907030110.n631AG5M049642@freefall.freebsd.org> Synopsis: [PATCH] sysutils/libcdio: incorrect japanese manpage installation Responsible-Changed-From-To: freebsd-ports-bugs->mich Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 01:10:16 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136259 From ports at christianserving.org Fri Jul 3 02:20:04 2009 From: ports at christianserving.org (Jim Riggs) Date: Fri Jul 3 02:20:10 2009 Subject: ports/136262: [MAINTAINER] mail/imapsync: update to 1.285 Message-ID: <20090703021336.0D1F9237F0C@zion.christianserving.org> >Number: 136262 >Category: ports >Synopsis: [MAINTAINER] mail/imapsync: update to 1.285 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 02:20:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Jim Riggs >Release: FreeBSD 6.3-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD zion.christianserving.org 6.3-RELEASE-p2 FreeBSD 6.3-RELEASE-p2 #3: Mon May 5 21:27:22 CDT >Description: - Update to 1.285 - Supersedes ports/136248 Removed file(s): - pkg-plist Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- imapsync-1.285_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/imapsync/Makefile /root/portwork/imapsync/Makefile --- /usr/ports/mail/imapsync/Makefile 2009-01-14 16:50:13.000000000 -0600 +++ /root/portwork/imapsync/Makefile 2009-07-02 21:07:07.000000000 -0500 @@ -6,53 +6,38 @@ # PORTNAME= imapsync -PORTVERSION= 1.267 +PORTVERSION= 1.285 PORTREVISION= 1 CATEGORIES= mail perl5 -MASTER_SITES= http://www.linux-france.org/prj/imapsync/dist/:imapsync \ - ${MASTER_SITE_PERL_CPAN:S/$/:imapclient229/} \ - http://christianserving.org/ports/mail/imapsync/:imapsync,imapclient229 -MASTER_SITE_SUBDIR= Mail/:imapclient229 -DISTFILES= ${DISTNAME}.tgz:imapsync \ - Mail-IMAPClient-2.2.9.tar.gz:imapclient229 +MASTER_SITES= http://www.linux-france.org/prj/imapsync/dist/ \ + http://christianserving.org/ports/mail/imapsync/ +EXTRACT_SUFX= .tgz MAINTAINER= ports@christianserving.org COMMENT= IMAP synchronization copy or migration tool -BUILD_DEPENDS= p5-Parse-RecDescent>=1.94:${PORTSDIR}/devel/p5-Parse-RecDescent \ - p5-Digest-HMAC>0:${PORTSDIR}/security/p5-Digest-HMAC \ +BUILD_DEPENDS= p5-Mail-IMAPClient>0:${PORTSDIR}/mail/p5-Mail-IMAPClient \ p5-Term-ReadKey>0:${PORTSDIR}/devel/p5-Term-ReadKey \ p5-Date-Manip>0:${PORTSDIR}/devel/p5-Date-Manip \ - p5-Digest-HMAC>0:${PORTSDIR}/security/p5-Digest-HMAC \ p5-IO-Socket-SSL>0:${PORTSDIR}/security/p5-IO-Socket-SSL RUN_DEPENDS= ${BUILD_DEPENDS} USE_PERL5= yes +NO_BUILD= yes +PLIST_FILES= bin/${PORTNAME} MAN1= ${PORTNAME}.1 POD2MAN?= pod2man -IMAPCLIENTNAME= Mail-IMAPClient-2.2.9 -IMAPCLIENTWRKSRC= ${WRKDIR}/${IMAPCLIENTNAME} -IMAPCLIENTDIR= ${DATADIR}/${IMAPCLIENTNAME} - do-patch: ${REINPLACE_CMD} \ -e 's|/usr/bin/perl|${PERL}|g' \ - -e '2{p;s|^|use lib '"'"'${IMAPCLIENTDIR}/lib/perl5/site_perl'"'"';|;G;}' \ ${WRKSRC}/${PORTNAME} -do-configure: - (cd ${IMAPCLIENTWRKSRC} && echo 'n' | ${PERL} Makefile.PL PREFIX=${IMAPCLIENTDIR}) - -do-build: - ${MAKE} -C ${IMAPCLIENTWRKSRC} PREFIX=${IMAPCLIENTDIR} - do-install: ${POD2MAN} ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.1 ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${PREFIX}/man/man1 - ${MAKE} -C ${IMAPCLIENTWRKSRC} pure_install PREFIX=${IMAPCLIENTDIR} INSTALLSITEMAN3DIR=none .include diff -ruN --exclude=CVS /usr/ports/mail/imapsync/distinfo /root/portwork/imapsync/distinfo --- /usr/ports/mail/imapsync/distinfo 2008-10-10 07:02:35.000000000 -0500 +++ /root/portwork/imapsync/distinfo 2009-07-02 21:07:14.000000000 -0500 @@ -1,6 +1,3 @@ -MD5 (imapsync-1.267.tgz) = 3ca055a54b89e2ec01f687cfb6abfd1c -SHA256 (imapsync-1.267.tgz) = be71ff9e9add9c0b785fa322063840c488389d317c62068285d6b54596b83641 -SIZE (imapsync-1.267.tgz) = 488633 -MD5 (Mail-IMAPClient-2.2.9.tar.gz) = 21c1901d55a2d57f73840cad478c665d -SHA256 (Mail-IMAPClient-2.2.9.tar.gz) = fa67a4407295e50a9975769afb9b13ae14db58225d552cbb10c034636c2560c9 -SIZE (Mail-IMAPClient-2.2.9.tar.gz) = 376791 +MD5 (imapsync-1.285.tgz) = 1cf370075057c2fca4c1d22e9c502896 +SHA256 (imapsync-1.285.tgz) = 3bc076b0a098325870ffbca063db122f2f43f32d9c7848d61513bb932fc16445 +SIZE (imapsync-1.285.tgz) = 791718 diff -ruN --exclude=CVS /usr/ports/mail/imapsync/pkg-plist /root/portwork/imapsync/pkg-plist --- /usr/ports/mail/imapsync/pkg-plist 2009-01-14 16:49:58.000000000 -0600 +++ /root/portwork/imapsync/pkg-plist 1969-12-31 18:00:00.000000000 -0600 @@ -1,21 +0,0 @@ -bin/imapsync -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient.pod -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/BodyStructure.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/BodyStructure/Parse.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/MessageSet.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/Thread.pm -%%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach/auto/Mail/IMAPClient/.packlist -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach/auto/Mail/IMAPClient -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach/auto/Mail -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach/auto -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/mach -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient/BodyStructure -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail/IMAPClient -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%%/Mail -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/%%SITE_PERL%% -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/lib/perl5/site_perl -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/lib/perl5 -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9/lib -@dirrm %%DATADIR%%/Mail-IMAPClient-2.2.9 -@dirrm %%DATADIR%% --- imapsync-1.285_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From alex-goncharov at comcast.net Fri Jul 3 03:50:01 2009 From: alex-goncharov at comcast.net (Alex Goncharov) Date: Fri Jul 3 03:50:08 2009 Subject: ports/136263: New port: MySQL 5.4 -- requesting ownership Message-ID: >Number: 136263 >Category: ports >Synopsis: New port: MySQL 5.4 -- requesting ownership >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 03:50:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alex Goncharov >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: >Description: PR 136253 states: "MySQL 5.4 port is requested by July 10th. I am willing to do it." I am enclosing the patch to make the first steps: a. Avoid conflicts of other MySQL releases with 5.4 when it comes. b. Add a new (the really working one) distribution FTP site for MySQL. c. Small preparatory steps in Mk files. Meanwhile, 5.4 is building for me all right, with a small configuration adjustment. If I get the MySQL 5.4 port ownership, I'll will: a. Send the patch introducing the following new directories: mysql54-client mysql54-scripts mysql54-server p5-DBD-mysql54 (still working on pkg-plist and tests) b. Work on the "small configuration adjustment" mentioned above. c. Work with the original requester on making him set up and happy by July 10th. Waiting for a port manager's decision on introducing the MySQL 5.4 port and its owner. Thanks, -- Alex >How-To-Repeat: >Fix: --- usr-ports.diff begins here --- --- Mk/bsd.database.mk.orig 2009-04-05 10:39:03.000000000 -0400 +++ Mk/bsd.database.mk 2009-07-02 22:12:26.000000000 -0400 @@ -111,6 +111,7 @@ MYSQL41_LIBVER= 14 MYSQL50_LIBVER= 15 MYSQL51_LIBVER= 16 +MYSQL54_LIBVER= 16 MYSQL60_LIBVER= 16 # Setting/finding MySQL version we want. --- Mk/bsd.sites.mk.orig 2009-06-14 10:11:51.000000000 -0400 +++ Mk/bsd.sites.mk 2009-07-02 22:17:20.000000000 -0400 @@ -801,6 +801,7 @@ .if !defined(IGNORE_MASTER_SITE_MYSQL) MASTER_SITE_MYSQL+= \ + ftp://mirror2.dataphone.se/pub/mysql/Downloads/%SUBDIR%/ \ ftp://ftp.fi.muni.cz/pub/mysql/Downloads/%SUBDIR%/ \ http://mysql.mirrors.cybercity.dk/Downloads/%SUBDIR%/ \ ftp://ftp.fh-wolfenbuettel.de/pub/database/mysql/Downloads/%SUBDIR%/ \ --- databases/p5-DBD-mysql51/Makefile.orig 2009-07-02 23:14:24.000000000 -0400 +++ databases/p5-DBD-mysql51/Makefile 2009-07-02 22:59:23.000000000 -0400 @@ -9,7 +9,7 @@ COMMENT= MySQL 5.1 driver for the Perl5 Database Interface (DBI) -CONFLICTS= p5-Mysql-modules-[0-9]* p5-DBD-mysql-[0-9]* p5-DBD-mysql4[0-9]-[0-9]* p5-DBD-mysql50-[0-9]* p5-DBD-mysql6[0-9]-[0-9]* +CONFLICTS= p5-Mysql-modules-[0-9]* p5-DBD-mysql-[0-9]* p5-DBD-mysql4[0-9]-[0-9]* p5-DBD-mysql50-[0-9]* p5-DBD-mysql54-[0-9]* p5-DBD-mysql6[0-9]-[0-9]* WANT_MYSQL_VER= 51 --- databases/mysql51-server/Makefile.orig 2009-07-02 23:15:46.000000000 -0400 +++ databases/mysql51-server/Makefile 2009-07-02 23:00:31.000000000 -0400 @@ -91,7 +91,7 @@ LATEST_LINK= mysql51-server -CONFLICTS= mysql-server-3.* mysql-server-4.* mysql-server-5.0.* mysql-server-6.* +CONFLICTS= mysql-server-3.* mysql-server-4.* mysql-server-5.0.* mysql-server-5.4.* mysql-server-6.* USE_RC_SUBR= mysql-server.sh --- databases/mysql50-server/Makefile.orig 2009-07-02 23:16:22.000000000 -0400 +++ databases/mysql50-server/Makefile 2009-07-02 23:00:10.000000000 -0400 @@ -101,7 +101,7 @@ LATEST_LINK= mysql50-server -CONFLICTS= mysql-server-3.* mysql-server-4.* mysql-server-5.1.* mysql-server-6.* +CONFLICTS= mysql-server-3.* mysql-server-4.* mysql-server-5.1.* mysql-server-5.4.* mysql-server-6.* USE_RC_SUBR= mysql-server.sh --- usr-ports.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 03:50:11 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 03:50:17 2009 Subject: ports/136263: New port: MySQL 5.4 -- requesting ownership Message-ID: <200907030350.n633oAFt070827@freefall.freebsd.org> Synopsis: New port: MySQL 5.4 -- requesting ownership Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Jul 3 03:50:10 UTC 2009 Class-Changed-Why: Fix category (new ports should be change-requests) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136263 From dru at silenceisdefeat.net Fri Jul 3 04:10:07 2009 From: dru at silenceisdefeat.net (Andrew Lewis) Date: Fri Jul 3 04:10:12 2009 Subject: ports/136264: Update port: devel/lua50-compat51 - Header files not installed Message-ID: <200907030406.n63461SW098511@www.freebsd.org> >Number: 136264 >Category: ports >Synopsis: Update port: devel/lua50-compat51 - Header files not installed >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 04:10:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrew Lewis >Release: 7.1-RELEASE-p6 >Organization: Private >Environment: FreeBSD foo.bar 7.1-RELEASE-p6 FreeBSD 7.1-RELEASE-p6 #4: Wed Jun 24 14:25:56 UTC 2009 toor@foo.bar:/usr/obj/usr/src/sys/ADAMANTIUM71 i386 >Description: devel/lua50-compat51 doesn't install compat-5.1.h - which may be needed to build certain software >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-07-03 02:35:25.000000000 +0000 +++ Makefile 2009-07-03 03:19:34.000000000 +0000 @@ -19,7 +19,8 @@ MAKE_ENV= CVER="${CVER}" PLIST_FILES= %%LUA_MODSHAREDIR%%/compat-${CVER}.lua \ - %%LUA_MODLIBDIR%%/lcompat-${CVER}.so + %%LUA_MODLIBDIR%%/lcompat-${CVER}.so \ + %%LUA_INCDIR%%/compat-${CVER}.h # Update these values when there is a new release. CVER= 5.1 @@ -31,5 +32,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/compat-${CVER}.lua ${LUA_MODSHAREDIR} ${INSTALL_PROGRAM} ${WRKSRC}/lcompat-${CVER}.so ${LUA_MODLIBDIR} + ${INSTALL_DATA} ${WRKSRC}/compat-${CVER}.h ${LUA_INCDIR} .include >Release-Note: >Audit-Trail: >Unformatted: From dru at silenceisdefeat.net Fri Jul 3 04:30:05 2009 From: dru at silenceisdefeat.net (Andrew Lewis) Date: Fri Jul 3 04:30:17 2009 Subject: ports/136265: New port: textproc/luaexpat XML Parser for Lua using the Expat library Message-ID: <200907030419.n634JxJG010033@www.freebsd.org> >Number: 136265 >Category: ports >Synopsis: New port: textproc/luaexpat XML Parser for Lua using the Expat library >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 04:30:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrew Lewis >Release: 7.1-RELEASE-p6 >Organization: Private >Environment: FreeBSD foo.bar 7.1-RELEASE-p6 FreeBSD 7.1-RELEASE-p6 #4: Wed Jun 24 14:25:56 UTC 2009 toor@foo.bar:/usr/obj/usr/src/sys/ADAMANTIUM71 i386 >Description: Requires changes to devel/lua50-compat51 to build with Lua 5.0, see here: http://www.freebsd.org/cgi/query-pr.cgi?pr=136264 >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./pkg-descr # ./distinfo # ./Makefile # ./files # ./files/patch-makefile # ./files/patch-config # ./pkg-plist # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << '0e313719ff012ceaf97a028d51caa8f5' XLuaExpat is a SAX XML parser based on the Expat library. SAX is the Simple API Xfor XML and allows programs to: X X* process a XML document incrementally, thus being able to handle huge X documents without memory penalties; X* register handler functions which are called by the parser during the X processing of the document, handling the document elements or text. X XWith an event-based API like SAX the XML document can be fed to the parser in Xchunks, and the parsing begins as soon as the parser receives the first Xdocument chunk. LuaExpat reports parsing events (such as the start and end of Xelements) directly to the application through callbacks. The parsing of huge Xdocuments can benefit from this piecemeal operation. X XWWW: http://www.keplerproject.org/luaexpat 0e313719ff012ceaf97a028d51caa8f5 echo x - ./distinfo sed 's/^X//' >./distinfo << 'aec8793adfd5b7c3f00e62ae41a09ac2' XMD5 (luaexpat-1.1.tar.gz) = 6ecb895ccf5cff1e7f2facd438b1f8d0 XSHA256 (luaexpat-1.1.tar.gz) = 9d709ddc606630f9b9dc3f3aafcb2a7c1fcb2675000c09978d8a37974e74effd XSIZE (luaexpat-1.1.tar.gz) = 27907 aec8793adfd5b7c3f00e62ae41a09ac2 echo x - ./Makefile sed 's/^X//' >./Makefile << '464ef7c6571951809b23e262cbe26e19' X# New ports collection makefile for: luaexpat X# Date created: 25 June 2009 X# Whom: Andrew Lewis X# X# $FreeBSD$ X# X XPORTNAME= luaexpat XPORTVERSION= 1.1 XCATEGORIES= textproc XMASTER_SITES= http://luaforge.net/frs/download.php/2469/ XPKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} X XMAINTAINER= dru@silenceisdefeat.net XCOMMENT= LuaExpat is a SAX XML parser based on the Expat library. X XMAKEFILE= makefile XALL_TARGET= lib XUSE_LUA= 5.0-5.1 XWANT_LUA_VER= 5.1 XBUILD_DEPENDS= ${LOCALBASE}/lib/libexpat.so:${PORTSDIR}/textproc/expat2 X X.if ${USE_LUA} == 5.0 X XBUILD_DEPENDS+= ${NONEXISTENT}:${PORTSDIR}/devel/lua50-compat51:build X X.endif X X.include 464ef7c6571951809b23e262cbe26e19 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/patch-makefile sed 's/^X//' >./files/patch-makefile << '96974221925946c67df7c2aa45724c60' X--- makefile.orig 2009-06-25 06:07:16.000000000 +0000 X+++ makefile 2009-06-25 06:23:06.000000000 +0000 X@@ -4,15 +4,11 @@ X X include $(CONFIG) X X-ifeq "$(LUA_VERSION_NUM)" "500" X-COMPAT_O= $(COMPAT_DIR)/compat-5.1.o X-endif X- X OBJS= src/lxplib.o $(COMPAT_O) X lib: src/$(LIBNAME) X X src/$(LIBNAME) : $(OBJS) X- export MACOSX_DEPLOYMENT_TARGET="10.3"; $(CC) -o src/$(LIBNAME) $(LIB_OPTION) $(OBJS) -lexpat X+ export MACOSX_DEPLOYMENT_TARGET="10.3"; $(CC) -o src/$(LIBNAME) $(LIB_OPTION) lxplib.o $(COMPAT_O) -lexpat X X $(COMPAT_DIR)/compat-5.1.o: $(COMPAT_DIR)/compat-5.1.c X $(CC) -c $(CFLAGS) -o $@ $(COMPAT_DIR)/compat-5.1.c 96974221925946c67df7c2aa45724c60 echo x - ./files/patch-config sed 's/^X//' >./files/patch-config << 'f19ae8234b70b2ff339a59d27054f71b' X--- config.orig 2006-06-08 20:41:48.000000000 +0000 X+++ config 2009-07-03 03:00:20.000000000 +0000 X@@ -1,15 +1,15 @@ X # Installation directories X # System's libraries directory (where binary libraries are installed) X-LUA_LIBDIR= /usr/local/lib/lua/5.0 X+LUA_LIBDIR= ${LUA_MODLIBDIR} X # System's lua directory (where Lua libraries are installed) X-LUA_DIR= /usr/local/share/lua/5.0 X+LUA_DIR= ${LUA_MODSHAREDIR} X # Lua includes directory X-LUA_INC= /usr/local/include X+LUA_INC= ${LUA_INCDIR} X # Expat includes directory X-EXPAT_INC= /usr/local/include X+EXPAT_INC= ${LOCALBASE}/include X X # OS dependent X-LIB_OPTION= -shared #for Linux X+LIB_OPTION= -L${LOCALBASE}/lib -shared #for Linux X #LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X X X LIBNAME= $T.so.$V X@@ -18,7 +18,7 @@ X # first version digit * 100 + second version digit X # e.g. Lua 5.0.2 => 500, Lua 5.1 => 501, Lua 5.1.1 => 501) X LUA_VERSION_NUM= 500 X-COMPAT_DIR= ../compat/src X+COMPAT_DIR= ${LUA_MODLIBDIR} X X # Compilation parameters X CWARNS = -Wall -pedantic \ f19ae8234b70b2ff339a59d27054f71b echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'ef3e7f63841ae908ba397c2bef1fbad6' X%%LUA_MODLIBDIR%%/lxp.so X%%LUA_MODLIBDIR%%/lxp.so.1.1.0 X%%LUA_MODSHAREDIR%%/lxp/lom.lua ef3e7f63841ae908ba397c2bef1fbad6 exit >Release-Note: >Audit-Trail: >Unformatted: From dru at silenceisdefeat.net Fri Jul 3 04:30:05 2009 From: dru at silenceisdefeat.net (Andrew Lewis) Date: Fri Jul 3 04:30:17 2009 Subject: ports/136266: New port: security/luasec Lua bindings for OpenSSL library Message-ID: <200907030422.n634Mkk4010253@www.freebsd.org> >Number: 136266 >Category: ports >Synopsis: New port: security/luasec Lua bindings for OpenSSL library >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 04:30:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrew Lewis >Release: 7.1-RELEASE-p6 >Organization: Private >Environment: FreeBSD foo.bar 7.1-RELEASE-p6 FreeBSD 7.1-RELEASE-p6 #4: Wed Jun 24 14:25:56 UTC 2009 toor@foo.bar:/usr/obj/usr/src/sys/ADAMANTIUM71 i386 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./Makefile # ./pkg-descr # ./pkg-plist # ./distinfo # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./Makefile sed 's/^X//' >./Makefile << '464ef7c6571951809b23e262cbe26e19' X# New ports collection makefile for: luasec X# Date created: 25 June 2009 X# Whom: Andrew Lewis X# X# $FreeBSD$ X# X XPORTNAME= luasec XPORTVERSION= 0.3.2 XCATEGORIES= security XMASTER_SITES= http://luaforge.net/frs/download.php/4059/ XPKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} X XMAINTAINER= dru@silenceisdefeat.net XCOMMENT= A Lua binding for the OpenSSL library to provide TLS/SSL communication X XALL_TARGET= bsd XLIBDIR= -L${LUA_LIBDIR} XMAKE_ENV+= INCDIR=-I${LUA_INCDIR} XUSE_LUA= 5.1 XWANT_LUA_VER= 5.1 XRUN_DEPENDS+= ${LUA_MODLIBDIR}/socket/core.so:${PORTSDIR}/net/luasocket X X.include 464ef7c6571951809b23e262cbe26e19 echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << '0e313719ff012ceaf97a028d51caa8f5' XLuaSec is a binding for OpenSSL library to provide TLS/SSL communication. This Xversion delegates to LuaSocket the TCP connection establishment between the Xclient and server. Then LuaSec uses this connection to start a secure TLS/SSL Xsession. X XWWW: http://www.inf.puc-rio.br/~brunoos/luasec/ 0e313719ff012ceaf97a028d51caa8f5 echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'ef3e7f63841ae908ba397c2bef1fbad6' X%%LUA_MODLIBDIR%%/ssl.so X%%LUA_MODSHAREDIR%%/ssl.lua ef3e7f63841ae908ba397c2bef1fbad6 echo x - ./distinfo sed 's/^X//' >./distinfo << 'aec8793adfd5b7c3f00e62ae41a09ac2' XMD5 (luasec-0.3.2.tar.gz) = ee74c2578a1eb594b889eeba7a3b57f0 XSHA256 (luasec-0.3.2.tar.gz) = 1a2f677aa94f42a886da31538f7f7e60b126fcf624663e4b06eaa03a7e428ef5 XSIZE (luasec-0.3.2.tar.gz) = 26467 aec8793adfd5b7c3f00e62ae41a09ac2 exit >Release-Note: >Audit-Trail: >Unformatted: From lapo at lapo.it Fri Jul 3 06:10:01 2009 From: lapo at lapo.it (Lapo Luchini) Date: Fri Jul 3 06:10:30 2009 Subject: ports/136268: databases/php5-pdo_dblib 5.2.10 doesn't work with MSSQL Message-ID: <20090703060330.12212.qmail@mail.lapo.it> >Number: 136268 >Category: ports >Synopsis: databases/php5-pdo_dblib 5.2.10 doesn't work with MSSQL >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 06:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Lapo Luchini >Release: FreeBSD 6.4-STABLE amd64 >Organization: >Environment: System: FreeBSD motoko.lapo.it 6.4-STABLE FreeBSD 6.4-STABLE #9: Thu Jan 29 15:50:58 CET 2009 root@motoko.lapo.it:/usr/obj/usr/src/sys/MOTOKO amd64 >Description: PDO DBLib doesn't work at all with MSSQL in version 5.2.10. >How-To-Repeat: Simply try to connect to a DB, an SQLSTATE[null] exception will be thrown. >Fix: It's already in PHP's CVS: http://bugs.php.net/bug.php?id=48539 >Release-Note: >Audit-Trail: >Unformatted: From dada at sbox.tugraz.at Fri Jul 3 06:10:02 2009 From: dada at sbox.tugraz.at (Martin Kammerhofer) Date: Fri Jul 3 06:10:30 2009 Subject: ports/136269: port sysutils/cvsweb-converters: upgrade to 0.3.4 Message-ID: <200907030603.n6363WwQ090723@www.freebsd.org> >Number: 136269 >Category: ports >Synopsis: port sysutils/cvsweb-converters: upgrade to 0.3.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 06:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Martin Kammerhofer >Release: 7-current >Organization: TUG >Environment: >Description: upgrade to 0.3.4 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/martin/.CVS-Repository/ports/sysutils/cvsweb-converters/Makefile,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- Makefile 25 Jun 2006 08:16:47 -0000 1.15 +++ Makefile 2 Jul 2009 21:52:31 -0000 1.16 @@ -6,7 +6,7 @@ # PORTNAME= cvsweb-converters -PORTVERSION= 0.3.3 +PORTVERSION= 0.3.4 CATEGORIES= sysutils MASTER_SITES= http://www.sbox.TUGraz.at/home/d/dada/distfiles/ \ http://mitglied.lycos.de/mkamm/distfiles/ @@ -15,7 +15,7 @@ COMMENT= Create hyperlinks to cvsweb from cvs[up] output or FreeBSD commitlogs BUILD_DEPENDS= ${SITE_PERL}/URI/Escape.pm:${PORTSDIR}/net/p5-URI \ - ${SITE_PERL}/${PERL_ARCH}/Compress/Zlib.pm:${PORTSDIR}/archivers/p5-Compress-Zlib \ + ${SITE_PERL}/Compress/Zlib.pm:${PORTSDIR}/archivers/p5-Compress-Zlib \ ${SITE_PERL}/Config/IniFiles.pm:${PORTSDIR}/devel/p5-Config-IniFiles \ ${SITE_PERL}/Time/ParseDate.pm:${PORTSDIR}/devel/p5-Time-modules RUN_DEPENDS= ${BUILD_DEPENDS} Index: distinfo =================================================================== RCS file: /home/martin/.CVS-Repository/ports/sysutils/cvsweb-converters/distinfo,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- distinfo 25 Jun 2006 08:16:47 -0000 1.10 +++ distinfo 2 Jul 2009 21:52:31 -0000 1.11 @@ -1,3 +1,3 @@ -MD5 (cvsweb-converters-0.3.3.tar.bz2) = 7e81e8849274761334672e96fcca07c2 -SHA256 (cvsweb-converters-0.3.3.tar.bz2) = 61d1a669feeffb97e86cf02bdb869a84d856baff3ab0fe07433904ed14926fec -SIZE (cvsweb-converters-0.3.3.tar.bz2) = 77191 +MD5 (cvsweb-converters-0.3.4.tar.bz2) = 61553df3936105716a9c09a36d056ab9 +SHA256 (cvsweb-converters-0.3.4.tar.bz2) = fb0fcc3c25c46e4b7f4cc493b7e64be1fc0bd23408b0f35540180db6c980f63f +SIZE (cvsweb-converters-0.3.4.tar.bz2) = 82297 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 06:10:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 06:10:31 2009 Subject: ports/136268: databases/php5-pdo_dblib 5.2.10 doesn't work with MSSQL Message-ID: <200907030610.n636ACe4080118@freefall.freebsd.org> Synopsis: databases/php5-pdo_dblib 5.2.10 doesn't work with MSSQL Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 06:10:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136268 From edwin at FreeBSD.org Fri Jul 3 06:10:18 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 06:10:31 2009 Subject: ports/136269: port sysutils/cvsweb-converters: upgrade to 0.3.4 Message-ID: <200907030610.n636AHdK081109@freefall.freebsd.org> Synopsis: port sysutils/cvsweb-converters: upgrade to 0.3.4 Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Jul 3 06:10:17 UTC 2009 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136269 From edwin at FreeBSD.org Fri Jul 3 06:10:22 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 06:10:32 2009 Subject: ports/136269: port sysutils/cvsweb-converters: upgrade to 0.3.4 Message-ID: <200907030610.n636AMhe081873@freefall.freebsd.org> Synopsis: port sysutils/cvsweb-converters: upgrade to 0.3.4 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Jul 3 06:10:21 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136269 From edwin at FreeBSD.org Fri Jul 3 06:20:04 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Fri Jul 3 06:20:10 2009 Subject: ports/136269: port sysutils/cvsweb-converters: upgrade to 0.3.4 Message-ID: <200907030620.n636K3La087612@freefall.freebsd.org> The following reply was made to PR ports/136269; it has been noted by GNATS. From: Edwin Groothuis To: mkamm@gmx.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/136269: port sysutils/cvsweb-converters: upgrade to 0.3.4 Date: Fri, 3 Jul 2009 06:10:19 UT Maintainer of sysutils/cvsweb-converters, Please note that PR ports/136269 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136269 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From mkamm at gmx.net Fri Jul 3 07:10:06 2009 From: mkamm at gmx.net (Martin Kammerhofer) Date: Fri Jul 3 07:10:18 2009 Subject: ports/136269: port sysutils/cvsweb-converters: upgrade to 0.3.4 Message-ID: <200907030710.n637A53Y030775@freefall.freebsd.org> The following reply was made to PR ports/136269; it has been noted by GNATS. From: "Martin Kammerhofer" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/136269: port sysutils/cvsweb-converters: upgrade to 0.3.4 Date: Fri, 03 Jul 2009 08:38:26 +0200 Approved! (PR was actually submitted by maintainer via FreeBSD web interface.) -- Neu: GMX Doppel-FLAT mit Internet-Flatrate + Telefon-Flatrate für nur 19,99 Euro/mtl.!* http://portal.gmx.net/de/go/dsl02 From murashin at gfd-dennou.org Fri Jul 3 07:10:07 2009 From: murashin at gfd-dennou.org (Shin'ya Murakami) Date: Fri Jul 3 07:10:19 2009 Subject: ports/136270: [maintainer] science/ruby-gphys: update to 0.7.0 Message-ID: <20090703.154118.114270411.murashin@gfd-dennou.org> >Number: 136270 >Category: ports >Synopsis: [maintainer] science/ruby-gphys: update to 0.7.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 07:10:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Shin'ya Murakami >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: System: FreeBSD qgpv 7.2-STABLE FreeBSD 7.2-STABLE #8: Thu Jun 11 15:50:28 JST 2009 murashin@qgpv:/usr/obj/usr/src/sys/QGPV i386 >Description: update to 0.7.0. >How-To-Repeat: N/A >Fix: --- ruby-gphys.diff begins here --- diff -uN /usr/ports/science/ruby-gphys/Makefile ruby-gphys/Makefile --- /usr/ports/science/ruby-gphys/Makefile 2009-01-10 17:19:27.000000000 +0900 +++ ruby-gphys/Makefile 2009-07-03 14:25:34.000000000 +0900 @@ -6,8 +6,7 @@ # PORTNAME= gphys -PORTVERSION= 0.6.1 -PORTREVISION= 2 +PORTVERSION= 0.7.0 CATEGORIES= science ruby MASTER_SITES= http://ruby.gfd-dennou.org/products/gphys/ \ http://dennou-h.gfd-dennou.org/library/ruby/products/gphys/ \ @@ -27,14 +26,14 @@ ${RUBY_SITELIBDIR}/numru/units.rb:${PORTSDIR}/math/ruby-numru_units USE_RUBY= yes -NO_BUILD= yes +USE_RUBY_EXTCONF= yes DOCS= ChangeLog README TODO_ep_flux doc/*.html DOCS_DR= doc/derivative/*.html doc/derivative/math-doc/document.pdf DOCS_EP= doc/ep_flux/*.html doc/ep_flux/math-doc/document.pdf do-install: - @cd ${WRKSRC}/ && ${RUBY} ./install.rb + ${INSTALL_SCRIPT} ${WRKSRC}/bin/* ${PREFIX}/bin post-install: .if !defined(NOPORTEXAMPLES) diff -uN /usr/ports/science/ruby-gphys/distinfo ruby-gphys/distinfo --- /usr/ports/science/ruby-gphys/distinfo 2008-03-30 02:31:27.000000000 +0900 +++ ruby-gphys/distinfo 2009-07-03 00:37:40.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (ruby/gphys-0.6.1.tar.gz) = c0df6e75b8158da758d4a116944f2019 -SHA256 (ruby/gphys-0.6.1.tar.gz) = dd2345027a0dcfc7b3d857dbe9ecd5617abc846841687060623a715080933c9c -SIZE (ruby/gphys-0.6.1.tar.gz) = 1146020 +MD5 (ruby/gphys-0.7.0.tar.gz) = 7d2af7326388c32434a83ce7e40860b6 +SHA256 (ruby/gphys-0.7.0.tar.gz) = cd630bc3b4a0362332bd17075a94ae9c15d91ba949dd1e1450a5d437955c88bd +SIZE (ruby/gphys-0.7.0.tar.gz) = 1199585 diff -uN /usr/ports/science/ruby-gphys/pkg-plist ruby-gphys/pkg-plist --- /usr/ports/science/ruby-gphys/pkg-plist 2009-01-10 17:19:27.000000000 +0900 +++ ruby-gphys/pkg-plist 2009-07-03 00:58:39.000000000 +0900 @@ -11,15 +11,22 @@ bin/gpvect bin/gpview bin/grads2nc_with_gphys +%%RUBY_SITEARCHLIBDIR%%/numru/gphys_ext.so +@dirrmtry %%RUBY_SITEARCHLIBDIR%%/numru %%RUBY_SITELIBDIR%%/numru/dclext_datetime_ax.rb %%RUBY_SITELIBDIR%%/numru/derivative.rb -%%RUBY_SITELIBDIR%%/numru/vizshot.rb +%%RUBY_SITELIBDIR%%/numru/ganalysis.rb %%RUBY_SITELIBDIR%%/numru/gdir.rb %%RUBY_SITELIBDIR%%/numru/gdir_connect_ftp-like.rb %%RUBY_SITELIBDIR%%/numru/ggraph.rb %%RUBY_SITELIBDIR%%/numru/ggraph_on_merdional_section.rb %%RUBY_SITELIBDIR%%/numru/gphys.rb %%RUBY_SITELIBDIR%%/numru/htdir.rb +%%RUBY_SITELIBDIR%%/numru/ganalysis/covariance.rb +%%RUBY_SITELIBDIR%%/numru/ganalysis/eof.rb +%%RUBY_SITELIBDIR%%/numru/ganalysis/histogram.rb +@dirrm %%RUBY_SITELIBDIR%%/numru/ganalysis +%%RUBY_SITELIBDIR%%/numru/gphys/assoccoords.rb %%RUBY_SITELIBDIR%%/numru/gphys/attribute.rb %%RUBY_SITELIBDIR%%/numru/gphys/attributenetcdf.rb %%RUBY_SITELIBDIR%%/numru/gphys/axis.rb @@ -32,6 +39,8 @@ %%RUBY_SITELIBDIR%%/numru/gphys/gphys_fft.rb %%RUBY_SITELIBDIR%%/numru/gphys/gphys_grads_io.rb %%RUBY_SITELIBDIR%%/numru/gphys/gphys_grib_io.rb +%%RUBY_SITELIBDIR%%/numru/gphys/gphys_gtool3_io.rb +%%RUBY_SITELIBDIR%%/numru/gphys/gphys_hdfeos5_io.rb %%RUBY_SITELIBDIR%%/numru/gphys/gphys_io.rb %%RUBY_SITELIBDIR%%/numru/gphys/gphys_io_common.rb %%RUBY_SITELIBDIR%%/numru/gphys/gphys_netcdf_io.rb @@ -40,6 +49,8 @@ %%RUBY_SITELIBDIR%%/numru/gphys/grib.rb %%RUBY_SITELIBDIR%%/numru/gphys/grib_params.rb %%RUBY_SITELIBDIR%%/numru/gphys/grid.rb +%%RUBY_SITELIBDIR%%/numru/gphys/gtool3.rb +%%RUBY_SITELIBDIR%%/numru/gphys/narray_ext.rb %%RUBY_SITELIBDIR%%/numru/gphys/netcdf_convention.rb %%RUBY_SITELIBDIR%%/numru/gphys/subsetmapping.rb %%RUBY_SITELIBDIR%%/numru/gphys/unumeric.rb @@ -47,6 +58,8 @@ %%RUBY_SITELIBDIR%%/numru/gphys/varraycomposite.rb %%RUBY_SITELIBDIR%%/numru/gphys/varraygrads.rb %%RUBY_SITELIBDIR%%/numru/gphys/varraygrib.rb +%%RUBY_SITELIBDIR%%/numru/gphys/varraygtool3.rb +%%RUBY_SITELIBDIR%%/numru/gphys/varrayhdfeos5.rb %%RUBY_SITELIBDIR%%/numru/gphys/varraynetcdf.rb %%RUBY_SITELIBDIR%%/numru/gphys/varraynusdas.rb @dirrm %%RUBY_SITELIBDIR%%/numru/gphys @@ -62,7 +75,9 @@ %%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ep_flux/demo_NCEP_1.rb %%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ep_flux/demo_NCEP_2.rb %%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ep_flux/demo_NCEP_3.rb +%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/test/eof_slp.rb %%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/test/test_ep_flux.rb +%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/assoc_crds.nc %%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/T.jan.ctl %%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/T.jan.dat %%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/T.jan.grib --- ruby-gphys.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 07:10:22 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 07:10:28 2009 Subject: ports/136270: [maintainer] science/ruby-gphys: update to 0.7.0 Message-ID: <200907030710.n637ALK7032812@freefall.freebsd.org> Synopsis: [maintainer] science/ruby-gphys: update to 0.7.0 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 07:10:21 UTC 2009 Responsible-Changed-Why: clsung@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136270 From linimon at FreeBSD.org Fri Jul 3 07:30:39 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Jul 3 07:30:46 2009 Subject: ports/136267: New port: net-im/prosody Simple and extensible Lua XMPP server Message-ID: <200907030730.n637UdWK069269@freefall.freebsd.org> Synopsis: New port: net-im/prosody Simple and extensible Lua XMPP server Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 3 07:30:28 UTC 2009 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=136267 From bzeeb+freebsdports at zabbadoz.net Fri Jul 3 10:30:07 2009 From: bzeeb+freebsdports at zabbadoz.net (Bjoern A. Zeeb) Date: Fri Jul 3 10:30:14 2009 Subject: ports/136273: sysutils/linux-megacli fix Message-ID: <20090703100738.CF9384899B5@storage.int.zabbadoz.net> >Number: 136273 >Category: ports >Synopsis: sysutils/linux-megacli fix >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 10:30:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Bjoern A. Zeeb >Release: FreeBSD 8.0-CURRENT amd64 >Organization: Zabbadoz.NeT >Environment: >Description: When run there are awk errors introduced in PR126040 to 407.status-mfi-raid.in (in a later diff) due to an unquoted ( which had been there intially to catch bot Enclosure lines. Even though the port is restricted, try make it install properly; The name of the ``README'' is different. >How-To-Repeat: make install; run under matchuing conditions. >Fix: Index: sysutils/linux-megacli/Makefile =================================================================== RCS file: /mirror/FreeBSD/r/pcvs/ports/sysutils/linux-megacli/Makefile,v retrieving revision 1.10 diff -u -p -r1.10 Makefile --- sysutils/linux-megacli/Makefile 30 Apr 2009 11:39:07 -0000 1.10 +++ sysutils/linux-megacli/Makefile 3 Jul 2009 10:00:30 -0000 @@ -70,7 +70,7 @@ do-install: post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/${PORTVERSION}_Linux_Cli.txt ${DOCSDIR}/readme.txt + ${INSTALL_MAN} ${WRKSRC}/${PORTVERSION}_Linux_MegaCLI.txt ${DOCSDIR}/readme.txt ${INSTALL_MAN} ${FILESDIR}/README-status-mfi-raid.txt ${DOCSDIR}/README-status-mfi-raid.txt .endif @${CAT} ${PKGMESSAGE} Index: sysutils/linux-megacli/files/407.status-mfi-raid.in =================================================================== RCS file: /mirror/FreeBSD/r/pcvs/ports/sysutils/linux-megacli/files/407.status-mfi-raid.in,v retrieving revision 1.6 diff -u -p -r1.6 407.status-mfi-raid.in --- sysutils/linux-megacli/files/407.status-mfi-raid.in 30 Apr 2009 11:39:08 -0000 1.6 +++ sysutils/linux-megacli/files/407.status-mfi-raid.in 3 Jul 2009 10:00:30 -0000 @@ -68,7 +68,7 @@ for ctrl in `jot ${ADPCOUNT} ${ADPMINIDX E=-1; S=-1; D=-1; s=-1; mec=-1; oec=-1; pfc=-1; lpfeqn=-1; state=""; } - /^Enclosure (Number:/ { E=$3; } + /^Enclosure Number:/ { E=$3; } /^Enclosure Device ID:/ { E=$4; } /^Slot Number:/ { S=$3; } /^Device Id:/ { D=$3; } >Release-Note: >Audit-Trail: >Unformatted: From ecu at ipv42.net Fri Jul 3 10:50:03 2009 From: ecu at ipv42.net (Nicolas Jombart) Date: Fri Jul 3 10:50:08 2009 Subject: ports/136275: [MAINTAINER] sysutils/sec: update to 2.5.1 Message-ID: <20090703103354.26C956BFE@northern.ipv42.net> >Number: 136275 >Category: ports >Synopsis: [MAINTAINER] sysutils/sec: update to 2.5.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 10:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Nicolas Jombart >Release: FreeBSD 7.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD northern 7.0-PRERELEASE FreeBSD 7.0-PRERELEASE #1: Sun Feb 17 15:23:26 CET 2008 >Description: - Update to 2.5.1 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- sec-2.5.1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/sec/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 22 Apr 2007 13:46:28 -0000 1.14 +++ Makefile 3 Jul 2009 10:32:48 -0000 @@ -7,7 +7,7 @@ # PORTNAME= sec -PORTVERSION= 2.4.1 +PORTVERSION= 2.5.1 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= simple-evcorr Index: distinfo =================================================================== RCS file: /home/ncvs/ports/sysutils/sec/distinfo,v retrieving revision 1.13 diff -u -r1.13 distinfo --- distinfo 22 Apr 2007 13:46:28 -0000 1.13 +++ distinfo 3 Jul 2009 10:32:48 -0000 @@ -1,3 +1,3 @@ -MD5 (sec-2.4.1.tar.gz) = f233b3acf7cebdb573f4ff1f441866c3 -SHA256 (sec-2.4.1.tar.gz) = e6b64fd7335604d052314dc4e75ecea95edc5ec3373c7e8dff84018c174617cb -SIZE (sec-2.4.1.tar.gz) = 80377 +MD5 (sec-2.5.1.tar.gz) = b951c8b905b6e53bd75e72118e3042de +SHA256 (sec-2.5.1.tar.gz) = 8aa675dbf89733d1a45eb3cc08baac4be3a3f6c0158a6f78f2e8d05344c97bc1 +SIZE (sec-2.5.1.tar.gz) = 85406 --- sec-2.5.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From adw at avatastic.co.uk Fri Jul 3 11:00:15 2009 From: adw at avatastic.co.uk (Andrew D Wiles) Date: Fri Jul 3 11:00:22 2009 Subject: ports/136277: portupgrading courier-authlib over-writes existing config files Message-ID: <200907031053.n63Arp2r078915@skynet.avatastic.co.uk> >Number: 136277 >Category: ports >Synopsis: portupgrading courier-authlib over-writes existing config files >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 11:00:14 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrew D Wiles >Release: FreeBSD 7.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD skynet.avatastic.co.uk 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 21:47:47 BST 2009 root@skynet.avatastic.co.uk:/usr/obj/usr/src/sys/SKYNET amd64 >Description: when upgrading courier-authdemon with portupgrade the existing authlibmysqlrc is replaced with a distribution default. How-To-Repeat: customise /usr/local/etc/authlib/authlibmysqlrc and then portupgrade -f security/courier-authlib >How-To-Repeat: >Fix: none known >Release-Note: >Audit-Trail: >Unformatted: From jdc at parodius.com Fri Jul 3 11:20:05 2009 From: jdc at parodius.com (Jeremy Chadwick) Date: Fri Jul 3 11:20:11 2009 Subject: ports/136278: sysutils/bsdhwmon: update to 20090703 Message-ID: <20090703111438.DA56F33C43@icarus.home.lan> >Number: 136278 >Category: ports >Synopsis: sysutils/bsdhwmon: update to 20090703 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 11:20:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Jeremy Chadwick >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD icarus.home.lan 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu May 21 07:50:35 PDT 2009 root@icarus.home.lan:/usr/obj/usr/src/sys/X7SBA_RELENG_7_amd64 amd64 >Description: Update sysutils/bsdhwmon to version 20090703. This fixes a major bug which was tickled with a kernel update of src/sys/dev/smbus/smb.c on 2009/05/15, after which bsdhwmon would spit out incorrect data to the user due to not using the correct SMBus slave address. Users of 20090703 on older (pre-May) kernels should not see any regression/breakage either. I'll also take ownership of this port, since it's my software. >How-To-Repeat: n/a >Fix: Apply below patch. diff -ruN bsdhwmon.orig/Makefile bsdhwmon/Makefile --- bsdhwmon.orig/Makefile 2008-11-22 12:08:27.000000000 -0800 +++ bsdhwmon/Makefile 2009-07-03 04:10:24.555932058 -0700 @@ -1,16 +1,16 @@ # New ports collection makefile for: bsdhwmon # Date created: 5 October 2008 -# Whom: Jeremy Chadwick +# Whom: Jeremy Chadwick # # $FreeBSD: ports/sysutils/bsdhwmon/Makefile,v 1.3 2008/11/20 11:06:24 koitsu Exp $ # PORTNAME= bsdhwmon -PORTVERSION= 20081107 +PORTVERSION= 20090703 CATEGORIES= sysutils MASTER_SITES= http://bsdhwmon.parodius.com/dist/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jdc@parodius.com COMMENT= Hardware sensor monitoring utility for FreeBSD PLIST_FILES= sbin/bsdhwmon diff -ruN bsdhwmon.orig/distinfo bsdhwmon/distinfo --- bsdhwmon.orig/distinfo 2008-11-07 21:09:34.000000000 -0800 +++ bsdhwmon/distinfo 2009-07-03 04:09:27.235522010 -0700 @@ -1,3 +1,3 @@ -MD5 (bsdhwmon-20081107.tar.gz) = c4e4c8eed469d823c8d46155d7463f79 -SHA256 (bsdhwmon-20081107.tar.gz) = 3933d78616053b3c4c42189bef013386c2b6630ee4b95081bbec2389fc09de56 -SIZE (bsdhwmon-20081107.tar.gz) = 16611 +MD5 (bsdhwmon-20090703.tar.gz) = fb4ed1e8d420e60b321bb4a42579c0c5 +SHA256 (bsdhwmon-20090703.tar.gz) = bec4239593f82b402b70d478f02dde47a54c20897e4a2239708be82684772591 +SIZE (bsdhwmon-20090703.tar.gz) = 17112 >Release-Note: >Audit-Trail: >Unformatted: From alexey at renatasystems.org Fri Jul 3 12:20:06 2009 From: alexey at renatasystems.org (Alexey V.Degtyarev) Date: Fri Jul 3 12:20:13 2009 Subject: ports/136281: New port: benchmarks/slowloris - HTTP client to test webservers over denial-of-service attacks Message-ID: <20090703121446.26543.qmail@hs-9.renatasystems.org> >Number: 136281 >Category: ports >Synopsis: New port: benchmarks/slowloris - HTTP client to test webservers over denial-of-service attacks >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 12:20:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexey V. Degtyarev >Release: FreeBSD 7.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD renatasystems.org 7.1-RELEASE FreeBSD 7.1-RELEASE #0: Thu Jan 1 08:58:24 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Slowloris both helps identify the timeout windows of a HTTP server or Proxy server, can bypass httpready protection and ultimately performs a fairly low bandwidth denial of service. It has the added benefit of allowing the server to come back at any time (once the program is killed), and not spamming the logs excessively. It also keeps the load nice and low on the target server, so other vital processes don't die unexpectedly, or cause alarm to anyone who is logged into the server for other reasons. The main audience using slowloris is of course a system administrators wanting to measure their webserver's performance and vulnerability. WWW: http://ha.ckers.org/slowloris/ >How-To-Repeat: >Fix: --- slowloris.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # slowloris # slowloris/pkg-descr # slowloris/distinfo # slowloris/Makefile # slowloris/files # slowloris/files/extra-nothreads # echo c - slowloris mkdir -p slowloris > /dev/null 2>&1 echo x - slowloris/pkg-descr sed 's/^X//' >slowloris/pkg-descr << '35d5a4b2e9f67caad838f1e76b0c8bad' XSlowloris both helps identify the timeout windows of a HTTP server or Proxy Xserver, can bypass httpready protection and ultimately performs a fairly low Xbandwidth denial of service. It has the added benefit of allowing the server Xto come back at any time (once the program is killed), and not spamming the Xlogs excessively. It also keeps the load nice and low on the target server, so Xother vital processes don't die unexpectedly, or cause alarm to anyone who is Xlogged into the server for other reasons. X XThe main audience using slowloris is of course a system administrators wanting Xto measure their webserver's performance and vulnerability. X XWWW: http://ha.ckers.org/slowloris/ 35d5a4b2e9f67caad838f1e76b0c8bad echo x - slowloris/distinfo sed 's/^X//' >slowloris/distinfo << '2a074b7961c4d986b16d1fda8fa94900' XMD5 (slowloris-0.7.tar.gz) = e2f11939daccc1c623acda7ab337ec1b XSHA256 (slowloris-0.7.tar.gz) = 72aa764570bc5c7c97caca585cdc67dcfd731ca0184e01d81ceb3917e4b04ff9 XSIZE (slowloris-0.7.tar.gz) = 6306 2a074b7961c4d986b16d1fda8fa94900 echo x - slowloris/Makefile sed 's/^X//' >slowloris/Makefile << 'e4d15b0e829e99f7196201fdaac97698' X# New ports collection makefile for: slowloris X# Date created: Fri 03 Jul 2009 X# Whom: Alexey V. Degtyarev X# X# $FreeBSD$ X# X XPORTNAME= slowloris XPORTVERSION= 0.7 XCATEGORIES= benchmarks XMASTER_SITES= ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/ X XMAINTAINER= alexey@renatasystems.org XCOMMENT= The low bandwidth, yet greedy and poisonous HTTP client X XUSE_PERL5= yes XNO_BUILD= yes X XRUN_DEPENDS= p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL \ X p5-Getopt-Long>=0:${PORTSDIR}/devel/p5-Getopt-Long X XPLIST_FILES= bin/slowloris X X.include X XPERL_THREADS= no X X.if exists(${PERL}) XPERL_THREADS!= ${PERL} -V::usethreads X.if ${PERL_THREADS} == "'define';" XRUN_DEPENDS+= p5-threads-shared>=0:${PORTSDIR}/devel/p5-threads-shared XPERL_THREADS= yes X.endif X.endif X X.if ${PERL_THREADS} != "yes" XEXTRA_PATCHES+= ${FILESDIR}/extra-nothreads X.endif X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/slowloris.pl ${PREFIX}/bin/slowloris X X.include e4d15b0e829e99f7196201fdaac97698 echo c - slowloris/files mkdir -p slowloris/files > /dev/null 2>&1 echo x - slowloris/files/extra-nothreads sed 's/^X//' >slowloris/files/extra-nothreads << '78942374d7b3c94b1df362e27e97de55' X--- slowloris.pl.orig 2009-06-29 18:05:27.000000000 +0400 X+++ slowloris.pl 2009-07-03 14:31:35.000000000 +0400 X@@ -96,2 +96,2 @@ X- use threads; X- use threads::shared; X+# use threads; X+# use threads::shared; 78942374d7b3c94b1df362e27e97de55 exit --- slowloris.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From goncharov.alex at gmail.com Fri Jul 3 13:10:03 2009 From: goncharov.alex at gmail.com (Alex Goncharov) Date: Fri Jul 3 13:10:20 2009 Subject: ports/136263: New port: MySQL 5.4 -- requesting ownership Message-ID: <200907031310.n63DA2P8027080@freefall.freebsd.org> The following reply was made to PR ports/136263; it has been noted by GNATS. From: Alex Goncharov To: bug-followup@FreeBSD.org,alex-goncharov@comcast.net Cc: "Ian Lord" Subject: Re: ports/136263: New port: MySQL 5.4 -- requesting ownership Date: Fri, 03 Jul 2009 08:55:14 -0400 Attaching the shar of files introducing mysql54. Builds, installs, packages. More work to be done. Not hooked up into databases/Makefile until the ports has been validated. ====================================================================== # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # databases/mysql54-server # databases/mysql54-server/files # databases/mysql54-server/files/mysql-server.sh.in # databases/mysql54-server/files/patch-scripts_mysqld_safe.sh # databases/mysql54-server/pkg-message # databases/mysql54-server/pkg-install # databases/mysql54-server/pkg-descr # databases/mysql54-server/distinfo # databases/mysql54-server/Makefile # databases/mysql54-server/OLD-DIRS # databases/mysql54-server/pkg-plist # databases/mysql54-server/pkg-plist~ # databases/mysql54-client # databases/mysql54-client/Makefile # databases/mysql54-scripts # databases/mysql54-scripts/Makefile # databases/p5-DBD-mysql54 # databases/p5-DBD-mysql54/Makefile # databases/p5-DBD-mysql54/Makefile~ # echo c - databases/mysql54-server mkdir -p databases/mysql54-server > /dev/null 2>&1 echo c - databases/mysql54-server/files mkdir -p databases/mysql54-server/files > /dev/null 2>&1 echo x - databases/mysql54-server/files/mysql-server.sh.in sed 's/^X//' >databases/mysql54-server/files/mysql-server.sh.in << '1d49d852ed6ef3da1b8ac7871de2a467' X#!/bin/sh X# X# $FreeBSD: ports/databases/mysql51-server/files/mysql-server.sh.in,v 1.6 2008/07/30 06:11:16 ale Exp $ X# X X# PROVIDE: mysql X# REQUIRE: LOGIN X# KEYWORD: shutdown X X# X# Add the following line to /etc/rc.conf to enable mysql: X# mysql_enable (bool): Set to "NO" by default. X# Set it to "YES" to enable MySQL. X# mysql_limits (bool): Set to "NO" by default. X# Set it to yes to run `limits -e -U mysql` X# just before mysql starts. X# mysql_dbdir (str): Default to "/var/db/mysql" X# Base database directory. X# mysql_args (str): Custom additional arguments to be passed X# to mysqld_safe (default empty). X# X X. %%RC_SUBR%% X Xname="mysql" Xrcvar=`set_rcvar` X Xload_rc_config $name X X: ${mysql_enable="NO"} X: ${mysql_limits="NO"} X: ${mysql_dbdir="/var/db/mysql"} X: ${mysql_args=""} X Xmysql_user="mysql" Xmysql_limits_args="-e -U ${mysql_user}" Xpidfile="${mysql_dbdir}/`/bin/hostname`.pid" Xcommand="%%PREFIX%%/bin/mysqld_safe" Xcommand_args="--defaults-extra-file=${mysql_dbdir}/my.cnf --user=${mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} ${mysql_args} > /dev/null 2>&1 &" Xprocname="%%PREFIX%%/libexec/mysqld" Xstart_precmd="${name}_prestart" Xstart_postcmd="${name}_poststart" Xmysql_install_db="%%PREFIX%%/bin/mysql_install_db" Xmysql_install_db_args="--ldata=${mysql_dbdir}" X Xmysql_create_auth_tables() X{ X eval $mysql_install_db $mysql_install_db_args >/dev/null 2>/dev/null X [ $? -eq 0 ] && chown -R ${mysql_user}:${mysql_user} ${mysql_dbdir} X} X Xmysql_prestart() X{ X if [ ! -d "${mysql_dbdir}/mysql/." ]; then X mysql_create_auth_tables || return 1 X fi X if checkyesno mysql_limits; then X eval `/usr/bin/limits ${mysql_limits_args}` 2>/dev/null X else X return 0 X fi X} X Xmysql_poststart() X{ X local timeout=15 X while [ ! -f "${pidfile}" -a ${timeout} -gt 0 ]; do X timeout=$(( timeout - 1 )) X sleep 1 X done X return 0 X} X Xrun_rc_command "$1" 1d49d852ed6ef3da1b8ac7871de2a467 echo x - databases/mysql54-server/files/patch-scripts_mysqld_safe.sh sed 's/^X//' >databases/mysql54-server/files/patch-scripts_mysqld_safe.sh << '4018e129a847121e6164e776fa89f4c4' X--- scripts/mysqld_safe.sh.orig 2007-10-08 10:39:23.000000000 +0200 X+++ scripts/mysqld_safe.sh 2007-10-08 10:40:52.000000000 +0200 X@@ -242,10 +242,10 @@ X X if test -z "$MYSQL_HOME" X then X- if test -r "$MY_BASEDIR_VERSION/my.cnf" && test -r "$DATADIR/my.cnf" X+ if test -r "$MY_BASEDIR_VERSION/etc/my.cnf" && test -r "$DATADIR/my.cnf" X then X log_error "WARNING: Found two instances of my.cnf - X-$MY_BASEDIR_VERSION/my.cnf and X+$MY_BASEDIR_VERSION/etc/my.cnf and X $DATADIR/my.cnf X IGNORING $DATADIR/my.cnf" X X@@ -254,7 +254,7 @@ X then X log_error "WARNING: Found $DATADIR/my.cnf X The data directory is a deprecated location for my.cnf, please move it to X-$MY_BASEDIR_VERSION/my.cnf" X+$MY_BASEDIR_VERSION/etc/my.cnf" X MYSQL_HOME=$DATADIR X else X MYSQL_HOME=$MY_BASEDIR_VERSION 4018e129a847121e6164e776fa89f4c4 echo x - databases/mysql54-server/pkg-message sed 's/^X//' >databases/mysql54-server/pkg-message << '327b081145f01def458a04f220430286' X************************************************************************ X XRemember to run mysql_upgrade (with the optional --datadir= flag) Xthe first time you start the MySQL server after an upgrade from an Xearlier version. X X************************************************************************ 327b081145f01def458a04f220430286 echo x - databases/mysql54-server/pkg-install sed 's/^X//' >databases/mysql54-server/pkg-install << '91ee992958f1e591dfdda2afea8779e4' X#!/bin/sh X XPATH=/bin:/usr/sbin X Xcase $2 in XPOST-INSTALL) X USER=mysql X GROUP=${USER} X UID=88 X GID=${UID} X X if pw group show "${GROUP}" 2>/dev/null; then X echo "You already have a group \"${GROUP}\", so I will use it." X else X if pw groupadd ${GROUP} -g ${GID}; then X echo "Added group \"${GROUP}\"." X else X echo "Adding group \"${GROUP}\" failed..." X exit 1 X fi X fi X X if pw user show "${USER}" 2>/dev/null; then X echo "You already have a user \"${USER}\", so I will use it." X else X if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ X -d /nonexistent -s /sbin/nologin -c "MySQL Daemon" X then X echo "Added user \"${USER}\"." X else X echo "Adding user \"${USER}\" failed..." X exit 1 X fi X fi X ;; Xesac 91ee992958f1e591dfdda2afea8779e4 echo x - databases/mysql54-server/pkg-descr sed 's/^X//' >databases/mysql54-server/pkg-descr << '50eacd9d6e1e7559e3972174c5e7bed7' XMySQL 5.4 Community Edition - Preview Release X XMySQL Community Edition is a freely downloadable version of the Xworld's most popular open source database that is supported by an Xactive community of open source developers and enthusiasts. X XMySQL 5.4 is based on MySQL 5.1 but includes small, high-impact Xchanges to enhance scalability and performance in MySQL Server. X XAs with any other pre-production set of software, the preview release Xof MySQL 5.4 is not recommended for use on production systems. When Xusing MySQL 5.4, note that it is good practice to back up your data Xbefore installing the new software. MySQL/Sun generally recommends Xthat you dump and reload your tables from any previous version to Xupgrade to MySQL 5.4. X Xhttp://dev.mysql.com/doc/mysql-5.4-features/en/index.html X XAlex Goncharov 50eacd9d6e1e7559e3972174c5e7bed7 echo x - databases/mysql54-server/distinfo sed 's/^X//' >databases/mysql54-server/distinfo << '70a40e7f13e4346332c3ba012ff62413' XMD5 (mysql-5.4.1-beta.tar.gz) = 65e7a154e065c92c2a6bb97c9043b8b6 XSHA256 (mysql-5.4.1-beta.tar.gz) = 43b0ff572e9f1a39d84c3a74d24f63382003e8ca54d73231064d9ba075d1dcb7 XSIZE (mysql-5.4.1-beta.tar.gz) = 35199612 70a40e7f13e4346332c3ba012ff62413 echo x - databases/mysql54-server/Makefile sed 's/^X//' >databases/mysql54-server/Makefile << '5d930b86d5dc64940f4064d75259aa3b' X# New ports collection makefile for: MySQL-server X6 Date created: 28 Jan 2006 X# Whom: Alex Dupre X# X# $FreeBSD: ports/databases/mysql54-server/Makefile,v 1.248 2009/06/08 06:49:58 ale Exp $ X# X XPORTNAME?= mysql XPORTVERSION= 5.4.1 XPORTREVISION?= 0 XCATEGORIES= databases XMASTER_SITES= ${MASTER_SITE_MYSQL} XMASTER_SITE_SUBDIR= MySQL-5.4 XPKGNAMESUFFIX?= -server XDISTNAME= ${PORTNAME}-${PORTVERSION}-beta X XMAINTAINER= alex-goncharov@comcast.net XCOMMENT?= Multithreaded SQL database (server) X XSLAVEDIRS= databases/mysql54-client databases/mysql54-scripts XUSE_AUTOTOOLS= libtool:15 XUSE_GMAKE= yes XMAKE_JOBS_SAFE= yes X XCONFIGURE_ARGS= --localstatedir=/var/db/mysql \ X --infodir=${PREFIX}/info \ X --mandir=${PREFIX}/man \ X --without-debug \ X --without-readline \ X --without-libedit \ X --with-libwrap \ X --with-low-memory \ X --with-comment='FreeBSD port: ${PKGNAME}' \ X --enable-thread-safe-client X X.ifdef USE_MYSQL X.error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again. X.endif X X.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" XCONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} X.endif X.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" XCONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} X.endif X.if defined(WITH_OPENSSL) XCONFIGURE_ARGS+=--with-ssl=bundled X.endif X.if defined(WITH_FAST_MUTEXES) XCONFIGURE_ARGS+=--with-fast-mutexes X.endif X.if defined(BUILD_STATIC) XCONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static X.endif X.if defined(WITH_NDB) XCONFIGURE_ARGS+=--with-plugins=max X.else XCONFIGURE_ARGS+=--with-plugins=max-no-ndb X.endif X.if defined(WITH_COLLATION) && ${WITH_COLLATION} != "" XCONFIGURE_ARGS+=--with-collation=${WITH_COLLATION} X.endif X.if defined(WITH_DTRACE) XCONFIGURE_ARGS+=--enable-dtrace X.else XCONFIGURE_ARGS+=--enable-dtrace=no X.endif X X.include X X.if ${ARCH} == "i386" XCONFIGURE_ARGS+=--enable-assembler X.endif X.if defined(WITH_LINUXTHREADS) XCONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R XCONFIGURE_ARGS+=-D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads XCFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE XCFLAGS+= -I${LOCALBASE}/include/pthread/linuxthreads XLIB_DEPENDS+= lthread:${PORTSDIR}/devel/linuxthreads XCONFIGURE_ARGS+=-L${LOCALBASE}/lib -llthread -llgcc_r -llstdc++ -llsupc++' X.else XCONFIGURE_ARGS+=--with-named-thread-libs=${PTHREAD_LIBS} XCFLAGS+= ${PTHREAD_CFLAGS} X.endif X X.if defined(BUILD_OPTIMIZED) XCFLAGS+= -O3 -fno-omit-frame-pointer XCFLAGS+= -fno-gcse X.endif XCXXFLAGS+= ${CFLAGS} -felide-constructors -fno-rtti XCXXFLAGS+= -fno-exceptions X X# MySQL-Server part X.if !defined(CLIENT_ONLY) && !defined(SCRIPTS_ONLY) XUSE_MYSQL= yes XWANT_MYSQL_VER= 54 X XLATEST_LINK= mysql54-server X XCONFLICTS= mysql-server-3.* mysql-server-4.* mysql-server-5.0.* mysql-server-5.1.* mysql-server-6.* X XUSE_RC_SUBR= mysql-server.sh X X.if defined(WITH_NDB) XPLIST_SUB+= NDB="" X.else XPLIST_SUB+= NDB="@comment " X.endif X XMAN1= innochecksum.1 myisamchk.1 myisamlog.1 myisampack.1 \ X my_print_defaults.1 myisam_ftdump.1 mysql_client_test_embedded.1 \ X mysql_install_db.1 mysql_tzinfo_to_sql.1 \ X mysql_waitpid.1 mysqld_safe.1 mysqltest_embedded.1 mysql.server.1 \ X perror.1 replace.1 resolve_stack_dump.1 resolveip.1 X.if defined(WITH_NDB) XMAN1+= ndb_config.1 ndb_delete_all.1 ndb_desc.1 ndb_drop_index.1 \ X ndb_drop_table.1 ndb_error_reporter.1 ndb_mgm.1 \ X ndb_print_backup_file.1 ndb_print_schema_file.1 \ X ndb_print_sys_file.1 ndb_restore.1 ndb_select_all.1 \ X ndb_select_count.1 ndb_show_tables.1 ndb_size.pl.1 ndb_waiter.1 X.endif X XINFO= mysql X XCONFIGURE_ARGS+=--with-embedded-server X XCFLAGS+= -fPIC X Xpre-fetch: X @${ECHO} "" X @${ECHO} "You may use the following build options:" X @${ECHO} "" X @${ECHO} " WITH_CHARSET=charset Define the primary built-in charset (latin1)." X @${ECHO} " WITH_XCHARSET=list Define other built-in charsets (may be 'all')." X @${ECHO} " WITH_COLLATION=collate Define default collation (latin1_swedish_ci)." X @${ECHO} " WITH_OPENSSL=yes Enable secure connections." X @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." X @${ECHO} " WITH_PROC_SCOPE_PTH=yes Use process scope threads" X @${ECHO} " (try it if you use libpthread)." X @${ECHO} " WITH_FAST_MUTEXES=yes Replace mutexes with spinlocks." X @${ECHO} " BUILD_OPTIMIZED=yes Enable compiler optimizations" X @${ECHO} " (use it if you need speed)." X @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." X @${ECHO} " (use it if you need even more speed)." X @${ECHO} " WITH_NDB=yes Enable support for NDB Cluster." X @${ECHO} "" X Xpost-patch: X @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = include @docs_dirs@ sql-common @sql_server_dirs@ libmysql storage scripts @sql_server@ @man_dirs@ @libmysqld_dirs@ support-files|g" ${WRKSRC}/Makefile.in X @${REINPLACE_CMD} -e "s|bin_SCRIPTS =|bin_SCRIPTS = @server_scripts@|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|dist_pkgdata_DATA =|dist_pkgdata_DATA = fill_help_tables.sql mysql_system_tables.sql mysql_system_tables_data.sql|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|man1_MANS =|man1_MANS = ${MAN1}|g" ${WRKSRC}/man/Makefile.in X @${REINPLACE_CMD} -e "s|install-data-am: install-pkgincludeHEADERS|install-data-am:|g" ${WRKSRC}/extra/Makefile.in X @${REINPLACE_CMD} -e "s|install-data-am: install-pkgincludeHEADERS|install-data-am:|g" ${WRKSRC}/include/Makefile.in X @${REINPLACE_CMD} -e "s|install-exec-am: install-pkglibLTLIBRARIES|install-exec-am:|g" ${WRKSRC}/libmysql/Makefile.in X @${REINPLACE_CMD} -e "/^AM_CXXFLAGS/s|=.*|+= \$$(NDB_CXXFLAGS)|" `${FIND} ${WRKSRC}/storage/ndb -name Makefile.in` X.if defined(WITH_PROC_SCOPE_PTH) X @${REINPLACE_CMD} -e "s|PTHREAD_SCOPE_SYSTEM|PTHREAD_SCOPE_PROCESS|g" ${WRKSRC}/sql/mysqld.cc X.endif X Xpost-install: X.if !defined(PACKAGE_BUILDING) X @${SETENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X @${CAT} ${PKGMESSAGE} X.endif X X.else X# MySQL-Client part X.if defined(CLIENT_ONLY) XLATEST_LINK= mysql54-client X XCONFLICTS= mysql-client-3.* mysql-client-4.* mysql-client-5.0.* mysql-client-5.1.* mysql-client-6.* X XMAN1= mysql_config.1 mysql_upgrade.1 mysql.1 mysqladmin.1 \ X mysqlbinlog.1 mysqlbug.1 mysqlcheck.1 \ X mysqldump.1 mysqlimport.1 mysqlshow.1 mysqlslap.1 mysqltest.1 X XMAN8= mysqlmanager.8 X XUSE_LDCONFIG= ${PREFIX}/lib/mysql X XCONFIGURE_ARGS+=--without-server X Xpost-patch: X @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = include sql-common scripts strings regex mysys dbug extra libmysql libmysql_r client @man_dirs@|g" ${WRKSRC}/Makefile.in X @${REINPLACE_CMD} -e "s|install-exec-am: install-pkglibLIBRARIES|install-exec-am:|g" ${WRKSRC}/strings/Makefile.in ${WRKSRC}/mysys/Makefile.in ${WRKSRC}/dbug/Makefile.in X @${REINPLACE_CMD} -e "s|bin_SCRIPTS =|bin_SCRIPTS = mysql_config mysql_fix_privilege_tables mysqlbug|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|dist_pkgdata_DATA =|dist_pkgdata_DATA = mysql_fix_privilege_tables.sql|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|man1_MANS =|man1_MANS = ${MAN1}|g;s|man8_MANS =|man8_MANS = ${MAN8}|g" ${WRKSRC}/man/Makefile.in X @${REINPLACE_CMD} -e "s|install-exec-am: install-binPROGRAMS|install-exec-am:|g" ${WRKSRC}/extra/Makefile.in X Xpost-install: X ${INSTALL_DATA} ${WRKSRC}/support-files/mysql.m4 ${PREFIX}/share/aclocal/ X X.else X# MySQL-Scripts part XUSE_MYSQL= yes XWANT_MYSQL_VER= 54 X XRUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql54 X.if ${PERL_LEVEL} <= 500800 XRUN_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp X.endif X XLATEST_LINK= mysql54-scripts X XCONFLICTS= mysql-scripts-3.* mysql-scripts-4.* mysql-scripts-5.0.* mysql-scripts-5.1.* mysql-scripts-6.* X XMAN1= msql2mysql.1 mysql_convert_table_format.1 mysql_find_rows.1 \ X mysql_fix_extensions.1 mysql_secure_installation.1 \ X mysql_setpermission.1 mysql_zap.1 mysqlaccess.1 \ X mysqldumpslow.1 mysqlhotcopy.1 mysqld_multi.1 X XSCRIPTS= msql2mysql mysql_fix_extensions mysql_setpermission \ X mysql_secure_installation mysql_zap mysqlaccess \ X mysql_convert_table_format mysql_find_rows mysqlhotcopy \ X mysqldumpslow mysqld_multi X Xpost-patch: X @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = scripts @man_dirs@|g" ${WRKSRC}/Makefile.in X @${REINPLACE_CMD} -e "s|bin_SCRIPTS =|bin_SCRIPTS = ${SCRIPTS}|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|install-exec-am install-data-am|install-exec-am|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|man1_MANS =|man1_MANS = ${MAN1}|g" ${WRKSRC}/man/Makefile.in X.endif X.endif X# Common part Xpost-extract: X @${CP} /usr/include/tcpd.h ${WRKSRC}/include/my_tcpd.h X X.if defined(WITH_OPENSSL) && defined(BUILD_STATIC) Xpre-configure: X @${ECHO} "You can't use the BUILD_STATIC option when using OpenSSL." X @${FALSE} X.endif X X.include 5d930b86d5dc64940f4064d75259aa3b echo x - databases/mysql54-server/OLD-DIRS sed 's/^X//' >databases/mysql54-server/OLD-DIRS << '5491742c06fa2533a19b9d76353ccf88' Xbin Xdocs Xetc Xetc/pam.d Xetc/rc.d Xinclude Xinclude/X11 Xinclude/mysql Xinfo Xlib Xlib/X11 Xlib/X11/app-defaults Xlib/X11/fonts Xlib/X11/fonts/local Xlib/mysql Xlib/mysql/plugin Xlibdata Xlibdata/ldconfig Xlibdata/ldconfig32 Xlibdata/pkgconfig Xlibexec Xman Xman/cat1 Xman/cat2 Xman/cat3 Xman/cat4 Xman/cat5 Xman/cat6 Xman/cat7 Xman/cat8 Xman/cat9 Xman/catl Xman/catn Xman/de.ISO8859-1 Xman/de.ISO8859-1/cat1 Xman/de.ISO8859-1/cat2 Xman/de.ISO8859-1/cat3 Xman/de.ISO8859-1/cat4 Xman/de.ISO8859-1/cat5 Xman/de.ISO8859-1/cat6 Xman/de.ISO8859-1/cat7 Xman/de.ISO8859-1/cat8 Xman/de.ISO8859-1/cat9 Xman/de.ISO8859-1/catl Xman/de.ISO8859-1/catn Xman/de.ISO8859-1/man1 Xman/de.ISO8859-1/man2 Xman/de.ISO8859-1/man3 Xman/de.ISO8859-1/man4 Xman/de.ISO8859-1/man5 Xman/de.ISO8859-1/man6 Xman/de.ISO8859-1/man7 Xman/de.ISO8859-1/man8 Xman/de.ISO8859-1/man9 Xman/de.ISO8859-1/manl Xman/de.ISO8859-1/mann Xman/en.ISO8859-1 Xman/en.ISO8859-1/cat1 Xman/en.ISO8859-1/cat1aout Xman/en.ISO8859-1/cat2 Xman/en.ISO8859-1/cat3 Xman/en.ISO8859-1/cat4 Xman/en.ISO8859-1/cat4/i386 Xman/en.ISO8859-1/cat5 Xman/en.ISO8859-1/cat6 Xman/en.ISO8859-1/cat7 Xman/en.ISO8859-1/cat8 Xman/en.ISO8859-1/cat8/i386 Xman/en.ISO8859-1/cat9 Xman/en.ISO8859-1/cat9/i386 Xman/en.ISO8859-1/catn Xman/ja Xman/ja/cat1 Xman/ja/cat2 Xman/ja/cat3 Xman/ja/cat4 Xman/ja/cat5 Xman/ja/cat6 Xman/ja/cat7 Xman/ja/cat8 Xman/ja/cat9 Xman/ja/catl Xman/ja/catn Xman/ja/man1 Xman/ja/man2 Xman/ja/man3 Xman/ja/man4 Xman/ja/man5 Xman/ja/man6 Xman/ja/man7 Xman/ja/man8 Xman/ja/man9 Xman/ja/manl Xman/ja/mann Xman/man1 Xman/man2 Xman/man3 Xman/man4 Xman/man5 Xman/man6 Xman/man7 Xman/man8 Xman/man9 Xman/manl Xman/mann Xman/ru.KOI8-R Xman/ru.KOI8-R/cat1 Xman/ru.KOI8-R/cat2 Xman/ru.KOI8-R/cat3 Xman/ru.KOI8-R/cat4 Xman/ru.KOI8-R/cat5 Xman/ru.KOI8-R/cat6 Xman/ru.KOI8-R/cat7 Xman/ru.KOI8-R/cat8 Xman/ru.KOI8-R/cat9 Xman/ru.KOI8-R/catl Xman/ru.KOI8-R/catn Xman/ru.KOI8-R/man1 Xman/ru.KOI8-R/man2 Xman/ru.KOI8-R/man3 Xman/ru.KOI8-R/man4 Xman/ru.KOI8-R/man5 Xman/ru.KOI8-R/man6 Xman/ru.KOI8-R/man7 Xman/ru.KOI8-R/man8 Xman/ru.KOI8-R/man9 Xman/ru.KOI8-R/manl Xman/ru.KOI8-R/mann Xmysql-test Xmysql-test/extra Xmysql-test/extra/binlog_tests Xmysql-test/extra/rpl_tests Xmysql-test/include Xmysql-test/lib Xmysql-test/lib/My Xmysql-test/lib/My/File Xmysql-test/lib/My/SafeProcess Xmysql-test/lib/v1 Xmysql-test/lib/v1/My Xmysql-test/r Xmysql-test/std_data Xmysql-test/std_data/funcs_1 Xmysql-test/std_data/ndb_backup50 Xmysql-test/std_data/ndb_backup51 Xmysql-test/std_data/ndb_backup51_data_be Xmysql-test/std_data/ndb_backup51_data_le Xmysql-test/std_data/parts Xmysql-test/suite Xmysql-test/suite/binlog Xmysql-test/suite/binlog/r Xmysql-test/suite/binlog/std_data Xmysql-test/suite/binlog/t Xmysql-test/suite/bugs Xmysql-test/suite/bugs/data Xmysql-test/suite/bugs/r Xmysql-test/suite/bugs/t Xmysql-test/suite/federated Xmysql-test/suite/funcs_1 Xmysql-test/suite/funcs_1/bitdata Xmysql-test/suite/funcs_1/cursors Xmysql-test/suite/funcs_1/datadict Xmysql-test/suite/funcs_1/include Xmysql-test/suite/funcs_1/lib Xmysql-test/suite/funcs_1/r Xmysql-test/suite/funcs_1/storedproc Xmysql-test/suite/funcs_1/t Xmysql-test/suite/funcs_1/triggers Xmysql-test/suite/funcs_1/views Xmysql-test/suite/funcs_2 Xmysql-test/suite/funcs_2/charset Xmysql-test/suite/funcs_2/data Xmysql-test/suite/funcs_2/include Xmysql-test/suite/funcs_2/lib Xmysql-test/suite/funcs_2/r Xmysql-test/suite/funcs_2/t Xmysql-test/suite/jp Xmysql-test/suite/jp/r Xmysql-test/suite/jp/std_data Xmysql-test/suite/jp/t Xmysql-test/suite/manual Xmysql-test/suite/manual/r Xmysql-test/suite/manual/t Xmysql-test/suite/ndb Xmysql-test/suite/ndb/r Xmysql-test/suite/ndb/t Xmysql-test/suite/ndb_team Xmysql-test/suite/ndb_team/r Xmysql-test/suite/ndb_team/t Xmysql-test/suite/parts Xmysql-test/suite/parts/inc Xmysql-test/suite/parts/r Xmysql-test/suite/parts/t Xmysql-test/suite/rpl Xmysql-test/suite/rpl/data Xmysql-test/suite/rpl/include Xmysql-test/suite/rpl/r Xmysql-test/suite/rpl/t Xmysql-test/suite/rpl_ndb Xmysql-test/suite/rpl_ndb/r Xmysql-test/suite/rpl_ndb/t Xmysql-test/suite/stress Xmysql-test/suite/stress/include Xmysql-test/suite/stress/r Xmysql-test/suite/stress/t Xmysql-test/t Xsbin Xshare Xshare/aclocal Xshare/dict Xshare/doc Xshare/doc/ja Xshare/emacs Xshare/emacs/site-lisp Xshare/examples Xshare/java Xshare/java/classes Xshare/locale Xshare/locale/af Xshare/locale/af/LC_MESSAGES Xshare/locale/am Xshare/locale/am/LC_MESSAGES Xshare/locale/ar Xshare/locale/ar/LC_MESSAGES Xshare/locale/az Xshare/locale/az/LC_MESSAGES Xshare/locale/be Xshare/locale/be/LC_MESSAGES Xshare/locale/bg Xshare/locale/bg/LC_MESSAGES Xshare/locale/bn Xshare/locale/bn/LC_MESSAGES Xshare/locale/br Xshare/locale/br/LC_MESSAGES Xshare/locale/bs Xshare/locale/bs/LC_MESSAGES Xshare/locale/ca Xshare/locale/ca/LC_MESSAGES Xshare/locale/cs Xshare/locale/cs/LC_MESSAGES Xshare/locale/cy Xshare/locale/cy/LC_MESSAGES Xshare/locale/da Xshare/locale/da/LC_MESSAGES Xshare/locale/de Xshare/locale/de/LC_MESSAGES Xshare/locale/de_AT Xshare/locale/de_AT/LC_MESSAGES Xshare/locale/dk Xshare/locale/dk/LC_MESSAGES Xshare/locale/ee Xshare/locale/ee/LC_MESSAGES Xshare/locale/el Xshare/locale/el/LC_MESSAGES Xshare/locale/en Xshare/locale/en/LC_MESSAGES Xshare/locale/en_AU Xshare/locale/en_AU/LC_MESSAGES Xshare/locale/en_CA Xshare/locale/en_CA/LC_MESSAGES Xshare/locale/en_GB Xshare/locale/en_GB/LC_MESSAGES Xshare/locale/eo Xshare/locale/eo/LC_MESSAGES Xshare/locale/es Xshare/locale/es/LC_MESSAGES Xshare/locale/es_ES Xshare/locale/es_ES/LC_MESSAGES Xshare/locale/es_MX Xshare/locale/es_MX/LC_MESSAGES Xshare/locale/et Xshare/locale/et/LC_MESSAGES Xshare/locale/eu Xshare/locale/eu/LC_MESSAGES Xshare/locale/fa Xshare/locale/fa/LC_MESSAGES Xshare/locale/fa_IR Xshare/locale/fa_IR/LC_MESSAGES Xshare/locale/fi Xshare/locale/fi/LC_MESSAGES Xshare/locale/fr Xshare/locale/fr/LC_MESSAGES Xshare/locale/fr_FR Xshare/locale/fr_FR/LC_MESSAGES Xshare/locale/ga Xshare/locale/ga/LC_MESSAGES Xshare/locale/gl Xshare/locale/gl/LC_MESSAGES Xshare/locale/gu Xshare/locale/gu/LC_MESSAGES Xshare/locale/he Xshare/locale/he/LC_MESSAGES Xshare/locale/hi Xshare/locale/hi/LC_MESSAGES Xshare/locale/hr Xshare/locale/hr/LC_MESSAGES Xshare/locale/hu Xshare/locale/hu/LC_MESSAGES Xshare/locale/id Xshare/locale/id/LC_MESSAGES Xshare/locale/is Xshare/locale/is/LC_MESSAGES Xshare/locale/it Xshare/locale/it/LC_MESSAGES Xshare/locale/ja Xshare/locale/ja/LC_MESSAGES Xshare/locale/ka Xshare/locale/ka/LC_MESSAGES Xshare/locale/kn Xshare/locale/kn/LC_MESSAGES Xshare/locale/ko Xshare/locale/ko/LC_MESSAGES Xshare/locale/li Xshare/locale/li/LC_MESSAGES Xshare/locale/lt Xshare/locale/lt/LC_MESSAGES Xshare/locale/lv Xshare/locale/lv/LC_MESSAGES Xshare/locale/mk Xshare/locale/mk/LC_MESSAGES Xshare/locale/ml Xshare/locale/ml/LC_MESSAGES Xshare/locale/mn Xshare/locale/mn/LC_MESSAGES Xshare/locale/ms Xshare/locale/ms/LC_MESSAGES Xshare/locale/mt Xshare/locale/mt/LC_MESSAGES Xshare/locale/nb Xshare/locale/nb/LC_MESSAGES Xshare/locale/ne Xshare/locale/ne/LC_MESSAGES Xshare/locale/nl Xshare/locale/nl/LC_MESSAGES Xshare/locale/nn Xshare/locale/nn/LC_MESSAGES Xshare/locale/no Xshare/locale/no/LC_MESSAGES Xshare/locale/or Xshare/locale/or/LC_MESSAGES Xshare/locale/pa Xshare/locale/pa/LC_MESSAGES Xshare/locale/pl Xshare/locale/pl/LC_MESSAGES Xshare/locale/pt Xshare/locale/pt/LC_MESSAGES Xshare/locale/pt_BR Xshare/locale/pt_BR/LC_MESSAGES Xshare/locale/pt_PT Xshare/locale/pt_PT/LC_MESSAGES Xshare/locale/ro Xshare/locale/ro/LC_MESSAGES Xshare/locale/ru Xshare/locale/ru/LC_MESSAGES Xshare/locale/sk Xshare/locale/sk/LC_MESSAGES Xshare/locale/sl Xshare/locale/sl/LC_MESSAGES Xshare/locale/sq Xshare/locale/sq/LC_MESSAGES Xshare/locale/sr Xshare/locale/sr/LC_MESSAGES Xshare/locale/sr@Latn Xshare/locale/sr@Latn/LC_MESSAGES Xshare/locale/sv Xshare/locale/sv/LC_MESSAGES Xshare/locale/ta Xshare/locale/ta/LC_MESSAGES Xshare/locale/tg Xshare/locale/tg/LC_MESSAGES Xshare/locale/th Xshare/locale/th/LC_MESSAGES Xshare/locale/tk Xshare/locale/tk/LC_MESSAGES Xshare/locale/tr Xshare/locale/tr/LC_MESSAGES Xshare/locale/uk Xshare/locale/uk/LC_MESSAGES Xshare/locale/uz Xshare/locale/uz/LC_MESSAGES Xshare/locale/vi Xshare/locale/vi/LC_MESSAGES Xshare/locale/wa Xshare/locale/wa/LC_MESSAGES Xshare/locale/zh Xshare/locale/zh/LC_MESSAGES Xshare/locale/zh_CN Xshare/locale/zh_CN.GB2312 Xshare/locale/zh_CN.GB2312/LC_MESSAGES Xshare/locale/zh_CN/LC_MESSAGES Xshare/locale/zh_TW Xshare/locale/zh_TW.Big5 Xshare/locale/zh_TW.Big5/LC_MESSAGES Xshare/locale/zh_TW/LC_MESSAGES Xshare/misc Xshare/mysql Xshare/mysql/charsets Xshare/mysql/czech Xshare/mysql/danish Xshare/mysql/dutch Xshare/mysql/english Xshare/mysql/estonian Xshare/mysql/french Xshare/mysql/german Xshare/mysql/greek Xshare/mysql/hungarian Xshare/mysql/italian Xshare/mysql/japanese Xshare/mysql/korean Xshare/mysql/norwegian Xshare/mysql/norwegian-ny Xshare/mysql/polish Xshare/mysql/portuguese Xshare/mysql/romanian Xshare/mysql/russian Xshare/mysql/serbian Xshare/mysql/slovak Xshare/mysql/spanish Xshare/mysql/swedish Xshare/mysql/ukrainian Xshare/nls Xshare/nls/C Xshare/nls/af_ZA.ISO8859-1 Xshare/nls/af_ZA.ISO8859-15 Xshare/nls/af_ZA.UTF-8 Xshare/nls/am_ET.UTF-8 Xshare/nls/be_BY.CP1131 Xshare/nls/be_BY.CP1251 Xshare/nls/be_BY.ISO8859-5 Xshare/nls/be_BY.UTF-8 Xshare/nls/bg_BG.CP1251 Xshare/nls/bg_BG.UTF-8 Xshare/nls/ca_ES.ISO8859-1 Xshare/nls/ca_ES.ISO8859-15 Xshare/nls/ca_ES.UTF-8 Xshare/nls/cs_CZ.ISO8859-2 Xshare/nls/cs_CZ.UTF-8 Xshare/nls/da_DK.ISO8859-1 Xshare/nls/da_DK.ISO8859-15 Xshare/nls/da_DK.UTF-8 Xshare/nls/de_AT.ISO8859-1 Xshare/nls/de_AT.ISO8859-15 Xshare/nls/de_AT.UTF-8 Xshare/nls/de_CH.ISO8859-1 Xshare/nls/de_CH.ISO8859-15 Xshare/nls/de_CH.UTF-8 Xshare/nls/de_DE.ISO8859-1 Xshare/nls/de_DE.ISO8859-15 Xshare/nls/de_DE.UTF-8 Xshare/nls/el_GR.ISO8859-7 Xshare/nls/el_GR.UTF-8 Xshare/nls/en_AU.ISO8859-1 Xshare/nls/en_AU.ISO8859-15 Xshare/nls/en_AU.US-ASCII Xshare/nls/en_AU.UTF-8 Xshare/nls/en_CA.ISO8859-1 Xshare/nls/en_CA.ISO8859-15 Xshare/nls/en_CA.US-ASCII Xshare/nls/en_CA.UTF-8 Xshare/nls/en_GB.ISO8859-1 Xshare/nls/en_GB.ISO8859-15 Xshare/nls/en_GB.US-ASCII Xshare/nls/en_GB.UTF-8 Xshare/nls/en_IE.UTF-8 Xshare/nls/en_NZ.ISO8859-1 Xshare/nls/en_NZ.ISO8859-15 Xshare/nls/en_NZ.US-ASCII Xshare/nls/en_NZ.UTF-8 Xshare/nls/en_US.ISO8859-1 Xshare/nls/en_US.ISO8859-15 Xshare/nls/en_US.UTF-8 Xshare/nls/es_ES.ISO8859-1 Xshare/nls/es_ES.ISO8859-15 Xshare/nls/es_ES.UTF-8 Xshare/nls/et_EE.ISO8859-15 Xshare/nls/et_EE.UTF-8 Xshare/nls/fi_FI.ISO8859-1 Xshare/nls/fi_FI.ISO8859-15 Xshare/nls/fi_FI.UTF-8 Xshare/nls/fr_BE.ISO8859-1 Xshare/nls/fr_BE.ISO8859-15 Xshare/nls/fr_BE.UTF-8 Xshare/nls/fr_CA.ISO8859-1 Xshare/nls/fr_CA.ISO8859-15 Xshare/nls/fr_CA.UTF-8 Xshare/nls/fr_CH.ISO8859-1 Xshare/nls/fr_CH.ISO8859-15 Xshare/nls/fr_CH.UTF-8 Xshare/nls/fr_FR.ISO8859-1 Xshare/nls/fr_FR.ISO8859-15 Xshare/nls/fr_FR.UTF-8 Xshare/nls/he_IL.UTF-8 Xshare/nls/hi_IN.ISCII-DEV Xshare/nls/hr_HR.ISO8859-2 Xshare/nls/hr_HR.UTF-8 Xshare/nls/hu_HU.ISO8859-2 Xshare/nls/hu_HU.UTF-8 Xshare/nls/hy_AM.ARMSCII-8 Xshare/nls/hy_AM.UTF-8 Xshare/nls/is_IS.ISO8859-1 Xshare/nls/is_IS.ISO8859-15 Xshare/nls/is_IS.UTF-8 Xshare/nls/it_CH.ISO8859-1 Xshare/nls/it_CH.ISO8859-15 Xshare/nls/it_CH.UTF-8 Xshare/nls/it_IT.ISO8859-1 Xshare/nls/it_IT.ISO8859-15 Xshare/nls/it_IT.UTF-8 Xshare/nls/ja_JP.SJIS Xshare/nls/ja_JP.UTF-8 Xshare/nls/ja_JP.eucJP Xshare/nls/kk_KZ.PT154 Xshare/nls/kk_KZ.UTF-8 Xshare/nls/ko_KR.CP949 Xshare/nls/ko_KR.UTF-8 Xshare/nls/ko_KR.eucKR Xshare/nls/la_LN.ISO8859-1 Xshare/nls/la_LN.ISO8859-15 Xshare/nls/la_LN.ISO8859-2 Xshare/nls/la_LN.ISO8859-4 Xshare/nls/la_LN.US-ASCII Xshare/nls/lt_LT.ISO8859-13 Xshare/nls/lt_LT.ISO8859-4 Xshare/nls/lt_LT.UTF-8 Xshare/nls/nl_BE.ISO8859-1 Xshare/nls/nl_BE.ISO8859-15 Xshare/nls/nl_BE.UTF-8 Xshare/nls/nl_NL.ISO8859-1 Xshare/nls/nl_NL.ISO8859-15 Xshare/nls/nl_NL.UTF-8 Xshare/nls/no_NO.ISO8859-1 Xshare/nls/no_NO.ISO8859-15 Xshare/nls/no_NO.UTF-8 Xshare/nls/pl_PL.ISO8859-2 Xshare/nls/pl_PL.UTF-8 Xshare/nls/pt_BR.ISO8859-1 Xshare/nls/pt_BR.UTF-8 Xshare/nls/pt_PT.ISO8859-1 Xshare/nls/pt_PT.ISO8859-15 Xshare/nls/pt_PT.UTF-8 Xshare/nls/ro_RO.ISO8859-2 Xshare/nls/ro_RO.UTF-8 Xshare/nls/ru_RU.CP1251 Xshare/nls/ru_RU.CP866 Xshare/nls/ru_RU.ISO8859-5 Xshare/nls/ru_RU.KOI8-R Xshare/nls/ru_RU.UTF-8 Xshare/nls/sk_SK.ISO8859-2 Xshare/nls/sk_SK.UTF-8 Xshare/nls/sl_SI.ISO8859-2 Xshare/nls/sl_SI.UTF-8 Xshare/nls/sr_YU.ISO8859-2 Xshare/nls/sr_YU.ISO8859-5 Xshare/nls/sr_YU.UTF-8 Xshare/nls/sv_SE.ISO8859-1 Xshare/nls/sv_SE.ISO8859-15 Xshare/nls/sv_SE.UTF-8 Xshare/nls/tr_TR.ISO8859-9 Xshare/nls/tr_TR.UTF-8 Xshare/nls/uk_UA.ISO8859-5 Xshare/nls/uk_UA.KOI8-U Xshare/nls/uk_UA.UTF-8 Xshare/nls/zh_CN.GB18030 Xshare/nls/zh_CN.GB2312 Xshare/nls/zh_CN.GBK Xshare/nls/zh_CN.UTF-8 Xshare/nls/zh_CN.eucCN Xshare/nls/zh_HK.Big5HKSCS Xshare/nls/zh_HK.UTF-8 Xshare/nls/zh_TW.Big5 Xshare/nls/zh_TW.UTF-8 Xshare/pixmaps Xshare/sgml Xshare/skel Xshare/xml Xsql-bench Xsql-bench/Comments Xsql-bench/Data Xsql-bench/Data/ATIS Xsql-bench/Data/Wisconsin Xsql-bench/limits Xwww 5491742c06fa2533a19b9d76353ccf88 echo x - databases/mysql54-server/pkg-plist sed 's/^X//' >databases/mysql54-server/pkg-plist << '6c7d90f38382366d9d3cdd3c535ca65f' X@stopdaemon mysql-server Xbin/innochecksum Xbin/msql2mysql Xbin/my_print_defaults Xbin/myisam_ftdump Xbin/myisamchk Xbin/myisamlog Xbin/myisampack Xbin/mysql Xbin/mysql_client_test Xbin/mysql_client_test_embedded Xbin/mysql_config Xbin/mysql_convert_table_format Xbin/mysql_find_rows Xbin/mysql_fix_extensions Xbin/mysql_fix_privilege_tables Xbin/mysql_install_db Xbin/mysql_secure_installation Xbin/mysql_setpermission Xbin/mysql_tzinfo_to_sql Xbin/mysql_upgrade Xbin/mysql_waitpid Xbin/mysql_zap Xbin/mysqlaccess Xbin/mysqladmin Xbin/mysqlbinlog Xbin/mysqlbug Xbin/mysqlcheck Xbin/mysqld_multi Xbin/mysqld_safe Xbin/mysqldump Xbin/mysqldumpslow Xbin/mysqlhotcopy Xbin/mysqlimport Xbin/mysqlshow Xbin/mysqlslap Xbin/mysqltest Xbin/mysqltest_embedded Xbin/perror Xbin/replace Xbin/resolve_stack_dump Xbin/resolveip Xdocs/ChangeLog Xdocs/mysql.info Xinclude/mysql/decimal.h Xinclude/mysql/errmsg.h Xinclude/mysql/keycache.h Xinclude/mysql/m_ctype.h Xinclude/mysql/m_string.h Xinclude/mysql/my_alloc.h Xinclude/mysql/my_attribute.h Xinclude/mysql/my_config.h Xinclude/mysql/my_dbug.h Xinclude/mysql/my_dir.h Xinclude/mysql/my_getopt.h Xinclude/mysql/my_global.h Xinclude/mysql/my_list.h Xinclude/mysql/my_net.h Xinclude/mysql/my_no_pthread.h Xinclude/mysql/my_pthread.h Xinclude/mysql/my_sys.h Xinclude/mysql/my_xml.h Xinclude/mysql/mysql.h Xinclude/mysql/mysql_com.h Xinclude/mysql/mysql_embed.h Xinclude/mysql/mysql_time.h Xinclude/mysql/mysql_version.h Xinclude/mysql/mysqld_ername.h Xinclude/mysql/mysqld_error.h Xinclude/mysql/plugin.h Xinclude/mysql/probes_mysql.h Xinclude/mysql/probes_mysql_nodtrace.h Xinclude/mysql/sql_common.h Xinclude/mysql/sql_state.h Xinclude/mysql/sslopt-case.h Xinclude/mysql/sslopt-longopts.h Xinclude/mysql/sslopt-vars.h Xinclude/mysql/typelib.h Xlib/mysql/libdbug.a Xlib/mysql/libheap.a Xlib/mysql/libmyisam.a Xlib/mysql/libmyisammrg.a Xlib/mysql/libmysqlclient.a Xlib/mysql/libmysqlclient.la Xlib/mysql/libmysqlclient.so Xlib/mysql/libmysqlclient.so.16 Xlib/mysql/libmysqlclient_r.a Xlib/mysql/libmysqlclient_r.la Xlib/mysql/libmysqlclient_r.so Xlib/mysql/libmysqlclient_r.so.16 Xlib/mysql/libmysqld.a Xlib/mysql/libmystrings.a Xlib/mysql/libmysys.a Xlib/mysql/libvio.a Xlib/mysql/plugin/ha_example.a Xlib/mysql/plugin/ha_example.la Xlib/mysql/plugin/ha_example.so Xlib/mysql/plugin/ha_example.so.0 Xlib/mysql/plugin/libdaemon_example.a Xlib/mysql/plugin/libdaemon_example.la Xlib/mysql/plugin/libdaemon_example.so Xlib/mysql/plugin/libdaemon_example.so.0 Xlib/mysql/plugin/mypluglib.a Xlib/mysql/plugin/mypluglib.la Xlib/mysql/plugin/mypluglib.so Xlib/mysql/plugin/mypluglib.so.0 Xlibdata/ldconfig/mysql Xlibexec/mysqld Xman/man1/comp_err.1 Xman/man1/innochecksum.1 Xman/man1/make_win_bin_dist.1 Xman/man1/msql2mysql.1 Xman/man1/my_print_defaults.1 Xman/man1/myisam_ftdump.1 Xman/man1/myisamchk.1 Xman/man1/myisamlog.1 Xman/man1/myisampack.1 Xman/man1/mysql-stress-test.pl.1 Xman/man1/mysql-test-run.pl.1 Xman/man1/mysql.1 Xman/man1/mysql.1.gz Xman/man1/mysql.server.1 Xman/man1/mysql_client_test.1 Xman/man1/mysql_client_test_embedded.1 Xman/man1/mysql_config.1 Xman/man1/mysql_config.1.gz Xman/man1/mysql_convert_table_format.1 Xman/man1/mysql_find_rows.1 Xman/man1/mysql_fix_extensions.1 Xman/man1/mysql_fix_privilege_tables.1 Xman/man1/mysql_install_db.1 Xman/man1/mysql_secure_installation.1 Xman/man1/mysql_setpermission.1 Xman/man1/mysql_tzinfo_to_sql.1 Xman/man1/mysql_upgrade.1 Xman/man1/mysql_upgrade.1.gz Xman/man1/mysql_waitpid.1 Xman/man1/mysql_zap.1 Xman/man1/mysqlaccess.1 Xman/man1/mysqladmin.1 Xman/man1/mysqladmin.1.gz Xman/man1/mysqlbinlog.1 Xman/man1/mysqlbinlog.1.gz Xman/man1/mysqlbug.1 Xman/man1/mysqlbug.1.gz Xman/man1/mysqlcheck.1 Xman/man1/mysqlcheck.1.gz Xman/man1/mysqld_multi.1 Xman/man1/mysqld_safe.1 Xman/man1/mysqldump.1 Xman/man1/mysqldump.1.gz Xman/man1/mysqldumpslow.1 Xman/man1/mysqlhotcopy.1 Xman/man1/mysqlimport.1 Xman/man1/mysqlimport.1.gz Xman/man1/mysqlman.1 Xman/man1/mysqlshow.1 Xman/man1/mysqlshow.1.gz Xman/man1/mysqlslap.1 Xman/man1/mysqlslap.1.gz Xman/man1/mysqltest.1 Xman/man1/mysqltest.1.gz Xman/man1/mysqltest_embedded.1 Xman/man1/perror.1 Xman/man1/replace.1 Xman/man1/resolve_stack_dump.1 Xman/man1/resolveip.1 Xman/man8/mysqld.8 Xman/man8/mysqlmanager.8 Xman/man8/mysqlmanager.8.gz Xmysql-test/extra/binlog_tests/binlog.test Xmysql-test/extra/binlog_tests/binlog_insert_delayed.test Xmysql-test/extra/binlog_tests/binlog_truncate.test Xmysql-test/extra/binlog_tests/blackhole.test Xmysql-test/extra/binlog_tests/ctype_cp932.test Xmysql-test/extra/binlog_tests/ctype_cp932_binlog.test Xmysql-test/extra/binlog_tests/ctype_ucs_binlog.test Xmysql-test/extra/binlog_tests/database.test Xmysql-test/extra/binlog_tests/drop_temp_table.test Xmysql-test/extra/binlog_tests/innodb_stat.test Xmysql-test/extra/binlog_tests/insert_select-binlog.test Xmysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test Xmysql-test/extra/binlog_tests/mix_innodb_myisam_side_effects.test Xmysql-test/extra/rpl_tests/rpl_EE_err.test Xmysql-test/extra/rpl_tests/rpl_auto_increment.test Xmysql-test/extra/rpl_tests/rpl_blackhole.test Xmysql-test/extra/rpl_tests/rpl_charset.test Xmysql-test/extra/rpl_tests/rpl_commit_after_flush.test Xmysql-test/extra/rpl_tests/rpl_conflicts.test Xmysql-test/extra/rpl_tests/rpl_ddl.test Xmysql-test/extra/rpl_tests/rpl_deadlock.test Xmysql-test/extra/rpl_tests/rpl_delete_no_where.test Xmysql-test/extra/rpl_tests/rpl_extraMaster_Col.test Xmysql-test/extra/rpl_tests/rpl_extraSlave_Col.test Xmysql-test/extra/rpl_tests/rpl_failed_optimize.test Xmysql-test/extra/rpl_tests/rpl_flsh_tbls.test Xmysql-test/extra/rpl_tests/rpl_foreign_key.test Xmysql-test/extra/rpl_tests/rpl_insert_delayed.test Xmysql-test/extra/rpl_tests/rpl_insert_id.test Xmysql-test/extra/rpl_tests/rpl_insert_id_pk.test Xmysql-test/extra/rpl_tests/rpl_insert_ignore.test Xmysql-test/extra/rpl_tests/rpl_loaddata.test Xmysql-test/extra/rpl_tests/rpl_log.test Xmysql-test/extra/rpl_tests/rpl_max_relay_size.test Xmysql-test/extra/rpl_tests/rpl_multi_query.test Xmysql-test/extra/rpl_tests/rpl_multi_update.test Xmysql-test/extra/rpl_tests/rpl_multi_update2.test Xmysql-test/extra/rpl_tests/rpl_multi_update3.test Xmysql-test/extra/rpl_tests/rpl_ndb_2multi_basic.test Xmysql-test/extra/rpl_tests/rpl_ndb_2multi_eng.test Xmysql-test/extra/rpl_tests/rpl_ndb_apply_status.test Xmysql-test/extra/rpl_tests/rpl_partition.test Xmysql-test/extra/rpl_tests/rpl_relayrotate.test Xmysql-test/extra/rpl_tests/rpl_reset_slave.test Xmysql-test/extra/rpl_tests/rpl_row_001.test Xmysql-test/extra/rpl_tests/rpl_row_UUID.test Xmysql-test/extra/rpl_tests/rpl_row_basic.test Xmysql-test/extra/rpl_tests/rpl_row_blob.test Xmysql-test/extra/rpl_tests/rpl_row_delayed_ins.test Xmysql-test/extra/rpl_tests/rpl_row_func003.test Xmysql-test/extra/rpl_tests/rpl_row_sp002.test Xmysql-test/extra/rpl_tests/rpl_row_sp003.test Xmysql-test/extra/rpl_tests/rpl_row_sp006.test Xmysql-test/extra/rpl_tests/rpl_row_sp007.test Xmysql-test/extra/rpl_tests/rpl_row_tabledefs.test Xmysql-test/extra/rpl_tests/rpl_stm_000001.test Xmysql-test/extra/rpl_tests/rpl_stm_EE_err2.test Xmysql-test/extra/rpl_tests/rpl_sv_relay_space.test Xmysql-test/extra/rpl_tests/rpl_trig004.test Xmysql-test/extra/rpl_tests/rpl_truncate.test Xmysql-test/extra/rpl_tests/rpl_truncate_helper.test Xmysql-test/include/add_anonymous_users.inc Xmysql-test/include/analyze-sync_with_master.test Xmysql-test/include/analyze-timeout.test Xmysql-test/include/big_test.inc Xmysql-test/include/check-testcase.test Xmysql-test/include/check-warnings.test Xmysql-test/include/check_events_off.inc Xmysql-test/include/check_var_limit.inc Xmysql-test/include/circular_rpl_for_4_hosts_init.inc Xmysql-test/include/circular_rpl_for_4_hosts_sync.inc Xmysql-test/include/cleanup_fake_relay_log.inc Xmysql-test/include/commit.inc Xmysql-test/include/common-tests.inc Xmysql-test/include/concurrent.inc Xmysql-test/include/connect2.inc Xmysql-test/include/count_sessions.inc Xmysql-test/include/ctype_common.inc Xmysql-test/include/ctype_filesort.inc Xmysql-test/include/ctype_german.inc Xmysql-test/include/ctype_innodb_like.inc Xmysql-test/include/ctype_like_escape.inc Xmysql-test/include/ctype_like_range_f1f2.inc Xmysql-test/include/ctype_regex.inc Xmysql-test/include/ddl_i18n.check_events.inc Xmysql-test/include/ddl_i18n.check_sp.inc Xmysql-test/include/ddl_i18n.check_triggers.inc Xmysql-test/include/ddl_i18n.check_views.inc Xmysql-test/include/deadlock.inc Xmysql-test/include/default_my.cnf Xmysql-test/include/default_mysqld.cnf Xmysql-test/include/default_ndbd.cnf Xmysql-test/include/delete_anonymous_users.inc Xmysql-test/include/diff_tables.inc Xmysql-test/include/endspace.inc Xmysql-test/include/get_binlog_dump_thread_id.inc Xmysql-test/include/gis_generic.inc Xmysql-test/include/gis_keys.inc Xmysql-test/include/grant_cache.inc Xmysql-test/include/handler.inc Xmysql-test/include/have_32bit.inc Xmysql-test/include/have_64bit.inc Xmysql-test/include/have_archive.inc Xmysql-test/include/have_big5.inc Xmysql-test/include/have_binlog_format_mixed.inc Xmysql-test/include/have_binlog_format_mixed_or_row.inc Xmysql-test/include/have_binlog_format_mixed_or_statement.inc Xmysql-test/include/have_binlog_format_row.inc Xmysql-test/include/have_binlog_format_row_or_statement.inc Xmysql-test/include/have_binlog_format_statement.inc Xmysql-test/include/have_blackhole.inc Xmysql-test/include/have_case_insensitive_file_system.inc Xmysql-test/include/have_case_sensitive_file_system.inc Xmysql-test/include/have_community_features.inc Xmysql-test/include/have_compress.inc Xmysql-test/include/have_cp1250_ch.inc Xmysql-test/include/have_cp1251.inc Xmysql-test/include/have_cp866.inc Xmysql-test/include/have_cp932.inc Xmysql-test/include/have_crypt.inc Xmysql-test/include/have_csv.inc Xmysql-test/include/have_debug.inc Xmysql-test/include/have_eucjpms.inc Xmysql-test/include/have_euckr.inc Xmysql-test/include/have_example_plugin.inc Xmysql-test/include/have_exampledb.inc Xmysql-test/include/have_gb2312.inc Xmysql-test/include/have_gbk.inc Xmysql-test/include/have_geometry.inc Xmysql-test/include/have_innodb.inc Xmysql-test/include/have_koi8r.inc Xmysql-test/include/have_latin2_ch.inc Xmysql-test/include/have_local_infile.inc Xmysql-test/include/have_log_bin.inc Xmysql-test/include/have_lowercase0.inc Xmysql-test/include/have_lowercase1.inc Xmysql-test/include/have_lowercase2.inc Xmysql-test/include/have_multi_ndb.inc Xmysql-test/include/have_ndb.inc Xmysql-test/include/have_ndb_extra.inc Xmysql-test/include/have_ndbapi_examples.inc Xmysql-test/include/have_outfile.inc Xmysql-test/include/have_partition.inc Xmysql-test/include/have_query_cache.inc Xmysql-test/include/have_simple_parser.inc Xmysql-test/include/have_sjis.inc Xmysql-test/include/have_ssl.inc Xmysql-test/include/have_symlink.inc Xmysql-test/include/have_tis620.inc Xmysql-test/include/have_ucs2.inc Xmysql-test/include/have_udf.inc Xmysql-test/include/have_ujis.inc Xmysql-test/include/have_utf8.inc Xmysql-test/include/index_merge1.inc Xmysql-test/include/index_merge2.inc Xmysql-test/include/index_merge_2sweeps.inc Xmysql-test/include/index_merge_ror.inc Xmysql-test/include/index_merge_ror_cpk.inc Xmysql-test/include/innodb_rollback_on_timeout.inc Xmysql-test/include/innodb_trx_weight.inc Xmysql-test/include/is_embedded.inc Xmysql-test/include/linux_sys_vars.inc Xmysql-test/include/load_sysvars.inc Xmysql-test/include/loaddata_autocom.inc Xmysql-test/include/master-slave-end.inc Xmysql-test/include/master-slave-reset.inc Xmysql-test/include/master-slave.inc Xmysql-test/include/mix1.inc Xmysql-test/include/mix2.inc Xmysql-test/include/mix2_ucs2.inc Xmysql-test/include/mtr_check.sql Xmysql-test/include/mtr_warnings.sql Xmysql-test/include/mysqlbinlog_row_engine.inc Xmysql-test/include/mysqltest-x.inc Xmysql-test/include/ndb_backup.inc Xmysql-test/include/ndb_backup_print.inc Xmysql-test/include/ndb_default_cluster.inc Xmysql-test/include/ndb_master-slave.inc Xmysql-test/include/ndb_master-slave_2ch.inc Xmysql-test/include/ndb_not_readonly.inc Xmysql-test/include/ndb_restore_master.inc Xmysql-test/include/ndb_restore_slave_eoption.inc Xmysql-test/include/ndb_setup_slave.inc Xmysql-test/include/ndb_wait_connected.inc Xmysql-test/include/no_running_event_scheduler.inc Xmysql-test/include/no_running_events.inc Xmysql-test/include/not_as_root.inc Xmysql-test/include/not_embedded.inc Xmysql-test/include/not_ndb.inc Xmysql-test/include/not_ndb_default.inc Xmysql-test/include/not_openssl.inc Xmysql-test/include/not_valgrind.inc Xmysql-test/include/not_windows.inc Xmysql-test/include/one_thread_per_connection.inc Xmysql-test/include/parser_bug21114.inc Xmysql-test/include/ps_conv.inc Xmysql-test/include/ps_create.inc Xmysql-test/include/ps_ddl_1.inc Xmysql-test/include/ps_modify.inc Xmysql-test/include/ps_modify1.inc Xmysql-test/include/ps_query.inc Xmysql-test/include/ps_renew.inc Xmysql-test/include/query_cache.inc Xmysql-test/include/query_cache_sql_prepare.inc Xmysql-test/include/read_many_rows.inc Xmysql-test/include/report-features.test Xmysql-test/include/reset_master_and_slave.inc Xmysql-test/include/restart_mysqld.inc Xmysql-test/include/rowid_order.inc Xmysql-test/include/rpl_events.inc Xmysql-test/include/rpl_multi_engine.inc Xmysql-test/include/rpl_multi_engine2.inc Xmysql-test/include/rpl_multi_engine3.inc Xmysql-test/include/rpl_stmt_seq.inc Xmysql-test/include/rpl_udf.inc Xmysql-test/include/running_event_scheduler.inc Xmysql-test/include/safe_set_to_maybe_ro_var.inc Xmysql-test/include/select_ndb_apply_status.inc Xmysql-test/include/set_binlog_format_mixed.sql Xmysql-test/include/set_binlog_format_row.sql Xmysql-test/include/set_binlog_format_statement.sql Xmysql-test/include/setup_fake_relay_log.inc Xmysql-test/include/show_binary_logs.inc Xmysql-test/include/show_binlog_events.inc Xmysql-test/include/show_binlog_events2.inc Xmysql-test/include/show_binlog_using_logname.inc Xmysql-test/include/show_master_logs.inc Xmysql-test/include/show_master_status.inc Xmysql-test/include/show_msg.inc Xmysql-test/include/show_msg80.inc Xmysql-test/include/show_rpl_debug_info.inc Xmysql-test/include/show_slave_status.inc Xmysql-test/include/show_slave_status2.inc Xmysql-test/include/sp-vars.inc Xmysql-test/include/start_slave.inc Xmysql-test/include/stop_slave.inc Xmysql-test/include/strict_autoinc.inc Xmysql-test/include/sync_slave_io_with_master.inc Xmysql-test/include/system_db_struct.inc Xmysql-test/include/test_fieldsize.inc Xmysql-test/include/test_outfile.inc Xmysql-test/include/testdb_only.inc Xmysql-test/include/tpcb.inc Xmysql-test/include/tpcb_disk_data.inc Xmysql-test/include/unsafe_binlog.inc Xmysql-test/include/uses_vardir.inc Xmysql-test/include/varchar.inc Xmysql-test/include/wait_condition.inc Xmysql-test/include/wait_condition_sp.inc Xmysql-test/include/wait_for_binlog_event.inc Xmysql-test/include/wait_for_query_to_suceed.inc Xmysql-test/include/wait_for_slave_io_to_start.inc Xmysql-test/include/wait_for_slave_io_to_stop.inc Xmysql-test/include/wait_for_slave_param.inc Xmysql-test/include/wait_for_slave_sql_error.inc Xmysql-test/include/wait_for_slave_sql_error_and_skip.inc Xmysql-test/include/wait_for_slave_sql_to_start.inc Xmysql-test/include/wait_for_slave_sql_to_stop.inc Xmysql-test/include/wait_for_slave_to_start.inc Xmysql-test/include/wait_for_slave_to_stop.inc Xmysql-test/include/wait_until_connected_again.inc Xmysql-test/include/wait_until_count_sessions.inc Xmysql-test/include/wait_until_disconnected.inc Xmysql-test/include/wait_until_rows_count.inc Xmysql-test/include/windows.inc Xmysql-test/include/windows_sys_vars.inc Xmysql-test/lib/My/Config.pm Xmysql-test/lib/My/ConfigFactory.pm Xmysql-test/lib/My/CoreDump.pm Xmysql-test/lib/My/File/Path.pm Xmysql-test/lib/My/Find.pm Xmysql-test/lib/My/Handles.pm Xmysql-test/lib/My/Options.pm Xmysql-test/lib/My/Platform.pm Xmysql-test/lib/My/SafeProcess.pm Xmysql-test/lib/My/SafeProcess/Base.pm Xmysql-test/lib/My/SafeProcess/my_safe_process Xmysql-test/lib/My/SafeProcess/safe_process.pl Xmysql-test/lib/My/SysInfo.pm Xmysql-test/lib/My/Test.pm Xmysql-test/lib/mtr_cases.pm Xmysql-test/lib/mtr_gcov.pl Xmysql-test/lib/mtr_gprof.pl Xmysql-test/lib/mtr_io.pl Xmysql-test/lib/mtr_match.pm Xmysql-test/lib/mtr_misc.pl Xmysql-test/lib/mtr_process.pl Xmysql-test/lib/mtr_report.pm Xmysql-test/lib/mtr_stress.pl Xmysql-test/lib/mtr_unique.pm Xmysql-test/lib/v1/My/Config.pm Xmysql-test/lib/v1/mtr_cases.pl Xmysql-test/lib/v1/mtr_gcov.pl Xmysql-test/lib/v1/mtr_gprof.pl Xmysql-test/lib/v1/mtr_im.pl Xmysql-test/lib/v1/mtr_io.pl Xmysql-test/lib/v1/mtr_match.pl Xmysql-test/lib/v1/mtr_misc.pl Xmysql-test/lib/v1/mtr_process.pl Xmysql-test/lib/v1/mtr_report.pl Xmysql-test/lib/v1/mtr_stress.pl Xmysql-test/lib/v1/mtr_timer.pl Xmysql-test/lib/v1/mtr_unique.pl Xmysql-test/lib/v1/mysql-test-run.pl Xmysql-test/lib/v1/ndb_config_1_node.ini Xmysql-test/lib/v1/ndb_config_2_node.ini Xmysql-test/mtr Xmysql-test/mysql-stress-test.pl Xmysql-test/mysql-test-run Xmysql-test/mysql-test-run.pl Xmysql-test/r/1st.result Xmysql-test/r/alias.result Xmysql-test/r/almost_full.result Xmysql-test/r/alter_table-big.result Xmysql-test/r/alter_table.result Xmysql-test/r/analyse.result Xmysql-test/r/analyze.result Xmysql-test/r/ansi.result Xmysql-test/r/archive-big.result Xmysql-test/r/archive.result Xmysql-test/r/archive_bitfield.result Xmysql-test/r/archive_gis.result Xmysql-test/r/auto_increment.result Xmysql-test/r/backup.result Xmysql-test/r/bench_count_distinct.result Xmysql-test/r/big_test.require Xmysql-test/r/bigint.result Xmysql-test/r/binary.result Xmysql-test/r/binlog_tx_isolation.result Xmysql-test/r/bool.result Xmysql-test/r/bootstrap.result Xmysql-test/r/bulk_replace.result Xmysql-test/r/cache_innodb.result Xmysql-test/r/case.result Xmysql-test/r/case_insensitive_file_system.require Xmysql-test/r/case_sensitive_file_system.require Xmysql-test/r/cast.result Xmysql-test/r/change_user.result Xmysql-test/r/check.result Xmysql-test/r/check_var_limit.require Xmysql-test/r/client_xml.result Xmysql-test/r/comments.result Xmysql-test/r/commit_1innodb.result Xmysql-test/r/compare.result Xmysql-test/r/compress.result Xmysql-test/r/concurrent_innodb_safelog.result Xmysql-test/r/concurrent_innodb_unsafelog.result Xmysql-test/r/connect.result Xmysql-test/r/consistent_snapshot.result Xmysql-test/r/constraints.result Xmysql-test/r/contributors.result Xmysql-test/r/count_distinct.result Xmysql-test/r/count_distinct2.result Xmysql-test/r/count_distinct3.result Xmysql-test/r/crash_commit_before.result Xmysql-test/r/create-big.result Xmysql-test/r/create.result Xmysql-test/r/create_not_windows.result Xmysql-test/r/create_select_tmp.result Xmysql-test/r/csv.result Xmysql-test/r/csv_alter_table.result Xmysql-test/r/csv_not_null.result Xmysql-test/r/ctype_ascii.result Xmysql-test/r/ctype_big5.result Xmysql-test/r/ctype_collate.result Xmysql-test/r/ctype_cp1250_ch.result Xmysql-test/r/ctype_cp1251.result Xmysql-test/r/ctype_cp932_binlog_row.result Xmysql-test/r/ctype_cp932_binlog_stm.result Xmysql-test/r/ctype_create.result Xmysql-test/r/ctype_eucjpms.result Xmysql-test/r/ctype_euckr.result Xmysql-test/r/ctype_filename.result Xmysql-test/r/ctype_filesystem.result Xmysql-test/r/ctype_gb2312.result Xmysql-test/r/ctype_gbk.result Xmysql-test/r/ctype_hebrew.result Xmysql-test/r/ctype_latin1.result Xmysql-test/r/ctype_latin1_de.result Xmysql-test/r/ctype_latin2.result Xmysql-test/r/ctype_latin2_ch.result Xmysql-test/r/ctype_ldml.result Xmysql-test/r/ctype_many.result Xmysql-test/r/ctype_mb.result Xmysql-test/r/ctype_recoding.result Xmysql-test/r/ctype_sjis.result Xmysql-test/r/ctype_tis620.result Xmysql-test/r/ctype_uca.result Xmysql-test/r/ctype_ucs.result Xmysql-test/r/ctype_ucs2_def.result Xmysql-test/r/ctype_ujis.result Xmysql-test/r/ctype_ujis_ucs2.result Xmysql-test/r/ctype_utf8.result Xmysql-test/r/date_formats.result Xmysql-test/r/ddl_i18n_koi8r.result Xmysql-test/r/ddl_i18n_utf8.result Xmysql-test/r/deadlock_innodb.result Xmysql-test/r/default.result Xmysql-test/r/delayed.result Xmysql-test/r/delete.result Xmysql-test/r/derived.result Xmysql-test/r/dirty_close.result Xmysql-test/r/distinct.result Xmysql-test/r/drop.result Xmysql-test/r/empty_table.result Xmysql-test/r/endspace.result Xmysql-test/r/error_simulation.result Xmysql-test/r/errors.result Xmysql-test/r/events_1.result Xmysql-test/r/events_2.result Xmysql-test/r/events_bugs.result Xmysql-test/r/events_embedded.result Xmysql-test/r/events_grant.result Xmysql-test/r/events_logs_tests.result Xmysql-test/r/events_microsec.result Xmysql-test/r/events_restart.result Xmysql-test/r/events_scheduling.result Xmysql-test/r/events_stress.result Xmysql-test/r/events_time_zone.result Xmysql-test/r/events_trans.result Xmysql-test/r/events_trans_notembedded.result Xmysql-test/r/exampledb.result Xmysql-test/r/execution_constants.result Xmysql-test/r/explain.result Xmysql-test/r/fix_priv_tables.result Xmysql-test/r/flush.result Xmysql-test/r/flush2.result Xmysql-test/r/flush_block_commit.result Xmysql-test/r/flush_block_commit_notembedded.result Xmysql-test/r/flush_read_lock_kill.result Xmysql-test/r/flush_table.result Xmysql-test/r/foreign_key.result Xmysql-test/r/fulltext.result Xmysql-test/r/fulltext2.result Xmysql-test/r/fulltext3.result Xmysql-test/r/fulltext_cache.result Xmysql-test/r/fulltext_distinct.result Xmysql-test/r/fulltext_left_join.result Xmysql-test/r/fulltext_multi.result Xmysql-test/r/fulltext_order_by.result Xmysql-test/r/fulltext_plugin.result Xmysql-test/r/fulltext_update.result Xmysql-test/r/fulltext_var.result Xmysql-test/r/func_compress.result Xmysql-test/r/func_concat.result Xmysql-test/r/func_crypt.result Xmysql-test/r/func_date_add.result Xmysql-test/r/func_default.result Xmysql-test/r/func_des_encrypt.result Xmysql-test/r/func_encrypt.result Xmysql-test/r/func_encrypt_nossl.result Xmysql-test/r/func_equal.result Xmysql-test/r/func_gconcat.result Xmysql-test/r/func_group.result Xmysql-test/r/func_group_innodb.result Xmysql-test/r/func_if.result Xmysql-test/r/func_in.result Xmysql-test/r/func_isnull.result Xmysql-test/r/func_like.result Xmysql-test/r/func_math.result Xmysql-test/r/func_misc.result Xmysql-test/r/func_op.result Xmysql-test/r/func_regexp.result Xmysql-test/r/func_rollback.result Xmysql-test/r/func_sapdb.result Xmysql-test/r/func_set.result Xmysql-test/r/func_str.result Xmysql-test/r/func_system.result Xmysql-test/r/func_test.result Xmysql-test/r/func_time.result Xmysql-test/r/func_timestamp.result Xmysql-test/r/gcc296.result Xmysql-test/r/gis-rtree.result Xmysql-test/r/gis.result Xmysql-test/r/grant.result Xmysql-test/r/grant2.result Xmysql-test/r/grant3.result Xmysql-test/r/grant_cache_no_prot.result Xmysql-test/r/grant_cache_ps_prot.result Xmysql-test/r/greedy_optimizer.result Xmysql-test/r/group_by.result Xmysql-test/r/group_min_max.result Xmysql-test/r/group_min_max_innodb.result Xmysql-test/r/handler_innodb.result Xmysql-test/r/handler_myisam.result Xmysql-test/r/have_big5.require Xmysql-test/r/have_binlog_format_mixed.require Xmysql-test/r/have_binlog_format_row.require Xmysql-test/r/have_binlog_format_statement.require Xmysql-test/r/have_community_features.require Xmysql-test/r/have_compress.require Xmysql-test/r/have_cp1250_ch.require Xmysql-test/r/have_cp1251.require Xmysql-test/r/have_cp866.require Xmysql-test/r/have_cp932.require Xmysql-test/r/have_crypt.require Xmysql-test/r/have_debug.require Xmysql-test/r/have_dynamic_loading.require Xmysql-test/r/have_eucjpms.require Xmysql-test/r/have_euckr.require Xmysql-test/r/have_example_plugin.require Xmysql-test/r/have_gb2312.require Xmysql-test/r/have_gbk.require Xmysql-test/r/have_geometry.require Xmysql-test/r/have_koi8r.require Xmysql-test/r/have_latin2_ch.require Xmysql-test/r/have_local_infile.require Xmysql-test/r/have_log_bin.require Xmysql-test/r/have_met_timezone.require Xmysql-test/r/have_moscow_leap_timezone.require Xmysql-test/r/have_mysql_upgrade.result Xmysql-test/r/have_ndb_extra.require Xmysql-test/r/have_ndbapi_examples.require Xmysql-test/r/have_outfile.require Xmysql-test/r/have_partition.require Xmysql-test/r/have_perror.require Xmysql-test/r/have_query_cache.require Xmysql-test/r/have_simple_parser.require Xmysql-test/r/have_sjis.require Xmysql-test/r/have_ssl.require Xmysql-test/r/have_symlink.require Xmysql-test/r/have_tis620.require Xmysql-test/r/have_ucs2.require Xmysql-test/r/have_udf_example.require Xmysql-test/r/have_ujis.require Xmysql-test/r/have_utf8.require Xmysql-test/r/having.result Xmysql-test/r/heap.result Xmysql-test/r/heap_auto_increment.result Xmysql-test/r/heap_btree.result Xmysql-test/r/heap_hash.result Xmysql-test/r/help.result Xmysql-test/r/index_merge_innodb.result Xmysql-test/r/index_merge_myisam.result Xmysql-test/r/information_schema.result Xmysql-test/r/information_schema_chmod.result Xmysql-test/r/information_schema_db.result Xmysql-test/r/information_schema_inno.result Xmysql-test/r/information_schema_part.result Xmysql-test/r/init_connect.result Xmysql-test/r/init_file.result Xmysql-test/r/innodb-autoinc-optimize.result Xmysql-test/r/innodb-autoinc.result Xmysql-test/r/innodb-lock.result Xmysql-test/r/innodb-replace.result Xmysql-test/r/innodb-semi-consistent.result Xmysql-test/r/innodb-ucs2.result Xmysql-test/r/innodb.result Xmysql-test/r/innodb_autoinc_lock_mode_zero.result Xmysql-test/r/innodb_bug30919.result Xmysql-test/r/innodb_bug34053.result Xmysql-test/r/innodb_bug34300.result Xmysql-test/r/innodb_bug35220.result Xmysql-test/r/innodb_bug38231.result Xmysql-test/r/innodb_bug39438.result Xmysql-test/r/innodb_gis.result Xmysql-test/r/innodb_ignore_builtin.result Xmysql-test/r/innodb_mysql.result Xmysql-test/r/innodb_mysql_rbk.result Xmysql-test/r/innodb_notembedded.result Xmysql-test/r/innodb_timeout_rollback.result Xmysql-test/r/innodb_trx_weight.result Xmysql-test/r/insert.result Xmysql-test/r/insert_notembedded.result Xmysql-test/r/insert_select.result Xmysql-test/r/insert_update.result Xmysql-test/r/is_debug_build.require Xmysql-test/r/is_embedded.require Xmysql-test/r/isam.result Xmysql-test/r/join.result Xmysql-test/r/join_crash.result Xmysql-test/r/join_nested.result Xmysql-test/r/join_outer.result Xmysql-test/r/join_outer_innodb.result Xmysql-test/r/key.result Xmysql-test/r/key_cache.result Xmysql-test/r/key_diff.result Xmysql-test/r/key_primary.result Xmysql-test/r/keywords.result Xmysql-test/r/kill.result Xmysql-test/r/limit.result Xmysql-test/r/loaddata.result Xmysql-test/r/loaddata_autocom_innodb.result Xmysql-test/r/lock.result Xmysql-test/r/lock_multi.result Xmysql-test/r/lock_tables_lost_commit.result Xmysql-test/r/log_state.result Xmysql-test/r/log_tables-big.result Xmysql-test/r/log_tables.result Xmysql-test/r/long_tmpdir.result Xmysql-test/r/lowercase0.require Xmysql-test/r/lowercase1.require Xmysql-test/r/lowercase2.require Xmysql-test/r/lowercase_fs_off.result Xmysql-test/r/lowercase_mixed_tmpdir.result Xmysql-test/r/lowercase_table.result Xmysql-test/r/lowercase_table2.result Xmysql-test/r/lowercase_table3.result Xmysql-test/r/lowercase_table_grant.result Xmysql-test/r/lowercase_table_qcache.result Xmysql-test/r/lowercase_view.result Xmysql-test/r/merge-big.result Xmysql-test/r/merge.result Xmysql-test/r/merge_innodb.result Xmysql-test/r/metadata.result Xmysql-test/r/mix2_myisam.result Xmysql-test/r/mix2_myisam_ucs2.result Xmysql-test/r/multi_statement.result Xmysql-test/r/multi_update.result Xmysql-test/r/multi_update2.result Xmysql-test/r/multi_update_tiny_hash.result Xmysql-test/r/myisam-blob.result Xmysql-test/r/myisam-system.result Xmysql-test/r/myisam.result Xmysql-test/r/myisampack.result Xmysql-test/r/mysql.result Xmysql-test/r/mysql_client_test.result Xmysql-test/r/mysql_comments.result Xmysql-test/r/mysql_cp932.result Xmysql-test/r/mysql_protocols.result Xmysql-test/r/mysql_upgrade.result Xmysql-test/r/mysqladmin.result Xmysql-test/r/mysqlbinlog-cp932.result Xmysql-test/r/mysqlbinlog.result Xmysql-test/r/mysqlbinlog2.result Xmysql-test/r/mysqlbinlog_base64.result Xmysql-test/r/mysqlbinlog_row.result Xmysql-test/r/mysqlbinlog_row_big.result Xmysql-test/r/mysqlbinlog_row_innodb.result Xmysql-test/r/mysqlbinlog_row_myisam.result Xmysql-test/r/mysqlbinlog_row_trans.result Xmysql-test/r/mysqlcheck.result Xmysql-test/r/mysqldump-compat.result Xmysql-test/r/mysqldump-max.result Xmysql-test/r/mysqldump-no-binlog.result Xmysql-test/r/mysqldump.result Xmysql-test/r/mysqlshow.result Xmysql-test/r/mysqlslap.result Xmysql-test/r/mysqltest.result Xmysql-test/r/named_pipe.result Xmysql-test/r/ndb_default_cluster.require Xmysql-test/r/negation_elimination.result Xmysql-test/r/no-threads.result Xmysql-test/r/not_embedded.require Xmysql-test/r/not_embedded_server.result Xmysql-test/r/not_ndb.require Xmysql-test/r/not_ndb_default.require Xmysql-test/r/not_openssl.require Xmysql-test/r/not_partition.require Xmysql-test/r/not_partition.result Xmysql-test/r/not_valgrind.require Xmysql-test/r/not_windows.require Xmysql-test/r/null.result Xmysql-test/r/null_key.result Xmysql-test/r/odbc.result Xmysql-test/r/olap.result Xmysql-test/r/one_thread_per_connection.require Xmysql-test/r/openssl_1.result Xmysql-test/r/order_by.result Xmysql-test/r/order_fill_sortbuf.result Xmysql-test/r/outfile.result Xmysql-test/r/outfile_loaddata.result Xmysql-test/r/overflow.result Xmysql-test/r/packet.result Xmysql-test/r/parser.result Xmysql-test/r/parser_bug21114_innodb.result Xmysql-test/r/parser_precedence.result Xmysql-test/r/parser_stack.result Xmysql-test/r/partition.result Xmysql-test/r/partition_archive.result Xmysql-test/r/partition_blackhole.result Xmysql-test/r/partition_bug18198.result Xmysql-test/r/partition_charset.result Xmysql-test/r/partition_csv.result Xmysql-test/r/partition_datatype.result Xmysql-test/r/partition_error.result Xmysql-test/r/partition_federated.result Xmysql-test/r/partition_grant.result Xmysql-test/r/partition_hash.result Xmysql-test/r/partition_innodb.result Xmysql-test/r/partition_innodb_semi_consistent.result Xmysql-test/r/partition_innodb_stmt.result Xmysql-test/r/partition_list.result Xmysql-test/r/partition_mgm.result Xmysql-test/r/partition_mgm_err.result Xmysql-test/r/partition_mgm_err2.result Xmysql-test/r/partition_not_windows.result Xmysql-test/r/partition_order.result Xmysql-test/r/partition_pruning.result Xmysql-test/r/partition_range.result Xmysql-test/r/partition_symlink.result Xmysql-test/r/partition_windows.result Xmysql-test/r/perror-win.result Xmysql-test/r/perror.result Xmysql-test/r/plugin.result Xmysql-test/r/plugin_load.result Xmysql-test/r/preload.result Xmysql-test/r/profiling.result Xmysql-test/r/ps.result Xmysql-test/r/ps_10nestset.result Xmysql-test/r/ps_11bugs.result Xmysql-test/r/ps_1general.result Xmysql-test/r/ps_2myisam.result Xmysql-test/r/ps_3innodb.result Xmysql-test/r/ps_4heap.result Xmysql-test/r/ps_5merge.result Xmysql-test/r/ps_ddl.result Xmysql-test/r/ps_ddl1.result Xmysql-test/r/ps_grant.result Xmysql-test/r/ps_not_windows.result Xmysql-test/r/query_cache.result Xmysql-test/r/query_cache_28249.result Xmysql-test/r/query_cache_debug.result Xmysql-test/r/query_cache_merge.result Xmysql-test/r/query_cache_notembedded.result Xmysql-test/r/query_cache_ps_no_prot.result Xmysql-test/r/query_cache_ps_ps_prot.result Xmysql-test/r/query_cache_with_views.result Xmysql-test/r/raid.result Xmysql-test/r/range.result Xmysql-test/r/read_many_rows_innodb.result Xmysql-test/r/read_only.result Xmysql-test/r/read_only_innodb.result Xmysql-test/r/rename.result Xmysql-test/r/renamedb.result Xmysql-test/r/repair.result Xmysql-test/r/replace.result Xmysql-test/r/rollback.result Xmysql-test/r/round.result Xmysql-test/r/row.result Xmysql-test/r/rowid_order_innodb.result Xmysql-test/r/rpl_colSize.result Xmysql-test/r/rpl_extraColmaster_innodb.result Xmysql-test/r/rpl_extraColmaster_myisam.result Xmysql-test/r/schema.result Xmysql-test/r/select.result Xmysql-test/r/select_found.result Xmysql-test/r/select_safe.result Xmysql-test/r/server_id.require Xmysql-test/r/server_id1.require Xmysql-test/r/shm.result Xmysql-test/r/show_check.result Xmysql-test/r/skip_grants.result Xmysql-test/r/skip_log_bin.result Xmysql-test/r/skip_name_resolve.result Xmysql-test/r/slave-running.result Xmysql-test/r/slave-stopped.result Xmysql-test/r/sp-big.result Xmysql-test/r/sp-code.result Xmysql-test/r/sp-destruct.result Xmysql-test/r/sp-dynamic.result Xmysql-test/r/sp-error.result Xmysql-test/r/sp-prelocking.result Xmysql-test/r/sp-security.result Xmysql-test/r/sp-threads.result Xmysql-test/r/sp-ucs2.result Xmysql-test/r/sp-vars.result Xmysql-test/r/sp.result Xmysql-test/r/sp_gis.result Xmysql-test/r/sp_notembedded.result Xmysql-test/r/sp_stress_case.result Xmysql-test/r/sp_trans.result Xmysql-test/r/sp_trans_log.result Xmysql-test/r/sql_mode.result Xmysql-test/r/ssl-big.result Xmysql-test/r/ssl.result Xmysql-test/r/ssl_8k_key.result Xmysql-test/r/ssl_compress.result Xmysql-test/r/ssl_connect.result Xmysql-test/r/status.result Xmysql-test/r/status2.result Xmysql-test/r/strict.result Xmysql-test/r/strict_autoinc_1myisam.result Xmysql-test/r/strict_autoinc_2innodb.result Xmysql-test/r/strict_autoinc_3heap.result Xmysql-test/r/subselect.result Xmysql-test/r/subselect2.result Xmysql-test/r/subselect3.result Xmysql-test/r/subselect_debug.result Xmysql-test/r/subselect_gis.result Xmysql-test/r/subselect_innodb.result Xmysql-test/r/subselect_notembedded.result Xmysql-test/r/sum_distinct-big.result Xmysql-test/r/sum_distinct.result Xmysql-test/r/symlink.result Xmysql-test/r/synchronization.result Xmysql-test/r/sysdate_is_now.result Xmysql-test/r/system_mysql_db.result Xmysql-test/r/system_mysql_db_refs.result Xmysql-test/r/tablelock.result Xmysql-test/r/temp_table.result Xmysql-test/r/testdb_only.require Xmysql-test/r/timezone.result Xmysql-test/r/timezone2.result Xmysql-test/r/timezone3.result Xmysql-test/r/timezone4.result Xmysql-test/r/timezone_grant.result Xmysql-test/r/trigger-compat.result Xmysql-test/r/trigger-trans.result Xmysql-test/r/trigger.result Xmysql-test/r/trigger_notembedded.result Xmysql-test/r/true.require Xmysql-test/r/truncate.result Xmysql-test/r/type_binary.result Xmysql-test/r/type_bit.result Xmysql-test/r/type_bit_innodb.result Xmysql-test/r/type_blob.result Xmysql-test/r/type_date.result Xmysql-test/r/type_datetime.result Xmysql-test/r/type_decimal.result Xmysql-test/r/type_enum.result Xmysql-test/r/type_float.result Xmysql-test/r/type_nchar.result Xmysql-test/r/type_newdecimal-big.result Xmysql-test/r/type_newdecimal.result Xmysql-test/r/type_ranges.result Xmysql-test/r/type_set.result Xmysql-test/r/type_time.result Xmysql-test/r/type_timestamp.result Xmysql-test/r/type_uint.result Xmysql-test/r/type_varchar.result Xmysql-test/r/type_year.result Xmysql-test/r/udf.result Xmysql-test/r/udf_skip_grants.result Xmysql-test/r/union.result Xmysql-test/r/unsafe_binlog_innodb.result Xmysql-test/r/update.result Xmysql-test/r/upgrade.result Xmysql-test/r/user_limits.result Xmysql-test/r/user_var-binlog.result Xmysql-test/r/user_var.result Xmysql-test/r/varbinary.result Xmysql-test/r/variables+c.result Xmysql-test/r/variables-big.result Xmysql-test/r/variables-notembedded.result Xmysql-test/r/variables.result Xmysql-test/r/variables_debug.result Xmysql-test/r/view.result Xmysql-test/r/view_grant.result Xmysql-test/r/wait_timeout.result Xmysql-test/r/warnings.result Xmysql-test/r/warnings_engine_disabled.result Xmysql-test/r/windows.require Xmysql-test/r/windows.result Xmysql-test/r/xa.result Xmysql-test/r/xml.result Xmysql-test/std_data/14897.frm Xmysql-test/std_data/Index.xml Xmysql-test/std_data/Moscow_leap Xmysql-test/std_data/bad_gis_data.dat Xmysql-test/std_data/bug15328.cnf Xmysql-test/std_data/bug16266.000001 Xmysql-test/std_data/bug19371.MYD Xmysql-test/std_data/bug19371.MYI Xmysql-test/std_data/bug19371.frm Xmysql-test/std_data/bug30435_10k_items.txt Xmysql-test/std_data/bug30435_5k.txt Xmysql-test/std_data/bug33029-slave-relay-bin.000001 Xmysql-test/std_data/bug35469.dat Xmysql-test/std_data/bug36055.MYD Xmysql-test/std_data/bug36055.MYI Xmysql-test/std_data/bug36055.frm Xmysql-test/std_data/bug40482-bin.000001 Xmysql-test/std_data/cacert.pem Xmysql-test/std_data/charset_utf8.txt Xmysql-test/std_data/client-cert.pem Xmysql-test/std_data/client-key.pem Xmysql-test/std_data/corrupt-relay-bin.000624 Xmysql-test/std_data/corrupt_t1#P#p1.MYI Xmysql-test/std_data/corrupt_t1.MYI Xmysql-test/std_data/des_key_file Xmysql-test/std_data/funcs_1/innodb_tb1.txt Xmysql-test/std_data/funcs_1/innodb_tb2.txt Xmysql-test/std_data/funcs_1/innodb_tb3.txt Xmysql-test/std_data/funcs_1/innodb_tb4.txt Xmysql-test/std_data/funcs_1/load_file.txt Xmysql-test/std_data/funcs_1/memory_tb1.txt Xmysql-test/std_data/funcs_1/memory_tb2.txt Xmysql-test/std_data/funcs_1/memory_tb3.txt Xmysql-test/std_data/funcs_1/memory_tb4.txt Xmysql-test/std_data/funcs_1/myisam_tb1.txt Xmysql-test/std_data/funcs_1/myisam_tb2.txt Xmysql-test/std_data/funcs_1/myisam_tb3.txt Xmysql-test/std_data/funcs_1/myisam_tb4.txt Xmysql-test/std_data/funcs_1/ndb_tb1.txt Xmysql-test/std_data/funcs_1/ndb_tb2.txt Xmysql-test/std_data/funcs_1/ndb_tb3.txt Xmysql-test/std_data/funcs_1/ndb_tb4.txt Xmysql-test/std_data/funcs_1/t3.txt Xmysql-test/std_data/funcs_1/t4.txt Xmysql-test/std_data/funcs_1/t7.txt Xmysql-test/std_data/funcs_1/t9.txt Xmysql-test/std_data/init_file.dat Xmysql-test/std_data/loaddata1.dat Xmysql-test/std_data/loaddata2.dat Xmysql-test/std_data/loaddata3.dat Xmysql-test/std_data/loaddata4.dat Xmysql-test/std_data/loaddata5.dat Xmysql-test/std_data/loaddata6.dat Xmysql-test/std_data/loaddata_dq.dat Xmysql-test/std_data/loaddata_pair.dat Xmysql-test/std_data/master-bin.000001 Xmysql-test/std_data/ndb_backup50/BACKUP-1-0.1.Data Xmysql-test/std_data/ndb_backup50/BACKUP-1-0.2.Data Xmysql-test/std_data/ndb_backup50/BACKUP-1.1.ctl Xmysql-test/std_data/ndb_backup50/BACKUP-1.1.log Xmysql-test/std_data/ndb_backup50/BACKUP-1.2.ctl Xmysql-test/std_data/ndb_backup50/BACKUP-1.2.log Xmysql-test/std_data/ndb_backup50/BACKUP-2-0.1.Data Xmysql-test/std_data/ndb_backup50/BACKUP-2-0.2.Data Xmysql-test/std_data/ndb_backup50/BACKUP-2.1.ctl Xmysql-test/std_data/ndb_backup50/BACKUP-2.1.log Xmysql-test/std_data/ndb_backup50/BACKUP-2.2.ctl Xmysql-test/std_data/ndb_backup50/BACKUP-2.2.log Xmysql-test/std_data/ndb_backup51/BACKUP-1-0.1.Data Xmysql-test/std_data/ndb_backup51/BACKUP-1-0.2.Data Xmysql-test/std_data/ndb_backup51/BACKUP-1.1.ctl Xmysql-test/std_data/ndb_backup51/BACKUP-1.1.log Xmysql-test/std_data/ndb_backup51/BACKUP-1.2.ctl Xmysql-test/std_data/ndb_backup51/BACKUP-1.2.log Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1-0.1.Data Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1-0.2.Data Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1.1.ctl Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1.1.log Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1.2.ctl Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1.2.log Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1-0.1.Data Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1-0.2.Data Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1.1.ctl Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1.1.log Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1.2.ctl Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1.2.log Xmysql-test/std_data/ndb_config_config.ini Xmysql-test/std_data/ndb_config_mycnf1.cnf Xmysql-test/std_data/ndb_config_mycnf2.cnf Xmysql-test/std_data/numbers.txt Xmysql-test/std_data/old_table-323.frm Xmysql-test/std_data/parts/part_supported_sql_funcs_int_ch1.inc Xmysql-test/std_data/parts/part_supported_sql_funcs_int_date.inc Xmysql-test/std_data/parts/part_supported_sql_funcs_int_float.inc Xmysql-test/std_data/parts/part_supported_sql_funcs_int_int.inc Xmysql-test/std_data/parts/part_supported_sql_funcs_int_time.inc Xmysql-test/std_data/parts/t1_will_crash#P#p1_first_1024.MYD Xmysql-test/std_data/parts/t1_will_crash#P#p2.MYD Xmysql-test/std_data/parts/t1_will_crash#P#p2.MYI Xmysql-test/std_data/parts/t1_will_crash#P#p3.MYI Xmysql-test/std_data/parts/t1_will_crash#P#p4.MYI Xmysql-test/std_data/parts/t1_will_crash#P#p6.MYD Xmysql-test/std_data/parts/t1_will_crash#P#p6_2.MYD Xmysql-test/std_data/parts/t1_will_crash#P#p6_3.MYD Xmysql-test/std_data/rpl_bug28618.dat Xmysql-test/std_data/rpl_loaddata.dat Xmysql-test/std_data/rpl_loaddata2.dat Xmysql-test/std_data/rpl_mixed.dat Xmysql-test/std_data/rpl_timezone.dat Xmysql-test/std_data/rpl_timezone2.dat Xmysql-test/std_data/server-cert.pem Xmysql-test/std_data/server-key.pem Xmysql-test/std_data/server8k-cert.pem Xmysql-test/std_data/server8k-key.pem Xmysql-test/std_data/trunc_binlog.000001 Xmysql-test/std_data/untrusted-cacert.pem Xmysql-test/std_data/vchar.frm Xmysql-test/std_data/warnings_loaddata.dat Xmysql-test/std_data/words.dat Xmysql-test/std_data/words2.dat Xmysql-test/suite/binlog/combinations Xmysql-test/suite/binlog/r/binlog_auto_increment_bug33029.result Xmysql-test/suite/binlog/r/binlog_base64_flag.result Xmysql-test/suite/binlog/r/binlog_database.result Xmysql-test/suite/binlog/r/binlog_grant.result Xmysql-test/suite/binlog/r/binlog_index.result Xmysql-test/suite/binlog/r/binlog_innodb.result Xmysql-test/suite/binlog/r/binlog_innodb_row.result Xmysql-test/suite/binlog/r/binlog_killed.result Xmysql-test/suite/binlog/r/binlog_killed_simulate.result Xmysql-test/suite/binlog/r/binlog_mix_innodb_stat.result Xmysql-test/suite/binlog/r/binlog_multi_engine.result Xmysql-test/suite/binlog/r/binlog_old_versions.result Xmysql-test/suite/binlog/r/binlog_row_binlog.result Xmysql-test/suite/binlog/r/binlog_row_ctype_cp932.result Xmysql-test/suite/binlog/r/binlog_row_ctype_ucs.result Xmysql-test/suite/binlog/r/binlog_row_drop_tmp_tbl.result Xmysql-test/suite/binlog/r/binlog_row_innodb_stat.result Xmysql-test/suite/binlog/r/binlog_row_insert_select.result Xmysql-test/suite/binlog/r/binlog_row_mix_innodb_myisam.result Xmysql-test/suite/binlog/r/binlog_start_comment.result Xmysql-test/suite/binlog/r/binlog_statement_insert_delayed.result Xmysql-test/suite/binlog/r/binlog_stm_binlog.result Xmysql-test/suite/binlog/r/binlog_stm_blackhole.result Xmysql-test/suite/binlog/r/binlog_stm_ctype_cp932.result Xmysql-test/suite/binlog/r/binlog_stm_ctype_ucs.result Xmysql-test/suite/binlog/r/binlog_stm_drop_tmp_tbl.result Xmysql-test/suite/binlog/r/binlog_stm_innodb_stat.result Xmysql-test/suite/binlog/r/binlog_stm_insert_select.result Xmysql-test/suite/binlog/r/binlog_stm_mix_innodb_myisam.result Xmysql-test/suite/binlog/r/binlog_stm_ps.result Xmysql-test/suite/binlog/r/binlog_stm_row.result Xmysql-test/suite/binlog/r/binlog_tmp_table.result Xmysql-test/suite/binlog/r/binlog_truncate_innodb.result Xmysql-test/suite/binlog/r/binlog_truncate_myisam.result Xmysql-test/suite/binlog/r/binlog_unsafe.result Xmysql-test/suite/binlog/std_data/binlog_old_version_4_1.000001 Xmysql-test/suite/binlog/std_data/bug32407.001 Xmysql-test/suite/binlog/std_data/ver_5_1-telco.001 Xmysql-test/suite/binlog/std_data/ver_5_1-wl2325_r.001 Xmysql-test/suite/binlog/std_data/ver_5_1-wl2325_s.001 Xmysql-test/suite/binlog/std_data/ver_5_1_17.001 Xmysql-test/suite/binlog/std_data/ver_5_1_23.001 Xmysql-test/suite/binlog/t/binlog_auto_increment_bug33029-master.opt Xmysql-test/suite/binlog/t/binlog_auto_increment_bug33029.test Xmysql-test/suite/binlog/t/binlog_base64_flag.test Xmysql-test/suite/binlog/t/binlog_database.test Xmysql-test/suite/binlog/t/binlog_grant.test Xmysql-test/suite/binlog/t/binlog_index.test Xmysql-test/suite/binlog/t/binlog_innodb.test Xmysql-test/suite/binlog/t/binlog_innodb_row.test Xmysql-test/suite/binlog/t/binlog_killed.test Xmysql-test/suite/binlog/t/binlog_killed_simulate-master.opt Xmysql-test/suite/binlog/t/binlog_killed_simulate.test Xmysql-test/suite/binlog/t/binlog_mix_innodb_stat.test Xmysql-test/suite/binlog/t/binlog_multi_engine.test Xmysql-test/suite/binlog/t/binlog_old_versions.test Xmysql-test/suite/binlog/t/binlog_row_binlog-master.opt Xmysql-test/suite/binlog/t/binlog_row_binlog.test Xmysql-test/suite/binlog/t/binlog_row_ctype_cp932.test Xmysql-test/suite/binlog/t/binlog_row_ctype_ucs.test Xmysql-test/suite/binlog/t/binlog_row_drop_tmp_tbl.test Xmysql-test/suite/binlog/t/binlog_row_innodb_stat-master.opt Xmysql-test/suite/binlog/t/binlog_row_innodb_stat.test Xmysql-test/suite/binlog/t/binlog_row_insert_select.test Xmysql-test/suite/binlog/t/binlog_row_mix_innodb_myisam-master.opt Xmysql-test/suite/binlog/t/binlog_row_mix_innodb_myisam.test Xmysql-test/suite/binlog/t/binlog_start_comment.test Xmysql-test/suite/binlog/t/binlog_statement_insert_delayed.test Xmysql-test/suite/binlog/t/binlog_stm_binlog-master.opt Xmysql-test/suite/binlog/t/binlog_stm_binlog.test Xmysql-test/suite/binlog/t/binlog_stm_blackhole.test Xmysql-test/suite/binlog/t/binlog_stm_ctype_cp932.test Xmysql-test/suite/binlog/t/binlog_stm_ctype_ucs.test Xmysql-test/suite/binlog/t/binlog_stm_drop_tmp_tbl.test Xmysql-test/suite/binlog/t/binlog_stm_innodb_stat-master.opt Xmysql-test/suite/binlog/t/binlog_stm_innodb_stat.test Xmysql-test/suite/binlog/t/binlog_stm_insert_select.test Xmysql-test/suite/binlog/t/binlog_stm_mix_innodb_myisam-master.opt Xmysql-test/suite/binlog/t/binlog_stm_mix_innodb_myisam.test Xmysql-test/suite/binlog/t/binlog_stm_ps.test Xmysql-test/suite/binlog/t/binlog_stm_row.test Xmysql-test/suite/binlog/t/binlog_tmp_table.test Xmysql-test/suite/binlog/t/binlog_truncate_innodb-master.opt Xmysql-test/suite/binlog/t/binlog_truncate_innodb.test Xmysql-test/suite/binlog/t/binlog_truncate_myisam.test Xmysql-test/suite/binlog/t/binlog_unsafe.test Xmysql-test/suite/binlog/t/disabled.def Xmysql-test/suite/bugs/data/rpl_bug12691.dat Xmysql-test/suite/bugs/r/rpl_bug12691.result Xmysql-test/suite/bugs/r/rpl_bug23533.result Xmysql-test/suite/bugs/r/rpl_bug31582.result Xmysql-test/suite/bugs/r/rpl_bug31583.result Xmysql-test/suite/bugs/r/rpl_bug33029.result Xmysql-test/suite/bugs/r/rpl_bug36391.result Xmysql-test/suite/bugs/r/rpl_bug37426.result Xmysql-test/suite/bugs/t/rpl_bug12691.test Xmysql-test/suite/bugs/t/rpl_bug23533.test Xmysql-test/suite/bugs/t/rpl_bug31582.test Xmysql-test/suite/bugs/t/rpl_bug31583.test Xmysql-test/suite/bugs/t/rpl_bug33029.test Xmysql-test/suite/bugs/t/rpl_bug36391-master.opt Xmysql-test/suite/bugs/t/rpl_bug36391.test Xmysql-test/suite/bugs/t/rpl_bug37426.test Xmysql-test/suite/federated/disabled.def Xmysql-test/suite/federated/federated.inc Xmysql-test/suite/federated/federated.result Xmysql-test/suite/federated/federated.test Xmysql-test/suite/federated/federated_archive.result Xmysql-test/suite/federated/federated_archive.test Xmysql-test/suite/federated/federated_bug_13118.result Xmysql-test/suite/federated/federated_bug_13118.test Xmysql-test/suite/federated/federated_bug_25714.result Xmysql-test/suite/federated/federated_bug_25714.test Xmysql-test/suite/federated/federated_cleanup.inc Xmysql-test/suite/federated/federated_innodb-slave.opt Xmysql-test/suite/federated/federated_innodb.result Xmysql-test/suite/federated/federated_innodb.test Xmysql-test/suite/federated/federated_server.result Xmysql-test/suite/federated/federated_server.test Xmysql-test/suite/federated/federated_transactions-slave.opt Xmysql-test/suite/federated/federated_transactions.result Xmysql-test/suite/federated/federated_transactions.test Xmysql-test/suite/federated/have_federated_db.inc Xmysql-test/suite/federated/my.cnf Xmysql-test/suite/funcs_1/README.txt Xmysql-test/suite/funcs_1/bitdata/bitdata_master.test Xmysql-test/suite/funcs_1/cursors/cursors_master.test Xmysql-test/suite/funcs_1/datadict/basics_mixed1.inc Xmysql-test/suite/funcs_1/datadict/basics_mixed2.inc Xmysql-test/suite/funcs_1/datadict/basics_mixed3.inc Xmysql-test/suite/funcs_1/datadict/charset_collation.inc Xmysql-test/suite/funcs_1/datadict/columns.inc Xmysql-test/suite/funcs_1/datadict/datadict.pre Xmysql-test/suite/funcs_1/datadict/datadict_bug_12777.inc Xmysql-test/suite/funcs_1/datadict/datadict_load.inc Xmysql-test/suite/funcs_1/datadict/datadict_priv.inc Xmysql-test/suite/funcs_1/datadict/is_key_column_usage.inc Xmysql-test/suite/funcs_1/datadict/is_routines.inc Xmysql-test/suite/funcs_1/datadict/is_schemata.inc Xmysql-test/suite/funcs_1/datadict/is_table_query.inc Xmysql-test/suite/funcs_1/datadict/is_tables.inc Xmysql-test/suite/funcs_1/datadict/is_triggers.inc Xmysql-test/suite/funcs_1/datadict/is_views.inc Xmysql-test/suite/funcs_1/datadict/processlist_priv.inc Xmysql-test/suite/funcs_1/datadict/processlist_val.inc Xmysql-test/suite/funcs_1/datadict/statistics.inc Xmysql-test/suite/funcs_1/datadict/table_constraints.inc Xmysql-test/suite/funcs_1/datadict/tables.inc Xmysql-test/suite/funcs_1/datadict/tables1.inc Xmysql-test/suite/funcs_1/datadict/tables2.inc Xmysql-test/suite/funcs_1/include/bug28309_skip.inc Xmysql-test/suite/funcs_1/include/cleanup.inc Xmysql-test/suite/funcs_1/include/innodb_tb1.inc Xmysql-test/suite/funcs_1/include/innodb_tb2.inc Xmysql-test/suite/funcs_1/include/innodb_tb3.inc Xmysql-test/suite/funcs_1/include/innodb_tb4.inc Xmysql-test/suite/funcs_1/include/memory_tb1.inc Xmysql-test/suite/funcs_1/include/memory_tb2.inc Xmysql-test/suite/funcs_1/include/memory_tb3.inc Xmysql-test/suite/funcs_1/include/memory_tb4.inc Xmysql-test/suite/funcs_1/include/myisam_tb1.inc Xmysql-test/suite/funcs_1/include/myisam_tb2.inc Xmysql-test/suite/funcs_1/include/myisam_tb3.inc Xmysql-test/suite/funcs_1/include/myisam_tb4.inc Xmysql-test/suite/funcs_1/include/ndb_tb1.inc Xmysql-test/suite/funcs_1/include/ndb_tb2.inc Xmysql-test/suite/funcs_1/include/ndb_tb3.inc Xmysql-test/suite/funcs_1/include/ndb_tb4.inc Xmysql-test/suite/funcs_1/include/show_connection.inc Xmysql-test/suite/funcs_1/include/sp_tb.inc Xmysql-test/suite/funcs_1/include/tb3.inc Xmysql-test/suite/funcs_1/lib/DataGen_local.pl Xmysql-test/suite/funcs_1/lib/DataGen_modify.pl Xmysql-test/suite/funcs_1/r/charset_collation_1.result Xmysql-test/suite/funcs_1/r/charset_collation_2.result Xmysql-test/suite/funcs_1/r/charset_collation_3.result Xmysql-test/suite/funcs_1/r/innodb_bitdata.result Xmysql-test/suite/funcs_1/r/innodb_cursors.result Xmysql-test/suite/funcs_1/r/innodb_func_view.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_02.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_03.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_06.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_07.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_08.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_10.result Xmysql-test/suite/funcs_1/r/innodb_trig_0102.result Xmysql-test/suite/funcs_1/r/innodb_trig_03.result Xmysql-test/suite/funcs_1/r/innodb_trig_03e.result Xmysql-test/suite/funcs_1/r/innodb_trig_0407.result Xmysql-test/suite/funcs_1/r/innodb_trig_08.result Xmysql-test/suite/funcs_1/r/innodb_trig_09.result Xmysql-test/suite/funcs_1/r/innodb_trig_1011ext.result Xmysql-test/suite/funcs_1/r/innodb_trig_frkey.result Xmysql-test/suite/funcs_1/r/innodb_views.result Xmysql-test/suite/funcs_1/r/is_basics_mixed.result Xmysql-test/suite/funcs_1/r/is_character_sets.result Xmysql-test/suite/funcs_1/r/is_cml_innodb.result Xmysql-test/suite/funcs_1/r/is_cml_memory.result Xmysql-test/suite/funcs_1/r/is_cml_myisam.result Xmysql-test/suite/funcs_1/r/is_cml_ndb.result Xmysql-test/suite/funcs_1/r/is_coll_char_set_appl.result Xmysql-test/suite/funcs_1/r/is_collations.result Xmysql-test/suite/funcs_1/r/is_column_privileges.result Xmysql-test/suite/funcs_1/r/is_column_privileges_is_mysql_test.result Xmysql-test/suite/funcs_1/r/is_columns.result Xmysql-test/suite/funcs_1/r/is_columns_innodb.result Xmysql-test/suite/funcs_1/r/is_columns_is.result Xmysql-test/suite/funcs_1/r/is_columns_is_embedded.result Xmysql-test/suite/funcs_1/r/is_columns_memory.result Xmysql-test/suite/funcs_1/r/is_columns_myisam.result Xmysql-test/suite/funcs_1/r/is_columns_myisam_embedded.result Xmysql-test/suite/funcs_1/r/is_columns_mysql.result Xmysql-test/suite/funcs_1/r/is_columns_mysql_embedded.result Xmysql-test/suite/funcs_1/r/is_columns_ndb.result Xmysql-test/suite/funcs_1/r/is_engines.result Xmysql-test/suite/funcs_1/r/is_engines_archive.result Xmysql-test/suite/funcs_1/r/is_engines_blackhole.result Xmysql-test/suite/funcs_1/r/is_engines_csv.result Xmysql-test/suite/funcs_1/r/is_engines_federated.result Xmysql-test/suite/funcs_1/r/is_engines_innodb.result Xmysql-test/suite/funcs_1/r/is_engines_memory.result Xmysql-test/suite/funcs_1/r/is_engines_merge.result Xmysql-test/suite/funcs_1/r/is_engines_myisam.result Xmysql-test/suite/funcs_1/r/is_engines_ndb.result Xmysql-test/suite/funcs_1/r/is_events.result Xmysql-test/suite/funcs_1/r/is_key_column_usage.result Xmysql-test/suite/funcs_1/r/is_key_column_usage_embedded.result Xmysql-test/suite/funcs_1/r/is_routines.result Xmysql-test/suite/funcs_1/r/is_routines_embedded.result Xmysql-test/suite/funcs_1/r/is_schema_privileges.result Xmysql-test/suite/funcs_1/r/is_schema_privileges_is_mysql_test.result Xmysql-test/suite/funcs_1/r/is_schemata.result Xmysql-test/suite/funcs_1/r/is_schemata_embedded.result Xmysql-test/suite/funcs_1/r/is_schemata_is_mysql_test.result Xmysql-test/suite/funcs_1/r/is_statistics.result Xmysql-test/suite/funcs_1/r/is_statistics_is.result Xmysql-test/suite/funcs_1/r/is_statistics_mysql.result Xmysql-test/suite/funcs_1/r/is_statistics_mysql_embedded.result Xmysql-test/suite/funcs_1/r/is_table_constraints.result Xmysql-test/suite/funcs_1/r/is_table_constraints_is.result Xmysql-test/suite/funcs_1/r/is_table_constraints_mysql.result Xmysql-test/suite/funcs_1/r/is_table_constraints_mysql_embedded.result Xmysql-test/suite/funcs_1/r/is_table_privileges.result Xmysql-test/suite/funcs_1/r/is_tables.result Xmysql-test/suite/funcs_1/r/is_tables_embedded.result Xmysql-test/suite/funcs_1/r/is_tables_innodb.result Xmysql-test/suite/funcs_1/r/is_tables_is.result Xmysql-test/suite/funcs_1/r/is_tables_memory.result Xmysql-test/suite/funcs_1/r/is_tables_myisam.result Xmysql-test/suite/funcs_1/r/is_tables_myisam_embedded.result Xmysql-test/suite/funcs_1/r/is_tables_mysql.result Xmysql-test/suite/funcs_1/r/is_tables_mysql_embedded.result Xmysql-test/suite/funcs_1/r/is_tables_ndb.result Xmysql-test/suite/funcs_1/r/is_triggers.result Xmysql-test/suite/funcs_1/r/is_triggers_embedded.result Xmysql-test/suite/funcs_1/r/is_user_privileges.result Xmysql-test/suite/funcs_1/r/is_views.result Xmysql-test/suite/funcs_1/r/is_views_embedded.result Xmysql-test/suite/funcs_1/r/memory_bitdata.result Xmysql-test/suite/funcs_1/r/memory_cursors.result Xmysql-test/suite/funcs_1/r/memory_func_view.result Xmysql-test/suite/funcs_1/r/memory_storedproc_02.result Xmysql-test/suite/funcs_1/r/memory_storedproc_03.result Xmysql-test/suite/funcs_1/r/memory_storedproc_06.result Xmysql-test/suite/funcs_1/r/memory_storedproc_07.result Xmysql-test/suite/funcs_1/r/memory_storedproc_08.result Xmysql-test/suite/funcs_1/r/memory_storedproc_10.result Xmysql-test/suite/funcs_1/r/memory_trig_0102.result Xmysql-test/suite/funcs_1/r/memory_trig_03.result Xmysql-test/suite/funcs_1/r/memory_trig_03e.result Xmysql-test/suite/funcs_1/r/memory_trig_0407.result Xmysql-test/suite/funcs_1/r/memory_trig_08.result Xmysql-test/suite/funcs_1/r/memory_trig_09.result Xmysql-test/suite/funcs_1/r/memory_trig_1011ext.result Xmysql-test/suite/funcs_1/r/memory_views.result Xmysql-test/suite/funcs_1/r/myisam_bitdata.result Xmysql-test/suite/funcs_1/r/myisam_cursors.result Xmysql-test/suite/funcs_1/r/myisam_func_view.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_02.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_03.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_06.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_07.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_08.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_10.result Xmysql-test/suite/funcs_1/r/myisam_trig_0102.result Xmysql-test/suite/funcs_1/r/myisam_trig_03.result Xmysql-test/suite/funcs_1/r/myisam_trig_03e.result Xmysql-test/suite/funcs_1/r/myisam_trig_0407.result Xmysql-test/suite/funcs_1/r/myisam_trig_08.result Xmysql-test/suite/funcs_1/r/myisam_trig_09.result Xmysql-test/suite/funcs_1/r/myisam_trig_1011ext.result Xmysql-test/suite/funcs_1/r/myisam_views.result Xmysql-test/suite/funcs_1/r/ndb_bitdata.result Xmysql-test/suite/funcs_1/r/ndb_cursors.result Xmysql-test/suite/funcs_1/r/ndb_func_view.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_02.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_03.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_06.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_07.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_08.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_10.result Xmysql-test/suite/funcs_1/r/ndb_trig_0102.result Xmysql-test/suite/funcs_1/r/ndb_trig_03.result Xmysql-test/suite/funcs_1/r/ndb_trig_03e.result Xmysql-test/suite/funcs_1/r/ndb_trig_0407.result Xmysql-test/suite/funcs_1/r/ndb_trig_08.result Xmysql-test/suite/funcs_1/r/ndb_trig_09.result Xmysql-test/suite/funcs_1/r/ndb_trig_1011ext.result Xmysql-test/suite/funcs_1/r/ndb_views.result Xmysql-test/suite/funcs_1/r/processlist_priv_no_prot.result Xmysql-test/suite/funcs_1/r/processlist_priv_ps.result Xmysql-test/suite/funcs_1/r/processlist_val_no_prot.result Xmysql-test/suite/funcs_1/r/processlist_val_ps.result Xmysql-test/suite/funcs_1/r/storedproc.result Xmysql-test/suite/funcs_1/storedproc/cleanup_sp_tb.inc Xmysql-test/suite/funcs_1/storedproc/load_sp_tb.inc Xmysql-test/suite/funcs_1/storedproc/param_check.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_02.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_03.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_06.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_07.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_08.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_08_show.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_10.inc Xmysql-test/suite/funcs_1/t/charset_collation_1.test Xmysql-test/suite/funcs_1/t/charset_collation_2.test Xmysql-test/suite/funcs_1/t/charset_collation_3.test Xmysql-test/suite/funcs_1/t/disabled.def Xmysql-test/suite/funcs_1/t/innodb_bitdata.test Xmysql-test/suite/funcs_1/t/innodb_cursors.test Xmysql-test/suite/funcs_1/t/innodb_func_view.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_02.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_03.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_06.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_07.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_08.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_10.test Xmysql-test/suite/funcs_1/t/innodb_trig_0102.test Xmysql-test/suite/funcs_1/t/innodb_trig_03.test Xmysql-test/suite/funcs_1/t/innodb_trig_03e.test Xmysql-test/suite/funcs_1/t/innodb_trig_0407.test Xmysql-test/suite/funcs_1/t/innodb_trig_08.test Xmysql-test/suite/funcs_1/t/innodb_trig_09.test Xmysql-test/suite/funcs_1/t/innodb_trig_1011ext.test Xmysql-test/suite/funcs_1/t/innodb_trig_frkey.test Xmysql-test/suite/funcs_1/t/innodb_views.test Xmysql-test/suite/funcs_1/t/is_basics_mixed.test Xmysql-test/suite/funcs_1/t/is_character_sets.test Xmysql-test/suite/funcs_1/t/is_cml_innodb.test Xmysql-test/suite/funcs_1/t/is_cml_memory.test Xmysql-test/suite/funcs_1/t/is_cml_myisam.test Xmysql-test/suite/funcs_1/t/is_cml_ndb.test Xmysql-test/suite/funcs_1/t/is_coll_char_set_appl.test Xmysql-test/suite/funcs_1/t/is_collations.test Xmysql-test/suite/funcs_1/t/is_column_privileges.test Xmysql-test/suite/funcs_1/t/is_column_privileges_is_mysql_test.test Xmysql-test/suite/funcs_1/t/is_columns.test Xmysql-test/suite/funcs_1/t/is_columns_innodb.test Xmysql-test/suite/funcs_1/t/is_columns_is.test Xmysql-test/suite/funcs_1/t/is_columns_is_embedded.test Xmysql-test/suite/funcs_1/t/is_columns_memory.test Xmysql-test/suite/funcs_1/t/is_columns_myisam.test Xmysql-test/suite/funcs_1/t/is_columns_myisam_embedded.test Xmysql-test/suite/funcs_1/t/is_columns_mysql.test Xmysql-test/suite/funcs_1/t/is_columns_mysql_embedded.test Xmysql-test/suite/funcs_1/t/is_columns_ndb.test Xmysql-test/suite/funcs_1/t/is_engines.test Xmysql-test/suite/funcs_1/t/is_engines_archive.test Xmysql-test/suite/funcs_1/t/is_engines_blackhole.test Xmysql-test/suite/funcs_1/t/is_engines_csv.test Xmysql-test/suite/funcs_1/t/is_engines_federated.test Xmysql-test/suite/funcs_1/t/is_engines_innodb.test Xmysql-test/suite/funcs_1/t/is_engines_memory.test Xmysql-test/suite/funcs_1/t/is_engines_merge.test Xmysql-test/suite/funcs_1/t/is_engines_myisam.test Xmysql-test/suite/funcs_1/t/is_engines_ndb.test Xmysql-test/suite/funcs_1/t/is_events.test Xmysql-test/suite/funcs_1/t/is_key_column_usage.test Xmysql-test/suite/funcs_1/t/is_key_column_usage_embedded.test Xmysql-test/suite/funcs_1/t/is_routines.test Xmysql-test/suite/funcs_1/t/is_routines_embedded.test Xmysql-test/suite/funcs_1/t/is_schema_privileges.test Xmysql-test/suite/funcs_1/t/is_schema_privileges_is_mysql_test.test Xmysql-test/suite/funcs_1/t/is_schemata.test Xmysql-test/suite/funcs_1/t/is_schemata_embedded.test Xmysql-test/suite/funcs_1/t/is_schemata_is_mysql_test.test Xmysql-test/suite/funcs_1/t/is_statistics.test Xmysql-test/suite/funcs_1/t/is_statistics_is.test Xmysql-test/suite/funcs_1/t/is_statistics_mysql.test Xmysql-test/suite/funcs_1/t/is_statistics_mysql_embedded.test Xmysql-test/suite/funcs_1/t/is_table_constraints.test Xmysql-test/suite/funcs_1/t/is_table_constraints_is.test Xmysql-test/suite/funcs_1/t/is_table_constraints_mysql.test Xmysql-test/suite/funcs_1/t/is_table_constraints_mysql_embedded.test Xmysql-test/suite/funcs_1/t/is_table_privileges.test Xmysql-test/suite/funcs_1/t/is_tables.test Xmysql-test/suite/funcs_1/t/is_tables_embedded.test Xmysql-test/suite/funcs_1/t/is_tables_innodb.test Xmysql-test/suite/funcs_1/t/is_tables_is.test Xmysql-test/suite/funcs_1/t/is_tables_memory.test Xmysql-test/suite/funcs_1/t/is_tables_myisam.test Xmysql-test/suite/funcs_1/t/is_tables_myisam_embedded.test Xmysql-test/suite/funcs_1/t/is_tables_mysql.test Xmysql-test/suite/funcs_1/t/is_tables_mysql_embedded.test Xmysql-test/suite/funcs_1/t/is_tables_ndb.test Xmysql-test/suite/funcs_1/t/is_triggers.test Xmysql-test/suite/funcs_1/t/is_triggers_embedded.test Xmysql-test/suite/funcs_1/t/is_user_privileges.test Xmysql-test/suite/funcs_1/t/is_views.test Xmysql-test/suite/funcs_1/t/is_views_embedded.test Xmysql-test/suite/funcs_1/t/memory_bitdata.test Xmysql-test/suite/funcs_1/t/memory_cursors.test Xmysql-test/suite/funcs_1/t/memory_func_view.test Xmysql-test/suite/funcs_1/t/memory_storedproc_02.test Xmysql-test/suite/funcs_1/t/memory_storedproc_03.test Xmysql-test/suite/funcs_1/t/memory_storedproc_06.test Xmysql-test/suite/funcs_1/t/memory_storedproc_07.test Xmysql-test/suite/funcs_1/t/memory_storedproc_08.test Xmysql-test/suite/funcs_1/t/memory_storedproc_10.test Xmysql-test/suite/funcs_1/t/memory_trig_0102.test Xmysql-test/suite/funcs_1/t/memory_trig_03.test Xmysql-test/suite/funcs_1/t/memory_trig_03e.test Xmysql-test/suite/funcs_1/t/memory_trig_0407.test Xmysql-test/suite/funcs_1/t/memory_trig_08.test Xmysql-test/suite/funcs_1/t/memory_trig_09.test Xmysql-test/suite/funcs_1/t/memory_trig_1011ext.test Xmysql-test/suite/funcs_1/t/memory_views.test Xmysql-test/suite/funcs_1/t/myisam_bitdata.test Xmysql-test/suite/funcs_1/t/myisam_cursors.test Xmysql-test/suite/funcs_1/t/myisam_func_view.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_02.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_03.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_06.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_07.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_08.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_10.test Xmysql-test/suite/funcs_1/t/myisam_trig_0102.test Xmysql-test/suite/funcs_1/t/myisam_trig_03.test Xmysql-test/suite/funcs_1/t/myisam_trig_03e.test Xmysql-test/suite/funcs_1/t/myisam_trig_0407.test Xmysql-test/suite/funcs_1/t/myisam_trig_08.test Xmysql-test/suite/funcs_1/t/myisam_trig_09.test Xmysql-test/suite/funcs_1/t/myisam_trig_1011ext.test Xmysql-test/suite/funcs_1/t/myisam_views.test Xmysql-test/suite/funcs_1/t/ndb_bitdata.test Xmysql-test/suite/funcs_1/t/ndb_cursors.test Xmysql-test/suite/funcs_1/t/ndb_func_view.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_02.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_03.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_06.tes Xmysql-test/suite/funcs_1/t/ndb_storedproc_06.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_07.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_08.tes Xmysql-test/suite/funcs_1/t/ndb_storedproc_08.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_10.test Xmysql-test/suite/funcs_1/t/ndb_trig_0102.test Xmysql-test/suite/funcs_1/t/ndb_trig_03.test Xmysql-test/suite/funcs_1/t/ndb_trig_03e.test Xmysql-test/suite/funcs_1/t/ndb_trig_0407.test Xmysql-test/suite/funcs_1/t/ndb_trig_08.test Xmysql-test/suite/funcs_1/t/ndb_trig_09.test Xmysql-test/suite/funcs_1/t/ndb_trig_1011ext.test Xmysql-test/suite/funcs_1/t/ndb_views.test Xmysql-test/suite/funcs_1/t/processlist_priv_no_prot.test Xmysql-test/suite/funcs_1/t/processlist_priv_ps.test Xmysql-test/suite/funcs_1/t/processlist_val_no_prot.test Xmysql-test/suite/funcs_1/t/processlist_val_ps.test Xmysql-test/suite/funcs_1/t/storedproc.test Xmysql-test/suite/funcs_1/t/suite.opt Xmysql-test/suite/funcs_1/triggers/trig_frkey.inc Xmysql-test/suite/funcs_1/triggers/trig_frkey2.inc Xmysql-test/suite/funcs_1/triggers/triggers_0102.inc Xmysql-test/suite/funcs_1/triggers/triggers_03.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_columns.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_db_level.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_db_table_mix.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_definer.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_global_db_mix.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_prepare.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_table_level.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_transaction.inc Xmysql-test/suite/funcs_1/triggers/triggers_0407.inc Xmysql-test/suite/funcs_1/triggers/triggers_08.inc Xmysql-test/suite/funcs_1/triggers/triggers_09.inc Xmysql-test/suite/funcs_1/triggers/triggers_1011ext.inc Xmysql-test/suite/funcs_1/views/func_view.inc Xmysql-test/suite/funcs_1/views/fv1.inc Xmysql-test/suite/funcs_1/views/fv2.inc Xmysql-test/suite/funcs_1/views/fv_cast.inc Xmysql-test/suite/funcs_1/views/fv_if1.inc Xmysql-test/suite/funcs_1/views/fv_if2.inc Xmysql-test/suite/funcs_1/views/fv_ifnull.inc Xmysql-test/suite/funcs_1/views/views_master.inc Xmysql-test/suite/funcs_2/charset/charset_master.test Xmysql-test/suite/funcs_2/data/charset_utf8.txt Xmysql-test/suite/funcs_2/include/check_charset.inc Xmysql-test/suite/funcs_2/include/check_charset_ucs2.inc Xmysql-test/suite/funcs_2/include/check_charset_utf8.inc Xmysql-test/suite/funcs_2/lib/gen_charset_utf8.pl Xmysql-test/suite/funcs_2/r/innodb_charset.result Xmysql-test/suite/funcs_2/r/memory_charset.result Xmysql-test/suite/funcs_2/r/myisam_charset.result Xmysql-test/suite/funcs_2/r/ndb_charset.result Xmysql-test/suite/funcs_2/readme.txt Xmysql-test/suite/funcs_2/t/disabled.def Xmysql-test/suite/funcs_2/t/innodb_charset.test Xmysql-test/suite/funcs_2/t/memory_charset.test Xmysql-test/suite/funcs_2/t/myisam_charset.test Xmysql-test/suite/funcs_2/t/ndb_charset.test Xmysql-test/suite/funcs_2/t/suite.opt Xmysql-test/suite/jp/r/jp_alter_sjis.result Xmysql-test/suite/jp/r/jp_alter_ucs2.result Xmysql-test/suite/jp/r/jp_alter_ujis.result Xmysql-test/suite/jp/r/jp_alter_utf8.result Xmysql-test/suite/jp/r/jp_charlength_sjis.result Xmysql-test/suite/jp/r/jp_charlength_ucs2.result Xmysql-test/suite/jp/r/jp_charlength_ujis.result Xmysql-test/suite/jp/r/jp_charlength_utf8.result Xmysql-test/suite/jp/r/jp_charset_sjis.result Xmysql-test/suite/jp/r/jp_charset_ucs2.result Xmysql-test/suite/jp/r/jp_charset_ujis.result Xmysql-test/suite/jp/r/jp_charset_utf8.result Xmysql-test/suite/jp/r/jp_convert_sjis.result Xmysql-test/suite/jp/r/jp_convert_ucs2.result Xmysql-test/suite/jp/r/jp_convert_ujis.result Xmysql-test/suite/jp/r/jp_convert_utf8.result Xmysql-test/suite/jp/r/jp_create_db_sjis.result Xmysql-test/suite/jp/r/jp_create_db_ucs2.result Xmysql-test/suite/jp/r/jp_create_db_ujis.result Xmysql-test/suite/jp/r/jp_create_db_utf8.result Xmysql-test/suite/jp/r/jp_create_tbl_sjis.result Xmysql-test/suite/jp/r/jp_create_tbl_ucs2.result Xmysql-test/suite/jp/r/jp_create_tbl_ujis.result Xmysql-test/suite/jp/r/jp_create_tbl_utf8.result Xmysql-test/suite/jp/r/jp_enum_sjis.result Xmysql-test/suite/jp/r/jp_enum_ucs2.result Xmysql-test/suite/jp/r/jp_enum_ujis.result Xmysql-test/suite/jp/r/jp_enum_utf8.result Xmysql-test/suite/jp/r/jp_insert_sjis.result Xmysql-test/suite/jp/r/jp_insert_ucs2.result Xmysql-test/suite/jp/r/jp_insert_ujis.result Xmysql-test/suite/jp/r/jp_insert_utf8.result Xmysql-test/suite/jp/r/jp_instr_sjis.result Xmysql-test/suite/jp/r/jp_instr_ucs2.result Xmysql-test/suite/jp/r/jp_instr_ujis.result Xmysql-test/suite/jp/r/jp_instr_utf8.result Xmysql-test/suite/jp/r/jp_join_sjis.result Xmysql-test/suite/jp/r/jp_join_ucs2.result Xmysql-test/suite/jp/r/jp_join_ujis.result Xmysql-test/suite/jp/r/jp_join_utf8.result Xmysql-test/suite/jp/r/jp_left_sjis.result Xmysql-test/suite/jp/r/jp_left_ucs2.result Xmysql-test/suite/jp/r/jp_left_ujis.result Xmysql-test/suite/jp/r/jp_left_utf8.result Xmysql-test/suite/jp/r/jp_length_sjis.result Xmysql-test/suite/jp/r/jp_length_ucs2.result Xmysql-test/suite/jp/r/jp_length_ujis.result Xmysql-test/suite/jp/r/jp_length_utf8.result Xmysql-test/suite/jp/r/jp_like_sjis.result Xmysql-test/suite/jp/r/jp_like_ucs2.result Xmysql-test/suite/jp/r/jp_like_ujis.result Xmysql-test/suite/jp/r/jp_like_utf8.result Xmysql-test/suite/jp/r/jp_locate_sjis.result Xmysql-test/suite/jp/r/jp_locate_ucs2.result Xmysql-test/suite/jp/r/jp_locate_ujis.result Xmysql-test/suite/jp/r/jp_locate_utf8.result Xmysql-test/suite/jp/r/jp_lpad_sjis.result Xmysql-test/suite/jp/r/jp_lpad_ucs2.result Xmysql-test/suite/jp/r/jp_lpad_ujis.result Xmysql-test/suite/jp/r/jp_lpad_utf8.result Xmysql-test/suite/jp/r/jp_ltrim_sjis.result Xmysql-test/suite/jp/r/jp_ltrim_ucs2.result Xmysql-test/suite/jp/r/jp_ltrim_ujis.result Xmysql-test/suite/jp/r/jp_ltrim_utf8.result Xmysql-test/suite/jp/r/jp_ps_sjis.result Xmysql-test/suite/jp/r/jp_ps_ujis.result Xmysql-test/suite/jp/r/jp_replace_sjis.result Xmysql-test/suite/jp/r/jp_replace_ucs2.result Xmysql-test/suite/jp/r/jp_replace_ujis.result Xmysql-test/suite/jp/r/jp_replace_utf8.result Xmysql-test/suite/jp/r/jp_reverse_sjis.result Xmysql-test/suite/jp/r/jp_reverse_ucs2.result Xmysql-test/suite/jp/r/jp_reverse_ujis.result Xmysql-test/suite/jp/r/jp_reverse_utf8.result Xmysql-test/suite/jp/r/jp_right_sjis.result Xmysql-test/suite/jp/r/jp_right_ucs2.result Xmysql-test/suite/jp/r/jp_right_ujis.result Xmysql-test/suite/jp/r/jp_right_utf8.result Xmysql-test/suite/jp/r/jp_rpad_sjis.result Xmysql-test/suite/jp/r/jp_rpad_ucs2.result Xmysql-test/suite/jp/r/jp_rpad_ujis.result Xmysql-test/suite/jp/r/jp_rpad_utf8.result Xmysql-test/suite/jp/r/jp_rtrim_sjis.result Xmysql-test/suite/jp/r/jp_rtrim_ucs2.result Xmysql-test/suite/jp/r/jp_rtrim_ujis.result Xmysql-test/suite/jp/r/jp_rtrim_utf8.result Xmysql-test/suite/jp/r/jp_select_sjis.result Xmysql-test/suite/jp/r/jp_select_ucs2.result Xmysql-test/suite/jp/r/jp_select_ujis.result Xmysql-test/suite/jp/r/jp_select_utf8.result Xmysql-test/suite/jp/r/jp_subquery_sjis.result Xmysql-test/suite/jp/r/jp_subquery_ucs2.result Xmysql-test/suite/jp/r/jp_subquery_ujis.result Xmysql-test/suite/jp/r/jp_subquery_utf8.result Xmysql-test/suite/jp/r/jp_substring_sjis.result Xmysql-test/suite/jp/r/jp_substring_ucs2.result Xmysql-test/suite/jp/r/jp_substring_ujis.result Xmysql-test/suite/jp/r/jp_substring_utf8.result Xmysql-test/suite/jp/r/jp_trim_sjis.result Xmysql-test/suite/jp/r/jp_trim_ucs2.result Xmysql-test/suite/jp/r/jp_trim_ujis.result Xmysql-test/suite/jp/r/jp_trim_utf8.result Xmysql-test/suite/jp/r/jp_union_ujis.result Xmysql-test/suite/jp/r/jp_update_sjis.result Xmysql-test/suite/jp/r/jp_update_ucs2.result Xmysql-test/suite/jp/r/jp_update_ujis.result Xmysql-test/suite/jp/r/jp_update_utf8.result Xmysql-test/suite/jp/r/jp_where_sjis.result Xmysql-test/suite/jp/r/jp_where_ucs2.result Xmysql-test/suite/jp/r/jp_where_ujis.result Xmysql-test/suite/jp/r/jp_where_utf8.result Xmysql-test/suite/jp/std_data/jisx0201_sjis.dat Xmysql-test/suite/jp/std_data/jisx0201_ucs2.dat Xmysql-test/suite/jp/std_data/jisx0201_ujis.dat Xmysql-test/suite/jp/std_data/jisx0201_utf8.dat Xmysql-test/suite/jp/std_data/jisx0208_sjis.dat Xmysql-test/suite/jp/std_data/jisx0208_sjis2.dat Xmysql-test/suite/jp/std_data/jisx0208_sjis3.dat Xmysql-test/suite/jp/std_data/jisx0208_ucs2.dat Xmysql-test/suite/jp/std_data/jisx0208_ujis.dat Xmysql-test/suite/jp/std_data/jisx0208_utf8.dat Xmysql-test/suite/jp/std_data/jisx0212_ucs2.dat Xmysql-test/suite/jp/std_data/jisx0212_ujis.dat Xmysql-test/suite/jp/std_data/jisx0212_utf8.dat Xmysql-test/suite/jp/t/disabled.def Xmysql-test/suite/jp/t/jp_alter_sjis.test Xmysql-test/suite/jp/t/jp_alter_ucs2.test Xmysql-test/suite/jp/t/jp_alter_ujis.test Xmysql-test/suite/jp/t/jp_alter_utf8.test Xmysql-test/suite/jp/t/jp_charlength_sjis.test Xmysql-test/suite/jp/t/jp_charlength_ucs2.test Xmysql-test/suite/jp/t/jp_charlength_ujis.test Xmysql-test/suite/jp/t/jp_charlength_utf8.test Xmysql-test/suite/jp/t/jp_charset_sjis.test Xmysql-test/suite/jp/t/jp_charset_ucs2.test Xmysql-test/suite/jp/t/jp_charset_ujis.test Xmysql-test/suite/jp/t/jp_charset_utf8.test Xmysql-test/suite/jp/t/jp_convert_sjis.test Xmysql-test/suite/jp/t/jp_convert_ucs2.test Xmysql-test/suite/jp/t/jp_convert_ujis.test Xmysql-test/suite/jp/t/jp_convert_utf8.test Xmysql-test/suite/jp/t/jp_create_db_sjis.test Xmysql-test/suite/jp/t/jp_create_db_ucs2.test Xmysql-test/suite/jp/t/jp_create_db_ujis.test Xmysql-test/suite/jp/t/jp_create_db_utf8.test Xmysql-test/suite/jp/t/jp_create_tbl_sjis.test Xmysql-test/suite/jp/t/jp_create_tbl_ucs2.test Xmysql-test/suite/jp/t/jp_create_tbl_ujis.test Xmysql-test/suite/jp/t/jp_create_tbl_utf8.test Xmysql-test/suite/jp/t/jp_enum_sjis-master.opt Xmysql-test/suite/jp/t/jp_enum_sjis.test Xmysql-test/suite/jp/t/jp_enum_ucs2-master.opt Xmysql-test/suite/jp/t/jp_enum_ucs2.test Xmysql-test/suite/jp/t/jp_enum_ujis-master.opt Xmysql-test/suite/jp/t/jp_enum_ujis.test Xmysql-test/suite/jp/t/jp_enum_utf8-master.opt Xmysql-test/suite/jp/t/jp_enum_utf8.test Xmysql-test/suite/jp/t/jp_insert_sjis.test Xmysql-test/suite/jp/t/jp_insert_ucs2.test Xmysql-test/suite/jp/t/jp_insert_ujis.test Xmysql-test/suite/jp/t/jp_insert_utf8.test Xmysql-test/suite/jp/t/jp_instr_sjis.test Xmysql-test/suite/jp/t/jp_instr_ucs2.test Xmysql-test/suite/jp/t/jp_instr_ujis.test Xmysql-test/suite/jp/t/jp_instr_utf8.test Xmysql-test/suite/jp/t/jp_join_sjis.test Xmysql-test/suite/jp/t/jp_join_ucs2.test Xmysql-test/suite/jp/t/jp_join_ujis.test Xmysql-test/suite/jp/t/jp_join_utf8.test Xmysql-test/suite/jp/t/jp_left_sjis.test Xmysql-test/suite/jp/t/jp_left_ucs2.test Xmysql-test/suite/jp/t/jp_left_ujis.test Xmysql-test/suite/jp/t/jp_left_utf8.test Xmysql-test/suite/jp/t/jp_length_sjis.test Xmysql-test/suite/jp/t/jp_length_ucs2.test Xmysql-test/suite/jp/t/jp_length_ujis.test Xmysql-test/suite/jp/t/jp_length_utf8.test Xmysql-test/suite/jp/t/jp_like_sjis.test Xmysql-test/suite/jp/t/jp_like_ucs2.test Xmysql-test/suite/jp/t/jp_like_ujis.test Xmysql-test/suite/jp/t/jp_like_utf8.test Xmysql-test/suite/jp/t/jp_locate_sjis.test Xmysql-test/suite/jp/t/jp_locate_ucs2.test Xmysql-test/suite/jp/t/jp_locate_ujis.test Xmysql-test/suite/jp/t/jp_locate_utf8.test Xmysql-test/suite/jp/t/jp_lpad_sjis.test Xmysql-test/suite/jp/t/jp_lpad_ucs2.test Xmysql-test/suite/jp/t/jp_lpad_ujis.test Xmysql-test/suite/jp/t/jp_lpad_utf8.test Xmysql-test/suite/jp/t/jp_ltrim_sjis.test Xmysql-test/suite/jp/t/jp_ltrim_ucs2.test Xmysql-test/suite/jp/t/jp_ltrim_ujis.test Xmysql-test/suite/jp/t/jp_ltrim_utf8.test Xmysql-test/suite/jp/t/jp_ps_sjis.test Xmysql-test/suite/jp/t/jp_ps_ujis.test Xmysql-test/suite/jp/t/jp_replace_sjis.test Xmysql-test/suite/jp/t/jp_replace_ucs2.test Xmysql-test/suite/jp/t/jp_replace_ujis.test Xmysql-test/suite/jp/t/jp_replace_utf8.test Xmysql-test/suite/jp/t/jp_reverse_sjis.test Xmysql-test/suite/jp/t/jp_reverse_ucs2.test Xmysql-test/suite/jp/t/jp_reverse_ujis.test Xmysql-test/suite/jp/t/jp_reverse_utf8.test Xmysql-test/suite/jp/t/jp_right_sjis.test Xmysql-test/suite/jp/t/jp_right_ucs2.test Xmysql-test/suite/jp/t/jp_right_ujis.test Xmysql-test/suite/jp/t/jp_right_utf8.test Xmysql-test/suite/jp/t/jp_rpad_sjis.test Xmysql-test/suite/jp/t/jp_rpad_ucs2.test Xmysql-test/suite/jp/t/jp_rpad_ujis.test Xmysql-test/suite/jp/t/jp_rpad_utf8.test Xmysql-test/suite/jp/t/jp_rtrim_sjis.test Xmysql-test/suite/jp/t/jp_rtrim_ucs2.test Xmysql-test/suite/jp/t/jp_rtrim_ujis.test Xmysql-test/suite/jp/t/jp_rtrim_utf8.test Xmysql-test/suite/jp/t/jp_select_sjis.test Xmysql-test/suite/jp/t/jp_select_ucs2.test Xmysql-test/suite/jp/t/jp_select_ujis.test Xmysql-test/suite/jp/t/jp_select_utf8.test Xmysql-test/suite/jp/t/jp_subquery_sjis.test Xmysql-test/suite/jp/t/jp_subquery_ucs2.test Xmysql-test/suite/jp/t/jp_subquery_ujis.test Xmysql-test/suite/jp/t/jp_subquery_utf8.test Xmysql-test/suite/jp/t/jp_substring_sjis.test Xmysql-test/suite/jp/t/jp_substring_ucs2.test Xmysql-test/suite/jp/t/jp_substring_ujis.test Xmysql-test/suite/jp/t/jp_substring_utf8.test Xmysql-test/suite/jp/t/jp_trim_sjis.test Xmysql-test/suite/jp/t/jp_trim_ucs2.test Xmysql-test/suite/jp/t/jp_trim_ujis.test Xmysql-test/suite/jp/t/jp_trim_utf8.test Xmysql-test/suite/jp/t/jp_union_ujis.test Xmysql-test/suite/jp/t/jp_update_sjis.test Xmysql-test/suite/jp/t/jp_update_ucs2.test Xmysql-test/suite/jp/t/jp_update_ujis.test Xmysql-test/suite/jp/t/jp_update_utf8.test Xmysql-test/suite/jp/t/jp_where_sjis.test Xmysql-test/suite/jp/t/jp_where_ucs2.test Xmysql-test/suite/jp/t/jp_where_ujis.test Xmysql-test/suite/jp/t/jp_where_utf8.test Xmysql-test/suite/manual/r/rpl_replication_delay.result Xmysql-test/suite/manual/t/rpl_replication_delay-slave.opt Xmysql-test/suite/manual/t/rpl_replication_delay.test Xmysql-test/suite/ndb/my.cnf Xmysql-test/suite/ndb/r/loaddata_autocom_ndb.result Xmysql-test/suite/ndb/r/ndb_alter_table.result Xmysql-test/suite/ndb/r/ndb_alter_table2.result Xmysql-test/suite/ndb/r/ndb_alter_table3.result Xmysql-test/suite/ndb/r/ndb_auto_increment.result Xmysql-test/suite/ndb/r/ndb_autoinc.result Xmysql-test/suite/ndb/r/ndb_basic.result Xmysql-test/suite/ndb/r/ndb_binlog_basic.result Xmysql-test/suite/ndb/r/ndb_binlog_ddl_multi.result Xmysql-test/suite/ndb/r/ndb_binlog_discover.result Xmysql-test/suite/ndb/r/ndb_binlog_format.result Xmysql-test/suite/ndb/r/ndb_binlog_ignore_db.result Xmysql-test/suite/ndb/r/ndb_binlog_log_bin.result Xmysql-test/suite/ndb/r/ndb_binlog_multi.result Xmysql-test/suite/ndb/r/ndb_bitfield.result Xmysql-test/suite/ndb/r/ndb_blob.result Xmysql-test/suite/ndb/r/ndb_blob_partition.result Xmysql-test/suite/ndb/r/ndb_bug26793.result Xmysql-test/suite/ndb/r/ndb_bug31477.result Xmysql-test/suite/ndb/r/ndb_cache.result Xmysql-test/suite/ndb/r/ndb_cache2.result Xmysql-test/suite/ndb/r/ndb_cache_multi.result Xmysql-test/suite/ndb/r/ndb_cache_multi2.result Xmysql-test/suite/ndb/r/ndb_charset.result Xmysql-test/suite/ndb/r/ndb_condition_pushdown.result Xmysql-test/suite/ndb/r/ndb_config.result Xmysql-test/suite/ndb/r/ndb_config2.result Xmysql-test/suite/ndb/r/ndb_cursor.result Xmysql-test/suite/ndb/r/ndb_database.result Xmysql-test/suite/ndb/r/ndb_dd_alter.result Xmysql-test/suite/ndb/r/ndb_dd_basic.result Xmysql-test/suite/ndb/r/ndb_dd_ddl.result Xmysql-test/suite/ndb/r/ndb_dd_disk2memory.result Xmysql-test/suite/ndb/r/ndb_dd_dump.result Xmysql-test/suite/ndb/r/ndb_dd_sql_features.result Xmysql-test/suite/ndb/r/ndb_gis.result Xmysql-test/suite/ndb/r/ndb_grant.result Xmysql-test/suite/ndb/r/ndb_index.result Xmysql-test/suite/ndb/r/ndb_index_ordered.result Xmysql-test/suite/ndb/r/ndb_index_unique.result Xmysql-test/suite/ndb/r/ndb_insert.result Xmysql-test/suite/ndb/r/ndb_limit.result Xmysql-test/suite/ndb/r/ndb_load.result Xmysql-test/suite/ndb/r/ndb_loaddatalocal.result Xmysql-test/suite/ndb/r/ndb_lock.result Xmysql-test/suite/ndb/r/ndb_lock_table.result Xmysql-test/suite/ndb/r/ndb_minmax.result Xmysql-test/suite/ndb/r/ndb_multi.result Xmysql-test/suite/ndb/r/ndb_multi_row.result Xmysql-test/suite/ndb/r/ndb_partition_error.result Xmysql-test/suite/ndb/r/ndb_partition_error2.result Xmysql-test/suite/ndb/r/ndb_partition_key.result Xmysql-test/suite/ndb/r/ndb_partition_list.result Xmysql-test/suite/ndb/r/ndb_partition_range.result Xmysql-test/suite/ndb/r/ndb_read_multi_range.result Xmysql-test/suite/ndb/r/ndb_rename.result Xmysql-test/suite/ndb/r/ndb_replace.result Xmysql-test/suite/ndb/r/ndb_restore.result Xmysql-test/suite/ndb/r/ndb_restore_compat.result Xmysql-test/suite/ndb/r/ndb_restore_different_endian_data.result Xmysql-test/suite/ndb/r/ndb_restore_partition.result Xmysql-test/suite/ndb/r/ndb_restore_print.result Xmysql-test/suite/ndb/r/ndb_row_format.result Xmysql-test/suite/ndb/r/ndb_single_user.result Xmysql-test/suite/ndb/r/ndb_sp.result Xmysql-test/suite/ndb/r/ndb_subquery.result Xmysql-test/suite/ndb/r/ndb_temporary.result Xmysql-test/suite/ndb/r/ndb_transaction.result Xmysql-test/suite/ndb/r/ndb_trigger.result Xmysql-test/suite/ndb/r/ndb_truncate.result Xmysql-test/suite/ndb/r/ndb_types.result Xmysql-test/suite/ndb/r/ndb_update.result Xmysql-test/suite/ndb/r/ndb_update_no_read.result Xmysql-test/suite/ndb/r/ndb_view.result Xmysql-test/suite/ndb/r/ndbapi.result Xmysql-test/suite/ndb/r/ps_7ndb.result Xmysql-test/suite/ndb/r/strict_autoinc_5ndb.result Xmysql-test/suite/ndb/t/disabled.def Xmysql-test/suite/ndb/t/loaddata_autocom_ndb.test Xmysql-test/suite/ndb/t/ndb_alter_table.test Xmysql-test/suite/ndb/t/ndb_alter_table2.test Xmysql-test/suite/ndb/t/ndb_alter_table3.test Xmysql-test/suite/ndb/t/ndb_auto_increment.test Xmysql-test/suite/ndb/t/ndb_autoinc.test Xmysql-test/suite/ndb/t/ndb_basic.test Xmysql-test/suite/ndb/t/ndb_binlog_basic.test Xmysql-test/suite/ndb/t/ndb_binlog_ddl_multi.test Xmysql-test/suite/ndb/t/ndb_binlog_discover.test Xmysql-test/suite/ndb/t/ndb_binlog_format.test Xmysql-test/suite/ndb/t/ndb_binlog_ignore_db-master.opt Xmysql-test/suite/ndb/t/ndb_binlog_ignore_db.test Xmysql-test/suite/ndb/t/ndb_binlog_log_bin.test Xmysql-test/suite/ndb/t/ndb_binlog_multi.test Xmysql-test/suite/ndb/t/ndb_bitfield.test Xmysql-test/suite/ndb/t/ndb_blob.test Xmysql-test/suite/ndb/t/ndb_blob_partition.test Xmysql-test/suite/ndb/t/ndb_bug26793.test Xmysql-test/suite/ndb/t/ndb_bug31477.test Xmysql-test/suite/ndb/t/ndb_cache.test Xmysql-test/suite/ndb/t/ndb_cache2.test Xmysql-test/suite/ndb/t/ndb_cache_multi.test Xmysql-test/suite/ndb/t/ndb_cache_multi2.test Xmysql-test/suite/ndb/t/ndb_charset.test Xmysql-test/suite/ndb/t/ndb_condition_pushdown.test Xmysql-test/suite/ndb/t/ndb_config.test Xmysql-test/suite/ndb/t/ndb_config2.test Xmysql-test/suite/ndb/t/ndb_cursor.test Xmysql-test/suite/ndb/t/ndb_database.test Xmysql-test/suite/ndb/t/ndb_dd_alter.test Xmysql-test/suite/ndb/t/ndb_dd_basic.test Xmysql-test/suite/ndb/t/ndb_dd_ddl.test Xmysql-test/suite/ndb/t/ndb_dd_disk2memory.test Xmysql-test/suite/ndb/t/ndb_dd_dump.test Xmysql-test/suite/ndb/t/ndb_dd_sql_features.test Xmysql-test/suite/ndb/t/ndb_gis.test Xmysql-test/suite/ndb/t/ndb_grant.later Xmysql-test/suite/ndb/t/ndb_index.test Xmysql-test/suite/ndb/t/ndb_index_ordered.test Xmysql-test/suite/ndb/t/ndb_index_unique.test Xmysql-test/suite/ndb/t/ndb_insert.test Xmysql-test/suite/ndb/t/ndb_limit.test Xmysql-test/suite/ndb/t/ndb_load.test Xmysql-test/suite/ndb/t/ndb_loaddatalocal.test Xmysql-test/suite/ndb/t/ndb_lock.test Xmysql-test/suite/ndb/t/ndb_lock_table.test Xmysql-test/suite/ndb/t/ndb_minmax.test Xmysql-test/suite/ndb/t/ndb_multi.test Xmysql-test/suite/ndb/t/ndb_multi_row.test Xmysql-test/suite/ndb/t/ndb_partition_error.test Xmysql-test/suite/ndb/t/ndb_partition_error2-master.opt Xmysql-test/suite/ndb/t/ndb_partition_error2.test Xmysql-test/suite/ndb/t/ndb_partition_key.test Xmysql-test/suite/ndb/t/ndb_partition_list.test Xmysql-test/suite/ndb/t/ndb_partition_range.test Xmysql-test/suite/ndb/t/ndb_read_multi_range.test Xmysql-test/suite/ndb/t/ndb_rename.test Xmysql-test/suite/ndb/t/ndb_replace.test Xmysql-test/suite/ndb/t/ndb_restore.test Xmysql-test/suite/ndb/t/ndb_restore_compat.test Xmysql-test/suite/ndb/t/ndb_restore_different_endian_data.test Xmysql-test/suite/ndb/t/ndb_restore_partition-master.opt Xmysql-test/suite/ndb/t/ndb_restore_partition.test Xmysql-test/suite/ndb/t/ndb_restore_print.test Xmysql-test/suite/ndb/t/ndb_row_format.test Xmysql-test/suite/ndb/t/ndb_single_user.test Xmysql-test/suite/ndb/t/ndb_sp.test Xmysql-test/suite/ndb/t/ndb_subquery.test Xmysql-test/suite/ndb/t/ndb_temporary.test Xmysql-test/suite/ndb/t/ndb_transaction.test Xmysql-test/suite/ndb/t/ndb_trigger.test Xmysql-test/suite/ndb/t/ndb_truncate.test Xmysql-test/suite/ndb/t/ndb_types.test Xmysql-test/suite/ndb/t/ndb_update.test Xmysql-test/suite/ndb/t/ndb_update_no_read.test Xmysql-test/suite/ndb/t/ndb_view.test Xmysql-test/suite/ndb/t/ndbapi.test Xmysql-test/suite/ndb/t/ps_7ndb.test Xmysql-test/suite/ndb/t/strict_autoinc_5ndb.test Xmysql-test/suite/ndb_team/r/ndb_autodiscover.result Xmysql-test/suite/ndb_team/r/ndb_autodiscover2.result Xmysql-test/suite/ndb_team/r/ndb_autodiscover3.result Xmysql-test/suite/ndb_team/r/ndb_backup_print.result Xmysql-test/suite/ndb_team/r/ndb_dd_backuprestore.result Xmysql-test/suite/ndb_team/r/rpl_ndb_dd_advance.result Xmysql-test/suite/ndb_team/r/rpl_ndb_extraColMaster.result Xmysql-test/suite/ndb_team/r/rpl_ndb_mix_innodb.result Xmysql-test/suite/ndb_team/t/disabled.def Xmysql-test/suite/ndb_team/t/ndb_autodiscover.test Xmysql-test/suite/ndb_team/t/ndb_autodiscover2-master.opt Xmysql-test/suite/ndb_team/t/ndb_autodiscover2.test Xmysql-test/suite/ndb_team/t/ndb_autodiscover3.test Xmysql-test/suite/ndb_team/t/ndb_backup_print.test Xmysql-test/suite/ndb_team/t/ndb_dd_backuprestore.test Xmysql-test/suite/ndb_team/t/rpl_ndb_dd_advance.test Xmysql-test/suite/ndb_team/t/rpl_ndb_extraColMaster.test Xmysql-test/suite/ndb_team/t/rpl_ndb_mix_innodb-master.opt Xmysql-test/suite/ndb_team/t/rpl_ndb_mix_innodb.test Xmysql-test/suite/parts/inc/methods1.inc Xmysql-test/suite/parts/inc/part_blocked_sql_funcs_main.inc Xmysql-test/suite/parts/inc/part_supported_sql_funcs_delete.inc Xmysql-test/suite/parts/inc/part_supported_sql_funcs_main.inc Xmysql-test/suite/parts/inc/partition.pre Xmysql-test/suite/parts/inc/partition_10.inc Xmysql-test/suite/parts/inc/partition_11.inc Xmysql-test/suite/parts/inc/partition_12.inc Xmysql-test/suite/parts/inc/partition_20.inc Xmysql-test/suite/parts/inc/partition_alter1_1.inc Xmysql-test/suite/parts/inc/partition_alter1_1_2.inc Xmysql-test/suite/parts/inc/partition_alter1_2.inc Xmysql-test/suite/parts/inc/partition_alter2_1.inc Xmysql-test/suite/parts/inc/partition_alter2_2.inc Xmysql-test/suite/parts/inc/partition_alter3.inc Xmysql-test/suite/parts/inc/partition_alter4.inc Xmysql-test/suite/parts/inc/partition_alter_1.inc Xmysql-test/suite/parts/inc/partition_alter_11.inc Xmysql-test/suite/parts/inc/partition_alter_13.inc Xmysql-test/suite/parts/inc/partition_alter_41.inc Xmysql-test/suite/parts/inc/partition_auto_increment.inc Xmysql-test/suite/parts/inc/partition_basic.inc Xmysql-test/suite/parts/inc/partition_basic_symlink.inc Xmysql-test/suite/parts/inc/partition_bigint.inc Xmysql-test/suite/parts/inc/partition_binary.inc Xmysql-test/suite/parts/inc/partition_bit.inc Xmysql-test/suite/parts/inc/partition_blob.inc Xmysql-test/suite/parts/inc/partition_blocked_sql_funcs.inc Xmysql-test/suite/parts/inc/partition_char.inc Xmysql-test/suite/parts/inc/partition_check.inc Xmysql-test/suite/parts/inc/partition_check_drop.inc Xmysql-test/suite/parts/inc/partition_check_read.inc Xmysql-test/suite/parts/inc/partition_check_read1.inc Xmysql-test/suite/parts/inc/partition_check_read2.inc Xmysql-test/suite/parts/inc/partition_cleanup.inc Xmysql-test/suite/parts/inc/partition_date.inc Xmysql-test/suite/parts/inc/partition_datetime.inc Xmysql-test/suite/parts/inc/partition_decimal.inc Xmysql-test/suite/parts/inc/partition_directory.inc Xmysql-test/suite/parts/inc/partition_double.inc Xmysql-test/suite/parts/inc/partition_engine.inc Xmysql-test/suite/parts/inc/partition_enum.inc Xmysql-test/suite/parts/inc/partition_float.inc Xmysql-test/suite/parts/inc/partition_int.inc Xmysql-test/suite/parts/inc/partition_key_16col.inc Xmysql-test/suite/parts/inc/partition_key_32col.inc Xmysql-test/suite/parts/inc/partition_key_4col.inc Xmysql-test/suite/parts/inc/partition_key_8col.inc Xmysql-test/suite/parts/inc/partition_layout.inc Xmysql-test/suite/parts/inc/partition_layout_check1.inc Xmysql-test/suite/parts/inc/partition_layout_check2.inc Xmysql-test/suite/parts/inc/partition_mediumint.inc Xmysql-test/suite/parts/inc/partition_methods1.inc Xmysql-test/suite/parts/inc/partition_methods2.inc Xmysql-test/suite/parts/inc/partition_mgm.inc Xmysql-test/suite/parts/inc/partition_set.inc Xmysql-test/suite/parts/inc/partition_smallint.inc Xmysql-test/suite/parts/inc/partition_supported_sql_funcs.inc Xmysql-test/suite/parts/inc/partition_syntax.inc Xmysql-test/suite/parts/inc/partition_syntax_1.inc Xmysql-test/suite/parts/inc/partition_syntax_2.inc Xmysql-test/suite/parts/inc/partition_text.inc Xmysql-test/suite/parts/inc/partition_time.inc Xmysql-test/suite/parts/inc/partition_timestamp.inc Xmysql-test/suite/parts/inc/partition_tinyint.inc Xmysql-test/suite/parts/inc/partition_trigg1.inc Xmysql-test/suite/parts/inc/partition_trigg2.inc Xmysql-test/suite/parts/inc/partition_trigg3.inc Xmysql-test/suite/parts/inc/partition_value.inc Xmysql-test/suite/parts/inc/partition_varbinary.inc Xmysql-test/suite/parts/inc/partition_varchar.inc Xmysql-test/suite/parts/inc/partition_year.inc Xmysql-test/suite/parts/r/ndb_dd_backuprestore.result Xmysql-test/suite/parts/r/part_blocked_sql_func_innodb.result Xmysql-test/suite/parts/r/part_blocked_sql_func_myisam.result Xmysql-test/suite/parts/r/part_supported_sql_func_innodb.result Xmysql-test/suite/parts/r/part_supported_sql_func_myisam.result Xmysql-test/suite/parts/r/part_supported_sql_func_ndb.result Xmysql-test/suite/parts/r/partition_alter1_1_2_innodb.result Xmysql-test/suite/parts/r/partition_alter1_1_2_myisam.result Xmysql-test/suite/parts/r/partition_alter1_1_2_ndb.result Xmysql-test/suite/parts/r/partition_alter1_1_innodb.result Xmysql-test/suite/parts/r/partition_alter1_1_myisam.result Xmysql-test/suite/parts/r/partition_alter1_1_ndb.result Xmysql-test/suite/parts/r/partition_alter1_2_innodb.result Xmysql-test/suite/parts/r/partition_alter1_2_myisam.result Xmysql-test/suite/parts/r/partition_alter1_2_ndb.result Xmysql-test/suite/parts/r/partition_alter2_1_innodb.result Xmysql-test/suite/parts/r/partition_alter2_1_myisam.result Xmysql-test/suite/parts/r/partition_alter2_2_innodb.result Xmysql-test/suite/parts/r/partition_alter2_2_myisam.result Xmysql-test/suite/parts/r/partition_alter3_innodb.result Xmysql-test/suite/parts/r/partition_alter3_myisam.result Xmysql-test/suite/parts/r/partition_alter4_innodb.result Xmysql-test/suite/parts/r/partition_alter4_myisam.result Xmysql-test/suite/parts/r/partition_auto_increment_archive.result Xmysql-test/suite/parts/r/partition_auto_increment_blackhole.result Xmysql-test/suite/parts/r/partition_auto_increment_innodb.result Xmysql-test/suite/parts/r/partition_auto_increment_memory.result Xmysql-test/suite/parts/r/partition_auto_increment_myisam.result Xmysql-test/suite/parts/r/partition_auto_increment_ndb.result Xmysql-test/suite/parts/r/partition_basic_innodb.result Xmysql-test/suite/parts/r/partition_basic_myisam.result Xmysql-test/suite/parts/r/partition_basic_symlink_innodb.result Xmysql-test/suite/parts/r/partition_basic_symlink_myisam.result Xmysql-test/suite/parts/r/partition_bit_innodb.result Xmysql-test/suite/parts/r/partition_bit_myisam.result Xmysql-test/suite/parts/r/partition_char_innodb.result Xmysql-test/suite/parts/r/partition_char_myisam.result Xmysql-test/suite/parts/r/partition_datetime_innodb.result Xmysql-test/suite/parts/r/partition_datetime_myisam.result Xmysql-test/suite/parts/r/partition_decimal_innodb.result Xmysql-test/suite/parts/r/partition_decimal_myisam.result Xmysql-test/suite/parts/r/partition_engine_innodb.result Xmysql-test/suite/parts/r/partition_engine_myisam.result Xmysql-test/suite/parts/r/partition_engine_ndb.result Xmysql-test/suite/parts/r/partition_float_innodb.result Xmysql-test/suite/parts/r/partition_float_myisam.result Xmysql-test/suite/parts/r/partition_int_innodb.result Xmysql-test/suite/parts/r/partition_int_myisam.result Xmysql-test/suite/parts/r/partition_int_ndb.result Xmysql-test/suite/parts/r/partition_mgm_lc0_archive.result Xmysql-test/suite/parts/r/partition_mgm_lc0_innodb.result Xmysql-test/suite/parts/r/partition_mgm_lc0_memory.result Xmysql-test/suite/parts/r/partition_mgm_lc0_myisam.result Xmysql-test/suite/parts/r/partition_mgm_lc0_ndb.result Xmysql-test/suite/parts/r/partition_mgm_lc1_archive.result Xmysql-test/suite/parts/r/partition_mgm_lc1_innodb.result Xmysql-test/suite/parts/r/partition_mgm_lc1_memory.result Xmysql-test/suite/parts/r/partition_mgm_lc1_myisam.result Xmysql-test/suite/parts/r/partition_mgm_lc1_ndb.result Xmysql-test/suite/parts/r/partition_mgm_lc2_archive.result Xmysql-test/suite/parts/r/partition_mgm_lc2_innodb.result Xmysql-test/suite/parts/r/partition_mgm_lc2_memory.result Xmysql-test/suite/parts/r/partition_mgm_lc2_myisam.result Xmysql-test/suite/parts/r/partition_mgm_lc2_ndb.result Xmysql-test/suite/parts/r/partition_recover_myisam.result Xmysql-test/suite/parts/r/partition_repair_myisam.result Xmysql-test/suite/parts/r/partition_special_innodb.result Xmysql-test/suite/parts/r/partition_special_myisam.result Xmysql-test/suite/parts/r/partition_syntax_innodb.result Xmysql-test/suite/parts/r/partition_syntax_myisam.result Xmysql-test/suite/parts/r/partition_syntax_ndb.result Xmysql-test/suite/parts/r/partition_t55.out Xmysql-test/suite/parts/r/partition_value_innodb.result Xmysql-test/suite/parts/r/partition_value_myisam.result Xmysql-test/suite/parts/r/partition_value_ndb.result Xmysql-test/suite/parts/r/rpl_partition.result Xmysql-test/suite/parts/t/disabled.def Xmysql-test/suite/parts/t/ndb_dd_backuprestore.test Xmysql-test/suite/parts/t/part_blocked_sql_func_innodb.test Xmysql-test/suite/parts/t/part_blocked_sql_func_myisam.test Xmysql-test/suite/parts/t/part_supported_sql_func_innodb.test Xmysql-test/suite/parts/t/part_supported_sql_func_myisam.test Xmysql-test/suite/parts/t/part_supported_sql_func_ndb.test Xmysql-test/suite/parts/t/partition_alter1_1_2_innodb.test Xmysql-test/suite/parts/t/partition_alter1_1_2_myisam.test Xmysql-test/suite/parts/t/partition_alter1_1_2_ndb.test Xmysql-test/suite/parts/t/partition_alter1_1_innodb.test Xmysql-test/suite/parts/t/partition_alter1_1_myisam.test Xmysql-test/suite/parts/t/partition_alter1_1_ndb.test Xmysql-test/suite/parts/t/partition_alter1_2_innodb.test Xmysql-test/suite/parts/t/partition_alter1_2_myisam.test Xmysql-test/suite/parts/t/partition_alter1_2_ndb.test Xmysql-test/suite/parts/t/partition_alter2_1_innodb.test Xmysql-test/suite/parts/t/partition_alter2_1_myisam.test Xmysql-test/suite/parts/t/partition_alter2_2_innodb.test Xmysql-test/suite/parts/t/partition_alter2_2_myisam.test Xmysql-test/suite/parts/t/partition_alter3_innodb.test Xmysql-test/suite/parts/t/partition_alter3_myisam.test Xmysql-test/suite/parts/t/partition_alter4_innodb.test Xmysql-test/suite/parts/t/partition_alter4_myisam.test Xmysql-test/suite/parts/t/partition_auto_increment_archive.test Xmysql-test/suite/parts/t/partition_auto_increment_blackhole.test Xmysql-test/suite/parts/t/partition_auto_increment_innodb.test Xmysql-test/suite/parts/t/partition_auto_increment_memory.test Xmysql-test/suite/parts/t/partition_auto_increment_myisam.test Xmysql-test/suite/parts/t/partition_auto_increment_ndb.test Xmysql-test/suite/parts/t/partition_basic_innodb.test Xmysql-test/suite/parts/t/partition_basic_myisam.test Xmysql-test/suite/parts/t/partition_basic_ndb.test Xmysql-test/suite/parts/t/partition_basic_symlink_innodb.test Xmysql-test/suite/parts/t/partition_basic_symlink_myisam.test Xmysql-test/suite/parts/t/partition_bit_innodb.test Xmysql-test/suite/parts/t/partition_bit_myisam.test Xmysql-test/suite/parts/t/partition_char_innodb.test Xmysql-test/suite/parts/t/partition_char_myisam.test Xmysql-test/suite/parts/t/partition_datetime_innodb.test Xmysql-test/suite/parts/t/partition_datetime_myisam.test Xmysql-test/suite/parts/t/partition_decimal_innodb.test Xmysql-test/suite/parts/t/partition_decimal_myisam.test Xmysql-test/suite/parts/t/partition_engine_innodb.test Xmysql-test/suite/parts/t/partition_engine_myisam.test Xmysql-test/suite/parts/t/partition_engine_ndb.test Xmysql-test/suite/parts/t/partition_float_innodb.test Xmysql-test/suite/parts/t/partition_float_myisam.test Xmysql-test/suite/parts/t/partition_int_innodb.test Xmysql-test/suite/parts/t/partition_int_myisam.test Xmysql-test/suite/parts/t/partition_int_ndb.test Xmysql-test/suite/parts/t/partition_mgm_lc0_archive.test Xmysql-test/suite/parts/t/partition_mgm_lc0_innodb.test Xmysql-test/suite/parts/t/partition_mgm_lc0_memory.test Xmysql-test/suite/parts/t/partition_mgm_lc0_myisam.test Xmysql-test/suite/parts/t/partition_mgm_lc0_ndb.test Xmysql-test/suite/parts/t/partition_mgm_lc1_archive-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_archive.test Xmysql-test/suite/parts/t/partition_mgm_lc1_innodb-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_innodb.test Xmysql-test/suite/parts/t/partition_mgm_lc1_memory-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_memory.test Xmysql-test/suite/parts/t/partition_mgm_lc1_myisam-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_myisam.test Xmysql-test/suite/parts/t/partition_mgm_lc1_ndb-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_ndb.test Xmysql-test/suite/parts/t/partition_mgm_lc2_archive-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_archive.test Xmysql-test/suite/parts/t/partition_mgm_lc2_innodb-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_innodb.test Xmysql-test/suite/parts/t/partition_mgm_lc2_memory-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_memory.test Xmysql-test/suite/parts/t/partition_mgm_lc2_myisam-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_myisam.test Xmysql-test/suite/parts/t/partition_mgm_lc2_ndb-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_ndb.test Xmysql-test/suite/parts/t/partition_recover_myisam-master.opt Xmysql-test/suite/parts/t/partition_recover_myisam.test Xmysql-test/suite/parts/t/partition_repair_myisam.test Xmysql-test/suite/parts/t/partition_special_innodb-master.opt Xmysql-test/suite/parts/t/partition_special_innodb.test Xmysql-test/suite/parts/t/partition_special_myisam.test Xmysql-test/suite/parts/t/partition_syntax_innodb.test Xmysql-test/suite/parts/t/partition_syntax_myisam.test Xmysql-test/suite/parts/t/partition_syntax_ndb.test Xmysql-test/suite/parts/t/partition_value_innodb.test Xmysql-test/suite/parts/t/partition_value_myisam.test Xmysql-test/suite/parts/t/partition_value_ndb.test Xmysql-test/suite/parts/t/rpl_partition.test Xmysql-test/suite/rpl/README Xmysql-test/suite/rpl/combinations Xmysql-test/suite/rpl/include/rpl_mixed_check_db.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_event.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_select.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_table.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_user.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_view.inc Xmysql-test/suite/rpl/include/rpl_mixed_clear_tables.inc Xmysql-test/suite/rpl/include/rpl_mixed_ddl.inc Xmysql-test/suite/rpl/include/rpl_mixed_dml.inc Xmysql-test/suite/rpl/include/rpl_mixed_show_binlog_format.inc Xmysql-test/suite/rpl/my.cnf Xmysql-test/suite/rpl/r/rpl000001.a.result Xmysql-test/suite/rpl/r/rpl000001.b.result Xmysql-test/suite/rpl/r/rpl000010.result Xmysql-test/suite/rpl/r/rpl000011.result Xmysql-test/suite/rpl/r/rpl000013.result Xmysql-test/suite/rpl/r/rpl000017.result Xmysql-test/suite/rpl/r/rpl_000015.result Xmysql-test/suite/rpl/r/rpl_EE_err.result Xmysql-test/suite/rpl/r/rpl_LD_INFILE.result Xmysql-test/suite/rpl/r/rpl_alter.result Xmysql-test/suite/rpl/r/rpl_alter_db.result Xmysql-test/suite/rpl/r/rpl_auto_increment.result Xmysql-test/suite/rpl/r/rpl_auto_increment_11932.result Xmysql-test/suite/rpl/r/rpl_binlog_corruption.result Xmysql-test/suite/rpl/r/rpl_binlog_grant.result Xmysql-test/suite/rpl/r/rpl_binlog_query_filter_rules.result Xmysql-test/suite/rpl/r/rpl_bit.result Xmysql-test/suite/rpl/r/rpl_bit_npk.result Xmysql-test/suite/rpl/r/rpl_blackhole.result Xmysql-test/suite/rpl/r/rpl_bug26395.result Xmysql-test/suite/rpl/r/rpl_bug31076.result Xmysql-test/suite/rpl/r/rpl_bug33931.result Xmysql-test/suite/rpl/r/rpl_change_master.result Xmysql-test/suite/rpl/r/rpl_charset.result Xmysql-test/suite/rpl/r/rpl_charset_sjis.result Xmysql-test/suite/rpl/r/rpl_circular_for_4_hosts.result Xmysql-test/suite/rpl/r/rpl_colSize.result Xmysql-test/suite/rpl/r/rpl_commit_after_flush.result Xmysql-test/suite/rpl/r/rpl_create_database.result Xmysql-test/suite/rpl/r/rpl_critical_errors.result Xmysql-test/suite/rpl/r/rpl_critical_errors.result.txt Xmysql-test/suite/rpl/r/rpl_cross_version.result Xmysql-test/suite/rpl/r/rpl_ddl.result Xmysql-test/suite/rpl/r/rpl_deadlock_innodb.result Xmysql-test/suite/rpl/r/rpl_delete_no_where.result Xmysql-test/suite/rpl/r/rpl_do_grant.result Xmysql-test/suite/rpl/r/rpl_drop.result Xmysql-test/suite/rpl/r/rpl_drop_db.result Xmysql-test/suite/rpl/r/rpl_drop_temp.result Xmysql-test/suite/rpl/r/rpl_drop_view.result Xmysql-test/suite/rpl/r/rpl_dual_pos_advance.result Xmysql-test/suite/rpl/r/rpl_empty_master_crash.result Xmysql-test/suite/rpl/r/rpl_err_ignoredtable.result Xmysql-test/suite/rpl/r/rpl_events.result Xmysql-test/suite/rpl/r/rpl_extraCol_innodb.result Xmysql-test/suite/rpl/r/rpl_extraCol_myisam.result Xmysql-test/suite/rpl/r/rpl_extraColmaster_innodb.result Xmysql-test/suite/rpl/r/rpl_extraColmaster_myisam.result Xmysql-test/suite/rpl/r/rpl_failed_optimize.result Xmysql-test/suite/rpl/r/rpl_filter_tables_not_exist.result Xmysql-test/suite/rpl/r/rpl_flushlog_loop.result Xmysql-test/suite/rpl/r/rpl_foreign_key_innodb.result Xmysql-test/suite/rpl/r/rpl_found_rows.result Xmysql-test/suite/rpl/r/rpl_free_items.result Xmysql-test/suite/rpl/r/rpl_get_lock.result Xmysql-test/suite/rpl/r/rpl_grant.result Xmysql-test/suite/rpl/r/rpl_idempotency.result Xmysql-test/suite/rpl/r/rpl_ignore_grant.result Xmysql-test/suite/rpl/r/rpl_ignore_revoke.result Xmysql-test/suite/rpl/r/rpl_ignore_table.result Xmysql-test/suite/rpl/r/rpl_ignore_table_update.result Xmysql-test/suite/rpl/r/rpl_incident.result Xmysql-test/suite/rpl/r/rpl_init_slave.result Xmysql-test/suite/rpl/r/rpl_innodb.result Xmysql-test/suite/rpl/r/rpl_innodb_bug28430.result Xmysql-test/suite/rpl/r/rpl_innodb_bug30888.result Xmysql-test/suite/rpl/r/rpl_innodb_mixed_ddl.result Xmysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result Xmysql-test/suite/rpl/r/rpl_insert.result Xmysql-test/suite/rpl/r/rpl_insert_id.result Xmysql-test/suite/rpl/r/rpl_insert_id_pk.result Xmysql-test/suite/rpl/r/rpl_insert_ignore.result Xmysql-test/suite/rpl/r/rpl_insert_select.result Xmysql-test/suite/rpl/r/rpl_invoked_features.result Xmysql-test/suite/rpl/r/rpl_known_bugs_detection.result Xmysql-test/suite/rpl/r/rpl_load_from_master.result Xmysql-test/suite/rpl/r/rpl_load_table_from_master.result Xmysql-test/suite/rpl/r/rpl_loaddata.result Xmysql-test/suite/rpl/r/rpl_loaddata_charset.result Xmysql-test/suite/rpl/r/rpl_loaddata_fatal.result Xmysql-test/suite/rpl/r/rpl_loaddata_m.result Xmysql-test/suite/rpl/r/rpl_loaddata_map.result Xmysql-test/suite/rpl/r/rpl_loaddata_s.result Xmysql-test/suite/rpl/r/rpl_loaddata_simple.result Xmysql-test/suite/rpl/r/rpl_loaddatalocal.result Xmysql-test/suite/rpl/r/rpl_loadfile.result Xmysql-test/suite/rpl/r/rpl_locale.result Xmysql-test/suite/rpl/r/rpl_log_pos.result Xmysql-test/suite/rpl/r/rpl_many_optimize.result Xmysql-test/suite/rpl/r/rpl_master_pos_wait.result Xmysql-test/suite/rpl/r/rpl_misc_functions.result Xmysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result Xmysql-test/suite/rpl/r/rpl_multi_delete.result Xmysql-test/suite/rpl/r/rpl_multi_delete2.result Xmysql-test/suite/rpl/r/rpl_multi_engine.result Xmysql-test/suite/rpl/r/rpl_multi_update.result Xmysql-test/suite/rpl/r/rpl_multi_update2.result Xmysql-test/suite/rpl/r/rpl_multi_update3.result Xmysql-test/suite/rpl/r/rpl_multi_update4.result Xmysql-test/suite/rpl/r/rpl_optimize.result Xmysql-test/suite/rpl/r/rpl_packet.result Xmysql-test/suite/rpl/r/rpl_plugin_load.result Xmysql-test/suite/rpl/r/rpl_ps.result Xmysql-test/suite/rpl/r/rpl_rbr_to_sbr.result Xmysql-test/suite/rpl/r/rpl_read_only.result Xmysql-test/suite/rpl/r/rpl_relay_space_innodb.result Xmysql-test/suite/rpl/r/rpl_relay_space_myisam.result Xmysql-test/suite/rpl/r/rpl_relayrotate.result Xmysql-test/suite/rpl/r/rpl_relayspace.result Xmysql-test/suite/rpl/r/rpl_replicate_do.result Xmysql-test/suite/rpl/r/rpl_replicate_ignore_db.result Xmysql-test/suite/rpl/r/rpl_report.result Xmysql-test/suite/rpl/r/rpl_rewrt_db.result Xmysql-test/suite/rpl/r/rpl_rotate_logs.result Xmysql-test/suite/rpl/r/rpl_row_001.result Xmysql-test/suite/rpl/r/rpl_row_4_bytes.result Xmysql-test/suite/rpl/r/rpl_row_NOW.result Xmysql-test/suite/rpl/r/rpl_row_USER.result Xmysql-test/suite/rpl/r/rpl_row_UUID.result Xmysql-test/suite/rpl/r/rpl_row_basic_11bugs-master.opt Xmysql-test/suite/rpl/r/rpl_row_basic_11bugs-slave.opt Xmysql-test/suite/rpl/r/rpl_row_basic_11bugs.result Xmysql-test/suite/rpl/r/rpl_row_basic_2myisam.result Xmysql-test/suite/rpl/r/rpl_row_basic_3innodb.result Xmysql-test/suite/rpl/r/rpl_row_basic_8partition.result Xmysql-test/suite/rpl/r/rpl_row_blob_innodb.result Xmysql-test/suite/rpl/r/rpl_row_blob_myisam.result Xmysql-test/suite/rpl/r/rpl_row_colSize.result Xmysql-test/suite/rpl/r/rpl_row_conflicts.result Xmysql-test/suite/rpl/r/rpl_row_create_table.result Xmysql-test/suite/rpl/r/rpl_row_delayed_ins.result Xmysql-test/suite/rpl/r/rpl_row_drop.result Xmysql-test/suite/rpl/r/rpl_row_err_ignoredtable.result Xmysql-test/suite/rpl/r/rpl_row_flsh_tbls.result Xmysql-test/suite/rpl/r/rpl_row_func001.result Xmysql-test/suite/rpl/r/rpl_row_func002.result Xmysql-test/suite/rpl/r/rpl_row_func003.result Xmysql-test/suite/rpl/r/rpl_row_inexist_tbl.result Xmysql-test/suite/rpl/r/rpl_row_insert_delayed.result Xmysql-test/suite/rpl/r/rpl_row_loaddata_m.result Xmysql-test/suite/rpl/r/rpl_row_log.result Xmysql-test/suite/rpl/r/rpl_row_log_innodb.result Xmysql-test/suite/rpl/r/rpl_row_max_relay_size.result Xmysql-test/suite/rpl/r/rpl_row_multi_query.result Xmysql-test/suite/rpl/r/rpl_row_mysqlbinlog.result Xmysql-test/suite/rpl/r/rpl_row_reset_slave.result Xmysql-test/suite/rpl/r/rpl_row_sp001.result Xmysql-test/suite/rpl/r/rpl_row_sp002_innodb.result Xmysql-test/suite/rpl/r/rpl_row_sp003.result Xmysql-test/suite/rpl/r/rpl_row_sp005.result Xmysql-test/suite/rpl/r/rpl_row_sp006_InnoDB.result Xmysql-test/suite/rpl/r/rpl_row_sp007_innodb.result Xmysql-test/suite/rpl/r/rpl_row_sp008.result Xmysql-test/suite/rpl/r/rpl_row_sp009.result Xmysql-test/suite/rpl/r/rpl_row_sp010.result Xmysql-test/suite/rpl/r/rpl_row_sp011.result Xmysql-test/suite/rpl/r/rpl_row_sp012.result Xmysql-test/suite/rpl/r/rpl_row_stop_middle_update.result Xmysql-test/suite/rpl/r/rpl_row_tabledefs_2myisam.result Xmysql-test/suite/rpl/r/rpl_row_tabledefs_3innodb.result Xmysql-test/suite/rpl/r/rpl_row_tabledefs_7ndb.result Xmysql-test/suite/rpl/r/rpl_row_trig001.result Xmysql-test/suite/rpl/r/rpl_row_trig002.result Xmysql-test/suite/rpl/r/rpl_row_trig003.result Xmysql-test/suite/rpl/r/rpl_row_trig004.result Xmysql-test/suite/rpl/r/rpl_row_unsafe_funcs.result Xmysql-test/suite/rpl/r/rpl_row_until.result Xmysql-test/suite/rpl/r/rpl_row_view01.result Xmysql-test/suite/rpl/r/rpl_server_id.result Xmysql-test/suite/rpl/r/rpl_server_id1.result Xmysql-test/suite/rpl/r/rpl_server_id2.result Xmysql-test/suite/rpl/r/rpl_session_var.result Xmysql-test/suite/rpl/r/rpl_set_charset.result Xmysql-test/suite/rpl/r/rpl_sf.result Xmysql-test/suite/rpl/r/rpl_skip_error.result Xmysql-test/suite/rpl/r/rpl_slave_grp_exec.result Xmysql-test/suite/rpl/r/rpl_slave_skip.result Xmysql-test/suite/rpl/r/rpl_slave_status.result Xmysql-test/suite/rpl/r/rpl_sp.result Xmysql-test/suite/rpl/r/rpl_sp004.result Xmysql-test/suite/rpl/r/rpl_sp_effects.result Xmysql-test/suite/rpl/r/rpl_sporadic_master.result Xmysql-test/suite/rpl/r/rpl_ssl.result Xmysql-test/suite/rpl/r/rpl_ssl1.result Xmysql-test/suite/rpl/r/rpl_start_stop_slave.result Xmysql-test/suite/rpl/r/rpl_stm_000001.result Xmysql-test/suite/rpl/r/rpl_stm_EE_err2.result Xmysql-test/suite/rpl/r/rpl_stm_auto_increment_bug33029.result Xmysql-test/suite/rpl/r/rpl_stm_conflicts.result Xmysql-test/suite/rpl/r/rpl_stm_flsh_tbls.result Xmysql-test/suite/rpl/r/rpl_stm_insert_delayed.result Xmysql-test/suite/rpl/r/rpl_stm_log.result Xmysql-test/suite/rpl/r/rpl_stm_max_relay_size.result Xmysql-test/suite/rpl/r/rpl_stm_multi_query.result Xmysql-test/suite/rpl/r/rpl_stm_no_op.result Xmysql-test/suite/rpl/r/rpl_stm_reset_slave.result Xmysql-test/suite/rpl/r/rpl_stm_until.result Xmysql-test/suite/rpl/r/rpl_switch_stm_row_mixed.result Xmysql-test/suite/rpl/r/rpl_temp_table.result Xmysql-test/suite/rpl/r/rpl_temporary.result Xmysql-test/suite/rpl/r/rpl_temporary_errors.result Xmysql-test/suite/rpl/r/rpl_timezone.result Xmysql-test/suite/rpl/r/rpl_trigger.result Xmysql-test/suite/rpl/r/rpl_trunc_temp.result Xmysql-test/suite/rpl/r/rpl_truncate_2myisam.result Xmysql-test/suite/rpl/r/rpl_truncate_3innodb.result Xmysql-test/suite/rpl/r/rpl_udf.result Xmysql-test/suite/rpl/r/rpl_user.result Xmysql-test/suite/rpl/r/rpl_user_variables.result Xmysql-test/suite/rpl/r/rpl_variables.result Xmysql-test/suite/rpl/r/rpl_variables_stm.result Xmysql-test/suite/rpl/r/rpl_view.result Xmysql-test/suite/rpl/rpl_1slave_base.cnf Xmysql-test/suite/rpl/t/disabled.def Xmysql-test/suite/rpl/t/rpl000010-slave.opt Xmysql-test/suite/rpl/t/rpl000010.test Xmysql-test/suite/rpl/t/rpl000011.test Xmysql-test/suite/rpl/t/rpl000013.test Xmysql-test/suite/rpl/t/rpl000017-slave.opt Xmysql-test/suite/rpl/t/rpl000017-slave.sh Xmysql-test/suite/rpl/t/rpl000017.test Xmysql-test/suite/rpl/t/rpl_000015-slave.opt Xmysql-test/suite/rpl/t/rpl_000015-slave.sh Xmysql-test/suite/rpl/t/rpl_000015.cnf Xmysql-test/suite/rpl/t/rpl_000015.test Xmysql-test/suite/rpl/t/rpl_EE_err.test Xmysql-test/suite/rpl/t/rpl_LD_INFILE.test Xmysql-test/suite/rpl/t/rpl_alter.test Xmysql-test/suite/rpl/t/rpl_alter_db.test Xmysql-test/suite/rpl/t/rpl_auto_increment-master.opt Xmysql-test/suite/rpl/t/rpl_auto_increment.test Xmysql-test/suite/rpl/t/rpl_auto_increment_11932.test Xmysql-test/suite/rpl/t/rpl_binlog_corruption-master.opt Xmysql-test/suite/rpl/t/rpl_binlog_corruption.test Xmysql-test/suite/rpl/t/rpl_binlog_grant.test Xmysql-test/suite/rpl/t/rpl_binlog_query_filter_rules-master.opt Xmysql-test/suite/rpl/t/rpl_binlog_query_filter_rules.test Xmysql-test/suite/rpl/t/rpl_bit.test Xmysql-test/suite/rpl/t/rpl_bit_npk.test Xmysql-test/suite/rpl/t/rpl_blackhole.test Xmysql-test/suite/rpl/t/rpl_bug26395.test Xmysql-test/suite/rpl/t/rpl_bug31076.test Xmysql-test/suite/rpl/t/rpl_bug33931.test Xmysql-test/suite/rpl/t/rpl_change_master.test Xmysql-test/suite/rpl/t/rpl_charset.test Xmysql-test/suite/rpl/t/rpl_charset_sjis.test Xmysql-test/suite/rpl/t/rpl_circular_for_4_hosts.cnf Xmysql-test/suite/rpl/t/rpl_circular_for_4_hosts.test Xmysql-test/suite/rpl/t/rpl_colSize.test Xmysql-test/suite/rpl/t/rpl_commit_after_flush.test Xmysql-test/suite/rpl/t/rpl_create_database-master.opt Xmysql-test/suite/rpl/t/rpl_create_database-slave.opt Xmysql-test/suite/rpl/t/rpl_create_database.test Xmysql-test/suite/rpl/t/rpl_critical_errors.test Xmysql-test/suite/rpl/t/rpl_cross_version-master.opt Xmysql-test/suite/rpl/t/rpl_cross_version.test Xmysql-test/suite/rpl/t/rpl_ddl.test Xmysql-test/suite/rpl/t/rpl_deadlock_innodb-slave.opt Xmysql-test/suite/rpl/t/rpl_deadlock_innodb.test Xmysql-test/suite/rpl/t/rpl_delete_no_where.test Xmysql-test/suite/rpl/t/rpl_do_grant.test Xmysql-test/suite/rpl/t/rpl_drop.test Xmysql-test/suite/rpl/t/rpl_drop_db.test Xmysql-test/suite/rpl/t/rpl_drop_temp-slave.opt Xmysql-test/suite/rpl/t/rpl_drop_temp.test Xmysql-test/suite/rpl/t/rpl_drop_view.test Xmysql-test/suite/rpl/t/rpl_dual_pos_advance-master.opt Xmysql-test/suite/rpl/t/rpl_dual_pos_advance.test Xmysql-test/suite/rpl/t/rpl_empty_master_crash-master.opt Xmysql-test/suite/rpl/t/rpl_empty_master_crash.test Xmysql-test/suite/rpl/t/rpl_err_ignoredtable-slave.opt Xmysql-test/suite/rpl/t/rpl_err_ignoredtable.test Xmysql-test/suite/rpl/t/rpl_events.test Xmysql-test/suite/rpl/t/rpl_extraCol_innodb.test Xmysql-test/suite/rpl/t/rpl_extraCol_myisam.test Xmysql-test/suite/rpl/t/rpl_extraColmaster_innodb.test Xmysql-test/suite/rpl/t/rpl_extraColmaster_myisam.test Xmysql-test/suite/rpl/t/rpl_failed_optimize-master.opt Xmysql-test/suite/rpl/t/rpl_failed_optimize.test Xmysql-test/suite/rpl/t/rpl_filter_tables_not_exist-slave.opt Xmysql-test/suite/rpl/t/rpl_filter_tables_not_exist.test Xmysql-test/suite/rpl/t/rpl_flushlog_loop-master.opt Xmysql-test/suite/rpl/t/rpl_flushlog_loop-master.sh Xmysql-test/suite/rpl/t/rpl_flushlog_loop-slave.opt Xmysql-test/suite/rpl/t/rpl_flushlog_loop-slave.sh Xmysql-test/suite/rpl/t/rpl_flushlog_loop.test Xmysql-test/suite/rpl/t/rpl_foreign_key_innodb.test Xmysql-test/suite/rpl/t/rpl_found_rows.test Xmysql-test/suite/rpl/t/rpl_free_items-slave.opt Xmysql-test/suite/rpl/t/rpl_free_items.test Xmysql-test/suite/rpl/t/rpl_get_lock.test Xmysql-test/suite/rpl/t/rpl_grant.test Xmysql-test/suite/rpl/t/rpl_idempotency-slave.opt Xmysql-test/suite/rpl/t/rpl_idempotency.test Xmysql-test/suite/rpl/t/rpl_ignore_grant-slave.opt Xmysql-test/suite/rpl/t/rpl_ignore_grant.test Xmysql-test/suite/rpl/t/rpl_ignore_revoke-slave.opt Xmysql-test/suite/rpl/t/rpl_ignore_revoke.test Xmysql-test/suite/rpl/t/rpl_ignore_table-slave.opt Xmysql-test/suite/rpl/t/rpl_ignore_table.test Xmysql-test/suite/rpl/t/rpl_ignore_table_update-slave.opt Xmysql-test/suite/rpl/t/rpl_ignore_table_update.test Xmysql-test/suite/rpl/t/rpl_incident-master.opt Xmysql-test/suite/rpl/t/rpl_incident.test Xmysql-test/suite/rpl/t/rpl_init_slave-slave.opt Xmysql-test/suite/rpl/t/rpl_init_slave.test Xmysql-test/suite/rpl/t/rpl_innodb-master.opt Xmysql-test/suite/rpl/t/rpl_innodb.test Xmysql-test/suite/rpl/t/rpl_innodb_bug28430-master.opt Xmysql-test/suite/rpl/t/rpl_innodb_bug28430-slave.opt Xmysql-test/suite/rpl/t/rpl_innodb_bug28430.test Xmysql-test/suite/rpl/t/rpl_innodb_bug30888.test Xmysql-test/suite/rpl/t/rpl_innodb_mixed_ddl.test Xmysql-test/suite/rpl/t/rpl_innodb_mixed_dml.test Xmysql-test/suite/rpl/t/rpl_insert.test Xmysql-test/suite/rpl/t/rpl_insert_id.test Xmysql-test/suite/rpl/t/rpl_insert_id_pk.test Xmysql-test/suite/rpl/t/rpl_insert_ignore.test Xmysql-test/suite/rpl/t/rpl_insert_select.test Xmysql-test/suite/rpl/t/rpl_invoked_features.test Xmysql-test/suite/rpl/t/rpl_known_bugs_detection-master.opt Xmysql-test/suite/rpl/t/rpl_known_bugs_detection.test Xmysql-test/suite/rpl/t/rpl_load_from_master-slave.opt Xmysql-test/suite/rpl/t/rpl_load_from_master.test Xmysql-test/suite/rpl/t/rpl_load_table_from_master.test Xmysql-test/suite/rpl/t/rpl_loaddata.test Xmysql-test/suite/rpl/t/rpl_loaddata_charset.test Xmysql-test/suite/rpl/t/rpl_loaddata_fatal-slave.opt Xmysql-test/suite/rpl/t/rpl_loaddata_fatal.test Xmysql-test/suite/rpl/t/rpl_loaddata_m-master.opt Xmysql-test/suite/rpl/t/rpl_loaddata_m.test Xmysql-test/suite/rpl/t/rpl_loaddata_map-master.opt Xmysql-test/suite/rpl/t/rpl_loaddata_map-slave.opt Xmysql-test/suite/rpl/t/rpl_loaddata_map.test Xmysql-test/suite/rpl/t/rpl_loaddata_s-slave.opt Xmysql-test/suite/rpl/t/rpl_loaddata_s.test Xmysql-test/suite/rpl/t/rpl_loaddata_simple.test Xmysql-test/suite/rpl/t/rpl_loaddatalocal.test Xmysql-test/suite/rpl/t/rpl_loadfile.test Xmysql-test/suite/rpl/t/rpl_locale.test Xmysql-test/suite/rpl/t/rpl_log_pos.test Xmysql-test/suite/rpl/t/rpl_many_optimize.test Xmysql-test/suite/rpl/t/rpl_master_pos_wait.test Xmysql-test/suite/rpl/t/rpl_misc_functions-slave.sh Xmysql-test/suite/rpl/t/rpl_misc_functions.test Xmysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test Xmysql-test/suite/rpl/t/rpl_multi_delete-slave.opt Xmysql-test/suite/rpl/t/rpl_multi_delete.test Xmysql-test/suite/rpl/t/rpl_multi_delete2-slave.opt Xmysql-test/suite/rpl/t/rpl_multi_delete2.test Xmysql-test/suite/rpl/t/rpl_multi_engine.test Xmysql-test/suite/rpl/t/rpl_multi_update.test Xmysql-test/suite/rpl/t/rpl_multi_update2-slave.opt Xmysql-test/suite/rpl/t/rpl_multi_update2.test Xmysql-test/suite/rpl/t/rpl_multi_update3.test Xmysql-test/suite/rpl/t/rpl_multi_update4-slave.opt Xmysql-test/suite/rpl/t/rpl_multi_update4.test Xmysql-test/suite/rpl/t/rpl_optimize.test Xmysql-test/suite/rpl/t/rpl_packet-master.opt Xmysql-test/suite/rpl/t/rpl_packet-slave.opt Xmysql-test/suite/rpl/t/rpl_packet.test Xmysql-test/suite/rpl/t/rpl_plugin_load-master.opt Xmysql-test/suite/rpl/t/rpl_plugin_load-slave.opt Xmysql-test/suite/rpl/t/rpl_plugin_load.test Xmysql-test/suite/rpl/t/rpl_ps.test Xmysql-test/suite/rpl/t/rpl_rbr_to_sbr.test Xmysql-test/suite/rpl/t/rpl_read_only.test Xmysql-test/suite/rpl/t/rpl_relay_space_innodb.test Xmysql-test/suite/rpl/t/rpl_relay_space_myisam.test Xmysql-test/suite/rpl/t/rpl_relayrotate-slave.opt Xmysql-test/suite/rpl/t/rpl_relayrotate.test Xmysql-test/suite/rpl/t/rpl_relayspace-slave.opt Xmysql-test/suite/rpl/t/rpl_relayspace.test Xmysql-test/suite/rpl/t/rpl_replicate_do-slave.opt Xmysql-test/suite/rpl/t/rpl_replicate_do.test Xmysql-test/suite/rpl/t/rpl_replicate_ignore_db-slave.opt Xmysql-test/suite/rpl/t/rpl_replicate_ignore_db.test Xmysql-test/suite/rpl/t/rpl_report-slave.opt Xmysql-test/suite/rpl/t/rpl_report.test Xmysql-test/suite/rpl/t/rpl_rewrt_db-slave.opt Xmysql-test/suite/rpl/t/rpl_rewrt_db.test Xmysql-test/suite/rpl/t/rpl_rotate_logs-slave.opt Xmysql-test/suite/rpl/t/rpl_rotate_logs-slave.sh Xmysql-test/suite/rpl/t/rpl_rotate_logs.cnf Xmysql-test/suite/rpl/t/rpl_rotate_logs.test Xmysql-test/suite/rpl/t/rpl_row_001.test Xmysql-test/suite/rpl/t/rpl_row_4_bytes-master.opt Xmysql-test/suite/rpl/t/rpl_row_4_bytes.test Xmysql-test/suite/rpl/t/rpl_row_NOW.test Xmysql-test/suite/rpl/t/rpl_row_USER.test Xmysql-test/suite/rpl/t/rpl_row_UUID.test Xmysql-test/suite/rpl/t/rpl_row_basic_11bugs-master.opt Xmysql-test/suite/rpl/t/rpl_row_basic_11bugs.test Xmysql-test/suite/rpl/t/rpl_row_basic_2myisam.test Xmysql-test/suite/rpl/t/rpl_row_basic_3innodb.test Xmysql-test/suite/rpl/t/rpl_row_basic_8partition.test Xmysql-test/suite/rpl/t/rpl_row_blob_innodb.test Xmysql-test/suite/rpl/t/rpl_row_blob_myisam.test Xmysql-test/suite/rpl/t/rpl_row_colSize.test Xmysql-test/suite/rpl/t/rpl_row_conflicts.test Xmysql-test/suite/rpl/t/rpl_row_create_table.test Xmysql-test/suite/rpl/t/rpl_row_delayed_ins.test Xmysql-test/suite/rpl/t/rpl_row_drop.test Xmysql-test/suite/rpl/t/rpl_row_err_daisychain-master.opt Xmysql-test/suite/rpl/t/rpl_row_err_daisychain-slave.opt Xmysql-test/suite/rpl/t/rpl_row_flsh_tbls.test Xmysql-test/suite/rpl/t/rpl_row_func001.test Xmysql-test/suite/rpl/t/rpl_row_func002.test Xmysql-test/suite/rpl/t/rpl_row_func003.test Xmysql-test/suite/rpl/t/rpl_row_inexist_tbl.test Xmysql-test/suite/rpl/t/rpl_row_insert_delayed.test Xmysql-test/suite/rpl/t/rpl_row_log-master.opt Xmysql-test/suite/rpl/t/rpl_row_log-slave.opt Xmysql-test/suite/rpl/t/rpl_row_log.test Xmysql-test/suite/rpl/t/rpl_row_log_innodb-master.opt Xmysql-test/suite/rpl/t/rpl_row_log_innodb.test Xmysql-test/suite/rpl/t/rpl_row_max_relay_size.test Xmysql-test/suite/rpl/t/rpl_row_mysqlbinlog-master.opt Xmysql-test/suite/rpl/t/rpl_row_mysqlbinlog.test Xmysql-test/suite/rpl/t/rpl_row_reset_slave.test Xmysql-test/suite/rpl/t/rpl_row_sp001.test Xmysql-test/suite/rpl/t/rpl_row_sp002_innodb.test Xmysql-test/suite/rpl/t/rpl_row_sp003.test Xmysql-test/suite/rpl/t/rpl_row_sp005.test Xmysql-test/suite/rpl/t/rpl_row_sp006_InnoDB.test Xmysql-test/suite/rpl/t/rpl_row_sp007_innodb.test Xmysql-test/suite/rpl/t/rpl_row_sp008.test Xmysql-test/suite/rpl/t/rpl_row_sp009.test Xmysql-test/suite/rpl/t/rpl_row_sp010.test Xmysql-test/suite/rpl/t/rpl_row_sp011.test Xmysql-test/suite/rpl/t/rpl_row_sp012.test Xmysql-test/suite/rpl/t/rpl_row_stop_middle_update-master.opt Xmysql-test/suite/rpl/t/rpl_row_stop_middle_update-slave.opt Xmysql-test/suite/rpl/t/rpl_row_stop_middle_update.test Xmysql-test/suite/rpl/t/rpl_row_tabledefs_2myisam.test Xmysql-test/suite/rpl/t/rpl_row_tabledefs_3innodb.test Xmysql-test/suite/rpl/t/rpl_row_trig001.test Xmysql-test/suite/rpl/t/rpl_row_trig002.test Xmysql-test/suite/rpl/t/rpl_row_trig003.test Xmysql-test/suite/rpl/t/rpl_row_trig004.test Xmysql-test/suite/rpl/t/rpl_row_unsafe_funcs.test Xmysql-test/suite/rpl/t/rpl_row_until.test Xmysql-test/suite/rpl/t/rpl_row_view01.test Xmysql-test/suite/rpl/t/rpl_server_id.test Xmysql-test/suite/rpl/t/rpl_server_id1.test Xmysql-test/suite/rpl/t/rpl_server_id2-slave.opt Xmysql-test/suite/rpl/t/rpl_server_id2.test Xmysql-test/suite/rpl/t/rpl_session_var.test Xmysql-test/suite/rpl/t/rpl_set_charset.test Xmysql-test/suite/rpl/t/rpl_sf.test Xmysql-test/suite/rpl/t/rpl_skip_error-slave.opt Xmysql-test/suite/rpl/t/rpl_skip_error.test Xmysql-test/suite/rpl/t/rpl_slave_grp_exec.test Xmysql-test/suite/rpl/t/rpl_slave_skip.test Xmysql-test/suite/rpl/t/rpl_slave_status.test Xmysql-test/suite/rpl/t/rpl_sp-master.opt Xmysql-test/suite/rpl/t/rpl_sp-slave.opt Xmysql-test/suite/rpl/t/rpl_sp.test Xmysql-test/suite/rpl/t/rpl_sp004.test Xmysql-test/suite/rpl/t/rpl_sp_effects-master.opt Xmysql-test/suite/rpl/t/rpl_sp_effects-slave.opt Xmysql-test/suite/rpl/t/rpl_sp_effects.test Xmysql-test/suite/rpl/t/rpl_sporadic_master-master.opt Xmysql-test/suite/rpl/t/rpl_sporadic_master.test Xmysql-test/suite/rpl/t/rpl_ssl.test Xmysql-test/suite/rpl/t/rpl_ssl1.test Xmysql-test/suite/rpl/t/rpl_start_stop_slave.test Xmysql-test/suite/rpl/t/rpl_stm_000001.test Xmysql-test/suite/rpl/t/rpl_stm_EE_err2.test Xmysql-test/suite/rpl/t/rpl_stm_auto_increment_bug33029.test Xmysql-test/suite/rpl/t/rpl_stm_conflicts.test Xmysql-test/suite/rpl/t/rpl_stm_flsh_tbls.test Xmysql-test/suite/rpl/t/rpl_stm_insert_delayed.test Xmysql-test/suite/rpl/t/rpl_stm_log-master.opt Xmysql-test/suite/rpl/t/rpl_stm_log-slave.opt Xmysql-test/suite/rpl/t/rpl_stm_log.test Xmysql-test/suite/rpl/t/rpl_stm_max_relay_size.test Xmysql-test/suite/rpl/t/rpl_stm_multi_query.test Xmysql-test/suite/rpl/t/rpl_stm_no_op.test Xmysql-test/suite/rpl/t/rpl_stm_reset_slave.test Xmysql-test/suite/rpl/t/rpl_stm_until.test Xmysql-test/suite/rpl/t/rpl_switch_stm_row_mixed.test Xmysql-test/suite/rpl/t/rpl_temp_table.test Xmysql-test/suite/rpl/t/rpl_temporary.test Xmysql-test/suite/rpl/t/rpl_temporary_errors-slave.opt Xmysql-test/suite/rpl/t/rpl_temporary_errors.test Xmysql-test/suite/rpl/t/rpl_timezone-master.opt Xmysql-test/suite/rpl/t/rpl_timezone-slave.opt Xmysql-test/suite/rpl/t/rpl_timezone.test Xmysql-test/suite/rpl/t/rpl_trigger.test Xmysql-test/suite/rpl/t/rpl_trunc_temp.test Xmysql-test/suite/rpl/t/rpl_truncate_2myisam.test Xmysql-test/suite/rpl/t/rpl_truncate_3innodb.test Xmysql-test/suite/rpl/t/rpl_udf-master.opt Xmysql-test/suite/rpl/t/rpl_udf-slave.opt Xmysql-test/suite/rpl/t/rpl_udf.test Xmysql-test/suite/rpl/t/rpl_user.test Xmysql-test/suite/rpl/t/rpl_user_variables.test Xmysql-test/suite/rpl/t/rpl_variables.test Xmysql-test/suite/rpl/t/rpl_variables_stm.test Xmysql-test/suite/rpl/t/rpl_view.test Xmysql-test/suite/rpl_ndb/my.cnf Xmysql-test/suite/rpl_ndb/r/rpl_ndb_2innodb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_2myisam.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_2ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_2other.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_UUID.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_apply_status.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_auto_inc.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_bank.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_basic.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_blob.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_blob2.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_circular.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_circular_2ch.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_circular_simplex.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_commit_afterflush.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_ctype_ucs2_def.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_dd_basic.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_dd_partitions.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_ddl.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_delete_nowhere.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_do_db.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_do_table.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_extraCol.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_func003.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_idempotent.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_innodb2ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_innodb_trans.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_insert_ignore.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_load.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_log.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_mixed_engines_transactions.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_multi.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_multi_update2.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_multi_update3.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_myisam2ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_relayrotate.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_rep_ignore.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_row_001.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_sp003.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_sp006.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_stm_innodb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_sync.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_trig004.result Xmysql-test/suite/rpl_ndb/r/rpl_ndbapi_multi.result Xmysql-test/suite/rpl_ndb/r/rpl_row_basic_7ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_truncate_7ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_truncate_7ndb_2.result Xmysql-test/suite/rpl_ndb/t/disabled.def Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2innodb-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2innodb-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2innodb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2myisam-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2myisam-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2myisam.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2ndb-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2other-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2other.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_UUID.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_apply_status-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_apply_status.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_auto_inc.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_bank.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_basic.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_blob.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_blob2.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_circular.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_circular_2ch.cnf Xmysql-test/suite/rpl_ndb/t/rpl_ndb_circular_2ch.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_circular_simplex.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_commit_afterflush.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_ctype_ucs2_def-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_ctype_ucs2_def.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_dd_basic.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_dd_partitions-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_dd_partitions-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_dd_partitions.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_ddl.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_delete_nowhere.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_do_db-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_do_db.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_do_table-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_do_table.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_extraCol.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_func003.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_idempotent.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb2ndb-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb2ndb-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb2ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb_trans-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb_trans.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_insert_ignore.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_load.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_log-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_log.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_mixed_engines_transactions-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_mixed_engines_transactions-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_mixed_engines_transactions.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_multi.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_multi_update2-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_multi_update2.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_multi_update3.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_myisam2ndb-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_myisam2ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_relayrotate-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_relayrotate.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_rep_ignore-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_rep_ignore.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_row_001.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_sp003.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_sp006.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_stm_innodb-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_stm_innodb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_sync.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_trig004.test Xmysql-test/suite/rpl_ndb/t/rpl_ndbapi_multi.test Xmysql-test/suite/rpl_ndb/t/rpl_row_basic_7ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_truncate_7ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_truncate_7ndb_2-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_truncate_7ndb_2.test Xmysql-test/suite/stress/include/ddl.cln Xmysql-test/suite/stress/include/ddl.pre Xmysql-test/suite/stress/include/ddl1.inc Xmysql-test/suite/stress/include/ddl2.inc Xmysql-test/suite/stress/include/ddl3.inc Xmysql-test/suite/stress/include/ddl4.inc Xmysql-test/suite/stress/include/ddl5.inc Xmysql-test/suite/stress/include/ddl6.inc Xmysql-test/suite/stress/include/ddl7.inc Xmysql-test/suite/stress/include/ddl8.inc Xmysql-test/suite/stress/r/ddl_archive.result Xmysql-test/suite/stress/r/ddl_csv.result Xmysql-test/suite/stress/r/ddl_innodb.result Xmysql-test/suite/stress/r/ddl_memory.result Xmysql-test/suite/stress/r/ddl_myisam.result Xmysql-test/suite/stress/r/ddl_ndb.result Xmysql-test/suite/stress/t/ddl_archive.test Xmysql-test/suite/stress/t/ddl_csv.test Xmysql-test/suite/stress/t/ddl_innodb.test Xmysql-test/suite/stress/t/ddl_memory.test Xmysql-test/suite/stress/t/ddl_myisam.test Xmysql-test/suite/stress/t/ddl_ndb.test Xmysql-test/t/1st.test Xmysql-test/t/alias.test Xmysql-test/t/almost_full.test Xmysql-test/t/alter_table-big.test Xmysql-test/t/alter_table.test Xmysql-test/t/analyse.test Xmysql-test/t/analyze.test Xmysql-test/t/ansi.test Xmysql-test/t/archive-big.test Xmysql-test/t/archive.test Xmysql-test/t/archive_bitfield.test Xmysql-test/t/archive_gis.test Xmysql-test/t/auto_increment.test Xmysql-test/t/backup-master.sh Xmysql-test/t/backup.test Xmysql-test/t/bench_count_distinct.test Xmysql-test/t/bigint.test Xmysql-test/t/binary.test Xmysql-test/t/bool.test Xmysql-test/t/bootstrap.test Xmysql-test/t/bulk_replace.test Xmysql-test/t/cache_innodb-master.opt Xmysql-test/t/cache_innodb.test Xmysql-test/t/case.test Xmysql-test/t/cast.test Xmysql-test/t/change_user-master.opt Xmysql-test/t/change_user.test Xmysql-test/t/check.test Xmysql-test/t/client_xml.test Xmysql-test/t/comments.test Xmysql-test/t/commit_1innodb.test Xmysql-test/t/compare.test Xmysql-test/t/compress.test Xmysql-test/t/concurrent_innodb_safelog-master.opt Xmysql-test/t/concurrent_innodb_safelog.test Xmysql-test/t/concurrent_innodb_unsafelog-master.opt Xmysql-test/t/concurrent_innodb_unsafelog.test Xmysql-test/t/connect.test Xmysql-test/t/consistent_snapshot.test Xmysql-test/t/constraints.test Xmysql-test/t/contributors.test Xmysql-test/t/count_distinct.test Xmysql-test/t/count_distinct2-master.opt Xmysql-test/t/count_distinct2.test Xmysql-test/t/count_distinct3.test Xmysql-test/t/crash_commit_before-master.opt Xmysql-test/t/crash_commit_before.test Xmysql-test/t/create-big.test Xmysql-test/t/create.test Xmysql-test/t/create_not_windows.test Xmysql-test/t/create_select_tmp.test Xmysql-test/t/csv.test Xmysql-test/t/csv_alter_table.test Xmysql-test/t/csv_not_null.test Xmysql-test/t/ctype_ascii.test Xmysql-test/t/ctype_big5.test Xmysql-test/t/ctype_collate.test Xmysql-test/t/ctype_cp1250_ch.test Xmysql-test/t/ctype_cp1251.test Xmysql-test/t/ctype_cp932_binlog_row.test Xmysql-test/t/ctype_cp932_binlog_stm.test Xmysql-test/t/ctype_create.test Xmysql-test/t/ctype_eucjpms.test Xmysql-test/t/ctype_euckr.test Xmysql-test/t/ctype_filename.test Xmysql-test/t/ctype_filesystem-master.opt Xmysql-test/t/ctype_filesystem.test Xmysql-test/t/ctype_gb2312.test Xmysql-test/t/ctype_gbk.test Xmysql-test/t/ctype_hebrew.test Xmysql-test/t/ctype_latin1.test Xmysql-test/t/ctype_latin1_de-master.opt Xmysql-test/t/ctype_latin1_de.test Xmysql-test/t/ctype_latin2.test Xmysql-test/t/ctype_latin2_ch.test Xmysql-test/t/ctype_ldml-master.opt Xmysql-test/t/ctype_ldml.test Xmysql-test/t/ctype_many.test Xmysql-test/t/ctype_mb.test Xmysql-test/t/ctype_recoding.test Xmysql-test/t/ctype_sjis.test Xmysql-test/t/ctype_tis620.test Xmysql-test/t/ctype_uca.test Xmysql-test/t/ctype_ucs.test Xmysql-test/t/ctype_ucs2_def-master.opt Xmysql-test/t/ctype_ucs2_def.test Xmysql-test/t/ctype_ujis.test Xmysql-test/t/ctype_ujis_ucs2.test Xmysql-test/t/ctype_utf8.test Xmysql-test/t/date_formats-master.opt Xmysql-test/t/date_formats.test Xmysql-test/t/ddl_i18n_koi8r.test Xmysql-test/t/ddl_i18n_utf8.test Xmysql-test/t/deadlock_innodb.test Xmysql-test/t/default.test Xmysql-test/t/delayed.test Xmysql-test/t/delete.test Xmysql-test/t/derived.test Xmysql-test/t/dirty_close.test Xmysql-test/t/disabled.def Xmysql-test/t/distinct.test Xmysql-test/t/drop.test Xmysql-test/t/empty_table.test Xmysql-test/t/endspace.test Xmysql-test/t/error_simulation.test Xmysql-test/t/errors.test Xmysql-test/t/events_1.test Xmysql-test/t/events_2.test Xmysql-test/t/events_bugs-master.opt Xmysql-test/t/events_bugs.test Xmysql-test/t/events_embedded.test Xmysql-test/t/events_grant.test Xmysql-test/t/events_logs_tests-master.opt Xmysql-test/t/events_logs_tests.test Xmysql-test/t/events_microsec.test Xmysql-test/t/events_restart-master.opt Xmysql-test/t/events_restart.test Xmysql-test/t/events_scheduling.test Xmysql-test/t/events_stress.test Xmysql-test/t/events_time_zone.test Xmysql-test/t/events_trans.test Xmysql-test/t/events_trans_notembedded.test Xmysql-test/t/exampledb.test Xmysql-test/t/execution_constants.test Xmysql-test/t/explain.test Xmysql-test/t/fix_priv_tables.test Xmysql-test/t/flush.test Xmysql-test/t/flush2-master.opt Xmysql-test/t/flush2.test Xmysql-test/t/flush_block_commit.test Xmysql-test/t/flush_block_commit_notembedded.test Xmysql-test/t/flush_read_lock_kill-master.opt Xmysql-test/t/flush_read_lock_kill.test Xmysql-test/t/flush_table.test Xmysql-test/t/foreign_key.test Xmysql-test/t/fulltext.test Xmysql-test/t/fulltext2.test Xmysql-test/t/fulltext3.test Xmysql-test/t/fulltext_cache.test Xmysql-test/t/fulltext_distinct.test Xmysql-test/t/fulltext_left_join.test Xmysql-test/t/fulltext_multi.test Xmysql-test/t/fulltext_order_by.test Xmysql-test/t/fulltext_plugin-master.opt Xmysql-test/t/fulltext_plugin.test Xmysql-test/t/fulltext_update.test Xmysql-test/t/fulltext_var.test Xmysql-test/t/func_compress.test Xmysql-test/t/func_concat.test Xmysql-test/t/func_crypt.test Xmysql-test/t/func_date_add.test Xmysql-test/t/func_default.test Xmysql-test/t/func_des_encrypt.test Xmysql-test/t/func_encrypt-master.opt Xmysql-test/t/func_encrypt.test Xmysql-test/t/func_encrypt_nossl.test Xmysql-test/t/func_equal.test Xmysql-test/t/func_gconcat.test Xmysql-test/t/func_group.test Xmysql-test/t/func_group_innodb.test Xmysql-test/t/func_if.test Xmysql-test/t/func_in.test Xmysql-test/t/func_isnull.test Xmysql-test/t/func_like.test Xmysql-test/t/func_math.test Xmysql-test/t/func_misc.test Xmysql-test/t/func_op.test Xmysql-test/t/func_regexp.test Xmysql-test/t/func_rollback.test Xmysql-test/t/func_sapdb.test Xmysql-test/t/func_set.test Xmysql-test/t/func_str.test Xmysql-test/t/func_system.test Xmysql-test/t/func_test.test Xmysql-test/t/func_time.test Xmysql-test/t/func_timestamp.test Xmysql-test/t/gcc296.test Xmysql-test/t/gis-rtree.test Xmysql-test/t/gis.test Xmysql-test/t/grant.test Xmysql-test/t/grant2.test Xmysql-test/t/grant3-master.opt Xmysql-test/t/grant3.test Xmysql-test/t/grant_cache_no_prot.test Xmysql-test/t/grant_cache_ps_prot.test Xmysql-test/t/greedy_optimizer.test Xmysql-test/t/group_by.test Xmysql-test/t/group_min_max.test Xmysql-test/t/group_min_max_innodb.test Xmysql-test/t/handler_innodb.test Xmysql-test/t/handler_myisam.test Xmysql-test/t/having.test Xmysql-test/t/heap.test Xmysql-test/t/heap_auto_increment.test Xmysql-test/t/heap_btree.test Xmysql-test/t/heap_hash.test Xmysql-test/t/help.test Xmysql-test/t/index_merge_innodb.test Xmysql-test/t/index_merge_myisam.test Xmysql-test/t/information_schema.test Xmysql-test/t/information_schema_chmod.test Xmysql-test/t/information_schema_db.test Xmysql-test/t/information_schema_inno.test Xmysql-test/t/information_schema_part.test Xmysql-test/t/init_connect-master.opt Xmysql-test/t/init_connect.test Xmysql-test/t/init_file-master.opt Xmysql-test/t/init_file.test Xmysql-test/t/innodb-autoinc-optimize.test Xmysql-test/t/innodb-autoinc.test Xmysql-test/t/innodb-lock.test Xmysql-test/t/innodb-master.opt Xmysql-test/t/innodb-replace.test Xmysql-test/t/innodb-semi-consistent-master.opt Xmysql-test/t/innodb-semi-consistent.test Xmysql-test/t/innodb-ucs2.test Xmysql-test/t/innodb.test Xmysql-test/t/innodb_autoinc_lock_mode_zero-master.opt Xmysql-test/t/innodb_autoinc_lock_mode_zero.test Xmysql-test/t/innodb_bug30919-master.opt Xmysql-test/t/innodb_bug30919.test Xmysql-test/t/innodb_bug34053.test Xmysql-test/t/innodb_bug34300.test Xmysql-test/t/innodb_bug35220.test Xmysql-test/t/innodb_bug38231.test Xmysql-test/t/innodb_bug39438-master.opt Xmysql-test/t/innodb_bug39438.test Xmysql-test/t/innodb_gis.test Xmysql-test/t/innodb_ignore_builtin-master.opt Xmysql-test/t/innodb_ignore_builtin.test Xmysql-test/t/innodb_mysql-master.opt Xmysql-test/t/innodb_mysql.test Xmysql-test/t/innodb_mysql_rbk-master.opt Xmysql-test/t/innodb_mysql_rbk.test Xmysql-test/t/innodb_notembedded.test Xmysql-test/t/innodb_timeout_rollback-master.opt Xmysql-test/t/innodb_timeout_rollback.test Xmysql-test/t/innodb_trx_weight.test Xmysql-test/t/insert.test Xmysql-test/t/insert_notembedded.test Xmysql-test/t/insert_select.test Xmysql-test/t/insert_update.test Xmysql-test/t/join.test Xmysql-test/t/join_crash.test Xmysql-test/t/join_nested.test Xmysql-test/t/join_outer.test Xmysql-test/t/join_outer_innodb.test Xmysql-test/t/key.test Xmysql-test/t/key_cache-master.opt Xmysql-test/t/key_cache.test Xmysql-test/t/key_diff.test Xmysql-test/t/key_primary.test Xmysql-test/t/keywords.test Xmysql-test/t/kill.test Xmysql-test/t/limit.test Xmysql-test/t/loaddata.test Xmysql-test/t/loaddata_autocom_innodb.test Xmysql-test/t/lock.test Xmysql-test/t/lock_multi.test Xmysql-test/t/lock_tables_lost_commit-master.opt Xmysql-test/t/lock_tables_lost_commit.test Xmysql-test/t/log_state-master.opt Xmysql-test/t/log_state.test Xmysql-test/t/log_tables-big-master.opt Xmysql-test/t/log_tables-big.test Xmysql-test/t/log_tables-master.opt Xmysql-test/t/log_tables.test Xmysql-test/t/long_tmpdir-master.opt Xmysql-test/t/long_tmpdir-master.sh Xmysql-test/t/long_tmpdir.test Xmysql-test/t/lowercase_fs_off.test Xmysql-test/t/lowercase_mixed_tmpdir-master.opt Xmysql-test/t/lowercase_mixed_tmpdir-master.sh Xmysql-test/t/lowercase_mixed_tmpdir.test Xmysql-test/t/lowercase_table-master.opt Xmysql-test/t/lowercase_table.test Xmysql-test/t/lowercase_table2.test Xmysql-test/t/lowercase_table3-master.opt Xmysql-test/t/lowercase_table3.test Xmysql-test/t/lowercase_table_grant-master.opt Xmysql-test/t/lowercase_table_grant.test Xmysql-test/t/lowercase_table_qcache-master.opt Xmysql-test/t/lowercase_table_qcache.test Xmysql-test/t/lowercase_view-master.opt Xmysql-test/t/lowercase_view.test Xmysql-test/t/merge-big.test Xmysql-test/t/merge.test Xmysql-test/t/merge_innodb.test Xmysql-test/t/metadata.test Xmysql-test/t/mix2_myisam.test Xmysql-test/t/mix2_myisam_ucs2.test Xmysql-test/t/multi_statement-master.opt Xmysql-test/t/multi_statement.test Xmysql-test/t/multi_update-master.opt Xmysql-test/t/multi_update.test Xmysql-test/t/multi_update2-master.opt Xmysql-test/t/multi_update2.test Xmysql-test/t/multi_update_tiny_hash-master.opt Xmysql-test/t/multi_update_tiny_hash.test Xmysql-test/t/myisam-blob-master.opt Xmysql-test/t/myisam-blob.test Xmysql-test/t/myisam-system.test Xmysql-test/t/myisam.test Xmysql-test/t/myisampack.test Xmysql-test/t/mysql.test Xmysql-test/t/mysql_client_test-master.opt Xmysql-test/t/mysql_client_test.test Xmysql-test/t/mysql_comments.sql Xmysql-test/t/mysql_comments.test Xmysql-test/t/mysql_cp932.test Xmysql-test/t/mysql_delimiter.sql Xmysql-test/t/mysql_delimiter_19799.sql Xmysql-test/t/mysql_delimiter_source.sql Xmysql-test/t/mysql_protocols.test Xmysql-test/t/mysql_upgrade.test Xmysql-test/t/mysqladmin.test Xmysql-test/t/mysqlbinlog-cp932-master.opt Xmysql-test/t/mysqlbinlog-cp932.test Xmysql-test/t/mysqlbinlog-master.opt Xmysql-test/t/mysqlbinlog.test Xmysql-test/t/mysqlbinlog2.test Xmysql-test/t/mysqlbinlog_base64.test Xmysql-test/t/mysqlbinlog_row.test Xmysql-test/t/mysqlbinlog_row_big.test Xmysql-test/t/mysqlbinlog_row_innodb.test Xmysql-test/t/mysqlbinlog_row_myisam.test Xmysql-test/t/mysqlbinlog_row_trans.test Xmysql-test/t/mysqlcheck.test Xmysql-test/t/mysqldump-compat.opt Xmysql-test/t/mysqldump-compat.test Xmysql-test/t/mysqldump-max.test Xmysql-test/t/mysqldump-no-binlog-master.opt Xmysql-test/t/mysqldump-no-binlog.test Xmysql-test/t/mysqldump.test Xmysql-test/t/mysqlshow.test Xmysql-test/t/mysqlslap.test Xmysql-test/t/mysqltest.test Xmysql-test/t/named_pipe-master.opt Xmysql-test/t/named_pipe.test Xmysql-test/t/negation_elimination.test Xmysql-test/t/no-threads-master.opt Xmysql-test/t/no-threads.test Xmysql-test/t/not_embedded_server-master.opt Xmysql-test/t/not_embedded_server.test Xmysql-test/t/not_partition.test Xmysql-test/t/null.test Xmysql-test/t/null_key.test Xmysql-test/t/odbc.test Xmysql-test/t/olap.test Xmysql-test/t/openssl_1.test Xmysql-test/t/order_by.test Xmysql-test/t/order_fill_sortbuf-master.opt Xmysql-test/t/order_fill_sortbuf.test Xmysql-test/t/outfile.test Xmysql-test/t/outfile_loaddata.test Xmysql-test/t/overflow.test Xmysql-test/t/packet.test Xmysql-test/t/parser.test Xmysql-test/t/parser_bug21114_innodb.test Xmysql-test/t/parser_precedence.test Xmysql-test/t/parser_stack.test Xmysql-test/t/partition-master.opt Xmysql-test/t/partition.test Xmysql-test/t/partition_archive.test Xmysql-test/t/partition_blackhole.test Xmysql-test/t/partition_bug18198.test Xmysql-test/t/partition_charset.test Xmysql-test/t/partition_csv.test Xmysql-test/t/partition_datatype.test Xmysql-test/t/partition_error.test Xmysql-test/t/partition_federated.test Xmysql-test/t/partition_grant.test Xmysql-test/t/partition_hash.test Xmysql-test/t/partition_innodb.test Xmysql-test/t/partition_innodb_semi_consistent-master.opt Xmysql-test/t/partition_innodb_semi_consistent.test Xmysql-test/t/partition_innodb_stmt.test Xmysql-test/t/partition_list.test Xmysql-test/t/partition_mgm.test Xmysql-test/t/partition_mgm_err.test Xmysql-test/t/partition_mgm_err2.test Xmysql-test/t/partition_not_windows-master.opt Xmysql-test/t/partition_not_windows.test Xmysql-test/t/partition_order.test Xmysql-test/t/partition_pruning.test Xmysql-test/t/partition_range.test Xmysql-test/t/partition_symlink.test Xmysql-test/t/partition_windows.test Xmysql-test/t/perror-win.test Xmysql-test/t/perror.test Xmysql-test/t/plugin-master.opt Xmysql-test/t/plugin.test Xmysql-test/t/plugin_load-master.opt Xmysql-test/t/plugin_load.test Xmysql-test/t/preload.test Xmysql-test/t/profiling.test Xmysql-test/t/ps-master.opt Xmysql-test/t/ps.test Xmysql-test/t/ps_10nestset.test Xmysql-test/t/ps_11bugs.test Xmysql-test/t/ps_1general.test Xmysql-test/t/ps_2myisam.test Xmysql-test/t/ps_3innodb.test Xmysql-test/t/ps_4heap.test Xmysql-test/t/ps_5merge.test Xmysql-test/t/ps_ddl.test Xmysql-test/t/ps_ddl1.test Xmysql-test/t/ps_grant.test Xmysql-test/t/ps_not_windows.test Xmysql-test/t/query_cache.test Xmysql-test/t/query_cache_28249.test Xmysql-test/t/query_cache_debug.test Xmysql-test/t/query_cache_merge.test Xmysql-test/t/query_cache_notembedded.test Xmysql-test/t/query_cache_ps_no_prot.test Xmysql-test/t/query_cache_ps_ps_prot.test Xmysql-test/t/query_cache_with_views.test Xmysql-test/t/range.test Xmysql-test/t/read_many_rows_innodb.test Xmysql-test/t/read_only.test Xmysql-test/t/read_only_innodb.test Xmysql-test/t/rename.test Xmysql-test/t/renamedb.test Xmysql-test/t/repair.test Xmysql-test/t/replace.test Xmysql-test/t/rollback.test Xmysql-test/t/round.test Xmysql-test/t/row.test Xmysql-test/t/rowid_order_innodb.test Xmysql-test/t/schema.test Xmysql-test/t/select.test Xmysql-test/t/select_found.test Xmysql-test/t/select_safe.test Xmysql-test/t/shm-master.opt Xmysql-test/t/shm.test Xmysql-test/t/show_check-master.opt Xmysql-test/t/show_check.test Xmysql-test/t/skip_grants-master.opt Xmysql-test/t/skip_grants.test Xmysql-test/t/skip_log_bin-master.opt Xmysql-test/t/skip_log_bin.test Xmysql-test/t/skip_name_resolve-master.opt Xmysql-test/t/skip_name_resolve.test Xmysql-test/t/sp-big.test Xmysql-test/t/sp-code.test Xmysql-test/t/sp-destruct.test Xmysql-test/t/sp-dynamic.test Xmysql-test/t/sp-error.test Xmysql-test/t/sp-prelocking.test Xmysql-test/t/sp-security.test Xmysql-test/t/sp-threads.test Xmysql-test/t/sp-ucs2.test Xmysql-test/t/sp-vars.test Xmysql-test/t/sp.test Xmysql-test/t/sp_gis.test Xmysql-test/t/sp_notembedded.test Xmysql-test/t/sp_stress_case.test Xmysql-test/t/sp_trans.test Xmysql-test/t/sp_trans_log.test Xmysql-test/t/sql_mode.test Xmysql-test/t/ssl-big.test Xmysql-test/t/ssl.test Xmysql-test/t/ssl_8k_key.test Xmysql-test/t/ssl_compress.test Xmysql-test/t/ssl_connect.test Xmysql-test/t/status.test Xmysql-test/t/status2.test Xmysql-test/t/strict.test Xmysql-test/t/strict_autoinc_1myisam.test Xmysql-test/t/strict_autoinc_2innodb.test Xmysql-test/t/strict_autoinc_3heap.test Xmysql-test/t/subselect.test Xmysql-test/t/subselect2.test Xmysql-test/t/subselect3.test Xmysql-test/t/subselect_debug.test Xmysql-test/t/subselect_gis.test Xmysql-test/t/subselect_innodb.test Xmysql-test/t/subselect_notembedded.test Xmysql-test/t/sum_distinct-big.test Xmysql-test/t/sum_distinct.test Xmysql-test/t/symlink.test Xmysql-test/t/synchronization.test Xmysql-test/t/sysdate_is_now-master.opt Xmysql-test/t/sysdate_is_now.test Xmysql-test/t/system_mysql_db.test Xmysql-test/t/system_mysql_db_fix30020-master.opt Xmysql-test/t/system_mysql_db_fix30020.test Xmysql-test/t/system_mysql_db_fix40123-master.opt Xmysql-test/t/system_mysql_db_fix40123.test Xmysql-test/t/system_mysql_db_fix50030-master.opt Xmysql-test/t/system_mysql_db_fix50030.test Xmysql-test/t/system_mysql_db_fix50117-master.opt Xmysql-test/t/system_mysql_db_fix50117.test Xmysql-test/t/system_mysql_db_refs.test Xmysql-test/t/tablelock.test Xmysql-test/t/temp_table-master.opt Xmysql-test/t/temp_table.test Xmysql-test/t/timezone-master.opt Xmysql-test/t/timezone.test Xmysql-test/t/timezone2.test Xmysql-test/t/timezone3-master.opt Xmysql-test/t/timezone3.test Xmysql-test/t/timezone4-master.opt Xmysql-test/t/timezone4.test Xmysql-test/t/timezone_grant.test Xmysql-test/t/trigger-compat.test Xmysql-test/t/trigger-trans.test Xmysql-test/t/trigger.test Xmysql-test/t/trigger_notembedded.test Xmysql-test/t/truncate.test Xmysql-test/t/type_binary.test Xmysql-test/t/type_bit.test Xmysql-test/t/type_bit_innodb.test Xmysql-test/t/type_blob.test Xmysql-test/t/type_date.test Xmysql-test/t/type_datetime.test Xmysql-test/t/type_decimal.test Xmysql-test/t/type_enum.test Xmysql-test/t/type_float.test Xmysql-test/t/type_nchar.test Xmysql-test/t/type_newdecimal-big.test Xmysql-test/t/type_newdecimal.test Xmysql-test/t/type_ranges.test Xmysql-test/t/type_set.test Xmysql-test/t/type_time.test Xmysql-test/t/type_timestamp.test Xmysql-test/t/type_uint.test Xmysql-test/t/type_varchar.test Xmysql-test/t/type_year.test Xmysql-test/t/udf-master.opt Xmysql-test/t/udf.test Xmysql-test/t/udf_skip_grants-master.opt Xmysql-test/t/udf_skip_grants.test Xmysql-test/t/union-master.opt Xmysql-test/t/union.test Xmysql-test/t/unsafe_binlog_innodb-master.opt Xmysql-test/t/unsafe_binlog_innodb.test Xmysql-test/t/update.test Xmysql-test/t/upgrade.test Xmysql-test/t/user_limits.test Xmysql-test/t/user_var-binlog.test Xmysql-test/t/user_var.test Xmysql-test/t/varbinary.test Xmysql-test/t/variables+c.test Xmysql-test/t/variables-big.test Xmysql-test/t/variables-notembedded-master.opt Xmysql-test/t/variables-notembedded.test Xmysql-test/t/variables.test Xmysql-test/t/variables_debug.test Xmysql-test/t/view.test Xmysql-test/t/view_grant.test Xmysql-test/t/wait_timeout.test Xmysql-test/t/warnings-master.opt Xmysql-test/t/warnings.test Xmysql-test/t/warnings_engine_disabled-master.opt Xmysql-test/t/warnings_engine_disabled.test Xmysql-test/t/windows.test Xmysql-test/t/xa.test Xmysql-test/t/xml.test Xshare/aclocal/mysql.m4 Xshare/mysql/binary-configure Xshare/mysql/charsets/Index.xml Xshare/mysql/charsets/README Xshare/mysql/charsets/armscii8.xml Xshare/mysql/charsets/ascii.xml Xshare/mysql/charsets/cp1250.xml Xshare/mysql/charsets/cp1251.xml Xshare/mysql/charsets/cp1256.xml Xshare/mysql/charsets/cp1257.xml Xshare/mysql/charsets/cp850.xml Xshare/mysql/charsets/cp852.xml Xshare/mysql/charsets/cp866.xml Xshare/mysql/charsets/dec8.xml Xshare/mysql/charsets/geostd8.xml Xshare/mysql/charsets/greek.xml Xshare/mysql/charsets/hebrew.xml Xshare/mysql/charsets/hp8.xml Xshare/mysql/charsets/keybcs2.xml Xshare/mysql/charsets/koi8r.xml Xshare/mysql/charsets/koi8u.xml Xshare/mysql/charsets/latin1.xml Xshare/mysql/charsets/latin2.xml Xshare/mysql/charsets/latin5.xml Xshare/mysql/charsets/latin7.xml Xshare/mysql/charsets/macce.xml Xshare/mysql/charsets/macroman.xml Xshare/mysql/charsets/swe7.xml Xshare/mysql/config.huge.ini Xshare/mysql/config.medium.ini Xshare/mysql/config.small.ini Xshare/mysql/czech/errmsg.sys Xshare/mysql/danish/errmsg.sys Xshare/mysql/dutch/errmsg.sys Xshare/mysql/english/errmsg.sys Xshare/mysql/errmsg.txt Xshare/mysql/estonian/errmsg.sys Xshare/mysql/fill_help_tables.sql Xshare/mysql/french/errmsg.sys Xshare/mysql/german/errmsg.sys Xshare/mysql/greek/errmsg.sys Xshare/mysql/hungarian/errmsg.sys Xshare/mysql/italian/errmsg.sys Xshare/mysql/japanese/errmsg.sys Xshare/mysql/korean/errmsg.sys Xshare/mysql/mi_test_all Xshare/mysql/mi_test_all.res Xshare/mysql/my-huge.cnf Xshare/mysql/my-innodb-heavy-4G.cnf Xshare/mysql/my-large.cnf Xshare/mysql/my-medium.cnf Xshare/mysql/my-small.cnf Xshare/mysql/mysql-log-rotate Xshare/mysql/mysql.server Xshare/mysql/mysql_fix_privilege_tables.sql Xshare/mysql/mysql_system_tables.sql Xshare/mysql/mysql_system_tables_data.sql Xshare/mysql/mysql_test_data_timezone.sql Xshare/mysql/mysqld_multi.server Xshare/mysql/ndb-config-2-node.ini Xshare/mysql/norwegian-ny/errmsg.sys Xshare/mysql/norwegian/errmsg.sys Xshare/mysql/polish/errmsg.sys Xshare/mysql/portuguese/errmsg.sys Xshare/mysql/romanian/errmsg.sys Xshare/mysql/russian/errmsg.sys Xshare/mysql/serbian/errmsg.sys Xshare/mysql/slovak/errmsg.sys Xshare/mysql/spanish/errmsg.sys Xshare/mysql/swedish/errmsg.sys Xshare/mysql/ukrainian/errmsg.sys Xsql-bench/Comments/Access.crash-me Xsql-bench/Comments/Adabas.crash-me Xsql-bench/Comments/Empress.crash-me Xsql-bench/Comments/FrontBase.benchmark Xsql-bench/Comments/Informix.crash-me Xsql-bench/Comments/mysql.benchmark Xsql-bench/Comments/postgres.benchmark Xsql-bench/Comments/postgres.crash-me Xsql-bench/Data/ATIS/aircraft.txt Xsql-bench/Data/ATIS/airline.txt Xsql-bench/Data/ATIS/airport.txt Xsql-bench/Data/ATIS/airport_service.txt Xsql-bench/Data/ATIS/city.txt Xsql-bench/Data/ATIS/class_of_service.txt Xsql-bench/Data/ATIS/code_description.txt Xsql-bench/Data/ATIS/compound_class.txt Xsql-bench/Data/ATIS/connect_leg.txt Xsql-bench/Data/ATIS/date_day.txt Xsql-bench/Data/ATIS/day_name.txt Xsql-bench/Data/ATIS/dual_carrier.txt Xsql-bench/Data/ATIS/fare.txt Xsql-bench/Data/ATIS/fconnection.txt Xsql-bench/Data/ATIS/flight.txt Xsql-bench/Data/ATIS/flight_class.txt Xsql-bench/Data/ATIS/flight_day.txt Xsql-bench/Data/ATIS/flight_fare.txt Xsql-bench/Data/ATIS/food_service.txt Xsql-bench/Data/ATIS/ground_service.txt Xsql-bench/Data/ATIS/month_name.txt Xsql-bench/Data/ATIS/restrict_carrier.txt Xsql-bench/Data/ATIS/restrict_class.txt Xsql-bench/Data/ATIS/restriction.txt Xsql-bench/Data/ATIS/state.txt Xsql-bench/Data/ATIS/stop.txt Xsql-bench/Data/ATIS/stop1.txt Xsql-bench/Data/ATIS/time_interval.txt Xsql-bench/Data/ATIS/time_zone.txt Xsql-bench/Data/ATIS/transport.txt Xsql-bench/Data/Wisconsin/onek.data Xsql-bench/Data/Wisconsin/tenk.data Xsql-bench/README Xsql-bench/bench-count-distinct Xsql-bench/bench-init.pl Xsql-bench/compare-results Xsql-bench/copy-db Xsql-bench/crash-me Xsql-bench/graph-compare-results Xsql-bench/innotest1 Xsql-bench/innotest1a Xsql-bench/innotest1b Xsql-bench/innotest2 Xsql-bench/innotest2a Xsql-bench/innotest2b Xsql-bench/limits/Adabas.cfg Xsql-bench/limits/Informix.cfg Xsql-bench/limits/access.cfg Xsql-bench/limits/access_odbc.cfg Xsql-bench/limits/db2.cfg Xsql-bench/limits/empress.cfg Xsql-bench/limits/frontbase.cfg Xsql-bench/limits/interbase-dialect1.cfg Xsql-bench/limits/interbase-dialect3.cfg Xsql-bench/limits/interbase-superserver.cfg Xsql-bench/limits/interbase.cfg Xsql-bench/limits/mimer.cfg Xsql-bench/limits/ms-sql.cfg Xsql-bench/limits/ms-sql65.cfg Xsql-bench/limits/msql.cfg Xsql-bench/limits/mysql-3.22.cfg Xsql-bench/limits/mysql-3.23.cfg Xsql-bench/limits/mysql-4.0.cfg Xsql-bench/limits/mysql-4.1.cfg Xsql-bench/limits/mysql.cfg Xsql-bench/limits/oracle.cfg Xsql-bench/limits/pg.cfg Xsql-bench/limits/solid-nt4.cfg Xsql-bench/limits/solid.cfg Xsql-bench/limits/sybase.cfg Xsql-bench/run-all-tests Xsql-bench/server-cfg Xsql-bench/test-ATIS Xsql-bench/test-alter-table Xsql-bench/test-big-tables Xsql-bench/test-connect Xsql-bench/test-create Xsql-bench/test-insert Xsql-bench/test-select Xsql-bench/test-transactions Xsql-bench/test-wisconsin X@dirrmtry include/mysql X@dirrm lib/mysql/plugin X@dirrmtry lib/mysql X@dirrm %%DATADIR%%/charsets X@dirrm %%DATADIR%%/czech X@dirrm %%DATADIR%%/danish X@dirrm %%DATADIR%%/dutch X@dirrm %%DATADIR%%/english X@dirrm %%DATADIR%%/estonian X@dirrm %%DATADIR%%/french X@dirrm %%DATADIR%%/german X@dirrm %%DATADIR%%/greek X@dirrm %%DATADIR%%/hungarian X@dirrm %%DATADIR%%/italian X@dirrm %%DATADIR%%/japanese X@dirrm %%DATADIR%%/korean X@dirrm %%DATADIR%%/norwegian X@dirrm %%DATADIR%%/norwegian-ny X@dirrm %%DATADIR%%/polish X@dirrm %%DATADIR%%/portuguese X@dirrm %%DATADIR%%/romanian X@dirrm %%DATADIR%%/russian X@dirrm %%DATADIR%%/serbian X@dirrm %%DATADIR%%/slovak X@dirrm %%DATADIR%%/spanish X@dirrm %%DATADIR%%/swedish X@dirrm %%DATADIR%%/ukrainian X@dirrmtry %%DATADIR%% 6c7d90f38382366d9d3cdd3c535ca65f echo x - databases/mysql54-server/pkg-plist~ sed 's/^X//' >databases/mysql54-server/pkg-plist~ << 'dd55cbda6b76ef35aa3bc5d3b0aab254' Xbin/innochecksum Xbin/msql2mysql Xbin/my_print_defaults Xbin/myisam_ftdump Xbin/myisamchk Xbin/myisamlog Xbin/myisampack Xbin/mysql Xbin/mysql_client_test Xbin/mysql_client_test_embedded Xbin/mysql_config Xbin/mysql_convert_table_format Xbin/mysql_find_rows Xbin/mysql_fix_extensions Xbin/mysql_fix_privilege_tables Xbin/mysql_install_db Xbin/mysql_secure_installation Xbin/mysql_setpermission Xbin/mysql_tzinfo_to_sql Xbin/mysql_upgrade Xbin/mysql_waitpid Xbin/mysql_zap Xbin/mysqlaccess Xbin/mysqladmin Xbin/mysqlbinlog Xbin/mysqlbug Xbin/mysqlcheck Xbin/mysqld_multi Xbin/mysqld_safe Xbin/mysqldump Xbin/mysqldumpslow Xbin/mysqlhotcopy Xbin/mysqlimport Xbin/mysqlshow Xbin/mysqlslap Xbin/mysqltest Xbin/mysqltest_embedded Xbin/perror Xbin/replace Xbin/resolve_stack_dump Xbin/resolveip Xdocs/ChangeLog Xdocs/mysql.info Xinclude/mysql/decimal.h Xinclude/mysql/errmsg.h Xinclude/mysql/keycache.h Xinclude/mysql/m_ctype.h Xinclude/mysql/m_string.h Xinclude/mysql/my_alloc.h Xinclude/mysql/my_attribute.h Xinclude/mysql/my_config.h Xinclude/mysql/my_dbug.h Xinclude/mysql/my_dir.h Xinclude/mysql/my_getopt.h Xinclude/mysql/my_global.h Xinclude/mysql/my_list.h Xinclude/mysql/my_net.h Xinclude/mysql/my_no_pthread.h Xinclude/mysql/my_pthread.h Xinclude/mysql/my_sys.h Xinclude/mysql/my_xml.h Xinclude/mysql/mysql.h Xinclude/mysql/mysql_com.h Xinclude/mysql/mysql_embed.h Xinclude/mysql/mysql_time.h Xinclude/mysql/mysql_version.h Xinclude/mysql/mysqld_ername.h Xinclude/mysql/mysqld_error.h Xinclude/mysql/plugin.h Xinclude/mysql/probes_mysql.h Xinclude/mysql/probes_mysql_nodtrace.h Xinclude/mysql/sql_common.h Xinclude/mysql/sql_state.h Xinclude/mysql/sslopt-case.h Xinclude/mysql/sslopt-longopts.h Xinclude/mysql/sslopt-vars.h Xinclude/mysql/typelib.h Xlib/mysql/libdbug.a Xlib/mysql/libheap.a Xlib/mysql/libmyisam.a Xlib/mysql/libmyisammrg.a Xlib/mysql/libmysqlclient.a Xlib/mysql/libmysqlclient.la Xlib/mysql/libmysqlclient.so Xlib/mysql/libmysqlclient.so.16 Xlib/mysql/libmysqlclient_r.a Xlib/mysql/libmysqlclient_r.la Xlib/mysql/libmysqlclient_r.so Xlib/mysql/libmysqlclient_r.so.16 Xlib/mysql/libmysqld.a Xlib/mysql/libmystrings.a Xlib/mysql/libmysys.a Xlib/mysql/libvio.a Xlib/mysql/plugin/ha_example.a Xlib/mysql/plugin/ha_example.la Xlib/mysql/plugin/ha_example.so Xlib/mysql/plugin/ha_example.so.0 Xlib/mysql/plugin/libdaemon_example.a Xlib/mysql/plugin/libdaemon_example.la Xlib/mysql/plugin/libdaemon_example.so Xlib/mysql/plugin/libdaemon_example.so.0 Xlib/mysql/plugin/mypluglib.a Xlib/mysql/plugin/mypluglib.la Xlib/mysql/plugin/mypluglib.so Xlib/mysql/plugin/mypluglib.so.0 Xlibdata/ldconfig/mysql Xlibexec/mysqld Xman/man1/comp_err.1 Xman/man1/innochecksum.1 Xman/man1/make_win_bin_dist.1 Xman/man1/msql2mysql.1 Xman/man1/my_print_defaults.1 Xman/man1/myisam_ftdump.1 Xman/man1/myisamchk.1 Xman/man1/myisamlog.1 Xman/man1/myisampack.1 Xman/man1/mysql-stress-test.pl.1 Xman/man1/mysql-test-run.pl.1 Xman/man1/mysql.1 Xman/man1/mysql.1.gz Xman/man1/mysql.server.1 Xman/man1/mysql_client_test.1 Xman/man1/mysql_client_test_embedded.1 Xman/man1/mysql_config.1 Xman/man1/mysql_config.1.gz Xman/man1/mysql_convert_table_format.1 Xman/man1/mysql_find_rows.1 Xman/man1/mysql_fix_extensions.1 Xman/man1/mysql_fix_privilege_tables.1 Xman/man1/mysql_install_db.1 Xman/man1/mysql_secure_installation.1 Xman/man1/mysql_setpermission.1 Xman/man1/mysql_tzinfo_to_sql.1 Xman/man1/mysql_upgrade.1 Xman/man1/mysql_upgrade.1.gz Xman/man1/mysql_waitpid.1 Xman/man1/mysql_zap.1 Xman/man1/mysqlaccess.1 Xman/man1/mysqladmin.1 Xman/man1/mysqladmin.1.gz Xman/man1/mysqlbinlog.1 Xman/man1/mysqlbinlog.1.gz Xman/man1/mysqlbug.1 Xman/man1/mysqlbug.1.gz Xman/man1/mysqlcheck.1 Xman/man1/mysqlcheck.1.gz Xman/man1/mysqld_multi.1 Xman/man1/mysqld_safe.1 Xman/man1/mysqldump.1 Xman/man1/mysqldump.1.gz Xman/man1/mysqldumpslow.1 Xman/man1/mysqlhotcopy.1 Xman/man1/mysqlimport.1 Xman/man1/mysqlimport.1.gz Xman/man1/mysqlman.1 Xman/man1/mysqlshow.1 Xman/man1/mysqlshow.1.gz Xman/man1/mysqlslap.1 Xman/man1/mysqlslap.1.gz Xman/man1/mysqltest.1 Xman/man1/mysqltest.1.gz Xman/man1/mysqltest_embedded.1 Xman/man1/perror.1 Xman/man1/replace.1 Xman/man1/resolve_stack_dump.1 Xman/man1/resolveip.1 Xman/man8/mysqld.8 Xman/man8/mysqlmanager.8 Xman/man8/mysqlmanager.8.gz Xmysql-test/extra/binlog_tests/binlog.test Xmysql-test/extra/binlog_tests/binlog_insert_delayed.test Xmysql-test/extra/binlog_tests/binlog_truncate.test Xmysql-test/extra/binlog_tests/blackhole.test Xmysql-test/extra/binlog_tests/ctype_cp932.test Xmysql-test/extra/binlog_tests/ctype_cp932_binlog.test Xmysql-test/extra/binlog_tests/ctype_ucs_binlog.test Xmysql-test/extra/binlog_tests/database.test Xmysql-test/extra/binlog_tests/drop_temp_table.test Xmysql-test/extra/binlog_tests/innodb_stat.test Xmysql-test/extra/binlog_tests/insert_select-binlog.test Xmysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test Xmysql-test/extra/binlog_tests/mix_innodb_myisam_side_effects.test Xmysql-test/extra/rpl_tests/rpl_EE_err.test Xmysql-test/extra/rpl_tests/rpl_auto_increment.test Xmysql-test/extra/rpl_tests/rpl_blackhole.test Xmysql-test/extra/rpl_tests/rpl_charset.test Xmysql-test/extra/rpl_tests/rpl_commit_after_flush.test Xmysql-test/extra/rpl_tests/rpl_conflicts.test Xmysql-test/extra/rpl_tests/rpl_ddl.test Xmysql-test/extra/rpl_tests/rpl_deadlock.test Xmysql-test/extra/rpl_tests/rpl_delete_no_where.test Xmysql-test/extra/rpl_tests/rpl_extraMaster_Col.test Xmysql-test/extra/rpl_tests/rpl_extraSlave_Col.test Xmysql-test/extra/rpl_tests/rpl_failed_optimize.test Xmysql-test/extra/rpl_tests/rpl_flsh_tbls.test Xmysql-test/extra/rpl_tests/rpl_foreign_key.test Xmysql-test/extra/rpl_tests/rpl_insert_delayed.test Xmysql-test/extra/rpl_tests/rpl_insert_id.test Xmysql-test/extra/rpl_tests/rpl_insert_id_pk.test Xmysql-test/extra/rpl_tests/rpl_insert_ignore.test Xmysql-test/extra/rpl_tests/rpl_loaddata.test Xmysql-test/extra/rpl_tests/rpl_log.test Xmysql-test/extra/rpl_tests/rpl_max_relay_size.test Xmysql-test/extra/rpl_tests/rpl_multi_query.test Xmysql-test/extra/rpl_tests/rpl_multi_update.test Xmysql-test/extra/rpl_tests/rpl_multi_update2.test Xmysql-test/extra/rpl_tests/rpl_multi_update3.test Xmysql-test/extra/rpl_tests/rpl_ndb_2multi_basic.test Xmysql-test/extra/rpl_tests/rpl_ndb_2multi_eng.test Xmysql-test/extra/rpl_tests/rpl_ndb_apply_status.test Xmysql-test/extra/rpl_tests/rpl_partition.test Xmysql-test/extra/rpl_tests/rpl_relayrotate.test Xmysql-test/extra/rpl_tests/rpl_reset_slave.test Xmysql-test/extra/rpl_tests/rpl_row_001.test Xmysql-test/extra/rpl_tests/rpl_row_UUID.test Xmysql-test/extra/rpl_tests/rpl_row_basic.test Xmysql-test/extra/rpl_tests/rpl_row_blob.test Xmysql-test/extra/rpl_tests/rpl_row_delayed_ins.test Xmysql-test/extra/rpl_tests/rpl_row_func003.test Xmysql-test/extra/rpl_tests/rpl_row_sp002.test Xmysql-test/extra/rpl_tests/rpl_row_sp003.test Xmysql-test/extra/rpl_tests/rpl_row_sp006.test Xmysql-test/extra/rpl_tests/rpl_row_sp007.test Xmysql-test/extra/rpl_tests/rpl_row_tabledefs.test Xmysql-test/extra/rpl_tests/rpl_stm_000001.test Xmysql-test/extra/rpl_tests/rpl_stm_EE_err2.test Xmysql-test/extra/rpl_tests/rpl_sv_relay_space.test Xmysql-test/extra/rpl_tests/rpl_trig004.test Xmysql-test/extra/rpl_tests/rpl_truncate.test Xmysql-test/extra/rpl_tests/rpl_truncate_helper.test Xmysql-test/include/add_anonymous_users.inc Xmysql-test/include/analyze-sync_with_master.test Xmysql-test/include/analyze-timeout.test Xmysql-test/include/big_test.inc Xmysql-test/include/check-testcase.test Xmysql-test/include/check-warnings.test Xmysql-test/include/check_events_off.inc Xmysql-test/include/check_var_limit.inc Xmysql-test/include/circular_rpl_for_4_hosts_init.inc Xmysql-test/include/circular_rpl_for_4_hosts_sync.inc Xmysql-test/include/cleanup_fake_relay_log.inc Xmysql-test/include/commit.inc Xmysql-test/include/common-tests.inc Xmysql-test/include/concurrent.inc Xmysql-test/include/connect2.inc Xmysql-test/include/count_sessions.inc Xmysql-test/include/ctype_common.inc Xmysql-test/include/ctype_filesort.inc Xmysql-test/include/ctype_german.inc Xmysql-test/include/ctype_innodb_like.inc Xmysql-test/include/ctype_like_escape.inc Xmysql-test/include/ctype_like_range_f1f2.inc Xmysql-test/include/ctype_regex.inc Xmysql-test/include/ddl_i18n.check_events.inc Xmysql-test/include/ddl_i18n.check_sp.inc Xmysql-test/include/ddl_i18n.check_triggers.inc Xmysql-test/include/ddl_i18n.check_views.inc Xmysql-test/include/deadlock.inc Xmysql-test/include/default_my.cnf Xmysql-test/include/default_mysqld.cnf Xmysql-test/include/default_ndbd.cnf Xmysql-test/include/delete_anonymous_users.inc Xmysql-test/include/diff_tables.inc Xmysql-test/include/endspace.inc Xmysql-test/include/get_binlog_dump_thread_id.inc Xmysql-test/include/gis_generic.inc Xmysql-test/include/gis_keys.inc Xmysql-test/include/grant_cache.inc Xmysql-test/include/handler.inc Xmysql-test/include/have_32bit.inc Xmysql-test/include/have_64bit.inc Xmysql-test/include/have_archive.inc Xmysql-test/include/have_big5.inc Xmysql-test/include/have_binlog_format_mixed.inc Xmysql-test/include/have_binlog_format_mixed_or_row.inc Xmysql-test/include/have_binlog_format_mixed_or_statement.inc Xmysql-test/include/have_binlog_format_row.inc Xmysql-test/include/have_binlog_format_row_or_statement.inc Xmysql-test/include/have_binlog_format_statement.inc Xmysql-test/include/have_blackhole.inc Xmysql-test/include/have_case_insensitive_file_system.inc Xmysql-test/include/have_case_sensitive_file_system.inc Xmysql-test/include/have_community_features.inc Xmysql-test/include/have_compress.inc Xmysql-test/include/have_cp1250_ch.inc Xmysql-test/include/have_cp1251.inc Xmysql-test/include/have_cp866.inc Xmysql-test/include/have_cp932.inc Xmysql-test/include/have_crypt.inc Xmysql-test/include/have_csv.inc Xmysql-test/include/have_debug.inc Xmysql-test/include/have_eucjpms.inc Xmysql-test/include/have_euckr.inc Xmysql-test/include/have_example_plugin.inc Xmysql-test/include/have_exampledb.inc Xmysql-test/include/have_gb2312.inc Xmysql-test/include/have_gbk.inc Xmysql-test/include/have_geometry.inc Xmysql-test/include/have_innodb.inc Xmysql-test/include/have_koi8r.inc Xmysql-test/include/have_latin2_ch.inc Xmysql-test/include/have_local_infile.inc Xmysql-test/include/have_log_bin.inc Xmysql-test/include/have_lowercase0.inc Xmysql-test/include/have_lowercase1.inc Xmysql-test/include/have_lowercase2.inc Xmysql-test/include/have_multi_ndb.inc Xmysql-test/include/have_ndb.inc Xmysql-test/include/have_ndb_extra.inc Xmysql-test/include/have_ndbapi_examples.inc Xmysql-test/include/have_outfile.inc Xmysql-test/include/have_partition.inc Xmysql-test/include/have_query_cache.inc Xmysql-test/include/have_simple_parser.inc Xmysql-test/include/have_sjis.inc Xmysql-test/include/have_ssl.inc Xmysql-test/include/have_symlink.inc Xmysql-test/include/have_tis620.inc Xmysql-test/include/have_ucs2.inc Xmysql-test/include/have_udf.inc Xmysql-test/include/have_ujis.inc Xmysql-test/include/have_utf8.inc Xmysql-test/include/index_merge1.inc Xmysql-test/include/index_merge2.inc Xmysql-test/include/index_merge_2sweeps.inc Xmysql-test/include/index_merge_ror.inc Xmysql-test/include/index_merge_ror_cpk.inc Xmysql-test/include/innodb_rollback_on_timeout.inc Xmysql-test/include/innodb_trx_weight.inc Xmysql-test/include/is_embedded.inc Xmysql-test/include/linux_sys_vars.inc Xmysql-test/include/load_sysvars.inc Xmysql-test/include/loaddata_autocom.inc Xmysql-test/include/master-slave-end.inc Xmysql-test/include/master-slave-reset.inc Xmysql-test/include/master-slave.inc Xmysql-test/include/mix1.inc Xmysql-test/include/mix2.inc Xmysql-test/include/mix2_ucs2.inc Xmysql-test/include/mtr_check.sql Xmysql-test/include/mtr_warnings.sql Xmysql-test/include/mysqlbinlog_row_engine.inc Xmysql-test/include/mysqltest-x.inc Xmysql-test/include/ndb_backup.inc Xmysql-test/include/ndb_backup_print.inc Xmysql-test/include/ndb_default_cluster.inc Xmysql-test/include/ndb_master-slave.inc Xmysql-test/include/ndb_master-slave_2ch.inc Xmysql-test/include/ndb_not_readonly.inc Xmysql-test/include/ndb_restore_master.inc Xmysql-test/include/ndb_restore_slave_eoption.inc Xmysql-test/include/ndb_setup_slave.inc Xmysql-test/include/ndb_wait_connected.inc Xmysql-test/include/no_running_event_scheduler.inc Xmysql-test/include/no_running_events.inc Xmysql-test/include/not_as_root.inc Xmysql-test/include/not_embedded.inc Xmysql-test/include/not_ndb.inc Xmysql-test/include/not_ndb_default.inc Xmysql-test/include/not_openssl.inc Xmysql-test/include/not_valgrind.inc Xmysql-test/include/not_windows.inc Xmysql-test/include/one_thread_per_connection.inc Xmysql-test/include/parser_bug21114.inc Xmysql-test/include/ps_conv.inc Xmysql-test/include/ps_create.inc Xmysql-test/include/ps_ddl_1.inc Xmysql-test/include/ps_modify.inc Xmysql-test/include/ps_modify1.inc Xmysql-test/include/ps_query.inc Xmysql-test/include/ps_renew.inc Xmysql-test/include/query_cache.inc Xmysql-test/include/query_cache_sql_prepare.inc Xmysql-test/include/read_many_rows.inc Xmysql-test/include/report-features.test Xmysql-test/include/reset_master_and_slave.inc Xmysql-test/include/restart_mysqld.inc Xmysql-test/include/rowid_order.inc Xmysql-test/include/rpl_events.inc Xmysql-test/include/rpl_multi_engine.inc Xmysql-test/include/rpl_multi_engine2.inc Xmysql-test/include/rpl_multi_engine3.inc Xmysql-test/include/rpl_stmt_seq.inc Xmysql-test/include/rpl_udf.inc Xmysql-test/include/running_event_scheduler.inc Xmysql-test/include/safe_set_to_maybe_ro_var.inc Xmysql-test/include/select_ndb_apply_status.inc Xmysql-test/include/set_binlog_format_mixed.sql Xmysql-test/include/set_binlog_format_row.sql Xmysql-test/include/set_binlog_format_statement.sql Xmysql-test/include/setup_fake_relay_log.inc Xmysql-test/include/show_binary_logs.inc Xmysql-test/include/show_binlog_events.inc Xmysql-test/include/show_binlog_events2.inc Xmysql-test/include/show_binlog_using_logname.inc Xmysql-test/include/show_master_logs.inc Xmysql-test/include/show_master_status.inc Xmysql-test/include/show_msg.inc Xmysql-test/include/show_msg80.inc Xmysql-test/include/show_rpl_debug_info.inc Xmysql-test/include/show_slave_status.inc Xmysql-test/include/show_slave_status2.inc Xmysql-test/include/sp-vars.inc Xmysql-test/include/start_slave.inc Xmysql-test/include/stop_slave.inc Xmysql-test/include/strict_autoinc.inc Xmysql-test/include/sync_slave_io_with_master.inc Xmysql-test/include/system_db_struct.inc Xmysql-test/include/test_fieldsize.inc Xmysql-test/include/test_outfile.inc Xmysql-test/include/testdb_only.inc Xmysql-test/include/tpcb.inc Xmysql-test/include/tpcb_disk_data.inc Xmysql-test/include/unsafe_binlog.inc Xmysql-test/include/uses_vardir.inc Xmysql-test/include/varchar.inc Xmysql-test/include/wait_condition.inc Xmysql-test/include/wait_condition_sp.inc Xmysql-test/include/wait_for_binlog_event.inc Xmysql-test/include/wait_for_query_to_suceed.inc Xmysql-test/include/wait_for_slave_io_to_start.inc Xmysql-test/include/wait_for_slave_io_to_stop.inc Xmysql-test/include/wait_for_slave_param.inc Xmysql-test/include/wait_for_slave_sql_error.inc Xmysql-test/include/wait_for_slave_sql_error_and_skip.inc Xmysql-test/include/wait_for_slave_sql_to_start.inc Xmysql-test/include/wait_for_slave_sql_to_stop.inc Xmysql-test/include/wait_for_slave_to_start.inc Xmysql-test/include/wait_for_slave_to_stop.inc Xmysql-test/include/wait_until_connected_again.inc Xmysql-test/include/wait_until_count_sessions.inc Xmysql-test/include/wait_until_disconnected.inc Xmysql-test/include/wait_until_rows_count.inc Xmysql-test/include/windows.inc Xmysql-test/include/windows_sys_vars.inc Xmysql-test/lib/My/Config.pm Xmysql-test/lib/My/ConfigFactory.pm Xmysql-test/lib/My/CoreDump.pm Xmysql-test/lib/My/File/Path.pm Xmysql-test/lib/My/Find.pm Xmysql-test/lib/My/Handles.pm Xmysql-test/lib/My/Options.pm Xmysql-test/lib/My/Platform.pm Xmysql-test/lib/My/SafeProcess.pm Xmysql-test/lib/My/SafeProcess/Base.pm Xmysql-test/lib/My/SafeProcess/my_safe_process Xmysql-test/lib/My/SafeProcess/safe_process.pl Xmysql-test/lib/My/SysInfo.pm Xmysql-test/lib/My/Test.pm Xmysql-test/lib/mtr_cases.pm Xmysql-test/lib/mtr_gcov.pl Xmysql-test/lib/mtr_gprof.pl Xmysql-test/lib/mtr_io.pl Xmysql-test/lib/mtr_match.pm Xmysql-test/lib/mtr_misc.pl Xmysql-test/lib/mtr_process.pl Xmysql-test/lib/mtr_report.pm Xmysql-test/lib/mtr_stress.pl Xmysql-test/lib/mtr_unique.pm Xmysql-test/lib/v1/My/Config.pm Xmysql-test/lib/v1/mtr_cases.pl Xmysql-test/lib/v1/mtr_gcov.pl Xmysql-test/lib/v1/mtr_gprof.pl Xmysql-test/lib/v1/mtr_im.pl Xmysql-test/lib/v1/mtr_io.pl Xmysql-test/lib/v1/mtr_match.pl Xmysql-test/lib/v1/mtr_misc.pl Xmysql-test/lib/v1/mtr_process.pl Xmysql-test/lib/v1/mtr_report.pl Xmysql-test/lib/v1/mtr_stress.pl Xmysql-test/lib/v1/mtr_timer.pl Xmysql-test/lib/v1/mtr_unique.pl Xmysql-test/lib/v1/mysql-test-run.pl Xmysql-test/lib/v1/ndb_config_1_node.ini Xmysql-test/lib/v1/ndb_config_2_node.ini Xmysql-test/mtr Xmysql-test/mysql-stress-test.pl Xmysql-test/mysql-test-run Xmysql-test/mysql-test-run.pl Xmysql-test/r/1st.result Xmysql-test/r/alias.result Xmysql-test/r/almost_full.result Xmysql-test/r/alter_table-big.result Xmysql-test/r/alter_table.result Xmysql-test/r/analyse.result Xmysql-test/r/analyze.result Xmysql-test/r/ansi.result Xmysql-test/r/archive-big.result Xmysql-test/r/archive.result Xmysql-test/r/archive_bitfield.result Xmysql-test/r/archive_gis.result Xmysql-test/r/auto_increment.result Xmysql-test/r/backup.result Xmysql-test/r/bench_count_distinct.result Xmysql-test/r/big_test.require Xmysql-test/r/bigint.result Xmysql-test/r/binary.result Xmysql-test/r/binlog_tx_isolation.result Xmysql-test/r/bool.result Xmysql-test/r/bootstrap.result Xmysql-test/r/bulk_replace.result Xmysql-test/r/cache_innodb.result Xmysql-test/r/case.result Xmysql-test/r/case_insensitive_file_system.require Xmysql-test/r/case_sensitive_file_system.require Xmysql-test/r/cast.result Xmysql-test/r/change_user.result Xmysql-test/r/check.result Xmysql-test/r/check_var_limit.require Xmysql-test/r/client_xml.result Xmysql-test/r/comments.result Xmysql-test/r/commit_1innodb.result Xmysql-test/r/compare.result Xmysql-test/r/compress.result Xmysql-test/r/concurrent_innodb_safelog.result Xmysql-test/r/concurrent_innodb_unsafelog.result Xmysql-test/r/connect.result Xmysql-test/r/consistent_snapshot.result Xmysql-test/r/constraints.result Xmysql-test/r/contributors.result Xmysql-test/r/count_distinct.result Xmysql-test/r/count_distinct2.result Xmysql-test/r/count_distinct3.result Xmysql-test/r/crash_commit_before.result Xmysql-test/r/create-big.result Xmysql-test/r/create.result Xmysql-test/r/create_not_windows.result Xmysql-test/r/create_select_tmp.result Xmysql-test/r/csv.result Xmysql-test/r/csv_alter_table.result Xmysql-test/r/csv_not_null.result Xmysql-test/r/ctype_ascii.result Xmysql-test/r/ctype_big5.result Xmysql-test/r/ctype_collate.result Xmysql-test/r/ctype_cp1250_ch.result Xmysql-test/r/ctype_cp1251.result Xmysql-test/r/ctype_cp932_binlog_row.result Xmysql-test/r/ctype_cp932_binlog_stm.result Xmysql-test/r/ctype_create.result Xmysql-test/r/ctype_eucjpms.result Xmysql-test/r/ctype_euckr.result Xmysql-test/r/ctype_filename.result Xmysql-test/r/ctype_filesystem.result Xmysql-test/r/ctype_gb2312.result Xmysql-test/r/ctype_gbk.result Xmysql-test/r/ctype_hebrew.result Xmysql-test/r/ctype_latin1.result Xmysql-test/r/ctype_latin1_de.result Xmysql-test/r/ctype_latin2.result Xmysql-test/r/ctype_latin2_ch.result Xmysql-test/r/ctype_ldml.result Xmysql-test/r/ctype_many.result Xmysql-test/r/ctype_mb.result Xmysql-test/r/ctype_recoding.result Xmysql-test/r/ctype_sjis.result Xmysql-test/r/ctype_tis620.result Xmysql-test/r/ctype_uca.result Xmysql-test/r/ctype_ucs.result Xmysql-test/r/ctype_ucs2_def.result Xmysql-test/r/ctype_ujis.result Xmysql-test/r/ctype_ujis_ucs2.result Xmysql-test/r/ctype_utf8.result Xmysql-test/r/date_formats.result Xmysql-test/r/ddl_i18n_koi8r.result Xmysql-test/r/ddl_i18n_utf8.result Xmysql-test/r/deadlock_innodb.result Xmysql-test/r/default.result Xmysql-test/r/delayed.result Xmysql-test/r/delete.result Xmysql-test/r/derived.result Xmysql-test/r/dirty_close.result Xmysql-test/r/distinct.result Xmysql-test/r/drop.result Xmysql-test/r/empty_table.result Xmysql-test/r/endspace.result Xmysql-test/r/error_simulation.result Xmysql-test/r/errors.result Xmysql-test/r/events_1.result Xmysql-test/r/events_2.result Xmysql-test/r/events_bugs.result Xmysql-test/r/events_embedded.result Xmysql-test/r/events_grant.result Xmysql-test/r/events_logs_tests.result Xmysql-test/r/events_microsec.result Xmysql-test/r/events_restart.result Xmysql-test/r/events_scheduling.result Xmysql-test/r/events_stress.result Xmysql-test/r/events_time_zone.result Xmysql-test/r/events_trans.result Xmysql-test/r/events_trans_notembedded.result Xmysql-test/r/exampledb.result Xmysql-test/r/execution_constants.result Xmysql-test/r/explain.result Xmysql-test/r/fix_priv_tables.result Xmysql-test/r/flush.result Xmysql-test/r/flush2.result Xmysql-test/r/flush_block_commit.result Xmysql-test/r/flush_block_commit_notembedded.result Xmysql-test/r/flush_read_lock_kill.result Xmysql-test/r/flush_table.result Xmysql-test/r/foreign_key.result Xmysql-test/r/fulltext.result Xmysql-test/r/fulltext2.result Xmysql-test/r/fulltext3.result Xmysql-test/r/fulltext_cache.result Xmysql-test/r/fulltext_distinct.result Xmysql-test/r/fulltext_left_join.result Xmysql-test/r/fulltext_multi.result Xmysql-test/r/fulltext_order_by.result Xmysql-test/r/fulltext_plugin.result Xmysql-test/r/fulltext_update.result Xmysql-test/r/fulltext_var.result Xmysql-test/r/func_compress.result Xmysql-test/r/func_concat.result Xmysql-test/r/func_crypt.result Xmysql-test/r/func_date_add.result Xmysql-test/r/func_default.result Xmysql-test/r/func_des_encrypt.result Xmysql-test/r/func_encrypt.result Xmysql-test/r/func_encrypt_nossl.result Xmysql-test/r/func_equal.result Xmysql-test/r/func_gconcat.result Xmysql-test/r/func_group.result Xmysql-test/r/func_group_innodb.result Xmysql-test/r/func_if.result Xmysql-test/r/func_in.result Xmysql-test/r/func_isnull.result Xmysql-test/r/func_like.result Xmysql-test/r/func_math.result Xmysql-test/r/func_misc.result Xmysql-test/r/func_op.result Xmysql-test/r/func_regexp.result Xmysql-test/r/func_rollback.result Xmysql-test/r/func_sapdb.result Xmysql-test/r/func_set.result Xmysql-test/r/func_str.result Xmysql-test/r/func_system.result Xmysql-test/r/func_test.result Xmysql-test/r/func_time.result Xmysql-test/r/func_timestamp.result Xmysql-test/r/gcc296.result Xmysql-test/r/gis-rtree.result Xmysql-test/r/gis.result Xmysql-test/r/grant.result Xmysql-test/r/grant2.result Xmysql-test/r/grant3.result Xmysql-test/r/grant_cache_no_prot.result Xmysql-test/r/grant_cache_ps_prot.result Xmysql-test/r/greedy_optimizer.result Xmysql-test/r/group_by.result Xmysql-test/r/group_min_max.result Xmysql-test/r/group_min_max_innodb.result Xmysql-test/r/handler_innodb.result Xmysql-test/r/handler_myisam.result Xmysql-test/r/have_big5.require Xmysql-test/r/have_binlog_format_mixed.require Xmysql-test/r/have_binlog_format_row.require Xmysql-test/r/have_binlog_format_statement.require Xmysql-test/r/have_community_features.require Xmysql-test/r/have_compress.require Xmysql-test/r/have_cp1250_ch.require Xmysql-test/r/have_cp1251.require Xmysql-test/r/have_cp866.require Xmysql-test/r/have_cp932.require Xmysql-test/r/have_crypt.require Xmysql-test/r/have_debug.require Xmysql-test/r/have_dynamic_loading.require Xmysql-test/r/have_eucjpms.require Xmysql-test/r/have_euckr.require Xmysql-test/r/have_example_plugin.require Xmysql-test/r/have_gb2312.require Xmysql-test/r/have_gbk.require Xmysql-test/r/have_geometry.require Xmysql-test/r/have_koi8r.require Xmysql-test/r/have_latin2_ch.require Xmysql-test/r/have_local_infile.require Xmysql-test/r/have_log_bin.require Xmysql-test/r/have_met_timezone.require Xmysql-test/r/have_moscow_leap_timezone.require Xmysql-test/r/have_mysql_upgrade.result Xmysql-test/r/have_ndb_extra.require Xmysql-test/r/have_ndbapi_examples.require Xmysql-test/r/have_outfile.require Xmysql-test/r/have_partition.require Xmysql-test/r/have_perror.require Xmysql-test/r/have_query_cache.require Xmysql-test/r/have_simple_parser.require Xmysql-test/r/have_sjis.require Xmysql-test/r/have_ssl.require Xmysql-test/r/have_symlink.require Xmysql-test/r/have_tis620.require Xmysql-test/r/have_ucs2.require Xmysql-test/r/have_udf_example.require Xmysql-test/r/have_ujis.require Xmysql-test/r/have_utf8.require Xmysql-test/r/having.result Xmysql-test/r/heap.result Xmysql-test/r/heap_auto_increment.result Xmysql-test/r/heap_btree.result Xmysql-test/r/heap_hash.result Xmysql-test/r/help.result Xmysql-test/r/index_merge_innodb.result Xmysql-test/r/index_merge_myisam.result Xmysql-test/r/information_schema.result Xmysql-test/r/information_schema_chmod.result Xmysql-test/r/information_schema_db.result Xmysql-test/r/information_schema_inno.result Xmysql-test/r/information_schema_part.result Xmysql-test/r/init_connect.result Xmysql-test/r/init_file.result Xmysql-test/r/innodb-autoinc-optimize.result Xmysql-test/r/innodb-autoinc.result Xmysql-test/r/innodb-lock.result Xmysql-test/r/innodb-replace.result Xmysql-test/r/innodb-semi-consistent.result Xmysql-test/r/innodb-ucs2.result Xmysql-test/r/innodb.result Xmysql-test/r/innodb_autoinc_lock_mode_zero.result Xmysql-test/r/innodb_bug30919.result Xmysql-test/r/innodb_bug34053.result Xmysql-test/r/innodb_bug34300.result Xmysql-test/r/innodb_bug35220.result Xmysql-test/r/innodb_bug38231.result Xmysql-test/r/innodb_bug39438.result Xmysql-test/r/innodb_gis.result Xmysql-test/r/innodb_ignore_builtin.result Xmysql-test/r/innodb_mysql.result Xmysql-test/r/innodb_mysql_rbk.result Xmysql-test/r/innodb_notembedded.result Xmysql-test/r/innodb_timeout_rollback.result Xmysql-test/r/innodb_trx_weight.result Xmysql-test/r/insert.result Xmysql-test/r/insert_notembedded.result Xmysql-test/r/insert_select.result Xmysql-test/r/insert_update.result Xmysql-test/r/is_debug_build.require Xmysql-test/r/is_embedded.require Xmysql-test/r/isam.result Xmysql-test/r/join.result Xmysql-test/r/join_crash.result Xmysql-test/r/join_nested.result Xmysql-test/r/join_outer.result Xmysql-test/r/join_outer_innodb.result Xmysql-test/r/key.result Xmysql-test/r/key_cache.result Xmysql-test/r/key_diff.result Xmysql-test/r/key_primary.result Xmysql-test/r/keywords.result Xmysql-test/r/kill.result Xmysql-test/r/limit.result Xmysql-test/r/loaddata.result Xmysql-test/r/loaddata_autocom_innodb.result Xmysql-test/r/lock.result Xmysql-test/r/lock_multi.result Xmysql-test/r/lock_tables_lost_commit.result Xmysql-test/r/log_state.result Xmysql-test/r/log_tables-big.result Xmysql-test/r/log_tables.result Xmysql-test/r/long_tmpdir.result Xmysql-test/r/lowercase0.require Xmysql-test/r/lowercase1.require Xmysql-test/r/lowercase2.require Xmysql-test/r/lowercase_fs_off.result Xmysql-test/r/lowercase_mixed_tmpdir.result Xmysql-test/r/lowercase_table.result Xmysql-test/r/lowercase_table2.result Xmysql-test/r/lowercase_table3.result Xmysql-test/r/lowercase_table_grant.result Xmysql-test/r/lowercase_table_qcache.result Xmysql-test/r/lowercase_view.result Xmysql-test/r/merge-big.result Xmysql-test/r/merge.result Xmysql-test/r/merge_innodb.result Xmysql-test/r/metadata.result Xmysql-test/r/mix2_myisam.result Xmysql-test/r/mix2_myisam_ucs2.result Xmysql-test/r/multi_statement.result Xmysql-test/r/multi_update.result Xmysql-test/r/multi_update2.result Xmysql-test/r/multi_update_tiny_hash.result Xmysql-test/r/myisam-blob.result Xmysql-test/r/myisam-system.result Xmysql-test/r/myisam.result Xmysql-test/r/myisampack.result Xmysql-test/r/mysql.result Xmysql-test/r/mysql_client_test.result Xmysql-test/r/mysql_comments.result Xmysql-test/r/mysql_cp932.result Xmysql-test/r/mysql_protocols.result Xmysql-test/r/mysql_upgrade.result Xmysql-test/r/mysqladmin.result Xmysql-test/r/mysqlbinlog-cp932.result Xmysql-test/r/mysqlbinlog.result Xmysql-test/r/mysqlbinlog2.result Xmysql-test/r/mysqlbinlog_base64.result Xmysql-test/r/mysqlbinlog_row.result Xmysql-test/r/mysqlbinlog_row_big.result Xmysql-test/r/mysqlbinlog_row_innodb.result Xmysql-test/r/mysqlbinlog_row_myisam.result Xmysql-test/r/mysqlbinlog_row_trans.result Xmysql-test/r/mysqlcheck.result Xmysql-test/r/mysqldump-compat.result Xmysql-test/r/mysqldump-max.result Xmysql-test/r/mysqldump-no-binlog.result Xmysql-test/r/mysqldump.result Xmysql-test/r/mysqlshow.result Xmysql-test/r/mysqlslap.result Xmysql-test/r/mysqltest.result Xmysql-test/r/named_pipe.result Xmysql-test/r/ndb_default_cluster.require Xmysql-test/r/negation_elimination.result Xmysql-test/r/no-threads.result Xmysql-test/r/not_embedded.require Xmysql-test/r/not_embedded_server.result Xmysql-test/r/not_ndb.require Xmysql-test/r/not_ndb_default.require Xmysql-test/r/not_openssl.require Xmysql-test/r/not_partition.require Xmysql-test/r/not_partition.result Xmysql-test/r/not_valgrind.require Xmysql-test/r/not_windows.require Xmysql-test/r/null.result Xmysql-test/r/null_key.result Xmysql-test/r/odbc.result Xmysql-test/r/olap.result Xmysql-test/r/one_thread_per_connection.require Xmysql-test/r/openssl_1.result Xmysql-test/r/order_by.result Xmysql-test/r/order_fill_sortbuf.result Xmysql-test/r/outfile.result Xmysql-test/r/outfile_loaddata.result Xmysql-test/r/overflow.result Xmysql-test/r/packet.result Xmysql-test/r/parser.result Xmysql-test/r/parser_bug21114_innodb.result Xmysql-test/r/parser_precedence.result Xmysql-test/r/parser_stack.result Xmysql-test/r/partition.result Xmysql-test/r/partition_archive.result Xmysql-test/r/partition_blackhole.result Xmysql-test/r/partition_bug18198.result Xmysql-test/r/partition_charset.result Xmysql-test/r/partition_csv.result Xmysql-test/r/partition_datatype.result Xmysql-test/r/partition_error.result Xmysql-test/r/partition_federated.result Xmysql-test/r/partition_grant.result Xmysql-test/r/partition_hash.result Xmysql-test/r/partition_innodb.result Xmysql-test/r/partition_innodb_semi_consistent.result Xmysql-test/r/partition_innodb_stmt.result Xmysql-test/r/partition_list.result Xmysql-test/r/partition_mgm.result Xmysql-test/r/partition_mgm_err.result Xmysql-test/r/partition_mgm_err2.result Xmysql-test/r/partition_not_windows.result Xmysql-test/r/partition_order.result Xmysql-test/r/partition_pruning.result Xmysql-test/r/partition_range.result Xmysql-test/r/partition_symlink.result Xmysql-test/r/partition_windows.result Xmysql-test/r/perror-win.result Xmysql-test/r/perror.result Xmysql-test/r/plugin.result Xmysql-test/r/plugin_load.result Xmysql-test/r/preload.result Xmysql-test/r/profiling.result Xmysql-test/r/ps.result Xmysql-test/r/ps_10nestset.result Xmysql-test/r/ps_11bugs.result Xmysql-test/r/ps_1general.result Xmysql-test/r/ps_2myisam.result Xmysql-test/r/ps_3innodb.result Xmysql-test/r/ps_4heap.result Xmysql-test/r/ps_5merge.result Xmysql-test/r/ps_ddl.result Xmysql-test/r/ps_ddl1.result Xmysql-test/r/ps_grant.result Xmysql-test/r/ps_not_windows.result Xmysql-test/r/query_cache.result Xmysql-test/r/query_cache_28249.result Xmysql-test/r/query_cache_debug.result Xmysql-test/r/query_cache_merge.result Xmysql-test/r/query_cache_notembedded.result Xmysql-test/r/query_cache_ps_no_prot.result Xmysql-test/r/query_cache_ps_ps_prot.result Xmysql-test/r/query_cache_with_views.result Xmysql-test/r/raid.result Xmysql-test/r/range.result Xmysql-test/r/read_many_rows_innodb.result Xmysql-test/r/read_only.result Xmysql-test/r/read_only_innodb.result Xmysql-test/r/rename.result Xmysql-test/r/renamedb.result Xmysql-test/r/repair.result Xmysql-test/r/replace.result Xmysql-test/r/rollback.result Xmysql-test/r/round.result Xmysql-test/r/row.result Xmysql-test/r/rowid_order_innodb.result Xmysql-test/r/rpl_colSize.result Xmysql-test/r/rpl_extraColmaster_innodb.result Xmysql-test/r/rpl_extraColmaster_myisam.result Xmysql-test/r/schema.result Xmysql-test/r/select.result Xmysql-test/r/select_found.result Xmysql-test/r/select_safe.result Xmysql-test/r/server_id.require Xmysql-test/r/server_id1.require Xmysql-test/r/shm.result Xmysql-test/r/show_check.result Xmysql-test/r/skip_grants.result Xmysql-test/r/skip_log_bin.result Xmysql-test/r/skip_name_resolve.result Xmysql-test/r/slave-running.result Xmysql-test/r/slave-stopped.result Xmysql-test/r/sp-big.result Xmysql-test/r/sp-code.result Xmysql-test/r/sp-destruct.result Xmysql-test/r/sp-dynamic.result Xmysql-test/r/sp-error.result Xmysql-test/r/sp-prelocking.result Xmysql-test/r/sp-security.result Xmysql-test/r/sp-threads.result Xmysql-test/r/sp-ucs2.result Xmysql-test/r/sp-vars.result Xmysql-test/r/sp.result Xmysql-test/r/sp_gis.result Xmysql-test/r/sp_notembedded.result Xmysql-test/r/sp_stress_case.result Xmysql-test/r/sp_trans.result Xmysql-test/r/sp_trans_log.result Xmysql-test/r/sql_mode.result Xmysql-test/r/ssl-big.result Xmysql-test/r/ssl.result Xmysql-test/r/ssl_8k_key.result Xmysql-test/r/ssl_compress.result Xmysql-test/r/ssl_connect.result Xmysql-test/r/status.result Xmysql-test/r/status2.result Xmysql-test/r/strict.result Xmysql-test/r/strict_autoinc_1myisam.result Xmysql-test/r/strict_autoinc_2innodb.result Xmysql-test/r/strict_autoinc_3heap.result Xmysql-test/r/subselect.result Xmysql-test/r/subselect2.result Xmysql-test/r/subselect3.result Xmysql-test/r/subselect_debug.result Xmysql-test/r/subselect_gis.result Xmysql-test/r/subselect_innodb.result Xmysql-test/r/subselect_notembedded.result Xmysql-test/r/sum_distinct-big.result Xmysql-test/r/sum_distinct.result Xmysql-test/r/symlink.result Xmysql-test/r/synchronization.result Xmysql-test/r/sysdate_is_now.result Xmysql-test/r/system_mysql_db.result Xmysql-test/r/system_mysql_db_refs.result Xmysql-test/r/tablelock.result Xmysql-test/r/temp_table.result Xmysql-test/r/testdb_only.require Xmysql-test/r/timezone.result Xmysql-test/r/timezone2.result Xmysql-test/r/timezone3.result Xmysql-test/r/timezone4.result Xmysql-test/r/timezone_grant.result Xmysql-test/r/trigger-compat.result Xmysql-test/r/trigger-trans.result Xmysql-test/r/trigger.result Xmysql-test/r/trigger_notembedded.result Xmysql-test/r/true.require Xmysql-test/r/truncate.result Xmysql-test/r/type_binary.result Xmysql-test/r/type_bit.result Xmysql-test/r/type_bit_innodb.result Xmysql-test/r/type_blob.result Xmysql-test/r/type_date.result Xmysql-test/r/type_datetime.result Xmysql-test/r/type_decimal.result Xmysql-test/r/type_enum.result Xmysql-test/r/type_float.result Xmysql-test/r/type_nchar.result Xmysql-test/r/type_newdecimal-big.result Xmysql-test/r/type_newdecimal.result Xmysql-test/r/type_ranges.result Xmysql-test/r/type_set.result Xmysql-test/r/type_time.result Xmysql-test/r/type_timestamp.result Xmysql-test/r/type_uint.result Xmysql-test/r/type_varchar.result Xmysql-test/r/type_year.result Xmysql-test/r/udf.result Xmysql-test/r/udf_skip_grants.result Xmysql-test/r/union.result Xmysql-test/r/unsafe_binlog_innodb.result Xmysql-test/r/update.result Xmysql-test/r/upgrade.result Xmysql-test/r/user_limits.result Xmysql-test/r/user_var-binlog.result Xmysql-test/r/user_var.result Xmysql-test/r/varbinary.result Xmysql-test/r/variables+c.result Xmysql-test/r/variables-big.result Xmysql-test/r/variables-notembedded.result Xmysql-test/r/variables.result Xmysql-test/r/variables_debug.result Xmysql-test/r/view.result Xmysql-test/r/view_grant.result Xmysql-test/r/wait_timeout.result Xmysql-test/r/warnings.result Xmysql-test/r/warnings_engine_disabled.result Xmysql-test/r/windows.require Xmysql-test/r/windows.result Xmysql-test/r/xa.result Xmysql-test/r/xml.result Xmysql-test/std_data/14897.frm Xmysql-test/std_data/Index.xml Xmysql-test/std_data/Moscow_leap Xmysql-test/std_data/bad_gis_data.dat Xmysql-test/std_data/bug15328.cnf Xmysql-test/std_data/bug16266.000001 Xmysql-test/std_data/bug19371.MYD Xmysql-test/std_data/bug19371.MYI Xmysql-test/std_data/bug19371.frm Xmysql-test/std_data/bug30435_10k_items.txt Xmysql-test/std_data/bug30435_5k.txt Xmysql-test/std_data/bug33029-slave-relay-bin.000001 Xmysql-test/std_data/bug35469.dat Xmysql-test/std_data/bug36055.MYD Xmysql-test/std_data/bug36055.MYI Xmysql-test/std_data/bug36055.frm Xmysql-test/std_data/bug40482-bin.000001 Xmysql-test/std_data/cacert.pem Xmysql-test/std_data/charset_utf8.txt Xmysql-test/std_data/client-cert.pem Xmysql-test/std_data/client-key.pem Xmysql-test/std_data/corrupt-relay-bin.000624 Xmysql-test/std_data/corrupt_t1#P#p1.MYI Xmysql-test/std_data/corrupt_t1.MYI Xmysql-test/std_data/des_key_file Xmysql-test/std_data/funcs_1/innodb_tb1.txt Xmysql-test/std_data/funcs_1/innodb_tb2.txt Xmysql-test/std_data/funcs_1/innodb_tb3.txt Xmysql-test/std_data/funcs_1/innodb_tb4.txt Xmysql-test/std_data/funcs_1/load_file.txt Xmysql-test/std_data/funcs_1/memory_tb1.txt Xmysql-test/std_data/funcs_1/memory_tb2.txt Xmysql-test/std_data/funcs_1/memory_tb3.txt Xmysql-test/std_data/funcs_1/memory_tb4.txt Xmysql-test/std_data/funcs_1/myisam_tb1.txt Xmysql-test/std_data/funcs_1/myisam_tb2.txt Xmysql-test/std_data/funcs_1/myisam_tb3.txt Xmysql-test/std_data/funcs_1/myisam_tb4.txt Xmysql-test/std_data/funcs_1/ndb_tb1.txt Xmysql-test/std_data/funcs_1/ndb_tb2.txt Xmysql-test/std_data/funcs_1/ndb_tb3.txt Xmysql-test/std_data/funcs_1/ndb_tb4.txt Xmysql-test/std_data/funcs_1/t3.txt Xmysql-test/std_data/funcs_1/t4.txt Xmysql-test/std_data/funcs_1/t7.txt Xmysql-test/std_data/funcs_1/t9.txt Xmysql-test/std_data/init_file.dat Xmysql-test/std_data/loaddata1.dat Xmysql-test/std_data/loaddata2.dat Xmysql-test/std_data/loaddata3.dat Xmysql-test/std_data/loaddata4.dat Xmysql-test/std_data/loaddata5.dat Xmysql-test/std_data/loaddata6.dat Xmysql-test/std_data/loaddata_dq.dat Xmysql-test/std_data/loaddata_pair.dat Xmysql-test/std_data/master-bin.000001 Xmysql-test/std_data/ndb_backup50/BACKUP-1-0.1.Data Xmysql-test/std_data/ndb_backup50/BACKUP-1-0.2.Data Xmysql-test/std_data/ndb_backup50/BACKUP-1.1.ctl Xmysql-test/std_data/ndb_backup50/BACKUP-1.1.log Xmysql-test/std_data/ndb_backup50/BACKUP-1.2.ctl Xmysql-test/std_data/ndb_backup50/BACKUP-1.2.log Xmysql-test/std_data/ndb_backup50/BACKUP-2-0.1.Data Xmysql-test/std_data/ndb_backup50/BACKUP-2-0.2.Data Xmysql-test/std_data/ndb_backup50/BACKUP-2.1.ctl Xmysql-test/std_data/ndb_backup50/BACKUP-2.1.log Xmysql-test/std_data/ndb_backup50/BACKUP-2.2.ctl Xmysql-test/std_data/ndb_backup50/BACKUP-2.2.log Xmysql-test/std_data/ndb_backup51/BACKUP-1-0.1.Data Xmysql-test/std_data/ndb_backup51/BACKUP-1-0.2.Data Xmysql-test/std_data/ndb_backup51/BACKUP-1.1.ctl Xmysql-test/std_data/ndb_backup51/BACKUP-1.1.log Xmysql-test/std_data/ndb_backup51/BACKUP-1.2.ctl Xmysql-test/std_data/ndb_backup51/BACKUP-1.2.log Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1-0.1.Data Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1-0.2.Data Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1.1.ctl Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1.1.log Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1.2.ctl Xmysql-test/std_data/ndb_backup51_data_be/BACKUP-1.2.log Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1-0.1.Data Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1-0.2.Data Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1.1.ctl Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1.1.log Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1.2.ctl Xmysql-test/std_data/ndb_backup51_data_le/BACKUP-1.2.log Xmysql-test/std_data/ndb_config_config.ini Xmysql-test/std_data/ndb_config_mycnf1.cnf Xmysql-test/std_data/ndb_config_mycnf2.cnf Xmysql-test/std_data/numbers.txt Xmysql-test/std_data/old_table-323.frm Xmysql-test/std_data/parts/part_supported_sql_funcs_int_ch1.inc Xmysql-test/std_data/parts/part_supported_sql_funcs_int_date.inc Xmysql-test/std_data/parts/part_supported_sql_funcs_int_float.inc Xmysql-test/std_data/parts/part_supported_sql_funcs_int_int.inc Xmysql-test/std_data/parts/part_supported_sql_funcs_int_time.inc Xmysql-test/std_data/parts/t1_will_crash#P#p1_first_1024.MYD Xmysql-test/std_data/parts/t1_will_crash#P#p2.MYD Xmysql-test/std_data/parts/t1_will_crash#P#p2.MYI Xmysql-test/std_data/parts/t1_will_crash#P#p3.MYI Xmysql-test/std_data/parts/t1_will_crash#P#p4.MYI Xmysql-test/std_data/parts/t1_will_crash#P#p6.MYD Xmysql-test/std_data/parts/t1_will_crash#P#p6_2.MYD Xmysql-test/std_data/parts/t1_will_crash#P#p6_3.MYD Xmysql-test/std_data/rpl_bug28618.dat Xmysql-test/std_data/rpl_loaddata.dat Xmysql-test/std_data/rpl_loaddata2.dat Xmysql-test/std_data/rpl_mixed.dat Xmysql-test/std_data/rpl_timezone.dat Xmysql-test/std_data/rpl_timezone2.dat Xmysql-test/std_data/server-cert.pem Xmysql-test/std_data/server-key.pem Xmysql-test/std_data/server8k-cert.pem Xmysql-test/std_data/server8k-key.pem Xmysql-test/std_data/trunc_binlog.000001 Xmysql-test/std_data/untrusted-cacert.pem Xmysql-test/std_data/vchar.frm Xmysql-test/std_data/warnings_loaddata.dat Xmysql-test/std_data/words.dat Xmysql-test/std_data/words2.dat Xmysql-test/suite/binlog/combinations Xmysql-test/suite/binlog/r/binlog_auto_increment_bug33029.result Xmysql-test/suite/binlog/r/binlog_base64_flag.result Xmysql-test/suite/binlog/r/binlog_database.result Xmysql-test/suite/binlog/r/binlog_grant.result Xmysql-test/suite/binlog/r/binlog_index.result Xmysql-test/suite/binlog/r/binlog_innodb.result Xmysql-test/suite/binlog/r/binlog_innodb_row.result Xmysql-test/suite/binlog/r/binlog_killed.result Xmysql-test/suite/binlog/r/binlog_killed_simulate.result Xmysql-test/suite/binlog/r/binlog_mix_innodb_stat.result Xmysql-test/suite/binlog/r/binlog_multi_engine.result Xmysql-test/suite/binlog/r/binlog_old_versions.result Xmysql-test/suite/binlog/r/binlog_row_binlog.result Xmysql-test/suite/binlog/r/binlog_row_ctype_cp932.result Xmysql-test/suite/binlog/r/binlog_row_ctype_ucs.result Xmysql-test/suite/binlog/r/binlog_row_drop_tmp_tbl.result Xmysql-test/suite/binlog/r/binlog_row_innodb_stat.result Xmysql-test/suite/binlog/r/binlog_row_insert_select.result Xmysql-test/suite/binlog/r/binlog_row_mix_innodb_myisam.result Xmysql-test/suite/binlog/r/binlog_start_comment.result Xmysql-test/suite/binlog/r/binlog_statement_insert_delayed.result Xmysql-test/suite/binlog/r/binlog_stm_binlog.result Xmysql-test/suite/binlog/r/binlog_stm_blackhole.result Xmysql-test/suite/binlog/r/binlog_stm_ctype_cp932.result Xmysql-test/suite/binlog/r/binlog_stm_ctype_ucs.result Xmysql-test/suite/binlog/r/binlog_stm_drop_tmp_tbl.result Xmysql-test/suite/binlog/r/binlog_stm_innodb_stat.result Xmysql-test/suite/binlog/r/binlog_stm_insert_select.result Xmysql-test/suite/binlog/r/binlog_stm_mix_innodb_myisam.result Xmysql-test/suite/binlog/r/binlog_stm_ps.result Xmysql-test/suite/binlog/r/binlog_stm_row.result Xmysql-test/suite/binlog/r/binlog_tmp_table.result Xmysql-test/suite/binlog/r/binlog_truncate_innodb.result Xmysql-test/suite/binlog/r/binlog_truncate_myisam.result Xmysql-test/suite/binlog/r/binlog_unsafe.result Xmysql-test/suite/binlog/std_data/binlog_old_version_4_1.000001 Xmysql-test/suite/binlog/std_data/bug32407.001 Xmysql-test/suite/binlog/std_data/ver_5_1-telco.001 Xmysql-test/suite/binlog/std_data/ver_5_1-wl2325_r.001 Xmysql-test/suite/binlog/std_data/ver_5_1-wl2325_s.001 Xmysql-test/suite/binlog/std_data/ver_5_1_17.001 Xmysql-test/suite/binlog/std_data/ver_5_1_23.001 Xmysql-test/suite/binlog/t/binlog_auto_increment_bug33029-master.opt Xmysql-test/suite/binlog/t/binlog_auto_increment_bug33029.test Xmysql-test/suite/binlog/t/binlog_base64_flag.test Xmysql-test/suite/binlog/t/binlog_database.test Xmysql-test/suite/binlog/t/binlog_grant.test Xmysql-test/suite/binlog/t/binlog_index.test Xmysql-test/suite/binlog/t/binlog_innodb.test Xmysql-test/suite/binlog/t/binlog_innodb_row.test Xmysql-test/suite/binlog/t/binlog_killed.test Xmysql-test/suite/binlog/t/binlog_killed_simulate-master.opt Xmysql-test/suite/binlog/t/binlog_killed_simulate.test Xmysql-test/suite/binlog/t/binlog_mix_innodb_stat.test Xmysql-test/suite/binlog/t/binlog_multi_engine.test Xmysql-test/suite/binlog/t/binlog_old_versions.test Xmysql-test/suite/binlog/t/binlog_row_binlog-master.opt Xmysql-test/suite/binlog/t/binlog_row_binlog.test Xmysql-test/suite/binlog/t/binlog_row_ctype_cp932.test Xmysql-test/suite/binlog/t/binlog_row_ctype_ucs.test Xmysql-test/suite/binlog/t/binlog_row_drop_tmp_tbl.test Xmysql-test/suite/binlog/t/binlog_row_innodb_stat-master.opt Xmysql-test/suite/binlog/t/binlog_row_innodb_stat.test Xmysql-test/suite/binlog/t/binlog_row_insert_select.test Xmysql-test/suite/binlog/t/binlog_row_mix_innodb_myisam-master.opt Xmysql-test/suite/binlog/t/binlog_row_mix_innodb_myisam.test Xmysql-test/suite/binlog/t/binlog_start_comment.test Xmysql-test/suite/binlog/t/binlog_statement_insert_delayed.test Xmysql-test/suite/binlog/t/binlog_stm_binlog-master.opt Xmysql-test/suite/binlog/t/binlog_stm_binlog.test Xmysql-test/suite/binlog/t/binlog_stm_blackhole.test Xmysql-test/suite/binlog/t/binlog_stm_ctype_cp932.test Xmysql-test/suite/binlog/t/binlog_stm_ctype_ucs.test Xmysql-test/suite/binlog/t/binlog_stm_drop_tmp_tbl.test Xmysql-test/suite/binlog/t/binlog_stm_innodb_stat-master.opt Xmysql-test/suite/binlog/t/binlog_stm_innodb_stat.test Xmysql-test/suite/binlog/t/binlog_stm_insert_select.test Xmysql-test/suite/binlog/t/binlog_stm_mix_innodb_myisam-master.opt Xmysql-test/suite/binlog/t/binlog_stm_mix_innodb_myisam.test Xmysql-test/suite/binlog/t/binlog_stm_ps.test Xmysql-test/suite/binlog/t/binlog_stm_row.test Xmysql-test/suite/binlog/t/binlog_tmp_table.test Xmysql-test/suite/binlog/t/binlog_truncate_innodb-master.opt Xmysql-test/suite/binlog/t/binlog_truncate_innodb.test Xmysql-test/suite/binlog/t/binlog_truncate_myisam.test Xmysql-test/suite/binlog/t/binlog_unsafe.test Xmysql-test/suite/binlog/t/disabled.def Xmysql-test/suite/bugs/data/rpl_bug12691.dat Xmysql-test/suite/bugs/r/rpl_bug12691.result Xmysql-test/suite/bugs/r/rpl_bug23533.result Xmysql-test/suite/bugs/r/rpl_bug31582.result Xmysql-test/suite/bugs/r/rpl_bug31583.result Xmysql-test/suite/bugs/r/rpl_bug33029.result Xmysql-test/suite/bugs/r/rpl_bug36391.result Xmysql-test/suite/bugs/r/rpl_bug37426.result Xmysql-test/suite/bugs/t/rpl_bug12691.test Xmysql-test/suite/bugs/t/rpl_bug23533.test Xmysql-test/suite/bugs/t/rpl_bug31582.test Xmysql-test/suite/bugs/t/rpl_bug31583.test Xmysql-test/suite/bugs/t/rpl_bug33029.test Xmysql-test/suite/bugs/t/rpl_bug36391-master.opt Xmysql-test/suite/bugs/t/rpl_bug36391.test Xmysql-test/suite/bugs/t/rpl_bug37426.test Xmysql-test/suite/federated/disabled.def Xmysql-test/suite/federated/federated.inc Xmysql-test/suite/federated/federated.result Xmysql-test/suite/federated/federated.test Xmysql-test/suite/federated/federated_archive.result Xmysql-test/suite/federated/federated_archive.test Xmysql-test/suite/federated/federated_bug_13118.result Xmysql-test/suite/federated/federated_bug_13118.test Xmysql-test/suite/federated/federated_bug_25714.result Xmysql-test/suite/federated/federated_bug_25714.test Xmysql-test/suite/federated/federated_cleanup.inc Xmysql-test/suite/federated/federated_innodb-slave.opt Xmysql-test/suite/federated/federated_innodb.result Xmysql-test/suite/federated/federated_innodb.test Xmysql-test/suite/federated/federated_server.result Xmysql-test/suite/federated/federated_server.test Xmysql-test/suite/federated/federated_transactions-slave.opt Xmysql-test/suite/federated/federated_transactions.result Xmysql-test/suite/federated/federated_transactions.test Xmysql-test/suite/federated/have_federated_db.inc Xmysql-test/suite/federated/my.cnf Xmysql-test/suite/funcs_1/README.txt Xmysql-test/suite/funcs_1/bitdata/bitdata_master.test Xmysql-test/suite/funcs_1/cursors/cursors_master.test Xmysql-test/suite/funcs_1/datadict/basics_mixed1.inc Xmysql-test/suite/funcs_1/datadict/basics_mixed2.inc Xmysql-test/suite/funcs_1/datadict/basics_mixed3.inc Xmysql-test/suite/funcs_1/datadict/charset_collation.inc Xmysql-test/suite/funcs_1/datadict/columns.inc Xmysql-test/suite/funcs_1/datadict/datadict.pre Xmysql-test/suite/funcs_1/datadict/datadict_bug_12777.inc Xmysql-test/suite/funcs_1/datadict/datadict_load.inc Xmysql-test/suite/funcs_1/datadict/datadict_priv.inc Xmysql-test/suite/funcs_1/datadict/is_key_column_usage.inc Xmysql-test/suite/funcs_1/datadict/is_routines.inc Xmysql-test/suite/funcs_1/datadict/is_schemata.inc Xmysql-test/suite/funcs_1/datadict/is_table_query.inc Xmysql-test/suite/funcs_1/datadict/is_tables.inc Xmysql-test/suite/funcs_1/datadict/is_triggers.inc Xmysql-test/suite/funcs_1/datadict/is_views.inc Xmysql-test/suite/funcs_1/datadict/processlist_priv.inc Xmysql-test/suite/funcs_1/datadict/processlist_val.inc Xmysql-test/suite/funcs_1/datadict/statistics.inc Xmysql-test/suite/funcs_1/datadict/table_constraints.inc Xmysql-test/suite/funcs_1/datadict/tables.inc Xmysql-test/suite/funcs_1/datadict/tables1.inc Xmysql-test/suite/funcs_1/datadict/tables2.inc Xmysql-test/suite/funcs_1/include/bug28309_skip.inc Xmysql-test/suite/funcs_1/include/cleanup.inc Xmysql-test/suite/funcs_1/include/innodb_tb1.inc Xmysql-test/suite/funcs_1/include/innodb_tb2.inc Xmysql-test/suite/funcs_1/include/innodb_tb3.inc Xmysql-test/suite/funcs_1/include/innodb_tb4.inc Xmysql-test/suite/funcs_1/include/memory_tb1.inc Xmysql-test/suite/funcs_1/include/memory_tb2.inc Xmysql-test/suite/funcs_1/include/memory_tb3.inc Xmysql-test/suite/funcs_1/include/memory_tb4.inc Xmysql-test/suite/funcs_1/include/myisam_tb1.inc Xmysql-test/suite/funcs_1/include/myisam_tb2.inc Xmysql-test/suite/funcs_1/include/myisam_tb3.inc Xmysql-test/suite/funcs_1/include/myisam_tb4.inc Xmysql-test/suite/funcs_1/include/ndb_tb1.inc Xmysql-test/suite/funcs_1/include/ndb_tb2.inc Xmysql-test/suite/funcs_1/include/ndb_tb3.inc Xmysql-test/suite/funcs_1/include/ndb_tb4.inc Xmysql-test/suite/funcs_1/include/show_connection.inc Xmysql-test/suite/funcs_1/include/sp_tb.inc Xmysql-test/suite/funcs_1/include/tb3.inc Xmysql-test/suite/funcs_1/lib/DataGen_local.pl Xmysql-test/suite/funcs_1/lib/DataGen_modify.pl Xmysql-test/suite/funcs_1/r/charset_collation_1.result Xmysql-test/suite/funcs_1/r/charset_collation_2.result Xmysql-test/suite/funcs_1/r/charset_collation_3.result Xmysql-test/suite/funcs_1/r/innodb_bitdata.result Xmysql-test/suite/funcs_1/r/innodb_cursors.result Xmysql-test/suite/funcs_1/r/innodb_func_view.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_02.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_03.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_06.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_07.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_08.result Xmysql-test/suite/funcs_1/r/innodb_storedproc_10.result Xmysql-test/suite/funcs_1/r/innodb_trig_0102.result Xmysql-test/suite/funcs_1/r/innodb_trig_03.result Xmysql-test/suite/funcs_1/r/innodb_trig_03e.result Xmysql-test/suite/funcs_1/r/innodb_trig_0407.result Xmysql-test/suite/funcs_1/r/innodb_trig_08.result Xmysql-test/suite/funcs_1/r/innodb_trig_09.result Xmysql-test/suite/funcs_1/r/innodb_trig_1011ext.result Xmysql-test/suite/funcs_1/r/innodb_trig_frkey.result Xmysql-test/suite/funcs_1/r/innodb_views.result Xmysql-test/suite/funcs_1/r/is_basics_mixed.result Xmysql-test/suite/funcs_1/r/is_character_sets.result Xmysql-test/suite/funcs_1/r/is_cml_innodb.result Xmysql-test/suite/funcs_1/r/is_cml_memory.result Xmysql-test/suite/funcs_1/r/is_cml_myisam.result Xmysql-test/suite/funcs_1/r/is_cml_ndb.result Xmysql-test/suite/funcs_1/r/is_coll_char_set_appl.result Xmysql-test/suite/funcs_1/r/is_collations.result Xmysql-test/suite/funcs_1/r/is_column_privileges.result Xmysql-test/suite/funcs_1/r/is_column_privileges_is_mysql_test.result Xmysql-test/suite/funcs_1/r/is_columns.result Xmysql-test/suite/funcs_1/r/is_columns_innodb.result Xmysql-test/suite/funcs_1/r/is_columns_is.result Xmysql-test/suite/funcs_1/r/is_columns_is_embedded.result Xmysql-test/suite/funcs_1/r/is_columns_memory.result Xmysql-test/suite/funcs_1/r/is_columns_myisam.result Xmysql-test/suite/funcs_1/r/is_columns_myisam_embedded.result Xmysql-test/suite/funcs_1/r/is_columns_mysql.result Xmysql-test/suite/funcs_1/r/is_columns_mysql_embedded.result Xmysql-test/suite/funcs_1/r/is_columns_ndb.result Xmysql-test/suite/funcs_1/r/is_engines.result Xmysql-test/suite/funcs_1/r/is_engines_archive.result Xmysql-test/suite/funcs_1/r/is_engines_blackhole.result Xmysql-test/suite/funcs_1/r/is_engines_csv.result Xmysql-test/suite/funcs_1/r/is_engines_federated.result Xmysql-test/suite/funcs_1/r/is_engines_innodb.result Xmysql-test/suite/funcs_1/r/is_engines_memory.result Xmysql-test/suite/funcs_1/r/is_engines_merge.result Xmysql-test/suite/funcs_1/r/is_engines_myisam.result Xmysql-test/suite/funcs_1/r/is_engines_ndb.result Xmysql-test/suite/funcs_1/r/is_events.result Xmysql-test/suite/funcs_1/r/is_key_column_usage.result Xmysql-test/suite/funcs_1/r/is_key_column_usage_embedded.result Xmysql-test/suite/funcs_1/r/is_routines.result Xmysql-test/suite/funcs_1/r/is_routines_embedded.result Xmysql-test/suite/funcs_1/r/is_schema_privileges.result Xmysql-test/suite/funcs_1/r/is_schema_privileges_is_mysql_test.result Xmysql-test/suite/funcs_1/r/is_schemata.result Xmysql-test/suite/funcs_1/r/is_schemata_embedded.result Xmysql-test/suite/funcs_1/r/is_schemata_is_mysql_test.result Xmysql-test/suite/funcs_1/r/is_statistics.result Xmysql-test/suite/funcs_1/r/is_statistics_is.result Xmysql-test/suite/funcs_1/r/is_statistics_mysql.result Xmysql-test/suite/funcs_1/r/is_statistics_mysql_embedded.result Xmysql-test/suite/funcs_1/r/is_table_constraints.result Xmysql-test/suite/funcs_1/r/is_table_constraints_is.result Xmysql-test/suite/funcs_1/r/is_table_constraints_mysql.result Xmysql-test/suite/funcs_1/r/is_table_constraints_mysql_embedded.result Xmysql-test/suite/funcs_1/r/is_table_privileges.result Xmysql-test/suite/funcs_1/r/is_tables.result Xmysql-test/suite/funcs_1/r/is_tables_embedded.result Xmysql-test/suite/funcs_1/r/is_tables_innodb.result Xmysql-test/suite/funcs_1/r/is_tables_is.result Xmysql-test/suite/funcs_1/r/is_tables_memory.result Xmysql-test/suite/funcs_1/r/is_tables_myisam.result Xmysql-test/suite/funcs_1/r/is_tables_myisam_embedded.result Xmysql-test/suite/funcs_1/r/is_tables_mysql.result Xmysql-test/suite/funcs_1/r/is_tables_mysql_embedded.result Xmysql-test/suite/funcs_1/r/is_tables_ndb.result Xmysql-test/suite/funcs_1/r/is_triggers.result Xmysql-test/suite/funcs_1/r/is_triggers_embedded.result Xmysql-test/suite/funcs_1/r/is_user_privileges.result Xmysql-test/suite/funcs_1/r/is_views.result Xmysql-test/suite/funcs_1/r/is_views_embedded.result Xmysql-test/suite/funcs_1/r/memory_bitdata.result Xmysql-test/suite/funcs_1/r/memory_cursors.result Xmysql-test/suite/funcs_1/r/memory_func_view.result Xmysql-test/suite/funcs_1/r/memory_storedproc_02.result Xmysql-test/suite/funcs_1/r/memory_storedproc_03.result Xmysql-test/suite/funcs_1/r/memory_storedproc_06.result Xmysql-test/suite/funcs_1/r/memory_storedproc_07.result Xmysql-test/suite/funcs_1/r/memory_storedproc_08.result Xmysql-test/suite/funcs_1/r/memory_storedproc_10.result Xmysql-test/suite/funcs_1/r/memory_trig_0102.result Xmysql-test/suite/funcs_1/r/memory_trig_03.result Xmysql-test/suite/funcs_1/r/memory_trig_03e.result Xmysql-test/suite/funcs_1/r/memory_trig_0407.result Xmysql-test/suite/funcs_1/r/memory_trig_08.result Xmysql-test/suite/funcs_1/r/memory_trig_09.result Xmysql-test/suite/funcs_1/r/memory_trig_1011ext.result Xmysql-test/suite/funcs_1/r/memory_views.result Xmysql-test/suite/funcs_1/r/myisam_bitdata.result Xmysql-test/suite/funcs_1/r/myisam_cursors.result Xmysql-test/suite/funcs_1/r/myisam_func_view.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_02.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_03.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_06.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_07.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_08.result Xmysql-test/suite/funcs_1/r/myisam_storedproc_10.result Xmysql-test/suite/funcs_1/r/myisam_trig_0102.result Xmysql-test/suite/funcs_1/r/myisam_trig_03.result Xmysql-test/suite/funcs_1/r/myisam_trig_03e.result Xmysql-test/suite/funcs_1/r/myisam_trig_0407.result Xmysql-test/suite/funcs_1/r/myisam_trig_08.result Xmysql-test/suite/funcs_1/r/myisam_trig_09.result Xmysql-test/suite/funcs_1/r/myisam_trig_1011ext.result Xmysql-test/suite/funcs_1/r/myisam_views.result Xmysql-test/suite/funcs_1/r/ndb_bitdata.result Xmysql-test/suite/funcs_1/r/ndb_cursors.result Xmysql-test/suite/funcs_1/r/ndb_func_view.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_02.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_03.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_06.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_07.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_08.result Xmysql-test/suite/funcs_1/r/ndb_storedproc_10.result Xmysql-test/suite/funcs_1/r/ndb_trig_0102.result Xmysql-test/suite/funcs_1/r/ndb_trig_03.result Xmysql-test/suite/funcs_1/r/ndb_trig_03e.result Xmysql-test/suite/funcs_1/r/ndb_trig_0407.result Xmysql-test/suite/funcs_1/r/ndb_trig_08.result Xmysql-test/suite/funcs_1/r/ndb_trig_09.result Xmysql-test/suite/funcs_1/r/ndb_trig_1011ext.result Xmysql-test/suite/funcs_1/r/ndb_views.result Xmysql-test/suite/funcs_1/r/processlist_priv_no_prot.result Xmysql-test/suite/funcs_1/r/processlist_priv_ps.result Xmysql-test/suite/funcs_1/r/processlist_val_no_prot.result Xmysql-test/suite/funcs_1/r/processlist_val_ps.result Xmysql-test/suite/funcs_1/r/storedproc.result Xmysql-test/suite/funcs_1/storedproc/cleanup_sp_tb.inc Xmysql-test/suite/funcs_1/storedproc/load_sp_tb.inc Xmysql-test/suite/funcs_1/storedproc/param_check.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_02.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_03.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_06.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_07.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_08.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_08_show.inc Xmysql-test/suite/funcs_1/storedproc/storedproc_10.inc Xmysql-test/suite/funcs_1/t/charset_collation_1.test Xmysql-test/suite/funcs_1/t/charset_collation_2.test Xmysql-test/suite/funcs_1/t/charset_collation_3.test Xmysql-test/suite/funcs_1/t/disabled.def Xmysql-test/suite/funcs_1/t/innodb_bitdata.test Xmysql-test/suite/funcs_1/t/innodb_cursors.test Xmysql-test/suite/funcs_1/t/innodb_func_view.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_02.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_03.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_06.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_07.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_08.test Xmysql-test/suite/funcs_1/t/innodb_storedproc_10.test Xmysql-test/suite/funcs_1/t/innodb_trig_0102.test Xmysql-test/suite/funcs_1/t/innodb_trig_03.test Xmysql-test/suite/funcs_1/t/innodb_trig_03e.test Xmysql-test/suite/funcs_1/t/innodb_trig_0407.test Xmysql-test/suite/funcs_1/t/innodb_trig_08.test Xmysql-test/suite/funcs_1/t/innodb_trig_09.test Xmysql-test/suite/funcs_1/t/innodb_trig_1011ext.test Xmysql-test/suite/funcs_1/t/innodb_trig_frkey.test Xmysql-test/suite/funcs_1/t/innodb_views.test Xmysql-test/suite/funcs_1/t/is_basics_mixed.test Xmysql-test/suite/funcs_1/t/is_character_sets.test Xmysql-test/suite/funcs_1/t/is_cml_innodb.test Xmysql-test/suite/funcs_1/t/is_cml_memory.test Xmysql-test/suite/funcs_1/t/is_cml_myisam.test Xmysql-test/suite/funcs_1/t/is_cml_ndb.test Xmysql-test/suite/funcs_1/t/is_coll_char_set_appl.test Xmysql-test/suite/funcs_1/t/is_collations.test Xmysql-test/suite/funcs_1/t/is_column_privileges.test Xmysql-test/suite/funcs_1/t/is_column_privileges_is_mysql_test.test Xmysql-test/suite/funcs_1/t/is_columns.test Xmysql-test/suite/funcs_1/t/is_columns_innodb.test Xmysql-test/suite/funcs_1/t/is_columns_is.test Xmysql-test/suite/funcs_1/t/is_columns_is_embedded.test Xmysql-test/suite/funcs_1/t/is_columns_memory.test Xmysql-test/suite/funcs_1/t/is_columns_myisam.test Xmysql-test/suite/funcs_1/t/is_columns_myisam_embedded.test Xmysql-test/suite/funcs_1/t/is_columns_mysql.test Xmysql-test/suite/funcs_1/t/is_columns_mysql_embedded.test Xmysql-test/suite/funcs_1/t/is_columns_ndb.test Xmysql-test/suite/funcs_1/t/is_engines.test Xmysql-test/suite/funcs_1/t/is_engines_archive.test Xmysql-test/suite/funcs_1/t/is_engines_blackhole.test Xmysql-test/suite/funcs_1/t/is_engines_csv.test Xmysql-test/suite/funcs_1/t/is_engines_federated.test Xmysql-test/suite/funcs_1/t/is_engines_innodb.test Xmysql-test/suite/funcs_1/t/is_engines_memory.test Xmysql-test/suite/funcs_1/t/is_engines_merge.test Xmysql-test/suite/funcs_1/t/is_engines_myisam.test Xmysql-test/suite/funcs_1/t/is_engines_ndb.test Xmysql-test/suite/funcs_1/t/is_events.test Xmysql-test/suite/funcs_1/t/is_key_column_usage.test Xmysql-test/suite/funcs_1/t/is_key_column_usage_embedded.test Xmysql-test/suite/funcs_1/t/is_routines.test Xmysql-test/suite/funcs_1/t/is_routines_embedded.test Xmysql-test/suite/funcs_1/t/is_schema_privileges.test Xmysql-test/suite/funcs_1/t/is_schema_privileges_is_mysql_test.test Xmysql-test/suite/funcs_1/t/is_schemata.test Xmysql-test/suite/funcs_1/t/is_schemata_embedded.test Xmysql-test/suite/funcs_1/t/is_schemata_is_mysql_test.test Xmysql-test/suite/funcs_1/t/is_statistics.test Xmysql-test/suite/funcs_1/t/is_statistics_is.test Xmysql-test/suite/funcs_1/t/is_statistics_mysql.test Xmysql-test/suite/funcs_1/t/is_statistics_mysql_embedded.test Xmysql-test/suite/funcs_1/t/is_table_constraints.test Xmysql-test/suite/funcs_1/t/is_table_constraints_is.test Xmysql-test/suite/funcs_1/t/is_table_constraints_mysql.test Xmysql-test/suite/funcs_1/t/is_table_constraints_mysql_embedded.test Xmysql-test/suite/funcs_1/t/is_table_privileges.test Xmysql-test/suite/funcs_1/t/is_tables.test Xmysql-test/suite/funcs_1/t/is_tables_embedded.test Xmysql-test/suite/funcs_1/t/is_tables_innodb.test Xmysql-test/suite/funcs_1/t/is_tables_is.test Xmysql-test/suite/funcs_1/t/is_tables_memory.test Xmysql-test/suite/funcs_1/t/is_tables_myisam.test Xmysql-test/suite/funcs_1/t/is_tables_myisam_embedded.test Xmysql-test/suite/funcs_1/t/is_tables_mysql.test Xmysql-test/suite/funcs_1/t/is_tables_mysql_embedded.test Xmysql-test/suite/funcs_1/t/is_tables_ndb.test Xmysql-test/suite/funcs_1/t/is_triggers.test Xmysql-test/suite/funcs_1/t/is_triggers_embedded.test Xmysql-test/suite/funcs_1/t/is_user_privileges.test Xmysql-test/suite/funcs_1/t/is_views.test Xmysql-test/suite/funcs_1/t/is_views_embedded.test Xmysql-test/suite/funcs_1/t/memory_bitdata.test Xmysql-test/suite/funcs_1/t/memory_cursors.test Xmysql-test/suite/funcs_1/t/memory_func_view.test Xmysql-test/suite/funcs_1/t/memory_storedproc_02.test Xmysql-test/suite/funcs_1/t/memory_storedproc_03.test Xmysql-test/suite/funcs_1/t/memory_storedproc_06.test Xmysql-test/suite/funcs_1/t/memory_storedproc_07.test Xmysql-test/suite/funcs_1/t/memory_storedproc_08.test Xmysql-test/suite/funcs_1/t/memory_storedproc_10.test Xmysql-test/suite/funcs_1/t/memory_trig_0102.test Xmysql-test/suite/funcs_1/t/memory_trig_03.test Xmysql-test/suite/funcs_1/t/memory_trig_03e.test Xmysql-test/suite/funcs_1/t/memory_trig_0407.test Xmysql-test/suite/funcs_1/t/memory_trig_08.test Xmysql-test/suite/funcs_1/t/memory_trig_09.test Xmysql-test/suite/funcs_1/t/memory_trig_1011ext.test Xmysql-test/suite/funcs_1/t/memory_views.test Xmysql-test/suite/funcs_1/t/myisam_bitdata.test Xmysql-test/suite/funcs_1/t/myisam_cursors.test Xmysql-test/suite/funcs_1/t/myisam_func_view.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_02.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_03.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_06.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_07.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_08.test Xmysql-test/suite/funcs_1/t/myisam_storedproc_10.test Xmysql-test/suite/funcs_1/t/myisam_trig_0102.test Xmysql-test/suite/funcs_1/t/myisam_trig_03.test Xmysql-test/suite/funcs_1/t/myisam_trig_03e.test Xmysql-test/suite/funcs_1/t/myisam_trig_0407.test Xmysql-test/suite/funcs_1/t/myisam_trig_08.test Xmysql-test/suite/funcs_1/t/myisam_trig_09.test Xmysql-test/suite/funcs_1/t/myisam_trig_1011ext.test Xmysql-test/suite/funcs_1/t/myisam_views.test Xmysql-test/suite/funcs_1/t/ndb_bitdata.test Xmysql-test/suite/funcs_1/t/ndb_cursors.test Xmysql-test/suite/funcs_1/t/ndb_func_view.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_02.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_03.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_06.tes Xmysql-test/suite/funcs_1/t/ndb_storedproc_06.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_07.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_08.tes Xmysql-test/suite/funcs_1/t/ndb_storedproc_08.test Xmysql-test/suite/funcs_1/t/ndb_storedproc_10.test Xmysql-test/suite/funcs_1/t/ndb_trig_0102.test Xmysql-test/suite/funcs_1/t/ndb_trig_03.test Xmysql-test/suite/funcs_1/t/ndb_trig_03e.test Xmysql-test/suite/funcs_1/t/ndb_trig_0407.test Xmysql-test/suite/funcs_1/t/ndb_trig_08.test Xmysql-test/suite/funcs_1/t/ndb_trig_09.test Xmysql-test/suite/funcs_1/t/ndb_trig_1011ext.test Xmysql-test/suite/funcs_1/t/ndb_views.test Xmysql-test/suite/funcs_1/t/processlist_priv_no_prot.test Xmysql-test/suite/funcs_1/t/processlist_priv_ps.test Xmysql-test/suite/funcs_1/t/processlist_val_no_prot.test Xmysql-test/suite/funcs_1/t/processlist_val_ps.test Xmysql-test/suite/funcs_1/t/storedproc.test Xmysql-test/suite/funcs_1/t/suite.opt Xmysql-test/suite/funcs_1/triggers/trig_frkey.inc Xmysql-test/suite/funcs_1/triggers/trig_frkey2.inc Xmysql-test/suite/funcs_1/triggers/triggers_0102.inc Xmysql-test/suite/funcs_1/triggers/triggers_03.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_columns.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_db_level.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_db_table_mix.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_definer.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_global_db_mix.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_prepare.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_table_level.inc Xmysql-test/suite/funcs_1/triggers/triggers_03e_transaction.inc Xmysql-test/suite/funcs_1/triggers/triggers_0407.inc Xmysql-test/suite/funcs_1/triggers/triggers_08.inc Xmysql-test/suite/funcs_1/triggers/triggers_09.inc Xmysql-test/suite/funcs_1/triggers/triggers_1011ext.inc Xmysql-test/suite/funcs_1/views/func_view.inc Xmysql-test/suite/funcs_1/views/fv1.inc Xmysql-test/suite/funcs_1/views/fv2.inc Xmysql-test/suite/funcs_1/views/fv_cast.inc Xmysql-test/suite/funcs_1/views/fv_if1.inc Xmysql-test/suite/funcs_1/views/fv_if2.inc Xmysql-test/suite/funcs_1/views/fv_ifnull.inc Xmysql-test/suite/funcs_1/views/views_master.inc Xmysql-test/suite/funcs_2/charset/charset_master.test Xmysql-test/suite/funcs_2/data/charset_utf8.txt Xmysql-test/suite/funcs_2/include/check_charset.inc Xmysql-test/suite/funcs_2/include/check_charset_ucs2.inc Xmysql-test/suite/funcs_2/include/check_charset_utf8.inc Xmysql-test/suite/funcs_2/lib/gen_charset_utf8.pl Xmysql-test/suite/funcs_2/r/innodb_charset.result Xmysql-test/suite/funcs_2/r/memory_charset.result Xmysql-test/suite/funcs_2/r/myisam_charset.result Xmysql-test/suite/funcs_2/r/ndb_charset.result Xmysql-test/suite/funcs_2/readme.txt Xmysql-test/suite/funcs_2/t/disabled.def Xmysql-test/suite/funcs_2/t/innodb_charset.test Xmysql-test/suite/funcs_2/t/memory_charset.test Xmysql-test/suite/funcs_2/t/myisam_charset.test Xmysql-test/suite/funcs_2/t/ndb_charset.test Xmysql-test/suite/funcs_2/t/suite.opt Xmysql-test/suite/jp/r/jp_alter_sjis.result Xmysql-test/suite/jp/r/jp_alter_ucs2.result Xmysql-test/suite/jp/r/jp_alter_ujis.result Xmysql-test/suite/jp/r/jp_alter_utf8.result Xmysql-test/suite/jp/r/jp_charlength_sjis.result Xmysql-test/suite/jp/r/jp_charlength_ucs2.result Xmysql-test/suite/jp/r/jp_charlength_ujis.result Xmysql-test/suite/jp/r/jp_charlength_utf8.result Xmysql-test/suite/jp/r/jp_charset_sjis.result Xmysql-test/suite/jp/r/jp_charset_ucs2.result Xmysql-test/suite/jp/r/jp_charset_ujis.result Xmysql-test/suite/jp/r/jp_charset_utf8.result Xmysql-test/suite/jp/r/jp_convert_sjis.result Xmysql-test/suite/jp/r/jp_convert_ucs2.result Xmysql-test/suite/jp/r/jp_convert_ujis.result Xmysql-test/suite/jp/r/jp_convert_utf8.result Xmysql-test/suite/jp/r/jp_create_db_sjis.result Xmysql-test/suite/jp/r/jp_create_db_ucs2.result Xmysql-test/suite/jp/r/jp_create_db_ujis.result Xmysql-test/suite/jp/r/jp_create_db_utf8.result Xmysql-test/suite/jp/r/jp_create_tbl_sjis.result Xmysql-test/suite/jp/r/jp_create_tbl_ucs2.result Xmysql-test/suite/jp/r/jp_create_tbl_ujis.result Xmysql-test/suite/jp/r/jp_create_tbl_utf8.result Xmysql-test/suite/jp/r/jp_enum_sjis.result Xmysql-test/suite/jp/r/jp_enum_ucs2.result Xmysql-test/suite/jp/r/jp_enum_ujis.result Xmysql-test/suite/jp/r/jp_enum_utf8.result Xmysql-test/suite/jp/r/jp_insert_sjis.result Xmysql-test/suite/jp/r/jp_insert_ucs2.result Xmysql-test/suite/jp/r/jp_insert_ujis.result Xmysql-test/suite/jp/r/jp_insert_utf8.result Xmysql-test/suite/jp/r/jp_instr_sjis.result Xmysql-test/suite/jp/r/jp_instr_ucs2.result Xmysql-test/suite/jp/r/jp_instr_ujis.result Xmysql-test/suite/jp/r/jp_instr_utf8.result Xmysql-test/suite/jp/r/jp_join_sjis.result Xmysql-test/suite/jp/r/jp_join_ucs2.result Xmysql-test/suite/jp/r/jp_join_ujis.result Xmysql-test/suite/jp/r/jp_join_utf8.result Xmysql-test/suite/jp/r/jp_left_sjis.result Xmysql-test/suite/jp/r/jp_left_ucs2.result Xmysql-test/suite/jp/r/jp_left_ujis.result Xmysql-test/suite/jp/r/jp_left_utf8.result Xmysql-test/suite/jp/r/jp_length_sjis.result Xmysql-test/suite/jp/r/jp_length_ucs2.result Xmysql-test/suite/jp/r/jp_length_ujis.result Xmysql-test/suite/jp/r/jp_length_utf8.result Xmysql-test/suite/jp/r/jp_like_sjis.result Xmysql-test/suite/jp/r/jp_like_ucs2.result Xmysql-test/suite/jp/r/jp_like_ujis.result Xmysql-test/suite/jp/r/jp_like_utf8.result Xmysql-test/suite/jp/r/jp_locate_sjis.result Xmysql-test/suite/jp/r/jp_locate_ucs2.result Xmysql-test/suite/jp/r/jp_locate_ujis.result Xmysql-test/suite/jp/r/jp_locate_utf8.result Xmysql-test/suite/jp/r/jp_lpad_sjis.result Xmysql-test/suite/jp/r/jp_lpad_ucs2.result Xmysql-test/suite/jp/r/jp_lpad_ujis.result Xmysql-test/suite/jp/r/jp_lpad_utf8.result Xmysql-test/suite/jp/r/jp_ltrim_sjis.result Xmysql-test/suite/jp/r/jp_ltrim_ucs2.result Xmysql-test/suite/jp/r/jp_ltrim_ujis.result Xmysql-test/suite/jp/r/jp_ltrim_utf8.result Xmysql-test/suite/jp/r/jp_ps_sjis.result Xmysql-test/suite/jp/r/jp_ps_ujis.result Xmysql-test/suite/jp/r/jp_replace_sjis.result Xmysql-test/suite/jp/r/jp_replace_ucs2.result Xmysql-test/suite/jp/r/jp_replace_ujis.result Xmysql-test/suite/jp/r/jp_replace_utf8.result Xmysql-test/suite/jp/r/jp_reverse_sjis.result Xmysql-test/suite/jp/r/jp_reverse_ucs2.result Xmysql-test/suite/jp/r/jp_reverse_ujis.result Xmysql-test/suite/jp/r/jp_reverse_utf8.result Xmysql-test/suite/jp/r/jp_right_sjis.result Xmysql-test/suite/jp/r/jp_right_ucs2.result Xmysql-test/suite/jp/r/jp_right_ujis.result Xmysql-test/suite/jp/r/jp_right_utf8.result Xmysql-test/suite/jp/r/jp_rpad_sjis.result Xmysql-test/suite/jp/r/jp_rpad_ucs2.result Xmysql-test/suite/jp/r/jp_rpad_ujis.result Xmysql-test/suite/jp/r/jp_rpad_utf8.result Xmysql-test/suite/jp/r/jp_rtrim_sjis.result Xmysql-test/suite/jp/r/jp_rtrim_ucs2.result Xmysql-test/suite/jp/r/jp_rtrim_ujis.result Xmysql-test/suite/jp/r/jp_rtrim_utf8.result Xmysql-test/suite/jp/r/jp_select_sjis.result Xmysql-test/suite/jp/r/jp_select_ucs2.result Xmysql-test/suite/jp/r/jp_select_ujis.result Xmysql-test/suite/jp/r/jp_select_utf8.result Xmysql-test/suite/jp/r/jp_subquery_sjis.result Xmysql-test/suite/jp/r/jp_subquery_ucs2.result Xmysql-test/suite/jp/r/jp_subquery_ujis.result Xmysql-test/suite/jp/r/jp_subquery_utf8.result Xmysql-test/suite/jp/r/jp_substring_sjis.result Xmysql-test/suite/jp/r/jp_substring_ucs2.result Xmysql-test/suite/jp/r/jp_substring_ujis.result Xmysql-test/suite/jp/r/jp_substring_utf8.result Xmysql-test/suite/jp/r/jp_trim_sjis.result Xmysql-test/suite/jp/r/jp_trim_ucs2.result Xmysql-test/suite/jp/r/jp_trim_ujis.result Xmysql-test/suite/jp/r/jp_trim_utf8.result Xmysql-test/suite/jp/r/jp_union_ujis.result Xmysql-test/suite/jp/r/jp_update_sjis.result Xmysql-test/suite/jp/r/jp_update_ucs2.result Xmysql-test/suite/jp/r/jp_update_ujis.result Xmysql-test/suite/jp/r/jp_update_utf8.result Xmysql-test/suite/jp/r/jp_where_sjis.result Xmysql-test/suite/jp/r/jp_where_ucs2.result Xmysql-test/suite/jp/r/jp_where_ujis.result Xmysql-test/suite/jp/r/jp_where_utf8.result Xmysql-test/suite/jp/std_data/jisx0201_sjis.dat Xmysql-test/suite/jp/std_data/jisx0201_ucs2.dat Xmysql-test/suite/jp/std_data/jisx0201_ujis.dat Xmysql-test/suite/jp/std_data/jisx0201_utf8.dat Xmysql-test/suite/jp/std_data/jisx0208_sjis.dat Xmysql-test/suite/jp/std_data/jisx0208_sjis2.dat Xmysql-test/suite/jp/std_data/jisx0208_sjis3.dat Xmysql-test/suite/jp/std_data/jisx0208_ucs2.dat Xmysql-test/suite/jp/std_data/jisx0208_ujis.dat Xmysql-test/suite/jp/std_data/jisx0208_utf8.dat Xmysql-test/suite/jp/std_data/jisx0212_ucs2.dat Xmysql-test/suite/jp/std_data/jisx0212_ujis.dat Xmysql-test/suite/jp/std_data/jisx0212_utf8.dat Xmysql-test/suite/jp/t/disabled.def Xmysql-test/suite/jp/t/jp_alter_sjis.test Xmysql-test/suite/jp/t/jp_alter_ucs2.test Xmysql-test/suite/jp/t/jp_alter_ujis.test Xmysql-test/suite/jp/t/jp_alter_utf8.test Xmysql-test/suite/jp/t/jp_charlength_sjis.test Xmysql-test/suite/jp/t/jp_charlength_ucs2.test Xmysql-test/suite/jp/t/jp_charlength_ujis.test Xmysql-test/suite/jp/t/jp_charlength_utf8.test Xmysql-test/suite/jp/t/jp_charset_sjis.test Xmysql-test/suite/jp/t/jp_charset_ucs2.test Xmysql-test/suite/jp/t/jp_charset_ujis.test Xmysql-test/suite/jp/t/jp_charset_utf8.test Xmysql-test/suite/jp/t/jp_convert_sjis.test Xmysql-test/suite/jp/t/jp_convert_ucs2.test Xmysql-test/suite/jp/t/jp_convert_ujis.test Xmysql-test/suite/jp/t/jp_convert_utf8.test Xmysql-test/suite/jp/t/jp_create_db_sjis.test Xmysql-test/suite/jp/t/jp_create_db_ucs2.test Xmysql-test/suite/jp/t/jp_create_db_ujis.test Xmysql-test/suite/jp/t/jp_create_db_utf8.test Xmysql-test/suite/jp/t/jp_create_tbl_sjis.test Xmysql-test/suite/jp/t/jp_create_tbl_ucs2.test Xmysql-test/suite/jp/t/jp_create_tbl_ujis.test Xmysql-test/suite/jp/t/jp_create_tbl_utf8.test Xmysql-test/suite/jp/t/jp_enum_sjis-master.opt Xmysql-test/suite/jp/t/jp_enum_sjis.test Xmysql-test/suite/jp/t/jp_enum_ucs2-master.opt Xmysql-test/suite/jp/t/jp_enum_ucs2.test Xmysql-test/suite/jp/t/jp_enum_ujis-master.opt Xmysql-test/suite/jp/t/jp_enum_ujis.test Xmysql-test/suite/jp/t/jp_enum_utf8-master.opt Xmysql-test/suite/jp/t/jp_enum_utf8.test Xmysql-test/suite/jp/t/jp_insert_sjis.test Xmysql-test/suite/jp/t/jp_insert_ucs2.test Xmysql-test/suite/jp/t/jp_insert_ujis.test Xmysql-test/suite/jp/t/jp_insert_utf8.test Xmysql-test/suite/jp/t/jp_instr_sjis.test Xmysql-test/suite/jp/t/jp_instr_ucs2.test Xmysql-test/suite/jp/t/jp_instr_ujis.test Xmysql-test/suite/jp/t/jp_instr_utf8.test Xmysql-test/suite/jp/t/jp_join_sjis.test Xmysql-test/suite/jp/t/jp_join_ucs2.test Xmysql-test/suite/jp/t/jp_join_ujis.test Xmysql-test/suite/jp/t/jp_join_utf8.test Xmysql-test/suite/jp/t/jp_left_sjis.test Xmysql-test/suite/jp/t/jp_left_ucs2.test Xmysql-test/suite/jp/t/jp_left_ujis.test Xmysql-test/suite/jp/t/jp_left_utf8.test Xmysql-test/suite/jp/t/jp_length_sjis.test Xmysql-test/suite/jp/t/jp_length_ucs2.test Xmysql-test/suite/jp/t/jp_length_ujis.test Xmysql-test/suite/jp/t/jp_length_utf8.test Xmysql-test/suite/jp/t/jp_like_sjis.test Xmysql-test/suite/jp/t/jp_like_ucs2.test Xmysql-test/suite/jp/t/jp_like_ujis.test Xmysql-test/suite/jp/t/jp_like_utf8.test Xmysql-test/suite/jp/t/jp_locate_sjis.test Xmysql-test/suite/jp/t/jp_locate_ucs2.test Xmysql-test/suite/jp/t/jp_locate_ujis.test Xmysql-test/suite/jp/t/jp_locate_utf8.test Xmysql-test/suite/jp/t/jp_lpad_sjis.test Xmysql-test/suite/jp/t/jp_lpad_ucs2.test Xmysql-test/suite/jp/t/jp_lpad_ujis.test Xmysql-test/suite/jp/t/jp_lpad_utf8.test Xmysql-test/suite/jp/t/jp_ltrim_sjis.test Xmysql-test/suite/jp/t/jp_ltrim_ucs2.test Xmysql-test/suite/jp/t/jp_ltrim_ujis.test Xmysql-test/suite/jp/t/jp_ltrim_utf8.test Xmysql-test/suite/jp/t/jp_ps_sjis.test Xmysql-test/suite/jp/t/jp_ps_ujis.test Xmysql-test/suite/jp/t/jp_replace_sjis.test Xmysql-test/suite/jp/t/jp_replace_ucs2.test Xmysql-test/suite/jp/t/jp_replace_ujis.test Xmysql-test/suite/jp/t/jp_replace_utf8.test Xmysql-test/suite/jp/t/jp_reverse_sjis.test Xmysql-test/suite/jp/t/jp_reverse_ucs2.test Xmysql-test/suite/jp/t/jp_reverse_ujis.test Xmysql-test/suite/jp/t/jp_reverse_utf8.test Xmysql-test/suite/jp/t/jp_right_sjis.test Xmysql-test/suite/jp/t/jp_right_ucs2.test Xmysql-test/suite/jp/t/jp_right_ujis.test Xmysql-test/suite/jp/t/jp_right_utf8.test Xmysql-test/suite/jp/t/jp_rpad_sjis.test Xmysql-test/suite/jp/t/jp_rpad_ucs2.test Xmysql-test/suite/jp/t/jp_rpad_ujis.test Xmysql-test/suite/jp/t/jp_rpad_utf8.test Xmysql-test/suite/jp/t/jp_rtrim_sjis.test Xmysql-test/suite/jp/t/jp_rtrim_ucs2.test Xmysql-test/suite/jp/t/jp_rtrim_ujis.test Xmysql-test/suite/jp/t/jp_rtrim_utf8.test Xmysql-test/suite/jp/t/jp_select_sjis.test Xmysql-test/suite/jp/t/jp_select_ucs2.test Xmysql-test/suite/jp/t/jp_select_ujis.test Xmysql-test/suite/jp/t/jp_select_utf8.test Xmysql-test/suite/jp/t/jp_subquery_sjis.test Xmysql-test/suite/jp/t/jp_subquery_ucs2.test Xmysql-test/suite/jp/t/jp_subquery_ujis.test Xmysql-test/suite/jp/t/jp_subquery_utf8.test Xmysql-test/suite/jp/t/jp_substring_sjis.test Xmysql-test/suite/jp/t/jp_substring_ucs2.test Xmysql-test/suite/jp/t/jp_substring_ujis.test Xmysql-test/suite/jp/t/jp_substring_utf8.test Xmysql-test/suite/jp/t/jp_trim_sjis.test Xmysql-test/suite/jp/t/jp_trim_ucs2.test Xmysql-test/suite/jp/t/jp_trim_ujis.test Xmysql-test/suite/jp/t/jp_trim_utf8.test Xmysql-test/suite/jp/t/jp_union_ujis.test Xmysql-test/suite/jp/t/jp_update_sjis.test Xmysql-test/suite/jp/t/jp_update_ucs2.test Xmysql-test/suite/jp/t/jp_update_ujis.test Xmysql-test/suite/jp/t/jp_update_utf8.test Xmysql-test/suite/jp/t/jp_where_sjis.test Xmysql-test/suite/jp/t/jp_where_ucs2.test Xmysql-test/suite/jp/t/jp_where_ujis.test Xmysql-test/suite/jp/t/jp_where_utf8.test Xmysql-test/suite/manual/r/rpl_replication_delay.result Xmysql-test/suite/manual/t/rpl_replication_delay-slave.opt Xmysql-test/suite/manual/t/rpl_replication_delay.test Xmysql-test/suite/ndb/my.cnf Xmysql-test/suite/ndb/r/loaddata_autocom_ndb.result Xmysql-test/suite/ndb/r/ndb_alter_table.result Xmysql-test/suite/ndb/r/ndb_alter_table2.result Xmysql-test/suite/ndb/r/ndb_alter_table3.result Xmysql-test/suite/ndb/r/ndb_auto_increment.result Xmysql-test/suite/ndb/r/ndb_autoinc.result Xmysql-test/suite/ndb/r/ndb_basic.result Xmysql-test/suite/ndb/r/ndb_binlog_basic.result Xmysql-test/suite/ndb/r/ndb_binlog_ddl_multi.result Xmysql-test/suite/ndb/r/ndb_binlog_discover.result Xmysql-test/suite/ndb/r/ndb_binlog_format.result Xmysql-test/suite/ndb/r/ndb_binlog_ignore_db.result Xmysql-test/suite/ndb/r/ndb_binlog_log_bin.result Xmysql-test/suite/ndb/r/ndb_binlog_multi.result Xmysql-test/suite/ndb/r/ndb_bitfield.result Xmysql-test/suite/ndb/r/ndb_blob.result Xmysql-test/suite/ndb/r/ndb_blob_partition.result Xmysql-test/suite/ndb/r/ndb_bug26793.result Xmysql-test/suite/ndb/r/ndb_bug31477.result Xmysql-test/suite/ndb/r/ndb_cache.result Xmysql-test/suite/ndb/r/ndb_cache2.result Xmysql-test/suite/ndb/r/ndb_cache_multi.result Xmysql-test/suite/ndb/r/ndb_cache_multi2.result Xmysql-test/suite/ndb/r/ndb_charset.result Xmysql-test/suite/ndb/r/ndb_condition_pushdown.result Xmysql-test/suite/ndb/r/ndb_config.result Xmysql-test/suite/ndb/r/ndb_config2.result Xmysql-test/suite/ndb/r/ndb_cursor.result Xmysql-test/suite/ndb/r/ndb_database.result Xmysql-test/suite/ndb/r/ndb_dd_alter.result Xmysql-test/suite/ndb/r/ndb_dd_basic.result Xmysql-test/suite/ndb/r/ndb_dd_ddl.result Xmysql-test/suite/ndb/r/ndb_dd_disk2memory.result Xmysql-test/suite/ndb/r/ndb_dd_dump.result Xmysql-test/suite/ndb/r/ndb_dd_sql_features.result Xmysql-test/suite/ndb/r/ndb_gis.result Xmysql-test/suite/ndb/r/ndb_grant.result Xmysql-test/suite/ndb/r/ndb_index.result Xmysql-test/suite/ndb/r/ndb_index_ordered.result Xmysql-test/suite/ndb/r/ndb_index_unique.result Xmysql-test/suite/ndb/r/ndb_insert.result Xmysql-test/suite/ndb/r/ndb_limit.result Xmysql-test/suite/ndb/r/ndb_load.result Xmysql-test/suite/ndb/r/ndb_loaddatalocal.result Xmysql-test/suite/ndb/r/ndb_lock.result Xmysql-test/suite/ndb/r/ndb_lock_table.result Xmysql-test/suite/ndb/r/ndb_minmax.result Xmysql-test/suite/ndb/r/ndb_multi.result Xmysql-test/suite/ndb/r/ndb_multi_row.result Xmysql-test/suite/ndb/r/ndb_partition_error.result Xmysql-test/suite/ndb/r/ndb_partition_error2.result Xmysql-test/suite/ndb/r/ndb_partition_key.result Xmysql-test/suite/ndb/r/ndb_partition_list.result Xmysql-test/suite/ndb/r/ndb_partition_range.result Xmysql-test/suite/ndb/r/ndb_read_multi_range.result Xmysql-test/suite/ndb/r/ndb_rename.result Xmysql-test/suite/ndb/r/ndb_replace.result Xmysql-test/suite/ndb/r/ndb_restore.result Xmysql-test/suite/ndb/r/ndb_restore_compat.result Xmysql-test/suite/ndb/r/ndb_restore_different_endian_data.result Xmysql-test/suite/ndb/r/ndb_restore_partition.result Xmysql-test/suite/ndb/r/ndb_restore_print.result Xmysql-test/suite/ndb/r/ndb_row_format.result Xmysql-test/suite/ndb/r/ndb_single_user.result Xmysql-test/suite/ndb/r/ndb_sp.result Xmysql-test/suite/ndb/r/ndb_subquery.result Xmysql-test/suite/ndb/r/ndb_temporary.result Xmysql-test/suite/ndb/r/ndb_transaction.result Xmysql-test/suite/ndb/r/ndb_trigger.result Xmysql-test/suite/ndb/r/ndb_truncate.result Xmysql-test/suite/ndb/r/ndb_types.result Xmysql-test/suite/ndb/r/ndb_update.result Xmysql-test/suite/ndb/r/ndb_update_no_read.result Xmysql-test/suite/ndb/r/ndb_view.result Xmysql-test/suite/ndb/r/ndbapi.result Xmysql-test/suite/ndb/r/ps_7ndb.result Xmysql-test/suite/ndb/r/strict_autoinc_5ndb.result Xmysql-test/suite/ndb/t/disabled.def Xmysql-test/suite/ndb/t/loaddata_autocom_ndb.test Xmysql-test/suite/ndb/t/ndb_alter_table.test Xmysql-test/suite/ndb/t/ndb_alter_table2.test Xmysql-test/suite/ndb/t/ndb_alter_table3.test Xmysql-test/suite/ndb/t/ndb_auto_increment.test Xmysql-test/suite/ndb/t/ndb_autoinc.test Xmysql-test/suite/ndb/t/ndb_basic.test Xmysql-test/suite/ndb/t/ndb_binlog_basic.test Xmysql-test/suite/ndb/t/ndb_binlog_ddl_multi.test Xmysql-test/suite/ndb/t/ndb_binlog_discover.test Xmysql-test/suite/ndb/t/ndb_binlog_format.test Xmysql-test/suite/ndb/t/ndb_binlog_ignore_db-master.opt Xmysql-test/suite/ndb/t/ndb_binlog_ignore_db.test Xmysql-test/suite/ndb/t/ndb_binlog_log_bin.test Xmysql-test/suite/ndb/t/ndb_binlog_multi.test Xmysql-test/suite/ndb/t/ndb_bitfield.test Xmysql-test/suite/ndb/t/ndb_blob.test Xmysql-test/suite/ndb/t/ndb_blob_partition.test Xmysql-test/suite/ndb/t/ndb_bug26793.test Xmysql-test/suite/ndb/t/ndb_bug31477.test Xmysql-test/suite/ndb/t/ndb_cache.test Xmysql-test/suite/ndb/t/ndb_cache2.test Xmysql-test/suite/ndb/t/ndb_cache_multi.test Xmysql-test/suite/ndb/t/ndb_cache_multi2.test Xmysql-test/suite/ndb/t/ndb_charset.test Xmysql-test/suite/ndb/t/ndb_condition_pushdown.test Xmysql-test/suite/ndb/t/ndb_config.test Xmysql-test/suite/ndb/t/ndb_config2.test Xmysql-test/suite/ndb/t/ndb_cursor.test Xmysql-test/suite/ndb/t/ndb_database.test Xmysql-test/suite/ndb/t/ndb_dd_alter.test Xmysql-test/suite/ndb/t/ndb_dd_basic.test Xmysql-test/suite/ndb/t/ndb_dd_ddl.test Xmysql-test/suite/ndb/t/ndb_dd_disk2memory.test Xmysql-test/suite/ndb/t/ndb_dd_dump.test Xmysql-test/suite/ndb/t/ndb_dd_sql_features.test Xmysql-test/suite/ndb/t/ndb_gis.test Xmysql-test/suite/ndb/t/ndb_grant.later Xmysql-test/suite/ndb/t/ndb_index.test Xmysql-test/suite/ndb/t/ndb_index_ordered.test Xmysql-test/suite/ndb/t/ndb_index_unique.test Xmysql-test/suite/ndb/t/ndb_insert.test Xmysql-test/suite/ndb/t/ndb_limit.test Xmysql-test/suite/ndb/t/ndb_load.test Xmysql-test/suite/ndb/t/ndb_loaddatalocal.test Xmysql-test/suite/ndb/t/ndb_lock.test Xmysql-test/suite/ndb/t/ndb_lock_table.test Xmysql-test/suite/ndb/t/ndb_minmax.test Xmysql-test/suite/ndb/t/ndb_multi.test Xmysql-test/suite/ndb/t/ndb_multi_row.test Xmysql-test/suite/ndb/t/ndb_partition_error.test Xmysql-test/suite/ndb/t/ndb_partition_error2-master.opt Xmysql-test/suite/ndb/t/ndb_partition_error2.test Xmysql-test/suite/ndb/t/ndb_partition_key.test Xmysql-test/suite/ndb/t/ndb_partition_list.test Xmysql-test/suite/ndb/t/ndb_partition_range.test Xmysql-test/suite/ndb/t/ndb_read_multi_range.test Xmysql-test/suite/ndb/t/ndb_rename.test Xmysql-test/suite/ndb/t/ndb_replace.test Xmysql-test/suite/ndb/t/ndb_restore.test Xmysql-test/suite/ndb/t/ndb_restore_compat.test Xmysql-test/suite/ndb/t/ndb_restore_different_endian_data.test Xmysql-test/suite/ndb/t/ndb_restore_partition-master.opt Xmysql-test/suite/ndb/t/ndb_restore_partition.test Xmysql-test/suite/ndb/t/ndb_restore_print.test Xmysql-test/suite/ndb/t/ndb_row_format.test Xmysql-test/suite/ndb/t/ndb_single_user.test Xmysql-test/suite/ndb/t/ndb_sp.test Xmysql-test/suite/ndb/t/ndb_subquery.test Xmysql-test/suite/ndb/t/ndb_temporary.test Xmysql-test/suite/ndb/t/ndb_transaction.test Xmysql-test/suite/ndb/t/ndb_trigger.test Xmysql-test/suite/ndb/t/ndb_truncate.test Xmysql-test/suite/ndb/t/ndb_types.test Xmysql-test/suite/ndb/t/ndb_update.test Xmysql-test/suite/ndb/t/ndb_update_no_read.test Xmysql-test/suite/ndb/t/ndb_view.test Xmysql-test/suite/ndb/t/ndbapi.test Xmysql-test/suite/ndb/t/ps_7ndb.test Xmysql-test/suite/ndb/t/strict_autoinc_5ndb.test Xmysql-test/suite/ndb_team/r/ndb_autodiscover.result Xmysql-test/suite/ndb_team/r/ndb_autodiscover2.result Xmysql-test/suite/ndb_team/r/ndb_autodiscover3.result Xmysql-test/suite/ndb_team/r/ndb_backup_print.result Xmysql-test/suite/ndb_team/r/ndb_dd_backuprestore.result Xmysql-test/suite/ndb_team/r/rpl_ndb_dd_advance.result Xmysql-test/suite/ndb_team/r/rpl_ndb_extraColMaster.result Xmysql-test/suite/ndb_team/r/rpl_ndb_mix_innodb.result Xmysql-test/suite/ndb_team/t/disabled.def Xmysql-test/suite/ndb_team/t/ndb_autodiscover.test Xmysql-test/suite/ndb_team/t/ndb_autodiscover2-master.opt Xmysql-test/suite/ndb_team/t/ndb_autodiscover2.test Xmysql-test/suite/ndb_team/t/ndb_autodiscover3.test Xmysql-test/suite/ndb_team/t/ndb_backup_print.test Xmysql-test/suite/ndb_team/t/ndb_dd_backuprestore.test Xmysql-test/suite/ndb_team/t/rpl_ndb_dd_advance.test Xmysql-test/suite/ndb_team/t/rpl_ndb_extraColMaster.test Xmysql-test/suite/ndb_team/t/rpl_ndb_mix_innodb-master.opt Xmysql-test/suite/ndb_team/t/rpl_ndb_mix_innodb.test Xmysql-test/suite/parts/inc/methods1.inc Xmysql-test/suite/parts/inc/part_blocked_sql_funcs_main.inc Xmysql-test/suite/parts/inc/part_supported_sql_funcs_delete.inc Xmysql-test/suite/parts/inc/part_supported_sql_funcs_main.inc Xmysql-test/suite/parts/inc/partition.pre Xmysql-test/suite/parts/inc/partition_10.inc Xmysql-test/suite/parts/inc/partition_11.inc Xmysql-test/suite/parts/inc/partition_12.inc Xmysql-test/suite/parts/inc/partition_20.inc Xmysql-test/suite/parts/inc/partition_alter1_1.inc Xmysql-test/suite/parts/inc/partition_alter1_1_2.inc Xmysql-test/suite/parts/inc/partition_alter1_2.inc Xmysql-test/suite/parts/inc/partition_alter2_1.inc Xmysql-test/suite/parts/inc/partition_alter2_2.inc Xmysql-test/suite/parts/inc/partition_alter3.inc Xmysql-test/suite/parts/inc/partition_alter4.inc Xmysql-test/suite/parts/inc/partition_alter_1.inc Xmysql-test/suite/parts/inc/partition_alter_11.inc Xmysql-test/suite/parts/inc/partition_alter_13.inc Xmysql-test/suite/parts/inc/partition_alter_41.inc Xmysql-test/suite/parts/inc/partition_auto_increment.inc Xmysql-test/suite/parts/inc/partition_basic.inc Xmysql-test/suite/parts/inc/partition_basic_symlink.inc Xmysql-test/suite/parts/inc/partition_bigint.inc Xmysql-test/suite/parts/inc/partition_binary.inc Xmysql-test/suite/parts/inc/partition_bit.inc Xmysql-test/suite/parts/inc/partition_blob.inc Xmysql-test/suite/parts/inc/partition_blocked_sql_funcs.inc Xmysql-test/suite/parts/inc/partition_char.inc Xmysql-test/suite/parts/inc/partition_check.inc Xmysql-test/suite/parts/inc/partition_check_drop.inc Xmysql-test/suite/parts/inc/partition_check_read.inc Xmysql-test/suite/parts/inc/partition_check_read1.inc Xmysql-test/suite/parts/inc/partition_check_read2.inc Xmysql-test/suite/parts/inc/partition_cleanup.inc Xmysql-test/suite/parts/inc/partition_date.inc Xmysql-test/suite/parts/inc/partition_datetime.inc Xmysql-test/suite/parts/inc/partition_decimal.inc Xmysql-test/suite/parts/inc/partition_directory.inc Xmysql-test/suite/parts/inc/partition_double.inc Xmysql-test/suite/parts/inc/partition_engine.inc Xmysql-test/suite/parts/inc/partition_enum.inc Xmysql-test/suite/parts/inc/partition_float.inc Xmysql-test/suite/parts/inc/partition_int.inc Xmysql-test/suite/parts/inc/partition_key_16col.inc Xmysql-test/suite/parts/inc/partition_key_32col.inc Xmysql-test/suite/parts/inc/partition_key_4col.inc Xmysql-test/suite/parts/inc/partition_key_8col.inc Xmysql-test/suite/parts/inc/partition_layout.inc Xmysql-test/suite/parts/inc/partition_layout_check1.inc Xmysql-test/suite/parts/inc/partition_layout_check2.inc Xmysql-test/suite/parts/inc/partition_mediumint.inc Xmysql-test/suite/parts/inc/partition_methods1.inc Xmysql-test/suite/parts/inc/partition_methods2.inc Xmysql-test/suite/parts/inc/partition_mgm.inc Xmysql-test/suite/parts/inc/partition_set.inc Xmysql-test/suite/parts/inc/partition_smallint.inc Xmysql-test/suite/parts/inc/partition_supported_sql_funcs.inc Xmysql-test/suite/parts/inc/partition_syntax.inc Xmysql-test/suite/parts/inc/partition_syntax_1.inc Xmysql-test/suite/parts/inc/partition_syntax_2.inc Xmysql-test/suite/parts/inc/partition_text.inc Xmysql-test/suite/parts/inc/partition_time.inc Xmysql-test/suite/parts/inc/partition_timestamp.inc Xmysql-test/suite/parts/inc/partition_tinyint.inc Xmysql-test/suite/parts/inc/partition_trigg1.inc Xmysql-test/suite/parts/inc/partition_trigg2.inc Xmysql-test/suite/parts/inc/partition_trigg3.inc Xmysql-test/suite/parts/inc/partition_value.inc Xmysql-test/suite/parts/inc/partition_varbinary.inc Xmysql-test/suite/parts/inc/partition_varchar.inc Xmysql-test/suite/parts/inc/partition_year.inc Xmysql-test/suite/parts/r/ndb_dd_backuprestore.result Xmysql-test/suite/parts/r/part_blocked_sql_func_innodb.result Xmysql-test/suite/parts/r/part_blocked_sql_func_myisam.result Xmysql-test/suite/parts/r/part_supported_sql_func_innodb.result Xmysql-test/suite/parts/r/part_supported_sql_func_myisam.result Xmysql-test/suite/parts/r/part_supported_sql_func_ndb.result Xmysql-test/suite/parts/r/partition_alter1_1_2_innodb.result Xmysql-test/suite/parts/r/partition_alter1_1_2_myisam.result Xmysql-test/suite/parts/r/partition_alter1_1_2_ndb.result Xmysql-test/suite/parts/r/partition_alter1_1_innodb.result Xmysql-test/suite/parts/r/partition_alter1_1_myisam.result Xmysql-test/suite/parts/r/partition_alter1_1_ndb.result Xmysql-test/suite/parts/r/partition_alter1_2_innodb.result Xmysql-test/suite/parts/r/partition_alter1_2_myisam.result Xmysql-test/suite/parts/r/partition_alter1_2_ndb.result Xmysql-test/suite/parts/r/partition_alter2_1_innodb.result Xmysql-test/suite/parts/r/partition_alter2_1_myisam.result Xmysql-test/suite/parts/r/partition_alter2_2_innodb.result Xmysql-test/suite/parts/r/partition_alter2_2_myisam.result Xmysql-test/suite/parts/r/partition_alter3_innodb.result Xmysql-test/suite/parts/r/partition_alter3_myisam.result Xmysql-test/suite/parts/r/partition_alter4_innodb.result Xmysql-test/suite/parts/r/partition_alter4_myisam.result Xmysql-test/suite/parts/r/partition_auto_increment_archive.result Xmysql-test/suite/parts/r/partition_auto_increment_blackhole.result Xmysql-test/suite/parts/r/partition_auto_increment_innodb.result Xmysql-test/suite/parts/r/partition_auto_increment_memory.result Xmysql-test/suite/parts/r/partition_auto_increment_myisam.result Xmysql-test/suite/parts/r/partition_auto_increment_ndb.result Xmysql-test/suite/parts/r/partition_basic_innodb.result Xmysql-test/suite/parts/r/partition_basic_myisam.result Xmysql-test/suite/parts/r/partition_basic_symlink_innodb.result Xmysql-test/suite/parts/r/partition_basic_symlink_myisam.result Xmysql-test/suite/parts/r/partition_bit_innodb.result Xmysql-test/suite/parts/r/partition_bit_myisam.result Xmysql-test/suite/parts/r/partition_char_innodb.result Xmysql-test/suite/parts/r/partition_char_myisam.result Xmysql-test/suite/parts/r/partition_datetime_innodb.result Xmysql-test/suite/parts/r/partition_datetime_myisam.result Xmysql-test/suite/parts/r/partition_decimal_innodb.result Xmysql-test/suite/parts/r/partition_decimal_myisam.result Xmysql-test/suite/parts/r/partition_engine_innodb.result Xmysql-test/suite/parts/r/partition_engine_myisam.result Xmysql-test/suite/parts/r/partition_engine_ndb.result Xmysql-test/suite/parts/r/partition_float_innodb.result Xmysql-test/suite/parts/r/partition_float_myisam.result Xmysql-test/suite/parts/r/partition_int_innodb.result Xmysql-test/suite/parts/r/partition_int_myisam.result Xmysql-test/suite/parts/r/partition_int_ndb.result Xmysql-test/suite/parts/r/partition_mgm_lc0_archive.result Xmysql-test/suite/parts/r/partition_mgm_lc0_innodb.result Xmysql-test/suite/parts/r/partition_mgm_lc0_memory.result Xmysql-test/suite/parts/r/partition_mgm_lc0_myisam.result Xmysql-test/suite/parts/r/partition_mgm_lc0_ndb.result Xmysql-test/suite/parts/r/partition_mgm_lc1_archive.result Xmysql-test/suite/parts/r/partition_mgm_lc1_innodb.result Xmysql-test/suite/parts/r/partition_mgm_lc1_memory.result Xmysql-test/suite/parts/r/partition_mgm_lc1_myisam.result Xmysql-test/suite/parts/r/partition_mgm_lc1_ndb.result Xmysql-test/suite/parts/r/partition_mgm_lc2_archive.result Xmysql-test/suite/parts/r/partition_mgm_lc2_innodb.result Xmysql-test/suite/parts/r/partition_mgm_lc2_memory.result Xmysql-test/suite/parts/r/partition_mgm_lc2_myisam.result Xmysql-test/suite/parts/r/partition_mgm_lc2_ndb.result Xmysql-test/suite/parts/r/partition_recover_myisam.result Xmysql-test/suite/parts/r/partition_repair_myisam.result Xmysql-test/suite/parts/r/partition_special_innodb.result Xmysql-test/suite/parts/r/partition_special_myisam.result Xmysql-test/suite/parts/r/partition_syntax_innodb.result Xmysql-test/suite/parts/r/partition_syntax_myisam.result Xmysql-test/suite/parts/r/partition_syntax_ndb.result Xmysql-test/suite/parts/r/partition_t55.out Xmysql-test/suite/parts/r/partition_value_innodb.result Xmysql-test/suite/parts/r/partition_value_myisam.result Xmysql-test/suite/parts/r/partition_value_ndb.result Xmysql-test/suite/parts/r/rpl_partition.result Xmysql-test/suite/parts/t/disabled.def Xmysql-test/suite/parts/t/ndb_dd_backuprestore.test Xmysql-test/suite/parts/t/part_blocked_sql_func_innodb.test Xmysql-test/suite/parts/t/part_blocked_sql_func_myisam.test Xmysql-test/suite/parts/t/part_supported_sql_func_innodb.test Xmysql-test/suite/parts/t/part_supported_sql_func_myisam.test Xmysql-test/suite/parts/t/part_supported_sql_func_ndb.test Xmysql-test/suite/parts/t/partition_alter1_1_2_innodb.test Xmysql-test/suite/parts/t/partition_alter1_1_2_myisam.test Xmysql-test/suite/parts/t/partition_alter1_1_2_ndb.test Xmysql-test/suite/parts/t/partition_alter1_1_innodb.test Xmysql-test/suite/parts/t/partition_alter1_1_myisam.test Xmysql-test/suite/parts/t/partition_alter1_1_ndb.test Xmysql-test/suite/parts/t/partition_alter1_2_innodb.test Xmysql-test/suite/parts/t/partition_alter1_2_myisam.test Xmysql-test/suite/parts/t/partition_alter1_2_ndb.test Xmysql-test/suite/parts/t/partition_alter2_1_innodb.test Xmysql-test/suite/parts/t/partition_alter2_1_myisam.test Xmysql-test/suite/parts/t/partition_alter2_2_innodb.test Xmysql-test/suite/parts/t/partition_alter2_2_myisam.test Xmysql-test/suite/parts/t/partition_alter3_innodb.test Xmysql-test/suite/parts/t/partition_alter3_myisam.test Xmysql-test/suite/parts/t/partition_alter4_innodb.test Xmysql-test/suite/parts/t/partition_alter4_myisam.test Xmysql-test/suite/parts/t/partition_auto_increment_archive.test Xmysql-test/suite/parts/t/partition_auto_increment_blackhole.test Xmysql-test/suite/parts/t/partition_auto_increment_innodb.test Xmysql-test/suite/parts/t/partition_auto_increment_memory.test Xmysql-test/suite/parts/t/partition_auto_increment_myisam.test Xmysql-test/suite/parts/t/partition_auto_increment_ndb.test Xmysql-test/suite/parts/t/partition_basic_innodb.test Xmysql-test/suite/parts/t/partition_basic_myisam.test Xmysql-test/suite/parts/t/partition_basic_ndb.test Xmysql-test/suite/parts/t/partition_basic_symlink_innodb.test Xmysql-test/suite/parts/t/partition_basic_symlink_myisam.test Xmysql-test/suite/parts/t/partition_bit_innodb.test Xmysql-test/suite/parts/t/partition_bit_myisam.test Xmysql-test/suite/parts/t/partition_char_innodb.test Xmysql-test/suite/parts/t/partition_char_myisam.test Xmysql-test/suite/parts/t/partition_datetime_innodb.test Xmysql-test/suite/parts/t/partition_datetime_myisam.test Xmysql-test/suite/parts/t/partition_decimal_innodb.test Xmysql-test/suite/parts/t/partition_decimal_myisam.test Xmysql-test/suite/parts/t/partition_engine_innodb.test Xmysql-test/suite/parts/t/partition_engine_myisam.test Xmysql-test/suite/parts/t/partition_engine_ndb.test Xmysql-test/suite/parts/t/partition_float_innodb.test Xmysql-test/suite/parts/t/partition_float_myisam.test Xmysql-test/suite/parts/t/partition_int_innodb.test Xmysql-test/suite/parts/t/partition_int_myisam.test Xmysql-test/suite/parts/t/partition_int_ndb.test Xmysql-test/suite/parts/t/partition_mgm_lc0_archive.test Xmysql-test/suite/parts/t/partition_mgm_lc0_innodb.test Xmysql-test/suite/parts/t/partition_mgm_lc0_memory.test Xmysql-test/suite/parts/t/partition_mgm_lc0_myisam.test Xmysql-test/suite/parts/t/partition_mgm_lc0_ndb.test Xmysql-test/suite/parts/t/partition_mgm_lc1_archive-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_archive.test Xmysql-test/suite/parts/t/partition_mgm_lc1_innodb-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_innodb.test Xmysql-test/suite/parts/t/partition_mgm_lc1_memory-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_memory.test Xmysql-test/suite/parts/t/partition_mgm_lc1_myisam-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_myisam.test Xmysql-test/suite/parts/t/partition_mgm_lc1_ndb-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc1_ndb.test Xmysql-test/suite/parts/t/partition_mgm_lc2_archive-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_archive.test Xmysql-test/suite/parts/t/partition_mgm_lc2_innodb-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_innodb.test Xmysql-test/suite/parts/t/partition_mgm_lc2_memory-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_memory.test Xmysql-test/suite/parts/t/partition_mgm_lc2_myisam-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_myisam.test Xmysql-test/suite/parts/t/partition_mgm_lc2_ndb-master.opt Xmysql-test/suite/parts/t/partition_mgm_lc2_ndb.test Xmysql-test/suite/parts/t/partition_recover_myisam-master.opt Xmysql-test/suite/parts/t/partition_recover_myisam.test Xmysql-test/suite/parts/t/partition_repair_myisam.test Xmysql-test/suite/parts/t/partition_special_innodb-master.opt Xmysql-test/suite/parts/t/partition_special_innodb.test Xmysql-test/suite/parts/t/partition_special_myisam.test Xmysql-test/suite/parts/t/partition_syntax_innodb.test Xmysql-test/suite/parts/t/partition_syntax_myisam.test Xmysql-test/suite/parts/t/partition_syntax_ndb.test Xmysql-test/suite/parts/t/partition_value_innodb.test Xmysql-test/suite/parts/t/partition_value_myisam.test Xmysql-test/suite/parts/t/partition_value_ndb.test Xmysql-test/suite/parts/t/rpl_partition.test Xmysql-test/suite/rpl/README Xmysql-test/suite/rpl/combinations Xmysql-test/suite/rpl/include/rpl_mixed_check_db.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_event.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_select.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_table.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_user.inc Xmysql-test/suite/rpl/include/rpl_mixed_check_view.inc Xmysql-test/suite/rpl/include/rpl_mixed_clear_tables.inc Xmysql-test/suite/rpl/include/rpl_mixed_ddl.inc Xmysql-test/suite/rpl/include/rpl_mixed_dml.inc Xmysql-test/suite/rpl/include/rpl_mixed_show_binlog_format.inc Xmysql-test/suite/rpl/my.cnf Xmysql-test/suite/rpl/r/rpl000001.a.result Xmysql-test/suite/rpl/r/rpl000001.b.result Xmysql-test/suite/rpl/r/rpl000010.result Xmysql-test/suite/rpl/r/rpl000011.result Xmysql-test/suite/rpl/r/rpl000013.result Xmysql-test/suite/rpl/r/rpl000017.result Xmysql-test/suite/rpl/r/rpl_000015.result Xmysql-test/suite/rpl/r/rpl_EE_err.result Xmysql-test/suite/rpl/r/rpl_LD_INFILE.result Xmysql-test/suite/rpl/r/rpl_alter.result Xmysql-test/suite/rpl/r/rpl_alter_db.result Xmysql-test/suite/rpl/r/rpl_auto_increment.result Xmysql-test/suite/rpl/r/rpl_auto_increment_11932.result Xmysql-test/suite/rpl/r/rpl_binlog_corruption.result Xmysql-test/suite/rpl/r/rpl_binlog_grant.result Xmysql-test/suite/rpl/r/rpl_binlog_query_filter_rules.result Xmysql-test/suite/rpl/r/rpl_bit.result Xmysql-test/suite/rpl/r/rpl_bit_npk.result Xmysql-test/suite/rpl/r/rpl_blackhole.result Xmysql-test/suite/rpl/r/rpl_bug26395.result Xmysql-test/suite/rpl/r/rpl_bug31076.result Xmysql-test/suite/rpl/r/rpl_bug33931.result Xmysql-test/suite/rpl/r/rpl_change_master.result Xmysql-test/suite/rpl/r/rpl_charset.result Xmysql-test/suite/rpl/r/rpl_charset_sjis.result Xmysql-test/suite/rpl/r/rpl_circular_for_4_hosts.result Xmysql-test/suite/rpl/r/rpl_colSize.result Xmysql-test/suite/rpl/r/rpl_commit_after_flush.result Xmysql-test/suite/rpl/r/rpl_create_database.result Xmysql-test/suite/rpl/r/rpl_critical_errors.result Xmysql-test/suite/rpl/r/rpl_critical_errors.result.txt Xmysql-test/suite/rpl/r/rpl_cross_version.result Xmysql-test/suite/rpl/r/rpl_ddl.result Xmysql-test/suite/rpl/r/rpl_deadlock_innodb.result Xmysql-test/suite/rpl/r/rpl_delete_no_where.result Xmysql-test/suite/rpl/r/rpl_do_grant.result Xmysql-test/suite/rpl/r/rpl_drop.result Xmysql-test/suite/rpl/r/rpl_drop_db.result Xmysql-test/suite/rpl/r/rpl_drop_temp.result Xmysql-test/suite/rpl/r/rpl_drop_view.result Xmysql-test/suite/rpl/r/rpl_dual_pos_advance.result Xmysql-test/suite/rpl/r/rpl_empty_master_crash.result Xmysql-test/suite/rpl/r/rpl_err_ignoredtable.result Xmysql-test/suite/rpl/r/rpl_events.result Xmysql-test/suite/rpl/r/rpl_extraCol_innodb.result Xmysql-test/suite/rpl/r/rpl_extraCol_myisam.result Xmysql-test/suite/rpl/r/rpl_extraColmaster_innodb.result Xmysql-test/suite/rpl/r/rpl_extraColmaster_myisam.result Xmysql-test/suite/rpl/r/rpl_failed_optimize.result Xmysql-test/suite/rpl/r/rpl_filter_tables_not_exist.result Xmysql-test/suite/rpl/r/rpl_flushlog_loop.result Xmysql-test/suite/rpl/r/rpl_foreign_key_innodb.result Xmysql-test/suite/rpl/r/rpl_found_rows.result Xmysql-test/suite/rpl/r/rpl_free_items.result Xmysql-test/suite/rpl/r/rpl_get_lock.result Xmysql-test/suite/rpl/r/rpl_grant.result Xmysql-test/suite/rpl/r/rpl_idempotency.result Xmysql-test/suite/rpl/r/rpl_ignore_grant.result Xmysql-test/suite/rpl/r/rpl_ignore_revoke.result Xmysql-test/suite/rpl/r/rpl_ignore_table.result Xmysql-test/suite/rpl/r/rpl_ignore_table_update.result Xmysql-test/suite/rpl/r/rpl_incident.result Xmysql-test/suite/rpl/r/rpl_init_slave.result Xmysql-test/suite/rpl/r/rpl_innodb.result Xmysql-test/suite/rpl/r/rpl_innodb_bug28430.result Xmysql-test/suite/rpl/r/rpl_innodb_bug30888.result Xmysql-test/suite/rpl/r/rpl_innodb_mixed_ddl.result Xmysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result Xmysql-test/suite/rpl/r/rpl_insert.result Xmysql-test/suite/rpl/r/rpl_insert_id.result Xmysql-test/suite/rpl/r/rpl_insert_id_pk.result Xmysql-test/suite/rpl/r/rpl_insert_ignore.result Xmysql-test/suite/rpl/r/rpl_insert_select.result Xmysql-test/suite/rpl/r/rpl_invoked_features.result Xmysql-test/suite/rpl/r/rpl_known_bugs_detection.result Xmysql-test/suite/rpl/r/rpl_load_from_master.result Xmysql-test/suite/rpl/r/rpl_load_table_from_master.result Xmysql-test/suite/rpl/r/rpl_loaddata.result Xmysql-test/suite/rpl/r/rpl_loaddata_charset.result Xmysql-test/suite/rpl/r/rpl_loaddata_fatal.result Xmysql-test/suite/rpl/r/rpl_loaddata_m.result Xmysql-test/suite/rpl/r/rpl_loaddata_map.result Xmysql-test/suite/rpl/r/rpl_loaddata_s.result Xmysql-test/suite/rpl/r/rpl_loaddata_simple.result Xmysql-test/suite/rpl/r/rpl_loaddatalocal.result Xmysql-test/suite/rpl/r/rpl_loadfile.result Xmysql-test/suite/rpl/r/rpl_locale.result Xmysql-test/suite/rpl/r/rpl_log_pos.result Xmysql-test/suite/rpl/r/rpl_many_optimize.result Xmysql-test/suite/rpl/r/rpl_master_pos_wait.result Xmysql-test/suite/rpl/r/rpl_misc_functions.result Xmysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result Xmysql-test/suite/rpl/r/rpl_multi_delete.result Xmysql-test/suite/rpl/r/rpl_multi_delete2.result Xmysql-test/suite/rpl/r/rpl_multi_engine.result Xmysql-test/suite/rpl/r/rpl_multi_update.result Xmysql-test/suite/rpl/r/rpl_multi_update2.result Xmysql-test/suite/rpl/r/rpl_multi_update3.result Xmysql-test/suite/rpl/r/rpl_multi_update4.result Xmysql-test/suite/rpl/r/rpl_optimize.result Xmysql-test/suite/rpl/r/rpl_packet.result Xmysql-test/suite/rpl/r/rpl_plugin_load.result Xmysql-test/suite/rpl/r/rpl_ps.result Xmysql-test/suite/rpl/r/rpl_rbr_to_sbr.result Xmysql-test/suite/rpl/r/rpl_read_only.result Xmysql-test/suite/rpl/r/rpl_relay_space_innodb.result Xmysql-test/suite/rpl/r/rpl_relay_space_myisam.result Xmysql-test/suite/rpl/r/rpl_relayrotate.result Xmysql-test/suite/rpl/r/rpl_relayspace.result Xmysql-test/suite/rpl/r/rpl_replicate_do.result Xmysql-test/suite/rpl/r/rpl_replicate_ignore_db.result Xmysql-test/suite/rpl/r/rpl_report.result Xmysql-test/suite/rpl/r/rpl_rewrt_db.result Xmysql-test/suite/rpl/r/rpl_rotate_logs.result Xmysql-test/suite/rpl/r/rpl_row_001.result Xmysql-test/suite/rpl/r/rpl_row_4_bytes.result Xmysql-test/suite/rpl/r/rpl_row_NOW.result Xmysql-test/suite/rpl/r/rpl_row_USER.result Xmysql-test/suite/rpl/r/rpl_row_UUID.result Xmysql-test/suite/rpl/r/rpl_row_basic_11bugs-master.opt Xmysql-test/suite/rpl/r/rpl_row_basic_11bugs-slave.opt Xmysql-test/suite/rpl/r/rpl_row_basic_11bugs.result Xmysql-test/suite/rpl/r/rpl_row_basic_2myisam.result Xmysql-test/suite/rpl/r/rpl_row_basic_3innodb.result Xmysql-test/suite/rpl/r/rpl_row_basic_8partition.result Xmysql-test/suite/rpl/r/rpl_row_blob_innodb.result Xmysql-test/suite/rpl/r/rpl_row_blob_myisam.result Xmysql-test/suite/rpl/r/rpl_row_colSize.result Xmysql-test/suite/rpl/r/rpl_row_conflicts.result Xmysql-test/suite/rpl/r/rpl_row_create_table.result Xmysql-test/suite/rpl/r/rpl_row_delayed_ins.result Xmysql-test/suite/rpl/r/rpl_row_drop.result Xmysql-test/suite/rpl/r/rpl_row_err_ignoredtable.result Xmysql-test/suite/rpl/r/rpl_row_flsh_tbls.result Xmysql-test/suite/rpl/r/rpl_row_func001.result Xmysql-test/suite/rpl/r/rpl_row_func002.result Xmysql-test/suite/rpl/r/rpl_row_func003.result Xmysql-test/suite/rpl/r/rpl_row_inexist_tbl.result Xmysql-test/suite/rpl/r/rpl_row_insert_delayed.result Xmysql-test/suite/rpl/r/rpl_row_loaddata_m.result Xmysql-test/suite/rpl/r/rpl_row_log.result Xmysql-test/suite/rpl/r/rpl_row_log_innodb.result Xmysql-test/suite/rpl/r/rpl_row_max_relay_size.result Xmysql-test/suite/rpl/r/rpl_row_multi_query.result Xmysql-test/suite/rpl/r/rpl_row_mysqlbinlog.result Xmysql-test/suite/rpl/r/rpl_row_reset_slave.result Xmysql-test/suite/rpl/r/rpl_row_sp001.result Xmysql-test/suite/rpl/r/rpl_row_sp002_innodb.result Xmysql-test/suite/rpl/r/rpl_row_sp003.result Xmysql-test/suite/rpl/r/rpl_row_sp005.result Xmysql-test/suite/rpl/r/rpl_row_sp006_InnoDB.result Xmysql-test/suite/rpl/r/rpl_row_sp007_innodb.result Xmysql-test/suite/rpl/r/rpl_row_sp008.result Xmysql-test/suite/rpl/r/rpl_row_sp009.result Xmysql-test/suite/rpl/r/rpl_row_sp010.result Xmysql-test/suite/rpl/r/rpl_row_sp011.result Xmysql-test/suite/rpl/r/rpl_row_sp012.result Xmysql-test/suite/rpl/r/rpl_row_stop_middle_update.result Xmysql-test/suite/rpl/r/rpl_row_tabledefs_2myisam.result Xmysql-test/suite/rpl/r/rpl_row_tabledefs_3innodb.result Xmysql-test/suite/rpl/r/rpl_row_tabledefs_7ndb.result Xmysql-test/suite/rpl/r/rpl_row_trig001.result Xmysql-test/suite/rpl/r/rpl_row_trig002.result Xmysql-test/suite/rpl/r/rpl_row_trig003.result Xmysql-test/suite/rpl/r/rpl_row_trig004.result Xmysql-test/suite/rpl/r/rpl_row_unsafe_funcs.result Xmysql-test/suite/rpl/r/rpl_row_until.result Xmysql-test/suite/rpl/r/rpl_row_view01.result Xmysql-test/suite/rpl/r/rpl_server_id.result Xmysql-test/suite/rpl/r/rpl_server_id1.result Xmysql-test/suite/rpl/r/rpl_server_id2.result Xmysql-test/suite/rpl/r/rpl_session_var.result Xmysql-test/suite/rpl/r/rpl_set_charset.result Xmysql-test/suite/rpl/r/rpl_sf.result Xmysql-test/suite/rpl/r/rpl_skip_error.result Xmysql-test/suite/rpl/r/rpl_slave_grp_exec.result Xmysql-test/suite/rpl/r/rpl_slave_skip.result Xmysql-test/suite/rpl/r/rpl_slave_status.result Xmysql-test/suite/rpl/r/rpl_sp.result Xmysql-test/suite/rpl/r/rpl_sp004.result Xmysql-test/suite/rpl/r/rpl_sp_effects.result Xmysql-test/suite/rpl/r/rpl_sporadic_master.result Xmysql-test/suite/rpl/r/rpl_ssl.result Xmysql-test/suite/rpl/r/rpl_ssl1.result Xmysql-test/suite/rpl/r/rpl_start_stop_slave.result Xmysql-test/suite/rpl/r/rpl_stm_000001.result Xmysql-test/suite/rpl/r/rpl_stm_EE_err2.result Xmysql-test/suite/rpl/r/rpl_stm_auto_increment_bug33029.result Xmysql-test/suite/rpl/r/rpl_stm_conflicts.result Xmysql-test/suite/rpl/r/rpl_stm_flsh_tbls.result Xmysql-test/suite/rpl/r/rpl_stm_insert_delayed.result Xmysql-test/suite/rpl/r/rpl_stm_log.result Xmysql-test/suite/rpl/r/rpl_stm_max_relay_size.result Xmysql-test/suite/rpl/r/rpl_stm_multi_query.result Xmysql-test/suite/rpl/r/rpl_stm_no_op.result Xmysql-test/suite/rpl/r/rpl_stm_reset_slave.result Xmysql-test/suite/rpl/r/rpl_stm_until.result Xmysql-test/suite/rpl/r/rpl_switch_stm_row_mixed.result Xmysql-test/suite/rpl/r/rpl_temp_table.result Xmysql-test/suite/rpl/r/rpl_temporary.result Xmysql-test/suite/rpl/r/rpl_temporary_errors.result Xmysql-test/suite/rpl/r/rpl_timezone.result Xmysql-test/suite/rpl/r/rpl_trigger.result Xmysql-test/suite/rpl/r/rpl_trunc_temp.result Xmysql-test/suite/rpl/r/rpl_truncate_2myisam.result Xmysql-test/suite/rpl/r/rpl_truncate_3innodb.result Xmysql-test/suite/rpl/r/rpl_udf.result Xmysql-test/suite/rpl/r/rpl_user.result Xmysql-test/suite/rpl/r/rpl_user_variables.result Xmysql-test/suite/rpl/r/rpl_variables.result Xmysql-test/suite/rpl/r/rpl_variables_stm.result Xmysql-test/suite/rpl/r/rpl_view.result Xmysql-test/suite/rpl/rpl_1slave_base.cnf Xmysql-test/suite/rpl/t/disabled.def Xmysql-test/suite/rpl/t/rpl000010-slave.opt Xmysql-test/suite/rpl/t/rpl000010.test Xmysql-test/suite/rpl/t/rpl000011.test Xmysql-test/suite/rpl/t/rpl000013.test Xmysql-test/suite/rpl/t/rpl000017-slave.opt Xmysql-test/suite/rpl/t/rpl000017-slave.sh Xmysql-test/suite/rpl/t/rpl000017.test Xmysql-test/suite/rpl/t/rpl_000015-slave.opt Xmysql-test/suite/rpl/t/rpl_000015-slave.sh Xmysql-test/suite/rpl/t/rpl_000015.cnf Xmysql-test/suite/rpl/t/rpl_000015.test Xmysql-test/suite/rpl/t/rpl_EE_err.test Xmysql-test/suite/rpl/t/rpl_LD_INFILE.test Xmysql-test/suite/rpl/t/rpl_alter.test Xmysql-test/suite/rpl/t/rpl_alter_db.test Xmysql-test/suite/rpl/t/rpl_auto_increment-master.opt Xmysql-test/suite/rpl/t/rpl_auto_increment.test Xmysql-test/suite/rpl/t/rpl_auto_increment_11932.test Xmysql-test/suite/rpl/t/rpl_binlog_corruption-master.opt Xmysql-test/suite/rpl/t/rpl_binlog_corruption.test Xmysql-test/suite/rpl/t/rpl_binlog_grant.test Xmysql-test/suite/rpl/t/rpl_binlog_query_filter_rules-master.opt Xmysql-test/suite/rpl/t/rpl_binlog_query_filter_rules.test Xmysql-test/suite/rpl/t/rpl_bit.test Xmysql-test/suite/rpl/t/rpl_bit_npk.test Xmysql-test/suite/rpl/t/rpl_blackhole.test Xmysql-test/suite/rpl/t/rpl_bug26395.test Xmysql-test/suite/rpl/t/rpl_bug31076.test Xmysql-test/suite/rpl/t/rpl_bug33931.test Xmysql-test/suite/rpl/t/rpl_change_master.test Xmysql-test/suite/rpl/t/rpl_charset.test Xmysql-test/suite/rpl/t/rpl_charset_sjis.test Xmysql-test/suite/rpl/t/rpl_circular_for_4_hosts.cnf Xmysql-test/suite/rpl/t/rpl_circular_for_4_hosts.test Xmysql-test/suite/rpl/t/rpl_colSize.test Xmysql-test/suite/rpl/t/rpl_commit_after_flush.test Xmysql-test/suite/rpl/t/rpl_create_database-master.opt Xmysql-test/suite/rpl/t/rpl_create_database-slave.opt Xmysql-test/suite/rpl/t/rpl_create_database.test Xmysql-test/suite/rpl/t/rpl_critical_errors.test Xmysql-test/suite/rpl/t/rpl_cross_version-master.opt Xmysql-test/suite/rpl/t/rpl_cross_version.test Xmysql-test/suite/rpl/t/rpl_ddl.test Xmysql-test/suite/rpl/t/rpl_deadlock_innodb-slave.opt Xmysql-test/suite/rpl/t/rpl_deadlock_innodb.test Xmysql-test/suite/rpl/t/rpl_delete_no_where.test Xmysql-test/suite/rpl/t/rpl_do_grant.test Xmysql-test/suite/rpl/t/rpl_drop.test Xmysql-test/suite/rpl/t/rpl_drop_db.test Xmysql-test/suite/rpl/t/rpl_drop_temp-slave.opt Xmysql-test/suite/rpl/t/rpl_drop_temp.test Xmysql-test/suite/rpl/t/rpl_drop_view.test Xmysql-test/suite/rpl/t/rpl_dual_pos_advance-master.opt Xmysql-test/suite/rpl/t/rpl_dual_pos_advance.test Xmysql-test/suite/rpl/t/rpl_empty_master_crash-master.opt Xmysql-test/suite/rpl/t/rpl_empty_master_crash.test Xmysql-test/suite/rpl/t/rpl_err_ignoredtable-slave.opt Xmysql-test/suite/rpl/t/rpl_err_ignoredtable.test Xmysql-test/suite/rpl/t/rpl_events.test Xmysql-test/suite/rpl/t/rpl_extraCol_innodb.test Xmysql-test/suite/rpl/t/rpl_extraCol_myisam.test Xmysql-test/suite/rpl/t/rpl_extraColmaster_innodb.test Xmysql-test/suite/rpl/t/rpl_extraColmaster_myisam.test Xmysql-test/suite/rpl/t/rpl_failed_optimize-master.opt Xmysql-test/suite/rpl/t/rpl_failed_optimize.test Xmysql-test/suite/rpl/t/rpl_filter_tables_not_exist-slave.opt Xmysql-test/suite/rpl/t/rpl_filter_tables_not_exist.test Xmysql-test/suite/rpl/t/rpl_flushlog_loop-master.opt Xmysql-test/suite/rpl/t/rpl_flushlog_loop-master.sh Xmysql-test/suite/rpl/t/rpl_flushlog_loop-slave.opt Xmysql-test/suite/rpl/t/rpl_flushlog_loop-slave.sh Xmysql-test/suite/rpl/t/rpl_flushlog_loop.test Xmysql-test/suite/rpl/t/rpl_foreign_key_innodb.test Xmysql-test/suite/rpl/t/rpl_found_rows.test Xmysql-test/suite/rpl/t/rpl_free_items-slave.opt Xmysql-test/suite/rpl/t/rpl_free_items.test Xmysql-test/suite/rpl/t/rpl_get_lock.test Xmysql-test/suite/rpl/t/rpl_grant.test Xmysql-test/suite/rpl/t/rpl_idempotency-slave.opt Xmysql-test/suite/rpl/t/rpl_idempotency.test Xmysql-test/suite/rpl/t/rpl_ignore_grant-slave.opt Xmysql-test/suite/rpl/t/rpl_ignore_grant.test Xmysql-test/suite/rpl/t/rpl_ignore_revoke-slave.opt Xmysql-test/suite/rpl/t/rpl_ignore_revoke.test Xmysql-test/suite/rpl/t/rpl_ignore_table-slave.opt Xmysql-test/suite/rpl/t/rpl_ignore_table.test Xmysql-test/suite/rpl/t/rpl_ignore_table_update-slave.opt Xmysql-test/suite/rpl/t/rpl_ignore_table_update.test Xmysql-test/suite/rpl/t/rpl_incident-master.opt Xmysql-test/suite/rpl/t/rpl_incident.test Xmysql-test/suite/rpl/t/rpl_init_slave-slave.opt Xmysql-test/suite/rpl/t/rpl_init_slave.test Xmysql-test/suite/rpl/t/rpl_innodb-master.opt Xmysql-test/suite/rpl/t/rpl_innodb.test Xmysql-test/suite/rpl/t/rpl_innodb_bug28430-master.opt Xmysql-test/suite/rpl/t/rpl_innodb_bug28430-slave.opt Xmysql-test/suite/rpl/t/rpl_innodb_bug28430.test Xmysql-test/suite/rpl/t/rpl_innodb_bug30888.test Xmysql-test/suite/rpl/t/rpl_innodb_mixed_ddl.test Xmysql-test/suite/rpl/t/rpl_innodb_mixed_dml.test Xmysql-test/suite/rpl/t/rpl_insert.test Xmysql-test/suite/rpl/t/rpl_insert_id.test Xmysql-test/suite/rpl/t/rpl_insert_id_pk.test Xmysql-test/suite/rpl/t/rpl_insert_ignore.test Xmysql-test/suite/rpl/t/rpl_insert_select.test Xmysql-test/suite/rpl/t/rpl_invoked_features.test Xmysql-test/suite/rpl/t/rpl_known_bugs_detection-master.opt Xmysql-test/suite/rpl/t/rpl_known_bugs_detection.test Xmysql-test/suite/rpl/t/rpl_load_from_master-slave.opt Xmysql-test/suite/rpl/t/rpl_load_from_master.test Xmysql-test/suite/rpl/t/rpl_load_table_from_master.test Xmysql-test/suite/rpl/t/rpl_loaddata.test Xmysql-test/suite/rpl/t/rpl_loaddata_charset.test Xmysql-test/suite/rpl/t/rpl_loaddata_fatal-slave.opt Xmysql-test/suite/rpl/t/rpl_loaddata_fatal.test Xmysql-test/suite/rpl/t/rpl_loaddata_m-master.opt Xmysql-test/suite/rpl/t/rpl_loaddata_m.test Xmysql-test/suite/rpl/t/rpl_loaddata_map-master.opt Xmysql-test/suite/rpl/t/rpl_loaddata_map-slave.opt Xmysql-test/suite/rpl/t/rpl_loaddata_map.test Xmysql-test/suite/rpl/t/rpl_loaddata_s-slave.opt Xmysql-test/suite/rpl/t/rpl_loaddata_s.test Xmysql-test/suite/rpl/t/rpl_loaddata_simple.test Xmysql-test/suite/rpl/t/rpl_loaddatalocal.test Xmysql-test/suite/rpl/t/rpl_loadfile.test Xmysql-test/suite/rpl/t/rpl_locale.test Xmysql-test/suite/rpl/t/rpl_log_pos.test Xmysql-test/suite/rpl/t/rpl_many_optimize.test Xmysql-test/suite/rpl/t/rpl_master_pos_wait.test Xmysql-test/suite/rpl/t/rpl_misc_functions-slave.sh Xmysql-test/suite/rpl/t/rpl_misc_functions.test Xmysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test Xmysql-test/suite/rpl/t/rpl_multi_delete-slave.opt Xmysql-test/suite/rpl/t/rpl_multi_delete.test Xmysql-test/suite/rpl/t/rpl_multi_delete2-slave.opt Xmysql-test/suite/rpl/t/rpl_multi_delete2.test Xmysql-test/suite/rpl/t/rpl_multi_engine.test Xmysql-test/suite/rpl/t/rpl_multi_update.test Xmysql-test/suite/rpl/t/rpl_multi_update2-slave.opt Xmysql-test/suite/rpl/t/rpl_multi_update2.test Xmysql-test/suite/rpl/t/rpl_multi_update3.test Xmysql-test/suite/rpl/t/rpl_multi_update4-slave.opt Xmysql-test/suite/rpl/t/rpl_multi_update4.test Xmysql-test/suite/rpl/t/rpl_optimize.test Xmysql-test/suite/rpl/t/rpl_packet-master.opt Xmysql-test/suite/rpl/t/rpl_packet-slave.opt Xmysql-test/suite/rpl/t/rpl_packet.test Xmysql-test/suite/rpl/t/rpl_plugin_load-master.opt Xmysql-test/suite/rpl/t/rpl_plugin_load-slave.opt Xmysql-test/suite/rpl/t/rpl_plugin_load.test Xmysql-test/suite/rpl/t/rpl_ps.test Xmysql-test/suite/rpl/t/rpl_rbr_to_sbr.test Xmysql-test/suite/rpl/t/rpl_read_only.test Xmysql-test/suite/rpl/t/rpl_relay_space_innodb.test Xmysql-test/suite/rpl/t/rpl_relay_space_myisam.test Xmysql-test/suite/rpl/t/rpl_relayrotate-slave.opt Xmysql-test/suite/rpl/t/rpl_relayrotate.test Xmysql-test/suite/rpl/t/rpl_relayspace-slave.opt Xmysql-test/suite/rpl/t/rpl_relayspace.test Xmysql-test/suite/rpl/t/rpl_replicate_do-slave.opt Xmysql-test/suite/rpl/t/rpl_replicate_do.test Xmysql-test/suite/rpl/t/rpl_replicate_ignore_db-slave.opt Xmysql-test/suite/rpl/t/rpl_replicate_ignore_db.test Xmysql-test/suite/rpl/t/rpl_report-slave.opt Xmysql-test/suite/rpl/t/rpl_report.test Xmysql-test/suite/rpl/t/rpl_rewrt_db-slave.opt Xmysql-test/suite/rpl/t/rpl_rewrt_db.test Xmysql-test/suite/rpl/t/rpl_rotate_logs-slave.opt Xmysql-test/suite/rpl/t/rpl_rotate_logs-slave.sh Xmysql-test/suite/rpl/t/rpl_rotate_logs.cnf Xmysql-test/suite/rpl/t/rpl_rotate_logs.test Xmysql-test/suite/rpl/t/rpl_row_001.test Xmysql-test/suite/rpl/t/rpl_row_4_bytes-master.opt Xmysql-test/suite/rpl/t/rpl_row_4_bytes.test Xmysql-test/suite/rpl/t/rpl_row_NOW.test Xmysql-test/suite/rpl/t/rpl_row_USER.test Xmysql-test/suite/rpl/t/rpl_row_UUID.test Xmysql-test/suite/rpl/t/rpl_row_basic_11bugs-master.opt Xmysql-test/suite/rpl/t/rpl_row_basic_11bugs.test Xmysql-test/suite/rpl/t/rpl_row_basic_2myisam.test Xmysql-test/suite/rpl/t/rpl_row_basic_3innodb.test Xmysql-test/suite/rpl/t/rpl_row_basic_8partition.test Xmysql-test/suite/rpl/t/rpl_row_blob_innodb.test Xmysql-test/suite/rpl/t/rpl_row_blob_myisam.test Xmysql-test/suite/rpl/t/rpl_row_colSize.test Xmysql-test/suite/rpl/t/rpl_row_conflicts.test Xmysql-test/suite/rpl/t/rpl_row_create_table.test Xmysql-test/suite/rpl/t/rpl_row_delayed_ins.test Xmysql-test/suite/rpl/t/rpl_row_drop.test Xmysql-test/suite/rpl/t/rpl_row_err_daisychain-master.opt Xmysql-test/suite/rpl/t/rpl_row_err_daisychain-slave.opt Xmysql-test/suite/rpl/t/rpl_row_flsh_tbls.test Xmysql-test/suite/rpl/t/rpl_row_func001.test Xmysql-test/suite/rpl/t/rpl_row_func002.test Xmysql-test/suite/rpl/t/rpl_row_func003.test Xmysql-test/suite/rpl/t/rpl_row_inexist_tbl.test Xmysql-test/suite/rpl/t/rpl_row_insert_delayed.test Xmysql-test/suite/rpl/t/rpl_row_log-master.opt Xmysql-test/suite/rpl/t/rpl_row_log-slave.opt Xmysql-test/suite/rpl/t/rpl_row_log.test Xmysql-test/suite/rpl/t/rpl_row_log_innodb-master.opt Xmysql-test/suite/rpl/t/rpl_row_log_innodb.test Xmysql-test/suite/rpl/t/rpl_row_max_relay_size.test Xmysql-test/suite/rpl/t/rpl_row_mysqlbinlog-master.opt Xmysql-test/suite/rpl/t/rpl_row_mysqlbinlog.test Xmysql-test/suite/rpl/t/rpl_row_reset_slave.test Xmysql-test/suite/rpl/t/rpl_row_sp001.test Xmysql-test/suite/rpl/t/rpl_row_sp002_innodb.test Xmysql-test/suite/rpl/t/rpl_row_sp003.test Xmysql-test/suite/rpl/t/rpl_row_sp005.test Xmysql-test/suite/rpl/t/rpl_row_sp006_InnoDB.test Xmysql-test/suite/rpl/t/rpl_row_sp007_innodb.test Xmysql-test/suite/rpl/t/rpl_row_sp008.test Xmysql-test/suite/rpl/t/rpl_row_sp009.test Xmysql-test/suite/rpl/t/rpl_row_sp010.test Xmysql-test/suite/rpl/t/rpl_row_sp011.test Xmysql-test/suite/rpl/t/rpl_row_sp012.test Xmysql-test/suite/rpl/t/rpl_row_stop_middle_update-master.opt Xmysql-test/suite/rpl/t/rpl_row_stop_middle_update-slave.opt Xmysql-test/suite/rpl/t/rpl_row_stop_middle_update.test Xmysql-test/suite/rpl/t/rpl_row_tabledefs_2myisam.test Xmysql-test/suite/rpl/t/rpl_row_tabledefs_3innodb.test Xmysql-test/suite/rpl/t/rpl_row_trig001.test Xmysql-test/suite/rpl/t/rpl_row_trig002.test Xmysql-test/suite/rpl/t/rpl_row_trig003.test Xmysql-test/suite/rpl/t/rpl_row_trig004.test Xmysql-test/suite/rpl/t/rpl_row_unsafe_funcs.test Xmysql-test/suite/rpl/t/rpl_row_until.test Xmysql-test/suite/rpl/t/rpl_row_view01.test Xmysql-test/suite/rpl/t/rpl_server_id.test Xmysql-test/suite/rpl/t/rpl_server_id1.test Xmysql-test/suite/rpl/t/rpl_server_id2-slave.opt Xmysql-test/suite/rpl/t/rpl_server_id2.test Xmysql-test/suite/rpl/t/rpl_session_var.test Xmysql-test/suite/rpl/t/rpl_set_charset.test Xmysql-test/suite/rpl/t/rpl_sf.test Xmysql-test/suite/rpl/t/rpl_skip_error-slave.opt Xmysql-test/suite/rpl/t/rpl_skip_error.test Xmysql-test/suite/rpl/t/rpl_slave_grp_exec.test Xmysql-test/suite/rpl/t/rpl_slave_skip.test Xmysql-test/suite/rpl/t/rpl_slave_status.test Xmysql-test/suite/rpl/t/rpl_sp-master.opt Xmysql-test/suite/rpl/t/rpl_sp-slave.opt Xmysql-test/suite/rpl/t/rpl_sp.test Xmysql-test/suite/rpl/t/rpl_sp004.test Xmysql-test/suite/rpl/t/rpl_sp_effects-master.opt Xmysql-test/suite/rpl/t/rpl_sp_effects-slave.opt Xmysql-test/suite/rpl/t/rpl_sp_effects.test Xmysql-test/suite/rpl/t/rpl_sporadic_master-master.opt Xmysql-test/suite/rpl/t/rpl_sporadic_master.test Xmysql-test/suite/rpl/t/rpl_ssl.test Xmysql-test/suite/rpl/t/rpl_ssl1.test Xmysql-test/suite/rpl/t/rpl_start_stop_slave.test Xmysql-test/suite/rpl/t/rpl_stm_000001.test Xmysql-test/suite/rpl/t/rpl_stm_EE_err2.test Xmysql-test/suite/rpl/t/rpl_stm_auto_increment_bug33029.test Xmysql-test/suite/rpl/t/rpl_stm_conflicts.test Xmysql-test/suite/rpl/t/rpl_stm_flsh_tbls.test Xmysql-test/suite/rpl/t/rpl_stm_insert_delayed.test Xmysql-test/suite/rpl/t/rpl_stm_log-master.opt Xmysql-test/suite/rpl/t/rpl_stm_log-slave.opt Xmysql-test/suite/rpl/t/rpl_stm_log.test Xmysql-test/suite/rpl/t/rpl_stm_max_relay_size.test Xmysql-test/suite/rpl/t/rpl_stm_multi_query.test Xmysql-test/suite/rpl/t/rpl_stm_no_op.test Xmysql-test/suite/rpl/t/rpl_stm_reset_slave.test Xmysql-test/suite/rpl/t/rpl_stm_until.test Xmysql-test/suite/rpl/t/rpl_switch_stm_row_mixed.test Xmysql-test/suite/rpl/t/rpl_temp_table.test Xmysql-test/suite/rpl/t/rpl_temporary.test Xmysql-test/suite/rpl/t/rpl_temporary_errors-slave.opt Xmysql-test/suite/rpl/t/rpl_temporary_errors.test Xmysql-test/suite/rpl/t/rpl_timezone-master.opt Xmysql-test/suite/rpl/t/rpl_timezone-slave.opt Xmysql-test/suite/rpl/t/rpl_timezone.test Xmysql-test/suite/rpl/t/rpl_trigger.test Xmysql-test/suite/rpl/t/rpl_trunc_temp.test Xmysql-test/suite/rpl/t/rpl_truncate_2myisam.test Xmysql-test/suite/rpl/t/rpl_truncate_3innodb.test Xmysql-test/suite/rpl/t/rpl_udf-master.opt Xmysql-test/suite/rpl/t/rpl_udf-slave.opt Xmysql-test/suite/rpl/t/rpl_udf.test Xmysql-test/suite/rpl/t/rpl_user.test Xmysql-test/suite/rpl/t/rpl_user_variables.test Xmysql-test/suite/rpl/t/rpl_variables.test Xmysql-test/suite/rpl/t/rpl_variables_stm.test Xmysql-test/suite/rpl/t/rpl_view.test Xmysql-test/suite/rpl_ndb/my.cnf Xmysql-test/suite/rpl_ndb/r/rpl_ndb_2innodb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_2myisam.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_2ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_2other.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_UUID.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_apply_status.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_auto_inc.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_bank.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_basic.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_blob.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_blob2.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_circular.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_circular_2ch.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_circular_simplex.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_commit_afterflush.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_ctype_ucs2_def.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_dd_basic.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_dd_partitions.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_ddl.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_delete_nowhere.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_do_db.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_do_table.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_extraCol.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_func003.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_idempotent.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_innodb2ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_innodb_trans.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_insert_ignore.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_load.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_log.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_mixed_engines_transactions.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_multi.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_multi_update2.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_multi_update3.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_myisam2ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_relayrotate.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_rep_ignore.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_row_001.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_sp003.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_sp006.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_stm_innodb.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_sync.result Xmysql-test/suite/rpl_ndb/r/rpl_ndb_trig004.result Xmysql-test/suite/rpl_ndb/r/rpl_ndbapi_multi.result Xmysql-test/suite/rpl_ndb/r/rpl_row_basic_7ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_truncate_7ndb.result Xmysql-test/suite/rpl_ndb/r/rpl_truncate_7ndb_2.result Xmysql-test/suite/rpl_ndb/t/disabled.def Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2innodb-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2innodb-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2innodb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2myisam-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2myisam-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2myisam.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2ndb-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2other-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_2other.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_UUID.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_apply_status-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_apply_status.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_auto_inc.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_bank.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_basic.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_blob.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_blob2.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_circular.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_circular_2ch.cnf Xmysql-test/suite/rpl_ndb/t/rpl_ndb_circular_2ch.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_circular_simplex.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_commit_afterflush.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_ctype_ucs2_def-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_ctype_ucs2_def.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_dd_basic.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_dd_partitions-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_dd_partitions-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_dd_partitions.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_ddl.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_delete_nowhere.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_do_db-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_do_db.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_do_table-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_do_table.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_extraCol.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_func003.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_idempotent.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb2ndb-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb2ndb-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb2ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb_trans-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_innodb_trans.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_insert_ignore.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_load.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_log-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_log.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_mixed_engines_transactions-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_mixed_engines_transactions-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_mixed_engines_transactions.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_multi.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_multi_update2-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_multi_update2.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_multi_update3.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_myisam2ndb-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_myisam2ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_relayrotate-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_relayrotate.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_rep_ignore-slave.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_rep_ignore.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_row_001.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_sp003.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_sp006.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_stm_innodb-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_ndb_stm_innodb.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_sync.test Xmysql-test/suite/rpl_ndb/t/rpl_ndb_trig004.test Xmysql-test/suite/rpl_ndb/t/rpl_ndbapi_multi.test Xmysql-test/suite/rpl_ndb/t/rpl_row_basic_7ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_truncate_7ndb.test Xmysql-test/suite/rpl_ndb/t/rpl_truncate_7ndb_2-master.opt Xmysql-test/suite/rpl_ndb/t/rpl_truncate_7ndb_2.test Xmysql-test/suite/stress/include/ddl.cln Xmysql-test/suite/stress/include/ddl.pre Xmysql-test/suite/stress/include/ddl1.inc Xmysql-test/suite/stress/include/ddl2.inc Xmysql-test/suite/stress/include/ddl3.inc Xmysql-test/suite/stress/include/ddl4.inc Xmysql-test/suite/stress/include/ddl5.inc Xmysql-test/suite/stress/include/ddl6.inc Xmysql-test/suite/stress/include/ddl7.inc Xmysql-test/suite/stress/include/ddl8.inc Xmysql-test/suite/stress/r/ddl_archive.result Xmysql-test/suite/stress/r/ddl_csv.result Xmysql-test/suite/stress/r/ddl_innodb.result Xmysql-test/suite/stress/r/ddl_memory.result Xmysql-test/suite/stress/r/ddl_myisam.result Xmysql-test/suite/stress/r/ddl_ndb.result Xmysql-test/suite/stress/t/ddl_archive.test Xmysql-test/suite/stress/t/ddl_csv.test Xmysql-test/suite/stress/t/ddl_innodb.test Xmysql-test/suite/stress/t/ddl_memory.test Xmysql-test/suite/stress/t/ddl_myisam.test Xmysql-test/suite/stress/t/ddl_ndb.test Xmysql-test/t/1st.test Xmysql-test/t/alias.test Xmysql-test/t/almost_full.test Xmysql-test/t/alter_table-big.test Xmysql-test/t/alter_table.test Xmysql-test/t/analyse.test Xmysql-test/t/analyze.test Xmysql-test/t/ansi.test Xmysql-test/t/archive-big.test Xmysql-test/t/archive.test Xmysql-test/t/archive_bitfield.test Xmysql-test/t/archive_gis.test Xmysql-test/t/auto_increment.test Xmysql-test/t/backup-master.sh Xmysql-test/t/backup.test Xmysql-test/t/bench_count_distinct.test Xmysql-test/t/bigint.test Xmysql-test/t/binary.test Xmysql-test/t/bool.test Xmysql-test/t/bootstrap.test Xmysql-test/t/bulk_replace.test Xmysql-test/t/cache_innodb-master.opt Xmysql-test/t/cache_innodb.test Xmysql-test/t/case.test Xmysql-test/t/cast.test Xmysql-test/t/change_user-master.opt Xmysql-test/t/change_user.test Xmysql-test/t/check.test Xmysql-test/t/client_xml.test Xmysql-test/t/comments.test Xmysql-test/t/commit_1innodb.test Xmysql-test/t/compare.test Xmysql-test/t/compress.test Xmysql-test/t/concurrent_innodb_safelog-master.opt Xmysql-test/t/concurrent_innodb_safelog.test Xmysql-test/t/concurrent_innodb_unsafelog-master.opt Xmysql-test/t/concurrent_innodb_unsafelog.test Xmysql-test/t/connect.test Xmysql-test/t/consistent_snapshot.test Xmysql-test/t/constraints.test Xmysql-test/t/contributors.test Xmysql-test/t/count_distinct.test Xmysql-test/t/count_distinct2-master.opt Xmysql-test/t/count_distinct2.test Xmysql-test/t/count_distinct3.test Xmysql-test/t/crash_commit_before-master.opt Xmysql-test/t/crash_commit_before.test Xmysql-test/t/create-big.test Xmysql-test/t/create.test Xmysql-test/t/create_not_windows.test Xmysql-test/t/create_select_tmp.test Xmysql-test/t/csv.test Xmysql-test/t/csv_alter_table.test Xmysql-test/t/csv_not_null.test Xmysql-test/t/ctype_ascii.test Xmysql-test/t/ctype_big5.test Xmysql-test/t/ctype_collate.test Xmysql-test/t/ctype_cp1250_ch.test Xmysql-test/t/ctype_cp1251.test Xmysql-test/t/ctype_cp932_binlog_row.test Xmysql-test/t/ctype_cp932_binlog_stm.test Xmysql-test/t/ctype_create.test Xmysql-test/t/ctype_eucjpms.test Xmysql-test/t/ctype_euckr.test Xmysql-test/t/ctype_filename.test Xmysql-test/t/ctype_filesystem-master.opt Xmysql-test/t/ctype_filesystem.test Xmysql-test/t/ctype_gb2312.test Xmysql-test/t/ctype_gbk.test Xmysql-test/t/ctype_hebrew.test Xmysql-test/t/ctype_latin1.test Xmysql-test/t/ctype_latin1_de-master.opt Xmysql-test/t/ctype_latin1_de.test Xmysql-test/t/ctype_latin2.test Xmysql-test/t/ctype_latin2_ch.test Xmysql-test/t/ctype_ldml-master.opt Xmysql-test/t/ctype_ldml.test Xmysql-test/t/ctype_many.test Xmysql-test/t/ctype_mb.test Xmysql-test/t/ctype_recoding.test Xmysql-test/t/ctype_sjis.test Xmysql-test/t/ctype_tis620.test Xmysql-test/t/ctype_uca.test Xmysql-test/t/ctype_ucs.test Xmysql-test/t/ctype_ucs2_def-master.opt Xmysql-test/t/ctype_ucs2_def.test Xmysql-test/t/ctype_ujis.test Xmysql-test/t/ctype_ujis_ucs2.test Xmysql-test/t/ctype_utf8.test Xmysql-test/t/date_formats-master.opt Xmysql-test/t/date_formats.test Xmysql-test/t/ddl_i18n_koi8r.test Xmysql-test/t/ddl_i18n_utf8.test Xmysql-test/t/deadlock_innodb.test Xmysql-test/t/default.test Xmysql-test/t/delayed.test Xmysql-test/t/delete.test Xmysql-test/t/derived.test Xmysql-test/t/dirty_close.test Xmysql-test/t/disabled.def Xmysql-test/t/distinct.test Xmysql-test/t/drop.test Xmysql-test/t/empty_table.test Xmysql-test/t/endspace.test Xmysql-test/t/error_simulation.test Xmysql-test/t/errors.test Xmysql-test/t/events_1.test Xmysql-test/t/events_2.test Xmysql-test/t/events_bugs-master.opt Xmysql-test/t/events_bugs.test Xmysql-test/t/events_embedded.test Xmysql-test/t/events_grant.test Xmysql-test/t/events_logs_tests-master.opt Xmysql-test/t/events_logs_tests.test Xmysql-test/t/events_microsec.test Xmysql-test/t/events_restart-master.opt Xmysql-test/t/events_restart.test Xmysql-test/t/events_scheduling.test Xmysql-test/t/events_stress.test Xmysql-test/t/events_time_zone.test Xmysql-test/t/events_trans.test Xmysql-test/t/events_trans_notembedded.test Xmysql-test/t/exampledb.test Xmysql-test/t/execution_constants.test Xmysql-test/t/explain.test Xmysql-test/t/fix_priv_tables.test Xmysql-test/t/flush.test Xmysql-test/t/flush2-master.opt Xmysql-test/t/flush2.test Xmysql-test/t/flush_block_commit.test Xmysql-test/t/flush_block_commit_notembedded.test Xmysql-test/t/flush_read_lock_kill-master.opt Xmysql-test/t/flush_read_lock_kill.test Xmysql-test/t/flush_table.test Xmysql-test/t/foreign_key.test Xmysql-test/t/fulltext.test Xmysql-test/t/fulltext2.test Xmysql-test/t/fulltext3.test Xmysql-test/t/fulltext_cache.test Xmysql-test/t/fulltext_distinct.test Xmysql-test/t/fulltext_left_join.test Xmysql-test/t/fulltext_multi.test Xmysql-test/t/fulltext_order_by.test Xmysql-test/t/fulltext_plugin-master.opt Xmysql-test/t/fulltext_plugin.test Xmysql-test/t/fulltext_update.test Xmysql-test/t/fulltext_var.test Xmysql-test/t/func_compress.test Xmysql-test/t/func_concat.test Xmysql-test/t/func_crypt.test Xmysql-test/t/func_date_add.test Xmysql-test/t/func_default.test Xmysql-test/t/func_des_encrypt.test Xmysql-test/t/func_encrypt-master.opt Xmysql-test/t/func_encrypt.test Xmysql-test/t/func_encrypt_nossl.test Xmysql-test/t/func_equal.test Xmysql-test/t/func_gconcat.test Xmysql-test/t/func_group.test Xmysql-test/t/func_group_innodb.test Xmysql-test/t/func_if.test Xmysql-test/t/func_in.test Xmysql-test/t/func_isnull.test Xmysql-test/t/func_like.test Xmysql-test/t/func_math.test Xmysql-test/t/func_misc.test Xmysql-test/t/func_op.test Xmysql-test/t/func_regexp.test Xmysql-test/t/func_rollback.test Xmysql-test/t/func_sapdb.test Xmysql-test/t/func_set.test Xmysql-test/t/func_str.test Xmysql-test/t/func_system.test Xmysql-test/t/func_test.test Xmysql-test/t/func_time.test Xmysql-test/t/func_timestamp.test Xmysql-test/t/gcc296.test Xmysql-test/t/gis-rtree.test Xmysql-test/t/gis.test Xmysql-test/t/grant.test Xmysql-test/t/grant2.test Xmysql-test/t/grant3-master.opt Xmysql-test/t/grant3.test Xmysql-test/t/grant_cache_no_prot.test Xmysql-test/t/grant_cache_ps_prot.test Xmysql-test/t/greedy_optimizer.test Xmysql-test/t/group_by.test Xmysql-test/t/group_min_max.test Xmysql-test/t/group_min_max_innodb.test Xmysql-test/t/handler_innodb.test Xmysql-test/t/handler_myisam.test Xmysql-test/t/having.test Xmysql-test/t/heap.test Xmysql-test/t/heap_auto_increment.test Xmysql-test/t/heap_btree.test Xmysql-test/t/heap_hash.test Xmysql-test/t/help.test Xmysql-test/t/index_merge_innodb.test Xmysql-test/t/index_merge_myisam.test Xmysql-test/t/information_schema.test Xmysql-test/t/information_schema_chmod.test Xmysql-test/t/information_schema_db.test Xmysql-test/t/information_schema_inno.test Xmysql-test/t/information_schema_part.test Xmysql-test/t/init_connect-master.opt Xmysql-test/t/init_connect.test Xmysql-test/t/init_file-master.opt Xmysql-test/t/init_file.test Xmysql-test/t/innodb-autoinc-optimize.test Xmysql-test/t/innodb-autoinc.test Xmysql-test/t/innodb-lock.test Xmysql-test/t/innodb-master.opt Xmysql-test/t/innodb-replace.test Xmysql-test/t/innodb-semi-consistent-master.opt Xmysql-test/t/innodb-semi-consistent.test Xmysql-test/t/innodb-ucs2.test Xmysql-test/t/innodb.test Xmysql-test/t/innodb_autoinc_lock_mode_zero-master.opt Xmysql-test/t/innodb_autoinc_lock_mode_zero.test Xmysql-test/t/innodb_bug30919-master.opt Xmysql-test/t/innodb_bug30919.test Xmysql-test/t/innodb_bug34053.test Xmysql-test/t/innodb_bug34300.test Xmysql-test/t/innodb_bug35220.test Xmysql-test/t/innodb_bug38231.test Xmysql-test/t/innodb_bug39438-master.opt Xmysql-test/t/innodb_bug39438.test Xmysql-test/t/innodb_gis.test Xmysql-test/t/innodb_ignore_builtin-master.opt Xmysql-test/t/innodb_ignore_builtin.test Xmysql-test/t/innodb_mysql-master.opt Xmysql-test/t/innodb_mysql.test Xmysql-test/t/innodb_mysql_rbk-master.opt Xmysql-test/t/innodb_mysql_rbk.test Xmysql-test/t/innodb_notembedded.test Xmysql-test/t/innodb_timeout_rollback-master.opt Xmysql-test/t/innodb_timeout_rollback.test Xmysql-test/t/innodb_trx_weight.test Xmysql-test/t/insert.test Xmysql-test/t/insert_notembedded.test Xmysql-test/t/insert_select.test Xmysql-test/t/insert_update.test Xmysql-test/t/join.test Xmysql-test/t/join_crash.test Xmysql-test/t/join_nested.test Xmysql-test/t/join_outer.test Xmysql-test/t/join_outer_innodb.test Xmysql-test/t/key.test Xmysql-test/t/key_cache-master.opt Xmysql-test/t/key_cache.test Xmysql-test/t/key_diff.test Xmysql-test/t/key_primary.test Xmysql-test/t/keywords.test Xmysql-test/t/kill.test Xmysql-test/t/limit.test Xmysql-test/t/loaddata.test Xmysql-test/t/loaddata_autocom_innodb.test Xmysql-test/t/lock.test Xmysql-test/t/lock_multi.test Xmysql-test/t/lock_tables_lost_commit-master.opt Xmysql-test/t/lock_tables_lost_commit.test Xmysql-test/t/log_state-master.opt Xmysql-test/t/log_state.test Xmysql-test/t/log_tables-big-master.opt Xmysql-test/t/log_tables-big.test Xmysql-test/t/log_tables-master.opt Xmysql-test/t/log_tables.test Xmysql-test/t/long_tmpdir-master.opt Xmysql-test/t/long_tmpdir-master.sh Xmysql-test/t/long_tmpdir.test Xmysql-test/t/lowercase_fs_off.test Xmysql-test/t/lowercase_mixed_tmpdir-master.opt Xmysql-test/t/lowercase_mixed_tmpdir-master.sh Xmysql-test/t/lowercase_mixed_tmpdir.test Xmysql-test/t/lowercase_table-master.opt Xmysql-test/t/lowercase_table.test Xmysql-test/t/lowercase_table2.test Xmysql-test/t/lowercase_table3-master.opt Xmysql-test/t/lowercase_table3.test Xmysql-test/t/lowercase_table_grant-master.opt Xmysql-test/t/lowercase_table_grant.test Xmysql-test/t/lowercase_table_qcache-master.opt Xmysql-test/t/lowercase_table_qcache.test Xmysql-test/t/lowercase_view-master.opt Xmysql-test/t/lowercase_view.test Xmysql-test/t/merge-big.test Xmysql-test/t/merge.test Xmysql-test/t/merge_innodb.test Xmysql-test/t/metadata.test Xmysql-test/t/mix2_myisam.test Xmysql-test/t/mix2_myisam_ucs2.test Xmysql-test/t/multi_statement-master.opt Xmysql-test/t/multi_statement.test Xmysql-test/t/multi_update-master.opt Xmysql-test/t/multi_update.test Xmysql-test/t/multi_update2-master.opt Xmysql-test/t/multi_update2.test Xmysql-test/t/multi_update_tiny_hash-master.opt Xmysql-test/t/multi_update_tiny_hash.test Xmysql-test/t/myisam-blob-master.opt Xmysql-test/t/myisam-blob.test Xmysql-test/t/myisam-system.test Xmysql-test/t/myisam.test Xmysql-test/t/myisampack.test Xmysql-test/t/mysql.test Xmysql-test/t/mysql_client_test-master.opt Xmysql-test/t/mysql_client_test.test Xmysql-test/t/mysql_comments.sql Xmysql-test/t/mysql_comments.test Xmysql-test/t/mysql_cp932.test Xmysql-test/t/mysql_delimiter.sql Xmysql-test/t/mysql_delimiter_19799.sql Xmysql-test/t/mysql_delimiter_source.sql Xmysql-test/t/mysql_protocols.test Xmysql-test/t/mysql_upgrade.test Xmysql-test/t/mysqladmin.test Xmysql-test/t/mysqlbinlog-cp932-master.opt Xmysql-test/t/mysqlbinlog-cp932.test Xmysql-test/t/mysqlbinlog-master.opt Xmysql-test/t/mysqlbinlog.test Xmysql-test/t/mysqlbinlog2.test Xmysql-test/t/mysqlbinlog_base64.test Xmysql-test/t/mysqlbinlog_row.test Xmysql-test/t/mysqlbinlog_row_big.test Xmysql-test/t/mysqlbinlog_row_innodb.test Xmysql-test/t/mysqlbinlog_row_myisam.test Xmysql-test/t/mysqlbinlog_row_trans.test Xmysql-test/t/mysqlcheck.test Xmysql-test/t/mysqldump-compat.opt Xmysql-test/t/mysqldump-compat.test Xmysql-test/t/mysqldump-max.test Xmysql-test/t/mysqldump-no-binlog-master.opt Xmysql-test/t/mysqldump-no-binlog.test Xmysql-test/t/mysqldump.test Xmysql-test/t/mysqlshow.test Xmysql-test/t/mysqlslap.test Xmysql-test/t/mysqltest.test Xmysql-test/t/named_pipe-master.opt Xmysql-test/t/named_pipe.test Xmysql-test/t/negation_elimination.test Xmysql-test/t/no-threads-master.opt Xmysql-test/t/no-threads.test Xmysql-test/t/not_embedded_server-master.opt Xmysql-test/t/not_embedded_server.test Xmysql-test/t/not_partition.test Xmysql-test/t/null.test Xmysql-test/t/null_key.test Xmysql-test/t/odbc.test Xmysql-test/t/olap.test Xmysql-test/t/openssl_1.test Xmysql-test/t/order_by.test Xmysql-test/t/order_fill_sortbuf-master.opt Xmysql-test/t/order_fill_sortbuf.test Xmysql-test/t/outfile.test Xmysql-test/t/outfile_loaddata.test Xmysql-test/t/overflow.test Xmysql-test/t/packet.test Xmysql-test/t/parser.test Xmysql-test/t/parser_bug21114_innodb.test Xmysql-test/t/parser_precedence.test Xmysql-test/t/parser_stack.test Xmysql-test/t/partition-master.opt Xmysql-test/t/partition.test Xmysql-test/t/partition_archive.test Xmysql-test/t/partition_blackhole.test Xmysql-test/t/partition_bug18198.test Xmysql-test/t/partition_charset.test Xmysql-test/t/partition_csv.test Xmysql-test/t/partition_datatype.test Xmysql-test/t/partition_error.test Xmysql-test/t/partition_federated.test Xmysql-test/t/partition_grant.test Xmysql-test/t/partition_hash.test Xmysql-test/t/partition_innodb.test Xmysql-test/t/partition_innodb_semi_consistent-master.opt Xmysql-test/t/partition_innodb_semi_consistent.test Xmysql-test/t/partition_innodb_stmt.test Xmysql-test/t/partition_list.test Xmysql-test/t/partition_mgm.test Xmysql-test/t/partition_mgm_err.test Xmysql-test/t/partition_mgm_err2.test Xmysql-test/t/partition_not_windows-master.opt Xmysql-test/t/partition_not_windows.test Xmysql-test/t/partition_order.test Xmysql-test/t/partition_pruning.test Xmysql-test/t/partition_range.test Xmysql-test/t/partition_symlink.test Xmysql-test/t/partition_windows.test Xmysql-test/t/perror-win.test Xmysql-test/t/perror.test Xmysql-test/t/plugin-master.opt Xmysql-test/t/plugin.test Xmysql-test/t/plugin_load-master.opt Xmysql-test/t/plugin_load.test Xmysql-test/t/preload.test Xmysql-test/t/profiling.test Xmysql-test/t/ps-master.opt Xmysql-test/t/ps.test Xmysql-test/t/ps_10nestset.test Xmysql-test/t/ps_11bugs.test Xmysql-test/t/ps_1general.test Xmysql-test/t/ps_2myisam.test Xmysql-test/t/ps_3innodb.test Xmysql-test/t/ps_4heap.test Xmysql-test/t/ps_5merge.test Xmysql-test/t/ps_ddl.test Xmysql-test/t/ps_ddl1.test Xmysql-test/t/ps_grant.test Xmysql-test/t/ps_not_windows.test Xmysql-test/t/query_cache.test Xmysql-test/t/query_cache_28249.test Xmysql-test/t/query_cache_debug.test Xmysql-test/t/query_cache_merge.test Xmysql-test/t/query_cache_notembedded.test Xmysql-test/t/query_cache_ps_no_prot.test Xmysql-test/t/query_cache_ps_ps_prot.test Xmysql-test/t/query_cache_with_views.test Xmysql-test/t/range.test Xmysql-test/t/read_many_rows_innodb.test Xmysql-test/t/read_only.test Xmysql-test/t/read_only_innodb.test Xmysql-test/t/rename.test Xmysql-test/t/renamedb.test Xmysql-test/t/repair.test Xmysql-test/t/replace.test Xmysql-test/t/rollback.test Xmysql-test/t/round.test Xmysql-test/t/row.test Xmysql-test/t/rowid_order_innodb.test Xmysql-test/t/schema.test Xmysql-test/t/select.test Xmysql-test/t/select_found.test Xmysql-test/t/select_safe.test Xmysql-test/t/shm-master.opt Xmysql-test/t/shm.test Xmysql-test/t/show_check-master.opt Xmysql-test/t/show_check.test Xmysql-test/t/skip_grants-master.opt Xmysql-test/t/skip_grants.test Xmysql-test/t/skip_log_bin-master.opt Xmysql-test/t/skip_log_bin.test Xmysql-test/t/skip_name_resolve-master.opt Xmysql-test/t/skip_name_resolve.test Xmysql-test/t/sp-big.test Xmysql-test/t/sp-code.test Xmysql-test/t/sp-destruct.test Xmysql-test/t/sp-dynamic.test Xmysql-test/t/sp-error.test Xmysql-test/t/sp-prelocking.test Xmysql-test/t/sp-security.test Xmysql-test/t/sp-threads.test Xmysql-test/t/sp-ucs2.test Xmysql-test/t/sp-vars.test Xmysql-test/t/sp.test Xmysql-test/t/sp_gis.test Xmysql-test/t/sp_notembedded.test Xmysql-test/t/sp_stress_case.test Xmysql-test/t/sp_trans.test Xmysql-test/t/sp_trans_log.test Xmysql-test/t/sql_mode.test Xmysql-test/t/ssl-big.test Xmysql-test/t/ssl.test Xmysql-test/t/ssl_8k_key.test Xmysql-test/t/ssl_compress.test Xmysql-test/t/ssl_connect.test Xmysql-test/t/status.test Xmysql-test/t/status2.test Xmysql-test/t/strict.test Xmysql-test/t/strict_autoinc_1myisam.test Xmysql-test/t/strict_autoinc_2innodb.test Xmysql-test/t/strict_autoinc_3heap.test Xmysql-test/t/subselect.test Xmysql-test/t/subselect2.test Xmysql-test/t/subselect3.test Xmysql-test/t/subselect_debug.test Xmysql-test/t/subselect_gis.test Xmysql-test/t/subselect_innodb.test Xmysql-test/t/subselect_notembedded.test Xmysql-test/t/sum_distinct-big.test Xmysql-test/t/sum_distinct.test Xmysql-test/t/symlink.test Xmysql-test/t/synchronization.test Xmysql-test/t/sysdate_is_now-master.opt Xmysql-test/t/sysdate_is_now.test Xmysql-test/t/system_mysql_db.test Xmysql-test/t/system_mysql_db_fix30020-master.opt Xmysql-test/t/system_mysql_db_fix30020.test Xmysql-test/t/system_mysql_db_fix40123-master.opt Xmysql-test/t/system_mysql_db_fix40123.test Xmysql-test/t/system_mysql_db_fix50030-master.opt Xmysql-test/t/system_mysql_db_fix50030.test Xmysql-test/t/system_mysql_db_fix50117-master.opt Xmysql-test/t/system_mysql_db_fix50117.test Xmysql-test/t/system_mysql_db_refs.test Xmysql-test/t/tablelock.test Xmysql-test/t/temp_table-master.opt Xmysql-test/t/temp_table.test Xmysql-test/t/timezone-master.opt Xmysql-test/t/timezone.test Xmysql-test/t/timezone2.test Xmysql-test/t/timezone3-master.opt Xmysql-test/t/timezone3.test Xmysql-test/t/timezone4-master.opt Xmysql-test/t/timezone4.test Xmysql-test/t/timezone_grant.test Xmysql-test/t/trigger-compat.test Xmysql-test/t/trigger-trans.test Xmysql-test/t/trigger.test Xmysql-test/t/trigger_notembedded.test Xmysql-test/t/truncate.test Xmysql-test/t/type_binary.test Xmysql-test/t/type_bit.test Xmysql-test/t/type_bit_innodb.test Xmysql-test/t/type_blob.test Xmysql-test/t/type_date.test Xmysql-test/t/type_datetime.test Xmysql-test/t/type_decimal.test Xmysql-test/t/type_enum.test Xmysql-test/t/type_float.test Xmysql-test/t/type_nchar.test Xmysql-test/t/type_newdecimal-big.test Xmysql-test/t/type_newdecimal.test Xmysql-test/t/type_ranges.test Xmysql-test/t/type_set.test Xmysql-test/t/type_time.test Xmysql-test/t/type_timestamp.test Xmysql-test/t/type_uint.test Xmysql-test/t/type_varchar.test Xmysql-test/t/type_year.test Xmysql-test/t/udf-master.opt Xmysql-test/t/udf.test Xmysql-test/t/udf_skip_grants-master.opt Xmysql-test/t/udf_skip_grants.test Xmysql-test/t/union-master.opt Xmysql-test/t/union.test Xmysql-test/t/unsafe_binlog_innodb-master.opt Xmysql-test/t/unsafe_binlog_innodb.test Xmysql-test/t/update.test Xmysql-test/t/upgrade.test Xmysql-test/t/user_limits.test Xmysql-test/t/user_var-binlog.test Xmysql-test/t/user_var.test Xmysql-test/t/varbinary.test Xmysql-test/t/variables+c.test Xmysql-test/t/variables-big.test Xmysql-test/t/variables-notembedded-master.opt Xmysql-test/t/variables-notembedded.test Xmysql-test/t/variables.test Xmysql-test/t/variables_debug.test Xmysql-test/t/view.test Xmysql-test/t/view_grant.test Xmysql-test/t/wait_timeout.test Xmysql-test/t/warnings-master.opt Xmysql-test/t/warnings.test Xmysql-test/t/warnings_engine_disabled-master.opt Xmysql-test/t/warnings_engine_disabled.test Xmysql-test/t/windows.test Xmysql-test/t/xa.test Xmysql-test/t/xml.test Xshare/aclocal/mysql.m4 Xshare/mysql/binary-configure Xshare/mysql/charsets/Index.xml Xshare/mysql/charsets/README Xshare/mysql/charsets/armscii8.xml Xshare/mysql/charsets/ascii.xml Xshare/mysql/charsets/cp1250.xml Xshare/mysql/charsets/cp1251.xml Xshare/mysql/charsets/cp1256.xml Xshare/mysql/charsets/cp1257.xml Xshare/mysql/charsets/cp850.xml Xshare/mysql/charsets/cp852.xml Xshare/mysql/charsets/cp866.xml Xshare/mysql/charsets/dec8.xml Xshare/mysql/charsets/geostd8.xml Xshare/mysql/charsets/greek.xml Xshare/mysql/charsets/hebrew.xml Xshare/mysql/charsets/hp8.xml Xshare/mysql/charsets/keybcs2.xml Xshare/mysql/charsets/koi8r.xml Xshare/mysql/charsets/koi8u.xml Xshare/mysql/charsets/latin1.xml Xshare/mysql/charsets/latin2.xml Xshare/mysql/charsets/latin5.xml Xshare/mysql/charsets/latin7.xml Xshare/mysql/charsets/macce.xml Xshare/mysql/charsets/macroman.xml Xshare/mysql/charsets/swe7.xml Xshare/mysql/config.huge.ini Xshare/mysql/config.medium.ini Xshare/mysql/config.small.ini Xshare/mysql/czech/errmsg.sys Xshare/mysql/danish/errmsg.sys Xshare/mysql/dutch/errmsg.sys Xshare/mysql/english/errmsg.sys Xshare/mysql/errmsg.txt Xshare/mysql/estonian/errmsg.sys Xshare/mysql/fill_help_tables.sql Xshare/mysql/french/errmsg.sys Xshare/mysql/german/errmsg.sys Xshare/mysql/greek/errmsg.sys Xshare/mysql/hungarian/errmsg.sys Xshare/mysql/italian/errmsg.sys Xshare/mysql/japanese/errmsg.sys Xshare/mysql/korean/errmsg.sys Xshare/mysql/mi_test_all Xshare/mysql/mi_test_all.res Xshare/mysql/my-huge.cnf Xshare/mysql/my-innodb-heavy-4G.cnf Xshare/mysql/my-large.cnf Xshare/mysql/my-medium.cnf Xshare/mysql/my-small.cnf Xshare/mysql/mysql-log-rotate Xshare/mysql/mysql.server Xshare/mysql/mysql_fix_privilege_tables.sql Xshare/mysql/mysql_system_tables.sql Xshare/mysql/mysql_system_tables_data.sql Xshare/mysql/mysql_test_data_timezone.sql Xshare/mysql/mysqld_multi.server Xshare/mysql/ndb-config-2-node.ini Xshare/mysql/norwegian-ny/errmsg.sys Xshare/mysql/norwegian/errmsg.sys Xshare/mysql/polish/errmsg.sys Xshare/mysql/portuguese/errmsg.sys Xshare/mysql/romanian/errmsg.sys Xshare/mysql/russian/errmsg.sys Xshare/mysql/serbian/errmsg.sys Xshare/mysql/slovak/errmsg.sys Xshare/mysql/spanish/errmsg.sys Xshare/mysql/swedish/errmsg.sys Xshare/mysql/ukrainian/errmsg.sys Xsql-bench/Comments/Access.crash-me Xsql-bench/Comments/Adabas.crash-me Xsql-bench/Comments/Empress.crash-me Xsql-bench/Comments/FrontBase.benchmark Xsql-bench/Comments/Informix.crash-me Xsql-bench/Comments/mysql.benchmark Xsql-bench/Comments/postgres.benchmark Xsql-bench/Comments/postgres.crash-me Xsql-bench/Data/ATIS/aircraft.txt Xsql-bench/Data/ATIS/airline.txt Xsql-bench/Data/ATIS/airport.txt Xsql-bench/Data/ATIS/airport_service.txt Xsql-bench/Data/ATIS/city.txt Xsql-bench/Data/ATIS/class_of_service.txt Xsql-bench/Data/ATIS/code_description.txt Xsql-bench/Data/ATIS/compound_class.txt Xsql-bench/Data/ATIS/connect_leg.txt Xsql-bench/Data/ATIS/date_day.txt Xsql-bench/Data/ATIS/day_name.txt Xsql-bench/Data/ATIS/dual_carrier.txt Xsql-bench/Data/ATIS/fare.txt Xsql-bench/Data/ATIS/fconnection.txt Xsql-bench/Data/ATIS/flight.txt Xsql-bench/Data/ATIS/flight_class.txt Xsql-bench/Data/ATIS/flight_day.txt Xsql-bench/Data/ATIS/flight_fare.txt Xsql-bench/Data/ATIS/food_service.txt Xsql-bench/Data/ATIS/ground_service.txt Xsql-bench/Data/ATIS/month_name.txt Xsql-bench/Data/ATIS/restrict_carrier.txt Xsql-bench/Data/ATIS/restrict_class.txt Xsql-bench/Data/ATIS/restriction.txt Xsql-bench/Data/ATIS/state.txt Xsql-bench/Data/ATIS/stop.txt Xsql-bench/Data/ATIS/stop1.txt Xsql-bench/Data/ATIS/time_interval.txt Xsql-bench/Data/ATIS/time_zone.txt Xsql-bench/Data/ATIS/transport.txt Xsql-bench/Data/Wisconsin/onek.data Xsql-bench/Data/Wisconsin/tenk.data Xsql-bench/README Xsql-bench/bench-count-distinct Xsql-bench/bench-init.pl Xsql-bench/compare-results Xsql-bench/copy-db Xsql-bench/crash-me Xsql-bench/graph-compare-results Xsql-bench/innotest1 Xsql-bench/innotest1a Xsql-bench/innotest1b Xsql-bench/innotest2 Xsql-bench/innotest2a Xsql-bench/innotest2b Xsql-bench/limits/Adabas.cfg Xsql-bench/limits/Informix.cfg Xsql-bench/limits/access.cfg Xsql-bench/limits/access_odbc.cfg Xsql-bench/limits/db2.cfg Xsql-bench/limits/empress.cfg Xsql-bench/limits/frontbase.cfg Xsql-bench/limits/interbase-dialect1.cfg Xsql-bench/limits/interbase-dialect3.cfg Xsql-bench/limits/interbase-superserver.cfg Xsql-bench/limits/interbase.cfg Xsql-bench/limits/mimer.cfg Xsql-bench/limits/ms-sql.cfg Xsql-bench/limits/ms-sql65.cfg Xsql-bench/limits/msql.cfg Xsql-bench/limits/mysql-3.22.cfg Xsql-bench/limits/mysql-3.23.cfg Xsql-bench/limits/mysql-4.0.cfg Xsql-bench/limits/mysql-4.1.cfg Xsql-bench/limits/mysql.cfg Xsql-bench/limits/oracle.cfg Xsql-bench/limits/pg.cfg Xsql-bench/limits/solid-nt4.cfg Xsql-bench/limits/solid.cfg Xsql-bench/limits/sybase.cfg Xsql-bench/run-all-tests Xsql-bench/server-cfg Xsql-bench/test-ATIS Xsql-bench/test-alter-table Xsql-bench/test-big-tables Xsql-bench/test-connect Xsql-bench/test-create Xsql-bench/test-insert Xsql-bench/test-select Xsql-bench/test-transactions Xsql-bench/test-wisconsin dd55cbda6b76ef35aa3bc5d3b0aab254 echo c - databases/mysql54-client mkdir -p databases/mysql54-client > /dev/null 2>&1 echo x - databases/mysql54-client/Makefile sed 's/^X//' >databases/mysql54-client/Makefile << 'c99fa1c57e2fa5fedc9258c3bf595012' X# New ports collection makefile for: MySQL-client X# Date created: 28 Jan 2006 X# Whom: Alex Dupre X# X# $FreeBSD: ports/databases/mysql54-client/Makefile,v 1.98 2006/05/23 21:25:06 ale Exp $ X# X XPORTNAME= mysql XPKGNAMESUFFIX= -client X XCOMMENT= Multithreaded SQL database (client) X XMASTERDIR= ${.CURDIR}/../mysql54-server X XPKGINSTALL= mustnotexist XPKGMESSAGE= mustnotexist XPLIST= ${PKGDIR}/pkg-plist.client X XCLIENT_ONLY= yes X X.include "${MASTERDIR}/Makefile" c99fa1c57e2fa5fedc9258c3bf595012 echo c - databases/mysql54-scripts mkdir -p databases/mysql54-scripts > /dev/null 2>&1 echo x - databases/mysql54-scripts/Makefile sed 's/^X//' >databases/mysql54-scripts/Makefile << '0468a16b34cbc9654afcbeaa7d779806' X# New ports collection makefile for: MySQL-scripts X# Date created: 28 Jan 2006 X# Whom: Alex Dupre X# X# $FreeBSD: ports/databases/mysql54-scripts/Makefile,v 1.13 2009/01/16 22:41:05 linimon Exp $ X# X XPORTNAME= mysql XPKGNAMESUFFIX= -scripts X XCOMMENT= Multithreaded SQL database (scripts) X XMASTERDIR= ${.CURDIR}/../mysql54-server X XPKGINSTALL= mustnotexist XPKGMESSAGE= mustnotexist XPLIST= ${PKGDIR}/pkg-plist.scripts X XSCRIPTS_ONLY= yes XUSE_PERL5= yes X X.include "${MASTERDIR}/Makefile" 0468a16b34cbc9654afcbeaa7d779806 echo c - databases/p5-DBD-mysql54 mkdir -p databases/p5-DBD-mysql54 > /dev/null 2>&1 echo x - databases/p5-DBD-mysql54/Makefile sed 's/^X//' >databases/p5-DBD-mysql54/Makefile << 'cb475ef4feb10313e37959078969c6e4' X# New ports collection makefile for: p5-DBD-mysql54 X# Date created: 28 Jan 2006 X# Whom: Alex Dupre X# X# $FreeBSD: ports/databases/p5-DBD-mysql51/Makefile,v 1.2 2008/07/26 08:38:03 ale Exp $ X# X XPKGNAMESUFFIX= 54 X XCOMMENT= MySQL 5.4 driver for the Perl5 Database Interface (DBI) X XCONFLICTS= p5-Mysql-modules-[0-9]* p5-DBD-mysql-[0-9]* p5-DBD-mysql4[0-9]-[0-9]* p5-DBD-mysql50-[0-9]* p5-DBD-mysql51-[0-9]* p5-DBD-mysql6[0-9]-[0-9]* X XWANT_MYSQL_VER= 54 X XMASTERDIR= ${.CURDIR}/../p5-DBD-mysql X X.include "${MASTERDIR}/Makefile" cb475ef4feb10313e37959078969c6e4 echo x - databases/p5-DBD-mysql54/Makefile~ sed 's/^X//' >databases/p5-DBD-mysql54/Makefile~ << '9c55618c3b3b5f67b0533338a5d28a4e' X# New ports collection makefile for: p5-DBD-mysql51 X# Date created: 28 Jan 2006 X# Whom: Alex Dupre X# X# $FreeBSD: ports/databases/p5-DBD-mysql51/Makefile,v 1.2 2008/07/26 08:38:03 ale Exp $ X# X XPKGNAMESUFFIX= 51 X XCOMMENT= MySQL 5.1 driver for the Perl5 Database Interface (DBI) X XCONFLICTS= p5-Mysql-modules-[0-9]* p5-DBD-mysql-[0-9]* p5-DBD-mysql4[0-9]-[0-9]* p5-DBD-mysql50-[0-9]* p5-DBD-mysql6[0-9]-[0-9]* X XWANT_MYSQL_VER= 51 X XMASTERDIR= ${.CURDIR}/../p5-DBD-mysql X X.include "${MASTERDIR}/Makefile" 9c55618c3b3b5f67b0533338a5d28a4e exit From yasu at utahime.org Fri Jul 3 13:50:05 2009 From: yasu at utahime.org (Yasuhiro KIMURA) Date: Fri Jul 3 13:50:23 2009 Subject: ports/136282: [MAINTAINER] irc/riece: update to 6.0.0 Message-ID: <20090703134533.3199B170BC@eastasia.home.utahime.org> >Number: 136282 >Category: ports >Synopsis: [MAINTAINER] irc/riece: update to 6.0.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 13:50:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD xxxx 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Fri Jun 26 02:11:21 JST 2009 xxxx i386 >Description: Update to 6.0.0. >How-To-Repeat: >Fix: --- patch-riece begins here --- Index: Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/irc/riece/Makefile,v retrieving revision 1.42 diff -u -r1.42 Makefile --- Makefile 28 Jun 2008 17:20:45 -0000 1.42 +++ Makefile 3 Jul 2009 13:33:49 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/irc/riece/Makefile,v 1.42 2008/06/28 17:20:45 beech Exp $ PORTNAME= riece -PORTVERSION= 5.0.0 +PORTVERSION= 6.0.0 PORTEPOCH= 1 CATEGORIES= irc elisp MASTER_SITES= ${MASTER_SITE_SAVANNAH} Index: distinfo =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/irc/riece/distinfo,v retrieving revision 1.23 diff -u -r1.23 distinfo --- distinfo 28 Jun 2008 17:20:45 -0000 1.23 +++ distinfo 3 Jul 2009 13:35:45 -0000 @@ -1,3 +1,3 @@ -MD5 (riece-5.0.0.tar.gz) = 67b8ec7e8654ac3b553cb8f6541d1d89 -SHA256 (riece-5.0.0.tar.gz) = e940731bf63a30eadc07f0911c549302103dcdf7c5c9c5362ee4e84a01257177 -SIZE (riece-5.0.0.tar.gz) = 410266 +MD5 (riece-6.0.0.tar.gz) = a6ae727da6d9262dfe10b1efbc5f3647 +SHA256 (riece-6.0.0.tar.gz) = 3cde6942edd58a250e74c3027277f56ee5009c2eff94ce89f319ca5af8109a9e +SIZE (riece-6.0.0.tar.gz) = 406741 Index: pkg-plist =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/irc/riece/pkg-plist,v retrieving revision 1.20 diff -u -r1.20 pkg-plist --- pkg-plist 28 Jun 2008 17:20:45 -0000 1.20 +++ pkg-plist 3 Jul 2009 13:39:16 -0000 @@ -39,6 +39,8 @@ %%EMACS_VERSION_SITE_LISPDIR%%/riece/riece-ctlseq.elc %%EMACS_VERSION_SITE_LISPDIR%%/riece/riece-debug.el %%EMACS_VERSION_SITE_LISPDIR%%/riece/riece-debug.elc +%%EMACS_VERSION_SITE_LISPDIR%%/riece/riece-desktop-notify.el +%%EMACS_VERSION_SITE_LISPDIR%%/riece/riece-desktop-notify.elc %%EMACS_VERSION_SITE_LISPDIR%%/riece/riece-display.el %%EMACS_VERSION_SITE_LISPDIR%%/riece/riece-display.elc %%EMACS_VERSION_SITE_LISPDIR%%/riece/riece-doctor.el --- patch-riece ends here --- >Release-Note: >Audit-Trail: >Unformatted: From sbrabez at gmail.com Fri Jul 3 13:50:08 2009 From: sbrabez at gmail.com (Sofian Brabez) Date: Fri Jul 3 13:50:24 2009 Subject: ports/136283: [update] net/py-libnet : Update to 1.1 Message-ID: <200907031346.n63DkaUD047739@www.freebsd.org> >Number: 136283 >Category: ports >Synopsis: [update] net/py-libnet : Update to 1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 13:50:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: FreeBSD freebsd.ifr.lan 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jul 2 23:42:18 CEST 2009 root@freebsd.ifr.lan:/usr/obj/usr/src/sys/FREEBSD i386 >Description: - Update to 1.1 - Add pkg-plist - Add NOPORTEXAMPLES knob - Take over maintainership >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN py-libnet.orig/Makefile py-libnet/Makefile --- py-libnet.orig/Makefile 2009-07-03 14:25:56.000000000 +0200 +++ py-libnet/Makefile 2009-07-03 15:15:15.000000000 +0200 @@ -7,15 +7,14 @@ # PORTNAME= libnet -PORTVERSION= 1.0 -PORTREVISION= 4 +PORTVERSION= 1.1 CATEGORIES= net python -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITES= SF MASTER_SITE_SUBDIR= pylibnet PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= pylibnet-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sbrabez@gmail.com COMMENT= Python module for the libnet packet construction library BUILD_DEPENDS= ${LOCALBASE}/bin/swig1.3:${PORTSDIR}/devel/swig13 \ @@ -23,6 +22,7 @@ USE_PYTHON= yes WRKSRC= ${WRKDIR}/${DISTNAME}/src +WRKEXAMPLE= ${WRKDIR}/${DISTNAME}/samples MAKE_ARGS= SWIG=${LOCALBASE}/bin/swig1.3 \ LIBNET_INCLUDES=-I${LOCALBASE}/include \ @@ -31,11 +31,11 @@ LIBNET_LIB="`${LIBNET_CONFIG} --libs`" \ CC=${CC} -PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/libnet.py \ - lib/%%PYTHON_VERSION%%/site-packages/_libnetc.so - LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet10-config +EXAMPLESFILES= test-libnet-icmp-echo-req.py test-libnet-tcp-syn.py test-libnet-arp-req.py +EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} + .include .if ${ARCH} == "amd64" @@ -43,13 +43,17 @@ .endif post-patch: - ${REINPLACE_CMD} -e 's,libnetcmodule.so,_libnetc.so,g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -e 's,^const ,%constant ,' ${WRKSRC}/constants.i - ${REINPLACE_CMD} -e '/^[^#]/s,libnet,_libnet,' ${WRKSRC}/libnet.py do-install: -.for file in libnet.py _libnetc.so - ${INSTALL_DATA} ${WRKSRC}/${file} ${PYTHON_SITELIBDIR} +.for f in libnet.py _libnet.so + ${INSTALL_DATA} ${WRKSRC}/${f} ${PYTHON_SITELIBDIR} .endfor +.if !defined(NOPORTEXAMPLES) + ${MKDIR} ${EXAMPLESDIR} +.for f in ${EXAMPLESFILES} + ${INSTALL_DATA} ${WRKEXAMPLE}/${f} ${EXAMPLESDIR} +.endfor +.endif .include diff -urN py-libnet.orig/distinfo py-libnet/distinfo --- py-libnet.orig/distinfo 2009-07-03 14:25:56.000000000 +0200 +++ py-libnet/distinfo 2009-07-03 12:08:54.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (pylibnet-1.0.tar.gz) = 1c1556a7a9fa5c72edd118c492bac135 -SHA256 (pylibnet-1.0.tar.gz) = 6bdb8b69d957857b55bd5ea4b062698db1a5f5c96b7c57109da54b920f425cd3 -SIZE (pylibnet-1.0.tar.gz) = 16797 +MD5 (pylibnet-1.1.tar.gz) = b64252defa8acd25683cf777d33764a0 +SHA256 (pylibnet-1.1.tar.gz) = 8675e50cd8b3aaf111044e69a1428994d902af619a1770e040caa279ef5b5a77 +SIZE (pylibnet-1.1.tar.gz) = 16957 diff -urN py-libnet.orig/files/patch-libnet.i py-libnet/files/patch-libnet.i --- py-libnet.orig/files/patch-libnet.i 2009-07-03 14:25:56.000000000 +0200 +++ py-libnet/files/patch-libnet.i 1970-01-01 01:00:00.000000000 +0100 @@ -1,66 +0,0 @@ ---- ./libnet.i.orig 2008-05-01 18:08:06.000000000 +0800 -+++ ./libnet.i 2008-05-01 18:08:30.000000000 +0800 -@@ -41,7 +41,7 @@ - - %} - --%except (python) { -+%exception { - int err; - clear_exception(); - PyErr_Clear(); -@@ -58,41 +58,41 @@ - - /* typemaps */ - --%typemap(python, in) u_char *{ -- if (!($target=PyString_AsString($source))) { -+%typemap(in) u_char *{ -+ if (!($1=PyString_AsString($input))) { - PyErr_SetString(PyExc_TypeError,"expected a string"); - return NULL; - } - } - --%typemap(python, out) u_char *{ -- $target=PyString_FromString($source); -+%typemap(out) u_char *{ -+ $result=PyString_FromString($1); - } - --%typemap(python, in) u_long { -- $target=PyLong_AsUnsignedLong($source); -+%typemap(in) u_long { -+ $1=PyLong_AsUnsignedLong($input); - } - --%typemap(python, out) u_long { -- $target=PyLong_FromUnsignedLong($source); -+%typemap(out) u_long { -+ $result=PyLong_FromUnsignedLong($1); - } - - - /* let functions return raw python objects */ --%typemap(python, out) PyObject * { -- $target = $source; -+%typemap(out) PyObject * { -+ $result = $1; - } - - /* let functions take raw python objects */ --%typemap(python, in) PyObject * { -- $target = $source; -+%typemap(in) PyObject * { -+ $1 = $input; - } - - typedef struct { - struct libnet_link_int *link; - int fd; - char *device; -- %addmethods { -+ %extend { - interface(); - ~interface(); - void open_link(char *device); diff -urN py-libnet.orig/pkg-plist py-libnet/pkg-plist --- py-libnet.orig/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ py-libnet/pkg-plist 2009-07-03 15:21:20.000000000 +0200 @@ -0,0 +1,7 @@ +@comment $FreeBSD$ +%%PYTHON_SITELIBDIR%%/libnet.py +%%PYTHON_SITELIBDIR%%/_libnet.so +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-libnet-arp-req.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-libnet-icmp-echo-req.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-libnet-tcp-syn.py +@dirrm %%EXAMPLESDIR%% >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 13:50:17 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 13:50:25 2009 Subject: ports/136282: [MAINTAINER] irc/riece: update to 6.0.0 Message-ID: <200907031350.n63DoGOd061768@freefall.freebsd.org> Synopsis: [MAINTAINER] irc/riece: update to 6.0.0 Responsible-Changed-From-To: freebsd-ports-bugs->anray Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 13:50:15 UTC 2009 Responsible-Changed-Why: anray@ wants this category PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136282 From edwin at FreeBSD.org Fri Jul 3 13:50:25 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 13:50:31 2009 Subject: ports/136283: [update] net/py-libnet : Update to 1.1 Message-ID: <200907031350.n63DoNH8063111@freefall.freebsd.org> Synopsis: [update] net/py-libnet : Update to 1.1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 13:50:22 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136283 From wxs at FreeBSD.org Fri Jul 3 14:41:49 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Fri Jul 3 14:41:56 2009 Subject: ports/136262: [MAINTAINER] mail/imapsync: update to 1.285 Message-ID: <200907031441.n63EfnCu006176@freefall.freebsd.org> Synopsis: [MAINTAINER] mail/imapsync: update to 1.285 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Fri Jul 3 14:41:48 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136262 From wxs at FreeBSD.org Fri Jul 3 14:43:14 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Fri Jul 3 14:43:22 2009 Subject: ports/136269: port sysutils/cvsweb-converters: upgrade to 0.3.4 Message-ID: <200907031443.n63EhDJv006341@freefall.freebsd.org> Synopsis: port sysutils/cvsweb-converters: upgrade to 0.3.4 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Fri Jul 3 14:43:13 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136269 From wxs at FreeBSD.org Fri Jul 3 15:08:00 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Fri Jul 3 15:08:07 2009 Subject: ports/136273: sysutils/linux-megacli fix Message-ID: <200907031508.n63F806r020613@freefall.freebsd.org> Synopsis: sysutils/linux-megacli fix Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Fri Jul 3 15:07:59 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136273 From wxs at FreeBSD.org Fri Jul 3 15:08:54 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Fri Jul 3 15:09:00 2009 Subject: ports/136278: sysutils/bsdhwmon: update to 20090703 Message-ID: <200907031508.n63F8rO7020709@freefall.freebsd.org> Synopsis: sysutils/bsdhwmon: update to 20090703 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Fri Jul 3 15:08:53 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136278 From fw at moov.de Fri Jul 3 15:10:02 2009 From: fw at moov.de (Frank Wall) Date: Fri Jul 3 15:10:14 2009 Subject: ports/136284: [patch] net-mgmt/p5-Cflow correct BUILD_DEPENDS Message-ID: <200907031500.n63F0eH0008505@www.freebsd.org> >Number: 136284 >Category: ports >Synopsis: [patch] net-mgmt/p5-Cflow correct BUILD_DEPENDS >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 15:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Frank Wall >Release: 7.1-RELEASE-p6 >Organization: >Environment: FreeBSD XXX 7.1-RELEASE-p6 FreeBSD 7.1-RELEASE-p6 #0: Tue Jun 9 16:26:47 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: The port net-mgmt/p5-Cflow has the option WITH_FLOW_TOOLS. This option depends on net-mgmt/flow-tools. When you try to build net-mgmt/p5-Cflow with this option it will fail, if net-mgmt/flow-tools was not installed before. >How-To-Repeat: 1. make sure net-mgmt/flow-tools is NOT installed 2. try to build net-mgmt/p5-Cflow: WITH_FLOW_TOOLS=1 make -C /usr/ports/net-mgmt/p5-Cflow 3. it fails complaining that ftlib.h from net-mgmt/flow-tools is missing: ===> Building for p5-Cflow-1.053 cp Cflow.pm blib/lib/Cflow.pm AutoSplitting blib/lib/Cflow.pm (blib/lib/auto/Cflow) /usr/local/bin/perl5.8.9 /usr/local/lib/perl5/5.8.9/ExtUtils/xsubpp -typemap /usr/local/lib/perl5/5.8.9/ExtUtils/typemap Cflow.xs > Cflow.xsc && mv Cflow.xsc Cflow.c cc -c -I/usr/local/include -O2 -fno-strict-aliasing -pipe -I/usr/local/include -DOSU -O2 -fno-strict-aliasing -pipe -DVERSION=\"1.053\" -DXS_VERSION=\"1.053\" -DPIC -fPIC "-I/usr/local/lib/perl5/5.8.9/mach/CORE" Cflow.c Cflow.xs:62:21: error: ftlib.h: No such file or directory Cflow.xs: In function 'XS_Cflow_find': Cflow.xs:575: error: storage size of 'fs' isn't known Cflow.xs:580: error: storage size of 'ftv' isn't known Cflow.xs:669: error: 'FT_IO_FLAG_READ' undeclared (first use in this function) Cflow.xs:669: error: (Each undeclared identifier is reported only once Cflow.xs:669: error: for each function it appears in.) Cflow.xs:761: error: storage size of 'first' isn't known Cflow.xs:761: error: storage size of 'last' isn't known Cflow.xs:763: warning: assignment makes pointer from integer without a cast Cflow.xs:767: error: dereferencing pointer to incomplete type >Fix: Add net-mgmt/flow-tools to BUILD_DEPENS: BUILD_DEPENDS+= ${LOCALBASE}/lib/libft.a:${PORTSDIR}/net-mgmt/flow-tools Patch attached with submission follows: --- Makefile.orig 2009-07-03 16:45:36.000000000 +0200 +++ Makefile 2009-07-03 15:33:55.000000000 +0200 @@ -17,6 +17,7 @@ .if defined(WITH_FLOW_TOOLS) RUN_DEPENDS+= ${LOCALBASE}/lib/libft.a:${PORTSDIR}/net-mgmt/flow-tools +BUILD_DEPENDS+= ${LOCALBASE}/lib/libft.a:${PORTSDIR}/net-mgmt/flow-tools CFLAGS+= -I${LOCALBASE}/include -DOSU CONFIGURE_ARGS+= \ >Release-Note: >Audit-Trail: >Unformatted: From dohzono at gmail.com Fri Jul 3 15:10:02 2009 From: dohzono at gmail.com (Kazuo Dohzono) Date: Fri Jul 3 15:10:14 2009 Subject: ports/136285: qmail-scanner can't install with maildrop-2.1.0 Message-ID: <200907031504.n63F4LL0008882@www.freebsd.org> >Number: 136285 >Category: ports >Synopsis: qmail-scanner can't install with maildrop-2.1.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 15:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Kazuo Dohzono >Release: FreeBSD 7.2-STABLE >Organization: >Environment: FreeBSD * 6.4-RELEASE-p5 FreeBSD 6.4-RELEASE-p5 #0: Wed Jun 10 06:56:20 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/SMP i386 >Description: qmail-scanner can't install with maildrop-2.1.0 configure: > DD="`$MAILDROP_BINARY -v 2>&1|grep '^maildrop'|grep '1\.0'`" This test matches also "2.1.0" and configure stops. >How-To-Repeat: install qmail-scanner-2.01 over maildrop-2.1.0 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From wxs at FreeBSD.org Fri Jul 3 15:13:02 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Fri Jul 3 15:13:08 2009 Subject: ports/136275: [MAINTAINER] sysutils/sec: update to 2.5.1 Message-ID: <200907031513.n63FD2GR027849@freefall.freebsd.org> Synopsis: [MAINTAINER] sysutils/sec: update to 2.5.1 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Fri Jul 3 15:13:01 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136275 From cyberbotx at cyberbotx.com Fri Jul 3 15:20:11 2009 From: cyberbotx at cyberbotx.com (Naram Qashat) Date: Fri Jul 3 15:20:18 2009 Subject: ports/136286: [MAINTAINER] x11-toolkits/scintilla: update to 1.79 Message-ID: <200907031516.n63FG1Q5083423@kirby.cyberbotx.com> >Number: 136286 >Category: ports >Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 1.79 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 15:20:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 7.2-STABLE FreeBSD 7.2-STABLE #0: Wed Jun 3 04:24:13 EDT >Description: - Update to 1.79 Added file(s): - files/patch-makefile Removed file(s): - files/patch-aa - files/patch-gcc41 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- scintilla-1.79.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/Makefile /kirby/shared/ports/scintilla/Makefile --- /usr/ports/x11-toolkits/scintilla/Makefile 2009-05-09 17:56:25.000000000 -0400 +++ /kirby/shared/ports/scintilla/Makefile 2009-07-03 11:08:33.000000000 -0400 @@ -6,7 +6,7 @@ # $MCom: ports/x11-toolkits/scintilla/Makefile,v 1.3 2006/09/17 21:58:56 marcus Exp $ PORTNAME= scintilla -PORTVERSION= 1.78 +PORTVERSION= 1.79 CATEGORIES= x11-toolkits MASTER_SITES= SF \ http://www.scintilla.org/ diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/distinfo /kirby/shared/ports/scintilla/distinfo --- /usr/ports/x11-toolkits/scintilla/distinfo 2009-05-09 17:56:25.000000000 -0400 +++ /kirby/shared/ports/scintilla/distinfo 2009-07-03 11:08:40.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (scite178.tgz) = 7c62a8f75ef69a7cb143e22bf29456fa -SHA256 (scite178.tgz) = e7a99b2111e7156e9568737e31950879f250f8facba94012a6ac5351107022e9 -SIZE (scite178.tgz) = 1568994 +MD5 (scite179.tgz) = 02a0d68f0c33c01c9a2c9d69c295acea +SHA256 (scite179.tgz) = ebd7105b892b68ec4f9190ffcd4a98226e84a73d2e9cbd29653d52692de3cbf9 +SIZE (scite179.tgz) = 1719588 diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/files/patch-aa /kirby/shared/ports/scintilla/files/patch-aa --- /usr/ports/x11-toolkits/scintilla/files/patch-aa 2007-08-21 23:25:29.000000000 -0400 +++ /kirby/shared/ports/scintilla/files/patch-aa 1969-12-31 19:00:00.000000000 -0500 @@ -1,90 +0,0 @@ ---- makefile.orig 2007-06-11 22:57:30.000000000 -0500 -+++ makefile 2007-08-21 17:21:51.000000000 -0500 -@@ -8,16 +8,17 @@ - # To force GTK+ 1 build, define GTK1 on the make command line. - - .SUFFIXES: .cxx .c .o .h .a --CC = g++ --CCOMP = gcc --AR = ar -+#CC = g++ -+#CCOMP = gcc -+AR = $(CXX) -shared - RANLIB = touch - - ifeq ($(shell uname),Darwin) - RANLIB = ranlib - endif - --COMPLIB=../bin/scintilla.a -+COMPLIB=../bin/libscintilla.so.1 -+LEXRLIB=../bin/libscintilla_lexers.so.1 - - vpath %.h ../src ../include - vpath %.cxx ../src -@@ -32,33 +33,33 @@ - endif - - ifdef DEBUG --CXXFLAGS=-DDEBUG -g $(CXXBASEFLAGS) $(THREADFLAGS) -+CXXFLAGS+=-DDEBUG -g $(CXXBASEFLAGS) $(THREADFLAGS) - else --CXXFLAGS=-DNDEBUG -Os $(CXXBASEFLAGS) $(THREADFLAGS) -+CXXFLAGS+=-DNDEBUG -Os $(CXXBASEFLAGS) $(THREADFLAGS) - endif - - # If explicit setting of GTK1 or GTK2 then use that else look for - # pkg-config which is an OK indication that GTK2 is available - ifdef GTK2 --CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0) -+CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0 gthread-2.0) - MARSHALLER=scintilla-marshal.o - else - ifdef GTK1 --CONFIGFLAGS=$(shell gtk-config --cflags) -+CONFIGFLAGS=$(shell pkg-config --cflags gtk+ gthread) - else - ifneq (,$(findstring /,$(shell whereis pkg-config))) --CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0) -+CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0 gthread-2.0) - MARSHALLER=scintilla-marshal.o - else --CONFIGFLAGS=$(shell gtk-config --cflags) -+CONFIGFLAGS=$(shell pkg-config --cflags gtk+ gthread) - endif - endif - endif - - .cxx.o: -- $(CC) $(CONFIGFLAGS) $(CXXFLAGS) -c $< -+ $(CC) $(PICFLAGS) $(CONFIGFLAGS) $(CXXFLAGS) -c $< - .c.o: -- $(CCOMP) $(CONFIGFLAGS) $(CXXFLAGS) -w -c $< -+ $(CCOMP) $(PICFLAGS) $(CONFIGFLAGS) $(CXXFLAGS) -w -c $< - - #++Autogenerated -- run src/LexGen.py to regenerate - #**LEXOBJS=\\\n\(\*.o \) -@@ -75,7 +76,7 @@ - LexVHDL.o LexYAML.o - #--Autogenerated -- end of automatically generated section - --all: $(COMPLIB) -+all: $(COMPLIB) $(LEXRLIB) - - clean: - rm -f *.o $(COMPLIB) -@@ -88,9 +89,11 @@ - ScintillaBase.o ContractionState.o Editor.o ExternalLexer.o PropSet.o PlatGTK.o \ - KeyMap.o LineMarker.o PositionCache.o ScintillaGTK.o CellBuffer.o ViewStyle.o \ - RESearch.o RunStyles.o Style.o Indicator.o AutoComplete.o UniConversion.o XPM.o \ -- $(MARSHALLER) $(LEXOBJS) -- $(AR) rc $@ $^ -- $(RANLIB) $@ -+ $(MARSHALLER) -+ $(AR) $(CONFIGFLAGS:cflags=libs) -o $@ $^ -+ -+$(LEXRLIB): $(LEXOBJS) -+ $(AR) $(CONFIGFLAGS:cflags=libs) -o $@ $^ - - # Automatically generate header dependencies with "make deps" - include deps.mak diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/files/patch-gcc41 /kirby/shared/ports/scintilla/files/patch-gcc41 --- /usr/ports/x11-toolkits/scintilla/files/patch-gcc41 2007-01-30 19:48:04.000000000 -0500 +++ /kirby/shared/ports/scintilla/files/patch-gcc41 1969-12-31 19:00:00.000000000 -0500 @@ -1,20 +0,0 @@ ---- ScintillaGTK.cxx.orig Wed Jan 3 03:17:01 2007 -+++ ScintillaGTK.cxx Wed Jan 31 01:30:49 2007 -@@ -2603,7 +2603,7 @@ - "command", - GTK_RUN_LAST, - GTK_CLASS_TYPE(object_class), -- GTK_SIGNAL_OFFSET(ScintillaClass, command), -+ ((size_t) ((gchar*) &((ScintillaClass*) 0)->command)), - SIG_MARSHAL, - GTK_TYPE_NONE, - 2, MARSHAL_ARGUMENTS); -@@ -2612,7 +2612,7 @@ - SCINTILLA_NOTIFY, - GTK_RUN_LAST, - GTK_CLASS_TYPE(object_class), -- GTK_SIGNAL_OFFSET(ScintillaClass, notify), -+ ((size_t) ((gchar*) &((ScintillaClass*) 0)->notify)), - SIG_MARSHAL, - GTK_TYPE_NONE, - 2, MARSHAL_ARGUMENTS); diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/files/patch-makefile /kirby/shared/ports/scintilla/files/patch-makefile --- /usr/ports/x11-toolkits/scintilla/files/patch-makefile 1969-12-31 19:00:00.000000000 -0500 +++ /kirby/shared/ports/scintilla/files/patch-makefile 2007-08-21 22:57:57.000000000 -0400 @@ -0,0 +1,90 @@ +--- makefile.orig 2007-06-11 22:57:30.000000000 -0500 ++++ makefile 2007-08-21 17:21:51.000000000 -0500 +@@ -8,16 +8,17 @@ + # To force GTK+ 1 build, define GTK1 on the make command line. + + .SUFFIXES: .cxx .c .o .h .a +-CC = g++ +-CCOMP = gcc +-AR = ar ++#CC = g++ ++#CCOMP = gcc ++AR = $(CXX) -shared + RANLIB = touch + + ifeq ($(shell uname),Darwin) + RANLIB = ranlib + endif + +-COMPLIB=../bin/scintilla.a ++COMPLIB=../bin/libscintilla.so.1 ++LEXRLIB=../bin/libscintilla_lexers.so.1 + + vpath %.h ../src ../include + vpath %.cxx ../src +@@ -32,33 +33,33 @@ + endif + + ifdef DEBUG +-CXXFLAGS=-DDEBUG -g $(CXXBASEFLAGS) $(THREADFLAGS) ++CXXFLAGS+=-DDEBUG -g $(CXXBASEFLAGS) $(THREADFLAGS) + else +-CXXFLAGS=-DNDEBUG -Os $(CXXBASEFLAGS) $(THREADFLAGS) ++CXXFLAGS+=-DNDEBUG -Os $(CXXBASEFLAGS) $(THREADFLAGS) + endif + + # If explicit setting of GTK1 or GTK2 then use that else look for + # pkg-config which is an OK indication that GTK2 is available + ifdef GTK2 +-CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0) ++CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0 gthread-2.0) + MARSHALLER=scintilla-marshal.o + else + ifdef GTK1 +-CONFIGFLAGS=$(shell gtk-config --cflags) ++CONFIGFLAGS=$(shell pkg-config --cflags gtk+ gthread) + else + ifneq (,$(findstring /,$(shell whereis pkg-config))) +-CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0) ++CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0 gthread-2.0) + MARSHALLER=scintilla-marshal.o + else +-CONFIGFLAGS=$(shell gtk-config --cflags) ++CONFIGFLAGS=$(shell pkg-config --cflags gtk+ gthread) + endif + endif + endif + + .cxx.o: +- $(CC) $(CONFIGFLAGS) $(CXXFLAGS) -c $< ++ $(CC) $(PICFLAGS) $(CONFIGFLAGS) $(CXXFLAGS) -c $< + .c.o: +- $(CCOMP) $(CONFIGFLAGS) $(CXXFLAGS) -w -c $< ++ $(CCOMP) $(PICFLAGS) $(CONFIGFLAGS) $(CXXFLAGS) -w -c $< + + #++Autogenerated -- run src/LexGen.py to regenerate + #**LEXOBJS=\\\n\(\*.o \) +@@ -75,7 +76,7 @@ + LexVHDL.o LexYAML.o + #--Autogenerated -- end of automatically generated section + +-all: $(COMPLIB) ++all: $(COMPLIB) $(LEXRLIB) + + clean: + rm -f *.o $(COMPLIB) +@@ -88,9 +89,11 @@ + ScintillaBase.o ContractionState.o Editor.o ExternalLexer.o PropSet.o PlatGTK.o \ + KeyMap.o LineMarker.o PositionCache.o ScintillaGTK.o CellBuffer.o ViewStyle.o \ + RESearch.o RunStyles.o Style.o Indicator.o AutoComplete.o UniConversion.o XPM.o \ +- $(MARSHALLER) $(LEXOBJS) +- $(AR) rc $@ $^ +- $(RANLIB) $@ ++ $(MARSHALLER) ++ $(AR) $(CONFIGFLAGS:cflags=libs) -o $@ $^ ++ ++$(LEXRLIB): $(LEXOBJS) ++ $(AR) $(CONFIGFLAGS:cflags=libs) -o $@ $^ + + # Automatically generate header dependencies with "make deps" + include deps.mak --- scintilla-1.79.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From wxs at FreeBSD.org Fri Jul 3 15:22:56 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Fri Jul 3 15:23:02 2009 Subject: ports/136286: [MAINTAINER] x11-toolkits/scintilla: update to 1.79 Message-ID: <200907031522.n63FMtP2036078@freefall.freebsd.org> Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 1.79 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Fri Jul 3 15:22:55 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136286 From aehlig at linta.de Fri Jul 3 15:30:09 2009 From: aehlig at linta.de (Klaus T Aehlig) Date: Fri Jul 3 15:30:31 2009 Subject: ports/136287: devel/cvsadmin [patch] configure cvsadmin to use mkdtemp(3) instead of insecure work-around Message-ID: <20090703152116.A18CA1CFEE@kleene.linta.de> >Number: 136287 >Category: ports >Synopsis: devel/cvsadmin [patch] configure cvsadmin to use mkdtemp(3) instead of insecure work-around >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 15:30:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Klaus T Aehlig >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD kleene.linta.de 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #3: Thu Jun 25 11:33:53 CEST 2009 aehlig@kleene.linta.de:/usr/obj/usr/src/sys/KLEENE i386 >Description: The configure script provided with cvsadmin-1.0.3 does not recognise that the host system provides mkdtemp(3); in fact, it does not even test for it. Therefore ${WRKSRC}/src/util.c uses an insecure (as admitted in the source code) work around to generate a temporary directory instead of using mkdtemp(3). >How-To-Repeat: cd /usr/ports/devel/cvsadmin && make configure and inspect ${WRKSRC}/config.h, reading ${WRKSRC}/src/util.c alternatively, cd /usr/ports/devel/cvsadmin && make build and inspect ${WRKSRC}/src/util.o >Fix: Since all supported versions of FreeBSD (even all versions since 3.2) provide mkdtemp(3), simply set HAVE_MKDTEMP manually in the post-configure phase. This can be achieved by applying the following patch to the port. --- patch-cvsadmin-mkdtemp begins here --- diff -rNu cvsadmin/Makefile cvsadmin.new/Makefile --- cvsadmin/Makefile 2009-07-01 01:11:10.000000000 +0200 +++ cvsadmin.new/Makefile 2009-07-03 16:50:25.000000000 +0200 @@ -8,7 +8,7 @@ PORTNAME= cvsadmin PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= gabor @@ -21,6 +21,9 @@ MAN1= cvsadmin.1 PLIST_FILES= bin/cvsadmin +post-configure: + ${ECHO_CMD} "#define HAVE_MKDTEMP 1" >> ${WRKSRC}/config.h + post-install: ${INSTALL_MAN} ${WRKSRC}/man/cvsadmin.1 ${MANPREFIX}/man/man1 --- patch-cvsadmin-mkdtemp ends here --- >Release-Note: >Audit-Trail: >Unformatted: From cyberbotx at cyberbotx.com Fri Jul 3 15:30:09 2009 From: cyberbotx at cyberbotx.com (Naram Qashat) Date: Fri Jul 3 15:30:32 2009 Subject: ports/136288: [MAINTAINER] editors/scite: update to 1.79 Message-ID: <200907031524.n63FOWDk088776@kirby.cyberbotx.com> >Number: 136288 >Category: ports >Synopsis: [MAINTAINER] editors/scite: update to 1.79 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 15:30:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 7.2-STABLE FreeBSD 7.2-STABLE #0: Wed Jun 3 04:24:13 EDT >Description: - Update to 1.79 NOTE: This PR relies on ports/136286 to be committed first. Added file(s): - files/patch-makefile Removed file(s): - files/patch-aa Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- scite-1.79.patch begins here --- diff -ruN --exclude=CVS /usr/ports/editors/scite/Makefile /kirby/shared/ports/scite/Makefile --- /usr/ports/editors/scite/Makefile 2009-05-09 17:52:31.000000000 -0400 +++ /kirby/shared/ports/scite/Makefile 2009-07-03 11:21:09.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= scite -PORTVERSION= 1.78 +PORTVERSION= 1.79 CATEGORIES= editors gnome MASTER_SITES= SF \ http://www.scintilla.org/ diff -ruN --exclude=CVS /usr/ports/editors/scite/distinfo /kirby/shared/ports/scite/distinfo --- /usr/ports/editors/scite/distinfo 2009-05-09 17:52:31.000000000 -0400 +++ /kirby/shared/ports/scite/distinfo 2009-07-03 11:21:14.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (scite178.tgz) = 7c62a8f75ef69a7cb143e22bf29456fa -SHA256 (scite178.tgz) = e7a99b2111e7156e9568737e31950879f250f8facba94012a6ac5351107022e9 -SIZE (scite178.tgz) = 1568994 +MD5 (scite179.tgz) = 02a0d68f0c33c01c9a2c9d69c295acea +SHA256 (scite179.tgz) = ebd7105b892b68ec4f9190ffcd4a98226e84a73d2e9cbd29653d52692de3cbf9 +SIZE (scite179.tgz) = 1719588 diff -ruN --exclude=CVS /usr/ports/editors/scite/files/patch-aa /kirby/shared/ports/scite/files/patch-aa --- /usr/ports/editors/scite/files/patch-aa 2008-10-24 17:01:48.000000000 -0400 +++ /kirby/shared/ports/scite/files/patch-aa 1969-12-31 19:00:00.000000000 -0500 @@ -1,49 +0,0 @@ ---- makefile.old 2008-05-01 09:40:28.000000000 -0400 -+++ makefile 2008-10-19 12:49:42.000000000 -0400 -@@ -5,7 +5,7 @@ - # GNU make does not like \r\n line endings so should be saved to CVS in binary form. - - .SUFFIXES: .cxx .o .h .a .c --CC = g++ -+#CC = g++ - AR = ar - - # If explicit setting of GTK1 or GTK2 then use that else look for -@@ -26,7 +26,7 @@ - CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0) - CONFIGLIB=$(shell pkg-config --libs gtk+-2.0 gthread-2.0) - CONFIGTHREADS= --gnomeprefix:=$(shell pkg-config --variable=prefix gtk+-2.0 2>/dev/null) -+gnomeprefix:=$(PREFIX) - else - CONFIGFLAGS=$(shell gtk-config --cflags) - CONFIGLIB=$(shell gtk-config --libs) -@@ -76,12 +76,12 @@ - - INCLUDEDIRS=-I ../../scintilla/include -I ../src -I../lua/include - $(LUA_CORE_OBJS): ../lua/src/*.c -- gcc $(INCLUDEDIRS) -DLUA_USE_POSIX $(CXXTFLAGS) -c ../lua/src/*.c -+ gcc $(CFLAGS) $(INCLUDEDIRS) -DLUA_USE_POSIX $(CXXTFLAGS) -c ../lua/src/*.c - $(LUA_LIB_OBJS): ../lua/src/lib/*.c -- gcc $(INCLUDEDIRS) -DLUA_USE_POSIX $(CXXTFLAGS) -c ../lua/src/lib/*.c --CXXFLAGS=$(CXXTFLAGS) -+ gcc $(CFLAGS) $(INCLUDEDIRS) -DLUA_USE_POSIX $(CXXTFLAGS) -c ../lua/src/lib/*.c -+CXXFLAGS+=$(CXXTFLAGS) - else --CXXFLAGS=$(CXXTFLAGS) -DNO_LUA -+CXXFLAGS+=$(CXXTFLAGS) -DNO_LUA - endif - - ifeq ($(shell uname), Darwin) -@@ -102,8 +102,9 @@ - - $(PROG): SciTEGTK.o FilePath.o SciTEBase.o SciTEBuffers.o SciTEIO.o StringList.o Exporters.o \ - PropSetFile.o MultiplexExtension.o DirectorExtension.o SciTEProps.o Utf8_16.o \ -- JobQueue.o GTKMutex.o IFaceTable.o $(COMPLIB) $(LUA_OBJS) -- $(CC) `$(CONFIGTHREADS)` -rdynamic -Wl,--version-script lua.vers -DGTK $^ -o $@ $(CONFIGLIB) -+ JobQueue.o GTKMutex.o IFaceTable.o $(LUA_OBJS) -+ $(CC) $(CONFIGLIB) -lscintilla -lscintilla_lexers \ -+ -rdynamic -Wl,--version-script lua.vers -DGTK $^ -o $@ - - # Automatically generate header dependencies with "make deps" - include deps.mak diff -ruN --exclude=CVS /usr/ports/editors/scite/files/patch-makefile /kirby/shared/ports/scite/files/patch-makefile --- /usr/ports/editors/scite/files/patch-makefile 1969-12-31 19:00:00.000000000 -0500 +++ /kirby/shared/ports/scite/files/patch-makefile 2008-10-19 12:51:25.000000000 -0400 @@ -0,0 +1,49 @@ +--- makefile.old 2008-05-01 09:40:28.000000000 -0400 ++++ makefile 2008-10-19 12:49:42.000000000 -0400 +@@ -5,7 +5,7 @@ + # GNU make does not like \r\n line endings so should be saved to CVS in binary form. + + .SUFFIXES: .cxx .o .h .a .c +-CC = g++ ++#CC = g++ + AR = ar + + # If explicit setting of GTK1 or GTK2 then use that else look for +@@ -26,7 +26,7 @@ + CONFIGFLAGS=$(shell pkg-config --cflags gtk+-2.0) + CONFIGLIB=$(shell pkg-config --libs gtk+-2.0 gthread-2.0) + CONFIGTHREADS= +-gnomeprefix:=$(shell pkg-config --variable=prefix gtk+-2.0 2>/dev/null) ++gnomeprefix:=$(PREFIX) + else + CONFIGFLAGS=$(shell gtk-config --cflags) + CONFIGLIB=$(shell gtk-config --libs) +@@ -76,12 +76,12 @@ + + INCLUDEDIRS=-I ../../scintilla/include -I ../src -I../lua/include + $(LUA_CORE_OBJS): ../lua/src/*.c +- gcc $(INCLUDEDIRS) -DLUA_USE_POSIX $(CXXTFLAGS) -c ../lua/src/*.c ++ gcc $(CFLAGS) $(INCLUDEDIRS) -DLUA_USE_POSIX $(CXXTFLAGS) -c ../lua/src/*.c + $(LUA_LIB_OBJS): ../lua/src/lib/*.c +- gcc $(INCLUDEDIRS) -DLUA_USE_POSIX $(CXXTFLAGS) -c ../lua/src/lib/*.c +-CXXFLAGS=$(CXXTFLAGS) ++ gcc $(CFLAGS) $(INCLUDEDIRS) -DLUA_USE_POSIX $(CXXTFLAGS) -c ../lua/src/lib/*.c ++CXXFLAGS+=$(CXXTFLAGS) + else +-CXXFLAGS=$(CXXTFLAGS) -DNO_LUA ++CXXFLAGS+=$(CXXTFLAGS) -DNO_LUA + endif + + ifeq ($(shell uname), Darwin) +@@ -102,8 +102,9 @@ + + $(PROG): SciTEGTK.o FilePath.o SciTEBase.o SciTEBuffers.o SciTEIO.o StringList.o Exporters.o \ + PropSetFile.o MultiplexExtension.o DirectorExtension.o SciTEProps.o Utf8_16.o \ +- JobQueue.o GTKMutex.o IFaceTable.o $(COMPLIB) $(LUA_OBJS) +- $(CC) `$(CONFIGTHREADS)` -rdynamic -Wl,--version-script lua.vers -DGTK $^ -o $@ $(CONFIGLIB) ++ JobQueue.o GTKMutex.o IFaceTable.o $(LUA_OBJS) ++ $(CC) $(CONFIGLIB) -lscintilla -lscintilla_lexers \ ++ -rdynamic -Wl,--version-script lua.vers -DGTK $^ -o $@ + + # Automatically generate header dependencies with "make deps" + include deps.mak --- scite-1.79.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From sbrabez at gmail.com Fri Jul 3 15:30:10 2009 From: sbrabez at gmail.com (Sofian Brabez) Date: Fri Jul 3 15:30:33 2009 Subject: ports/136289: [update] net/panoptis : Take over maintainership Message-ID: <200907031526.n63FQb0a031611@www.freebsd.org> >Number: 136289 >Category: ports >Synopsis: [update] net/panoptis : Take over maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 15:30:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 7.1-RELEASE i386 >Organization: >Environment: FreeBSD freebsd.ifr.lan 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jul 2 23:42:18 CEST 2009 root@freebsd.ifr.lan:/usr/obj/usr/src/sys/FREEBSD i386 >Description: - Add pkg-plist - Refactoring Makefile - Bump PORTREVISION - Take over maintainership >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN panoptis.orig/Makefile panoptis/Makefile --- panoptis.orig/Makefile 2009-07-03 17:05:12.000000000 +0200 +++ panoptis/Makefile 2009-07-03 17:06:05.000000000 +0200 @@ -7,12 +7,12 @@ PORTNAME= panoptis PORTVERSION= 0.1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net security -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sbrabez@gmail.com COMMENT= Detect and block DoS/DDoS attacks LIB_DEPENDS= ccgnu2-1.6.0:${PORTSDIR}/devel/commoncpp @@ -20,12 +20,11 @@ GNU_CONFIGURE= yes USE_PYTHON= yes CONFIGURE_ENV= CPPFLAGS='${CPPFLAGS}' LDFLAGS='${LDFLAGS}' -PLIST_FILES= bin/panoptis bin/mail.py bin/pview.py bin/speed.py do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/panoptis/panoptis ${PREFIX}/bin/panoptis - ${INSTALL_SCRIPT} ${WRKSRC}/panoptis/mail.py ${PREFIX}/bin/mail.py - ${INSTALL_SCRIPT} ${WRKSRC}/panoptis/pview.py ${PREFIX}/bin/pview.py - ${INSTALL_SCRIPT} ${WRKSRC}/panoptis/speed.py ${PREFIX}/bin/speed.py + ${INSTALL_PROGRAM} ${WRKSRC}/panoptis/${PORTNAME} ${PREFIX}/bin/${PORTNAME} +.for f in mail.py pview.py speed.py + ${INSTALL_SCRIPT} ${WRKSRC}/panoptis/${f} ${PREFIX}/bin/${f} +.endfor .include diff -urN panoptis.orig/pkg-plist panoptis/pkg-plist --- panoptis.orig/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ panoptis/pkg-plist 2009-07-03 16:42:33.000000000 +0200 @@ -0,0 +1,5 @@ +@comment $FreeBSD$ +bin/panoptis +bin/mail.py +bin/pview.py +bin/speed.py >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 15:30:22 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 15:30:33 2009 Subject: ports/136287: devel/cvsadmin [patch] configure cvsadmin to use mkdtemp(3) instead of insecure work-around Message-ID: <200907031530.n63FULfR037919@freefall.freebsd.org> Synopsis: devel/cvsadmin [patch] configure cvsadmin to use mkdtemp(3) instead of insecure work-around Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: edwin Class-Changed-When: Fri Jul 3 15:30:21 UTC 2009 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136287 From sbrabez at gmail.com Fri Jul 3 16:10:09 2009 From: sbrabez at gmail.com (Sofian Brabez) Date: Fri Jul 3 16:10:16 2009 Subject: ports/136290: [update] net/tcpslice : Update to 2008.06.30 Message-ID: <200907031605.n63G58Gl056415@www.freebsd.org> >Number: 136290 >Category: ports >Synopsis: [update] net/tcpslice : Update to 2008.06.30 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 16:10:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: FreeBSD freebsd.ifr.lan 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jul 2 23:42:18 CEST 2009 root@freebsd.ifr.lan:/usr/obj/usr/src/sys/FREEBSD i386 >Description: - Update to 2008.06.30 - Take over maintainership >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN tcpslice.orig/Makefile tcpslice/Makefile --- tcpslice.orig/Makefile 2009-07-03 18:02:23.000000000 +0200 +++ tcpslice/Makefile 2009-07-03 18:00:45.000000000 +0200 @@ -6,12 +6,12 @@ # PORTNAME= tcpslice -PORTVERSION= 2006.12.18 +PORTVERSION= 2008.06.30 CATEGORIES= net MASTER_SITES= http://www.tcpdump.org/weekly/ \ http://freebsd.unixfreunde.de/sources/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sbrabez@gmail.com COMMENT= A tool for extracting portions of pcap files MAN1= tcpslice.1 diff -urN tcpslice.orig/distinfo tcpslice/distinfo --- tcpslice.orig/distinfo 2009-07-03 18:02:23.000000000 +0200 +++ tcpslice/distinfo 2009-07-03 18:01:41.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (tcpslice-2006.12.18.tar.gz) = a7a5d1453c9002e63a76d3a89d73e458 -SHA256 (tcpslice-2006.12.18.tar.gz) = 004c9386a5c5793dc6aa8636bebec99f0a72ee952b40518adcb7d8833c6557b1 -SIZE (tcpslice-2006.12.18.tar.gz) = 113469 +MD5 (tcpslice-2008.06.30.tar.gz) = 7d4a2915a14ed87e2de31a5529f59c70 +SHA256 (tcpslice-2008.06.30.tar.gz) = cc37f5514aeea5e93c613058e464be34ca35227a1f0a262b79fef737d5f37496 +SIZE (tcpslice-2008.06.30.tar.gz) = 45 >Release-Note: >Audit-Trail: >Unformatted: From dohzono at gmail.com Fri Jul 3 16:20:04 2009 From: dohzono at gmail.com (Kazuo Dohzono) Date: Fri Jul 3 16:20:12 2009 Subject: ports/136285: qmail-scanner can't install with maildrop-2.1.0 Message-ID: <200907031620.n63GK4dE076694@freefall.freebsd.org> The following reply was made to PR ports/136285; it has been noted by GNATS. From: Kazuo Dohzono To: bug-followup@FreeBSD.org, dohzono@gmail.com Cc: Subject: Re: ports/136285: qmail-scanner can't install with maildrop-2.1.0 Date: Sat, 4 Jul 2009 01:17:49 +0900 This will fix the problem. *** patch-configure~ Tue Sep 4 22:18:38 2007 --- patch-configure Sat Jul 4 00:10:59 2009 *************** *** 23,25 **** --- 23,33 ---- QMAILDIR="/var/qmail" BINDIR="$QMAILDIR/bin" + @@ -1276,7 +1269,7 @@ + if [ "$MIME_UNPACKER" = "reformime" ]; then + #Check version of maildrop to ensure it's not the buggy version + + -DD="`$MAILDROP_BINARY -v 2>&1|grep '^maildrop'|grep '1\.0'`" + +DD="`$MAILDROP_BINARY -v 2>&1|grep '^maildrop'|grep '[^.]1\.0'`" + if [ "$DD" != "" ]; then + cat< >Number: 136291 >Category: ports >Synopsis: [patch] editors/openoffice.org-3: gpatch failure >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 17:30:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Pavel Plesov >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: FreeBSD 7.2-STABLE #17: Mon Jun 29 18:24:56 MSD 2009 amd64 cvsup'ed ports. $FreeBSD: ports/editors/openoffice.org-3/Makefile,v 1.319 2009/07/03 07:11:29 maho Exp $ >Description: gpatch fails to apply the patches to many parts of OO.org. He dies with the message: ---- /usr/local/bin/gpatch: **** File libmspack/mspack/mspack.h seems to be locked by somebody else under Perforce ---- I have checked some of files gpatch fails on. Them was not owned to root - e.g. uid=500 or 1500 (I have no such uids registered on my host anyway). All of them have have 0755 mode. I am pretty sure these files are not locked under Perforce. >How-To-Repeat: cd /usr/ports/editors/openoffice.org-3 && make >Fix: gpatch needs "-g0" command line flag or PATCH_GET=0 env var to be set. === -g num or --get=num This option controls patch's actions when a file is under RCS or SCCS control, and does not exist or is read-only and matches the default version, or when a file is under ClearCase or Perforce con- trol and does not exist. If num is positive, patch gets (or checks out) the file from the revision control system; if zero, patch ignores RCS, ClearCase, Perforce, and SCCS and does not get the file; and if negative, patch asks the user whether to get the file. The default value of this option is given by the value of the PATCH_GET environment variable if it is set; if not, the default value is zero if patch is conforming to POSIX, negative otherwise. === Attached oo-gpatch.txt solved the problem. OO.org 3.1 seems to operate well. Patch attached with submission follows: --- /usr/ports/editors/openoffice.org-3/Makefile-orig 2009-07-03 17:02:56.000000000 +0400 +++ /usr/ports/editors/openoffice.org-3/Makefile 2009-07-03 17:07:18.000000000 +0400 @@ -191,7 +191,7 @@ do-build: @cd ${WRKSRC} ; ./bootstrap - @cd ${WRKSRC} ; ${SETENV} "LANG=C" "LC_ALL=C" "TMP=${WRKSRC}" ${TCSH} -c "source ${FREEBSD_ENV_SET} ; cd instsetoo_native ; build.pl --checkmodules ; build.pl -P${MAKE_JOBS_NUMBER} --all --html --dontgraboutput -- -P${MAKE_JOBS_NUMBER}" + @cd ${WRKSRC} ; ${SETENV} "LANG=C" "LC_ALL=C" "TMP=${WRKSRC}" "PATCH_GET=0" ${TCSH} -c "source ${FREEBSD_ENV_SET} ; cd instsetoo_native ; build.pl --checkmodules ; build.pl -P${MAKE_JOBS_NUMBER} --all --html --dontgraboutput -- -P${MAKE_JOBS_NUMBER}" .if ${LOCALIZED_LANG} == "alllangs" @${MAKE} languagepack >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 17:30:23 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 17:30:34 2009 Subject: ports/136291: [patch] editors/openoffice.org-3: gpatch failure Message-ID: <200907031730.n63HUM7g033006@freefall.freebsd.org> Synopsis: [patch] editors/openoffice.org-3: gpatch failure Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 17:30:21 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136291 From peter.schuller at infidyne.com Fri Jul 3 19:00:17 2009 From: peter.schuller at infidyne.com (Peter Schuller) Date: Fri Jul 3 19:00:29 2009 Subject: ports/136292: [MAINTAINER] net-p2p/bitflu: update to 0.91 Message-ID: <20090703185622.BC0894AE1B2@prometheus.scode.org> >Number: 136292 >Category: ports >Synopsis: [MAINTAINER] net-p2p/bitflu: update to 0.91 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:00:15 UTC 2009 >Closed-Date: >Last-Modified: >Originator: peter.schuller@infidyne.com >Release: FreeBSD 8.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD prometheus.scode.org 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Fri Jun 5 18:54:16 CEST >Description: - Update to 0.91 - New RSS plugin needs XML::LibXML; added dependency Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- bitflu-0.91.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net-p2p/bitflu.orig/Makefile /usr/ports/net-p2p/bitflu/Makefile --- /usr/ports/net-p2p/bitflu.orig/Makefile 2009-05-09 11:12:13.000000000 +0200 +++ /usr/ports/net-p2p/bitflu/Makefile 2009-07-03 20:54:25.486084067 +0200 @@ -6,7 +6,7 @@ # PORTNAME= bitflu -PORTVERSION= 0.90 +PORTVERSION= 0.91 CATEGORIES= net-p2p MASTER_SITES= http://bitflu.workaround.ch/bitflu/ CENKES EXTRACT_SUFX= .tgz @@ -16,7 +16,8 @@ RUN_DEPENDS= p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ p5-URI>=0:${PORTSDIR}/net/p5-URI \ - p5-Danga-Socket>=0:${PORTSDIR}/devel/p5-Danga-Socket + p5-Danga-Socket>=0:${PORTSDIR}/devel/p5-Danga-Socket \ + p5-XML-LibXML>=0:${PORTSDIR}/textproc/p5-XML-LibXML PLUGINSDIR_BASE=lib/perl5 PLUGINSDIR= ${PLUGINSDIR_BASE}/Bitflu diff -ruN --exclude=CVS /usr/ports/net-p2p/bitflu.orig/distinfo /usr/ports/net-p2p/bitflu/distinfo --- /usr/ports/net-p2p/bitflu.orig/distinfo 2009-05-09 11:12:13.000000000 +0200 +++ /usr/ports/net-p2p/bitflu/distinfo 2009-07-03 20:43:56.026127521 +0200 @@ -1,3 +1,3 @@ -MD5 (bitflu-0.90.tgz) = e3271af8bc6a12d5c62438202bf5b63a -SHA256 (bitflu-0.90.tgz) = 3478343947c8d781d89066149c21fa5dfaea4806554cb0544ae408b36443dc7b -SIZE (bitflu-0.90.tgz) = 128868 +MD5 (bitflu-0.91.tgz) = 24213007ad429126ab08677b5eb8e882 +SHA256 (bitflu-0.91.tgz) = 4b78dc3c26a78e2ee227c359d1cd15b871055d6238247ab58120868b44829e21 +SIZE (bitflu-0.91.tgz) = 134706 diff -ruN --exclude=CVS /usr/ports/net-p2p/bitflu.orig/pkg-plist /usr/ports/net-p2p/bitflu/pkg-plist --- /usr/ports/net-p2p/bitflu.orig/pkg-plist 2009-04-27 01:32:46.000000000 +0200 +++ /usr/ports/net-p2p/bitflu/pkg-plist 2009-07-03 20:45:50.111761991 +0200 @@ -12,5 +12,6 @@ %%PLUGINSDIR%%/30_SourcesBitTorrent.pm %%PLUGINSDIR%%/30_SourcesBitTorrentKademlia.pm %%PLUGINSDIR%%/99_Cron.pm +%%PLUGINSDIR%%/99_Rss.pm @dirrm %%PLUGINSDIR%% %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% --- bitflu-0.91.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From daniel at roe.ch Fri Jul 3 19:00:17 2009 From: daniel at roe.ch (Daniel Roethlisberger) Date: Fri Jul 3 19:00:30 2009 Subject: ports/136293: [maintainer] Update security/zenmap to 4.90.r1 Message-ID: >Number: 136293 >Category: ports >Synopsis: [maintainer] Update security/zenmap to 4.90.r1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:00:16 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Daniel Roethlisberger >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD marvin.ustcor.roe.ch 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:57:44 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update Zenmap to the latest upstream version 4.90RC1. Please also commit the security/nmap update submitted in a separate PR. >How-To-Repeat: >Fix: --- zenmap.diff begins here --- diff -ruN zenmap.orig/Makefile zenmap/Makefile --- zenmap.orig/Makefile 2009-04-13 11:54:20.000000000 +0200 +++ zenmap/Makefile 2009-07-03 20:35:43.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= zenmap -DISTVERSION= 4.85BETA7 +DISTVERSION= 4.90RC1 CATEGORIES= security ipv6 MASTER_SITES= http://nmap.org/dist/ \ http://www.mirrors.wiretapped.net/security/network-mapping/nmap/ \ diff -ruN zenmap.orig/distinfo zenmap/distinfo --- zenmap.orig/distinfo 2009-04-13 11:54:20.000000000 +0200 +++ zenmap/distinfo 2009-07-03 20:36:01.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (nmap-4.85BETA7.tar.bz2) = 49218e9a5ec7b2628334b911a885b432 -SHA256 (nmap-4.85BETA7.tar.bz2) = dfff90a51fa44770a48dbeb31378d090ee334e4df2d013c8934f6ebf33eaabe5 -SIZE (nmap-4.85BETA7.tar.bz2) = 6454664 +MD5 (nmap-4.90RC1.tar.bz2) = 4355574dfdc3f86bfa85be0a6d9b5bf4 +SHA256 (nmap-4.90RC1.tar.bz2) = 92c02b6caf4781ff1ccaa24548ed1c7a599ea3616d57bfb496f93a2221d58723 +SIZE (nmap-4.90RC1.tar.bz2) = 9028130 diff -ruN zenmap.orig/pkg-plist zenmap/pkg-plist --- zenmap.orig/pkg-plist 2009-04-13 11:54:20.000000000 +0200 +++ zenmap/pkg-plist 2009-07-03 20:43:19.000000000 +0200 @@ -74,6 +74,9 @@ %%PYTHON_SITELIBDIR%%/radialnet/gui/RadialNet.py %%PYTHON_SITELIBDIR%%/radialnet/gui/RadialNet.pyc %%PYTHON_SITELIBDIR%%/radialnet/gui/RadialNet.pyo +%%PYTHON_SITELIBDIR%%/radialnet/gui/SaveDialog.py +%%PYTHON_SITELIBDIR%%/radialnet/gui/SaveDialog.pyc +%%PYTHON_SITELIBDIR%%/radialnet/gui/SaveDialog.pyo %%PYTHON_SITELIBDIR%%/radialnet/gui/Toolbar.py %%PYTHON_SITELIBDIR%%/radialnet/gui/Toolbar.pyc %%PYTHON_SITELIBDIR%%/radialnet/gui/Toolbar.pyo @@ -296,67 +299,48 @@ %%PYTHON_SITELIBDIR%%/zenmapGUI/TopologyPage.py %%PYTHON_SITELIBDIR%%/zenmapGUI/TopologyPage.pyc %%PYTHON_SITELIBDIR%%/zenmapGUI/TopologyPage.pyo -%%PYTHON_SITELIBDIR%%/zenmapGUI/Wizard.py -%%PYTHON_SITELIBDIR%%/zenmapGUI/Wizard.pyc -%%PYTHON_SITELIBDIR%%/zenmapGUI/Wizard.pyo %%PYTHON_SITELIBDIR%%/zenmapGUI/__init__.py %%PYTHON_SITELIBDIR%%/zenmapGUI/__init__.pyc %%PYTHON_SITELIBDIR%%/zenmapGUI/__init__.pyo -%%DATADIR%%/pixmaps/default.svg %%DATADIR%%/pixmaps/default_32.png %%DATADIR%%/pixmaps/default_75.png -%%DATADIR%%/pixmaps/freebsd.svg %%DATADIR%%/pixmaps/freebsd_32.png %%DATADIR%%/pixmaps/freebsd_75.png -%%DATADIR%%/pixmaps/irix.svg %%DATADIR%%/pixmaps/irix_32.png %%DATADIR%%/pixmaps/irix_75.png -%%DATADIR%%/pixmaps/linux.svg %%DATADIR%%/pixmaps/linux_32.png %%DATADIR%%/pixmaps/linux_75.png -%%DATADIR%%/pixmaps/macosx.svg %%DATADIR%%/pixmaps/macosx_32.png %%DATADIR%%/pixmaps/macosx_75.png -%%DATADIR%%/pixmaps/openbsd.svg %%DATADIR%%/pixmaps/openbsd_32.png %%DATADIR%%/pixmaps/openbsd_75.png -%%DATADIR%%/pixmaps/redhat.svg %%DATADIR%%/pixmaps/redhat_32.png %%DATADIR%%/pixmaps/redhat_75.png -%%DATADIR%%/pixmaps/solaris.svg %%DATADIR%%/pixmaps/solaris_32.png %%DATADIR%%/pixmaps/solaris_75.png %%DATADIR%%/pixmaps/splash.png -%%DATADIR%%/pixmaps/ubuntu.svg +%%DATADIR%%/pixmaps/throbber.gif +%%DATADIR%%/pixmaps/throbber.png %%DATADIR%%/pixmaps/ubuntu_32.png %%DATADIR%%/pixmaps/ubuntu_75.png -%%DATADIR%%/pixmaps/unknown.svg %%DATADIR%%/pixmaps/unknown_32.png %%DATADIR%%/pixmaps/unknown_75.png -%%DATADIR%%/pixmaps/vl_1.svg %%DATADIR%%/pixmaps/vl_1_32.png %%DATADIR%%/pixmaps/vl_1_75.png -%%DATADIR%%/pixmaps/vl_2.svg %%DATADIR%%/pixmaps/vl_2_32.png %%DATADIR%%/pixmaps/vl_2_75.png -%%DATADIR%%/pixmaps/vl_3.svg %%DATADIR%%/pixmaps/vl_3_32.png %%DATADIR%%/pixmaps/vl_3_75.png -%%DATADIR%%/pixmaps/vl_4.svg %%DATADIR%%/pixmaps/vl_4_32.png %%DATADIR%%/pixmaps/vl_4_75.png -%%DATADIR%%/pixmaps/vl_5.svg %%DATADIR%%/pixmaps/vl_5_32.png %%DATADIR%%/pixmaps/vl_5_75.png -%%DATADIR%%/pixmaps/win.svg %%DATADIR%%/pixmaps/win_32.png %%DATADIR%%/pixmaps/win_75.png -%%DATADIR%%/pixmaps/wizard_logo.png %%DATADIR%%/pixmaps/zenmap.png %%DATADIR%%/pixmaps/radialnet/border.png %%DATADIR%%/pixmaps/radialnet/firewall.png %%DATADIR%%/pixmaps/radialnet/logo.png -%%DATADIR%%/pixmaps/radialnet/logo.svg %%DATADIR%%/pixmaps/radialnet/padlock.png %%DATADIR%%/pixmaps/radialnet/router.png %%DATADIR%%/pixmaps/radialnet/switch.png @@ -370,7 +354,6 @@ %%DATADIR%%/locale/fr/LC_MESSAGES/zenmap.mo %%DATADIR%%/locale/de/LC_MESSAGES/zenmap.mo %%DATADIR%%/misc/profile_editor.xml -%%DATADIR%%/misc/wizard.xml %%DATADIR%%/su-to-zenmap.sh @dirrm %%DATADIR%%/misc @dirrm %%DATADIR%%/locale/hr/LC_MESSAGES --- zenmap.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From peter.schuller at infidyne.com Fri Jul 3 19:10:08 2009 From: peter.schuller at infidyne.com (Peter Schuller) Date: Fri Jul 3 19:10:15 2009 Subject: ports/136294: [MAINTAINER] textproc/asciidoc: update to 8.4.5 Message-ID: <20090703190305.CE9F24AED01@prometheus.scode.org> >Number: 136294 >Category: ports >Synopsis: [MAINTAINER] textproc/asciidoc: update to 8.4.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:10:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: peter.schuller@infidyne.com >Release: FreeBSD 8.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD prometheus.scode.org 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Fri Jun 5 18:54:16 CEST >Description: - Update to 8.4.5 Generated with FreeBSD Port Tools 0.77 Upstream changelog: 1. Version 8.4.5 (2009-05-24) Additions and changes * Added manpage Name and Synopsis section title customization to languages configuration files. * Synopsis manpage section no longer mandatory. * Section markup templates can be specified by setting the title's first positional attribute or template attribute. * The article and book document header can now include a revision remark. * A role attribute can now be applied to block elements. This adds the role attribute to DocBook elements. Patch submitted by [1]Noah Slater). * Renamed revision and date attributes to more sensible and consistent revnumber and revdate (old names deprecated but still recognized). * Moved backend specific attributes to Appendix H in User Guide. * Renamed and generalized the docbook backend revision history inclusion mechanism to docinfo to reflect the use of all article or book information elements. The old revision history names still work but have been deprecated. * Refactored docbook.conf headers. * Moved line break replacement from [replacements] to [replacements2] so the replacement occurs after the mailto macro. This fixes bug [2]http://groups.google.com/group/asciidoc/browse_thread/thread/4bd cdfb0af773e2 * The typewriter to punctuation apostrophe replacement can be escaped with a backslash. * Graphviz filter outputs images to imagesdir if it is defined. * Made the block image macro generic so that it can be used for filter outputs. As a result Music and Graphviz filters: + Have been greatly simplified. + Honor the data-uri attribute. + html4 outputs no longer generate W3C validation warning. * The iconsdir attribute no longer requires a trailing directory separator character. * Removed borders around linked html4 images. * Added html4 specific HTML output for music filter. * a2x: Added --unsafe option (shortcut for --asciidoc-opts=--unsafe). * a2x: The FOP executable can now be named fop (this is the default name in some distributions). * Attributes are now substituted in the system macro attribute list. * If the output is set to stdout (i.e. no output directory is defined) then Music and Graphviz filters will output included images to the source file directory. * Added name directive to testasciidoc. * Added lots of testasciidoc new tests. * Moved language specific configuration parameters into lang-en.conf file. * lang attribute entry can be specified in the AsciiDoc source file (preceding the header). * Removed cruft from A-A-P scripts and documented them. * Added German language config file (lang-de.conf) contributed by Michael Wild. * Added French language config file (lang-fr.conf) contributed by Yves-Alexis Perez. * Added Russian language config file (lang-ru.conf) contributed by Artem Zolochevskiy. * Added Hungarian language config file (lang-hu.conf) contributed by Miklos Vajna. Bug fixes * FIXED: Multiple manpage names are now handled correctly when generating DocBook output, each name now generates a separate DocBook element. See [3]http://groups.google.com/group/asciidoc/browse_thread/thread/c93 bb4db025225d8 * FIXED: A problem that caused AttributeEntries preceding the header to be overwritten when the language conf file loaded. * FIXED: Possible inline macro name ambiguity e.g. link matches olink. * FIXED: The documented macro definition deletion behavior had been broken for a long time. * FIXED: Email addresses not recognized when followed by a period character. * FIXED: Hyphens in mailto macros can delimit nested addresses e.g. bloggs@mail was processed inside mailto:joe-bloggs@mail-server.com[Mail]. * FIXED: User name in FTP URI generated incorrect FTP link. See [4]http://groups.google.com/group/asciidoc/browse_thread/thread/1d7 96a9c9ddb2855 * FIXED: Source highlighter now works with Wordpress backend (see [5]http://groups.google.com/group/asciidoc/browse_thread/thread/6d8 c716748b109e3). 1.1. Regression issues 1. A colon following the date in the AsciiDoc header is treated as a revision remark delimiter -- this could be an issue if you have used a colon in the header date. __________________________________________________________________ >How-To-Repeat: >Fix: --- asciidoc-8.4.5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/asciidoc.orig/Makefile /usr/ports/textproc/asciidoc/Makefile --- /usr/ports/textproc/asciidoc.orig/Makefile 2009-05-09 11:34:24.000000000 +0200 +++ /usr/ports/textproc/asciidoc/Makefile 2009-07-03 20:56:56.040963637 +0200 @@ -6,7 +6,7 @@ # PORTNAME= asciidoc -PORTVERSION= 8.4.4 +PORTVERSION= 8.4.5 CATEGORIES= textproc MASTER_SITES= http://www.methods.co.nz/asciidoc/ \ SF diff -ruN --exclude=CVS /usr/ports/textproc/asciidoc.orig/distinfo /usr/ports/textproc/asciidoc/distinfo --- /usr/ports/textproc/asciidoc.orig/distinfo 2009-05-09 11:34:24.000000000 +0200 +++ /usr/ports/textproc/asciidoc/distinfo 2009-07-03 20:57:02.562833160 +0200 @@ -1,3 +1,3 @@ -MD5 (asciidoc-8.4.4.tar.gz) = 579bcd5762b177ee0ddccece8c34724b -SHA256 (asciidoc-8.4.4.tar.gz) = 43181d4753376fe22d8a7949a94b5ebb439fd94a7b92791e9126e82632adfa62 -SIZE (asciidoc-8.4.4.tar.gz) = 1160222 +MD5 (asciidoc-8.4.5.tar.gz) = 9f21d6e352b3ab668f9def3eb7497da2 +SHA256 (asciidoc-8.4.5.tar.gz) = e7e4df8fd984520ee692bb639679d51f5be279ef96dc23efd229e2bc100152db +SIZE (asciidoc-8.4.5.tar.gz) = 1189280 diff -ruN --exclude=CVS /usr/ports/textproc/asciidoc.orig/pkg-plist /usr/ports/textproc/asciidoc/pkg-plist --- /usr/ports/textproc/asciidoc.orig/pkg-plist 2009-04-07 23:58:54.000000000 +0200 +++ /usr/ports/textproc/asciidoc/pkg-plist 2009-07-03 21:00:58.722932800 +0200 @@ -50,7 +50,11 @@ etc/asciidoc/javascripts/ASCIIMathML.js etc/asciidoc/javascripts/LaTeXMathML.js etc/asciidoc/javascripts/toc.js +etc/asciidoc/lang-en.conf etc/asciidoc/lang-es.conf +etc/asciidoc/lang-fr.conf +etc/asciidoc/lang-hu.conf +etc/asciidoc/lang-ru.conf etc/asciidoc/latex.conf etc/asciidoc/stylesheets/docbook-xsl.css etc/asciidoc/stylesheets/xhtml11-manpage.css --- asciidoc-8.4.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From daniel at roe.ch Fri Jul 3 19:20:12 2009 From: daniel at roe.ch (Daniel Roethlisberger) Date: Fri Jul 3 19:20:35 2009 Subject: ports/136295: [maintainer] Update security/nmap to 4.90.r1 Message-ID: >Number: 136295 >Category: ports >Synopsis: [maintainer] Update security/nmap to 4.90.r1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:20:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Daniel Roethlisberger >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD marvin.ustcor.roe.ch 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:57:44 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update Nmap to the latest upstream version 4.90RC1. Please also commit the security/zenmap update submitted in a separate PR. svn rm files/patch-ncat__ncat_core.c >How-To-Repeat: >Fix: --- nmap.diff begins here --- diff -ruN nmap.orig/Makefile nmap/Makefile --- nmap.orig/Makefile 2009-04-21 17:36:55.000000000 +0200 +++ nmap/Makefile 2009-07-03 20:27:05.000000000 +0200 @@ -6,8 +6,7 @@ # PORTNAME= nmap -DISTVERSION= 4.85BETA7 -PORTREVISION= 1 +DISTVERSION= 4.90RC1 CATEGORIES= security ipv6 MASTER_SITES= http://nmap.org/dist/ \ http://www.mirrors.wiretapped.net/security/network-mapping/nmap/ \ @@ -17,8 +16,7 @@ MAINTAINER= daniel@roe.ch COMMENT= Port scanning utility for large networks -LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre \ - dnet.1:${PORTSDIR}/net/libdnet +LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre USE_LUA= 5.1 LUA_COMPS= lua @@ -29,11 +27,11 @@ --without-zenmap \ --without-ndiff \ --with-libpcre=${LOCALBASE} \ - --with-libdnet=${LOCALBASE} \ --with-liblua=${LOCALBASE} CONFIGURE_ENV= LUA_INCDIR="${LUA_INCDIR}" LUA_LIBDIR="${LUA_LIBDIR}" MAN1= nmap.1 ncat.1 +PLIST_SUB= NCATDATADIR=share/ncat .ifndef WITHOUT_SSL USE_OPENSSL= yes diff -ruN nmap.orig/distinfo nmap/distinfo --- nmap.orig/distinfo 2009-04-13 11:53:53.000000000 +0200 +++ nmap/distinfo 2009-07-03 19:30:53.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (nmap-4.85BETA7.tar.bz2) = 49218e9a5ec7b2628334b911a885b432 -SHA256 (nmap-4.85BETA7.tar.bz2) = dfff90a51fa44770a48dbeb31378d090ee334e4df2d013c8934f6ebf33eaabe5 -SIZE (nmap-4.85BETA7.tar.bz2) = 6454664 +MD5 (nmap-4.90RC1.tar.bz2) = 4355574dfdc3f86bfa85be0a6d9b5bf4 +SHA256 (nmap-4.90RC1.tar.bz2) = 92c02b6caf4781ff1ccaa24548ed1c7a599ea3616d57bfb496f93a2221d58723 +SIZE (nmap-4.90RC1.tar.bz2) = 9028130 diff -ruN nmap.orig/files/patch-Makefile.in nmap/files/patch-Makefile.in --- nmap.orig/files/patch-Makefile.in 2008-08-03 18:09:47.000000000 +0200 +++ nmap/files/patch-Makefile.in 2009-07-03 19:32:52.000000000 +0200 @@ -1,11 +1,11 @@ ---- Makefile.in.orig 2008-01-24 02:36:01.000000000 +0100 -+++ Makefile.in 2008-04-13 16:48:40.000000000 +0200 -@@ -11,7 +11,7 @@ +--- Makefile.in.orig 2009-06-24 23:35:54.000000000 +0200 ++++ Makefile.in 2009-07-03 19:32:31.000000000 +0200 +@@ -10,7 +10,7 @@ + mandir = @mandir@ srcdir = @srcdir@ - nmaplibexecdir = @libexecdir@/nmap nmapdatadir = @datadir@/nmap -deskdir = $(prefix)/share/applications +deskdir = $(LOCALBASE)/share/applications - NMAPDEVDIR=~/nmap-dev + NMAPDEVDIR=~/nmap-private-dev export NBASEDIR=@NBASEDIR@ diff -ruN nmap.orig/files/patch-configure nmap/files/patch-configure --- nmap.orig/files/patch-configure 2008-08-03 18:09:47.000000000 +0200 +++ nmap/files/patch-configure 2009-07-03 19:36:31.000000000 +0200 @@ -1,15 +1,15 @@ ---- configure.orig 2008-06-15 09:05:12.000000000 +0200 -+++ configure 2008-08-03 12:41:04.000000000 +0200 -@@ -1930,7 +1930,7 @@ +--- configure.orig 2009-06-24 23:35:54.000000000 +0200 ++++ configure 2009-07-03 19:35:52.000000000 +0200 +@@ -2047,7 +2047,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 +set dummy ${ac_tool_prefix}$CXX; ac_word=$2 - { echo "$as_me:$LINENO: checking for $ac_word" >&5 - echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then -@@ -7337,8 +7337,8 @@ +@@ -7878,8 +7878,8 @@ no_lua="yes" ;; *) diff -ruN nmap.orig/files/patch-ncat__ncat_core.c nmap/files/patch-ncat__ncat_core.c --- nmap.orig/files/patch-ncat__ncat_core.c 2009-04-22 18:25:53.000000000 +0200 +++ nmap/files/patch-ncat__ncat_core.c 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -Index: ncat/ncat_core.c -diff -u -p ncat/ncat_core.c.orig ncat/ncat_core.c ---- ncat/ncat_core.c.orig 2009-04-02 11:57:42.000000000 +0900 -+++ ncat/ncat_core.c 2009-04-22 00:58:48.839927966 +0900 -@@ -89,6 +89,7 @@ int resolve(char *hostname, unsigned sho - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = o.af; -+ hints.ai_socktype = SOCK_DGRAM; - if (o.nodns) - hints.ai_flags |= AI_NUMERICHOST; - diff -ruN nmap.orig/pkg-plist nmap/pkg-plist --- nmap.orig/pkg-plist 2009-04-13 11:53:53.000000000 +0200 +++ nmap/pkg-plist 2009-07-03 20:18:44.000000000 +0200 @@ -1,9 +1,6 @@ bin/nmap bin/ncat %%DATADIR%%/scripts/script.db -%%DATADIR%%/scripts/rpcinfo.nse -%%DATADIR%%/scripts/nbstat.nse -%%DATADIR%%/scripts/finger.nse %%DATADIR%%/scripts/whois.nse %%DATADIR%%/scripts/upnp-info.nse %%DATADIR%%/scripts/telnet-brute.nse @@ -11,6 +8,7 @@ %%DATADIR%%/scripts/sshv1.nse %%DATADIR%%/scripts/ssh-hostkey.nse %%DATADIR%%/scripts/sql-injection.nse +%%DATADIR%%/scripts/socks-open-proxy.nse %%DATADIR%%/scripts/snmp-sysdescr.nse %%DATADIR%%/scripts/snmp-brute.nse %%DATADIR%%/scripts/sniffer-detect.nse @@ -31,22 +29,28 @@ %%DATADIR%%/scripts/smb-brute.nse %%DATADIR%%/scripts/skypev2-version.nse %%DATADIR%%/scripts/robots.txt.nse +%%DATADIR%%/scripts/rpcinfo.nse %%DATADIR%%/scripts/realvnc-auth-bypass.nse %%DATADIR%%/scripts/pptp-version.nse %%DATADIR%%/scripts/pop3-capabilities.nse %%DATADIR%%/scripts/pop3-brute.nse +%%DATADIR%%/scripts/p2p-conficker.nse +%%DATADIR%%/scripts/nbstat.nse %%DATADIR%%/scripts/mysql-info.nse %%DATADIR%%/scripts/ms-sql-info.nse %%DATADIR%%/scripts/irc-info.nse +%%DATADIR%%/scripts/imap-capabilities.nse %%DATADIR%%/scripts/iax2-version.nse %%DATADIR%%/scripts/http-trace.nse %%DATADIR%%/scripts/http-passwd.nse %%DATADIR%%/scripts/http-open-proxy.nse %%DATADIR%%/scripts/http-auth.nse +%%DATADIR%%/scripts/http-iis-webdav-vuln.nse %%DATADIR%%/scripts/html-title.nse %%DATADIR%%/scripts/ftp-brute.nse %%DATADIR%%/scripts/ftp-bounce.nse %%DATADIR%%/scripts/ftp-anon.nse +%%DATADIR%%/scripts/finger.nse %%DATADIR%%/scripts/dns-zone-transfer.nse %%DATADIR%%/scripts/dns-recursion.nse %%DATADIR%%/scripts/dns-random-txid.nse @@ -83,7 +87,9 @@ %%DATADIR%%/nselib/msrpctypes.lua %%DATADIR%%/nselib/msrpcperformance.lua %%DATADIR%%/nselib/msrpc.lua +%%DATADIR%%/nselib/imap.lua @dirrm %%DATADIR%%/nselib +%%DATADIR%%/nse_main.lua %%DATADIR%%/nmap-mac-prefixes %%DATADIR%%/nmap-os-db %%DATADIR%%/nmap-protocols @@ -93,6 +99,8 @@ %%DATADIR%%/nmap.dtd %%DATADIR%%/nmap.xsl @dirrm %%DATADIR%% +%%NCATDATADIR%%/ca-bundle.crt +@dirrm %%NCATDATADIR%% %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG %%PORTDOCS%%%%DOCSDIR%%/HACKING %%PORTDOCS%%%%DOCSDIR%%/nmap.dtd --- nmap.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From peter.schuller at infidyne.com Fri Jul 3 19:20:12 2009 From: peter.schuller at infidyne.com (Peter Schuller) Date: Fri Jul 3 19:20:36 2009 Subject: ports/136296: [MAINTAINER] sysutils/duplicity: update to 0.6.01 Message-ID: <20090703184231.7958C4AE69F@prometheus.scode.org> >Number: 136296 >Category: ports >Synopsis: [MAINTAINER] sysutils/duplicity: update to 0.6.01 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:20:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: peter.schuller@infidyne.com >Release: FreeBSD 8.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD prometheus.scode.org 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Fri Jun 5 18:54:16 CEST >Description: - Update to 0.6.01 (0.6.00 was skipped due to a bug upstream which made it unusable on freebsd) Generated with FreeBSD Port Tools 0.77 Changelog since 0.5.18: New in v0.6.01 (2009/07/01) --------------------------- Fixed issues in Checkpoint/Restart: * The --name backupname" option was added to allow the user to separate one archive from another. If not specified, the default is an MD5 hash of the target URL, which should suffice for most uses. * The archive_dir (cache) is now stored in a standard location, defaulting to ~/.cache/duplicity. See http://standards.freedesktop.org/basedir-spec/latest/ * The interaction between the --archive-dir option and the --name option allows for four possible results for the location of the archive dir. - neither specified (default) ~/.cache/duplicity/hash-of-url - --archive-dir=~/arch, no --name ~/arch/hash-of-url - no --archive-dir, --name=foo ~/.cache/duplicity/foo - --archive-dir=~/arch, --name=foo ~/arch/foo * duplicity will now copy needed metadata from the remote store to the local cache as needed. This means that the first use after upgraded from 0.5.x will have the metadata copied to the local archive dir in order to sync both. * cleanup will now work correctly with the archive dir and separates the local from the remote files. Bugs fixed this release: * 388034 Unable to backup * 378940 python2-6 issue / UTF-8 charset / Ubuntu 9.04 * 379386 Fix list-current-files w/ missing archive dir * 387102 Asynchronous upload not working properly * 387218 Make scp/ssh into sftp-only backend * 388992 List of Orphaned Files Growing * 392905 NoneType object has no attribute 'startswith' * 393372 Error creating directory * 383412 Add InfoCodes for upload events * 383419 Add gio backend New in v0.6.00 (2009/06/08) --------------------------- Checkpoint/Restart capability added. Checkpoint is done at every volume written and Restart is done at start of the next volume in the set. Changes to normal operations include a permanent duplicity archive-dir at ~/.duplicity to save state. To accomplish this, the signature and archive files in the archive-dir now have three states: 1) temporary until the first volume has been written, 2) partial until the final volume has been written and sent to remote storage, 3) permanent with the same name as always. Assumptions are made that if a restart is needed, then all arguments are the same as before and that no files have been removed from the file system between runs. >From now on, the --archive-dir option can be used to change the location of the archive dir, but you are responsible for moving the files if you change it. Other fixes: Unicode filenames in log messages are now OK. Fixed problem where Cygwin was returning -1 for the hard max open file limit. >How-To-Repeat: >Fix: --- duplicity-0.6.01.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/duplicity.orig/Makefile /usr/ports/sysutils/duplicity/Makefile --- /usr/ports/sysutils/duplicity.orig/Makefile 2009-05-22 23:53:08.000000000 +0200 +++ /usr/ports/sysutils/duplicity/Makefile 2009-07-03 20:22:15.967273130 +0200 @@ -6,7 +6,7 @@ # PORTNAME= duplicity -PORTVERSION= 0.5.18 +PORTVERSION= 0.6.01 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN --exclude=CVS /usr/ports/sysutils/duplicity.orig/distinfo /usr/ports/sysutils/duplicity/distinfo --- /usr/ports/sysutils/duplicity.orig/distinfo 2009-05-22 23:53:08.000000000 +0200 +++ /usr/ports/sysutils/duplicity/distinfo 2009-07-03 20:22:19.288204360 +0200 @@ -1,3 +1,3 @@ -MD5 (duplicity-0.5.18.tar.gz) = 77fcbe30b300450af17d811eec339765 -SHA256 (duplicity-0.5.18.tar.gz) = 5c2fcf661ed80c7e3a7d7f29bd5468321965e6f5ecf585d52c3ba05fbae31bd9 -SIZE (duplicity-0.5.18.tar.gz) = 212588 +MD5 (duplicity-0.6.01.tar.gz) = bb8bc83d368d13471295cfeb33e74c1c +SHA256 (duplicity-0.6.01.tar.gz) = 4f3e4f4bac308dacb5d89e4e4114c3ec21ed8df69fe6f215a3908a026bef6a3f +SIZE (duplicity-0.6.01.tar.gz) = 231754 diff -ruN --exclude=CVS /usr/ports/sysutils/duplicity.orig/pkg-plist /usr/ports/sysutils/duplicity/pkg-plist --- /usr/ports/sysutils/duplicity.orig/pkg-plist 2009-05-22 23:53:08.000000000 +0200 +++ /usr/ports/sysutils/duplicity/pkg-plist 2009-07-03 20:24:50.359024976 +0200 @@ -25,6 +25,9 @@ %%PYTHON_SITELIBDIR%%/duplicity/backends/ftpbackend.py %%PYTHON_SITELIBDIR%%/duplicity/backends/ftpbackend.pyc %%PYTHON_SITELIBDIR%%/duplicity/backends/ftpbackend.pyo +%%PYTHON_SITELIBDIR%%/duplicity/backends/giobackend.py +%%PYTHON_SITELIBDIR%%/duplicity/backends/giobackend.pyc +%%PYTHON_SITELIBDIR%%/duplicity/backends/giobackend.pyo %%PYTHON_SITELIBDIR%%/duplicity/backends/hsibackend.py %%PYTHON_SITELIBDIR%%/duplicity/backends/hsibackend.pyc %%PYTHON_SITELIBDIR%%/duplicity/backends/hsibackend.pyo --- duplicity-0.6.01.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From peter.schuller at infidyne.com Fri Jul 3 19:20:13 2009 From: peter.schuller at infidyne.com (Peter Schuller) Date: Fri Jul 3 19:20:36 2009 Subject: ports/136297: [MAINTAINER] sysutils/rdiff-backup-devel: update to 1.3.3 Message-ID: <20090703191420.6A9225B54B7@prometheus.scode.org> >Number: 136297 >Category: ports >Synopsis: [MAINTAINER] sysutils/rdiff-backup-devel: update to 1.3.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:20:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: peter.schuller@infidyne.com >Release: FreeBSD 8.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD prometheus.scode.org 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Fri Jun 5 18:54:16 CEST >Description: - Update to 1.3.3 Generated with FreeBSD Port Tools 0.77 Upstream changelog: New in v1.3.3 (2009/03/16) --------------------------- Improve handling of incorrect permissions on backup repository during restore operation. Closes Ubuntu bug #329722. (Andrew Ferguson) Don't crash on zlib errors. Closes Debian bug #518531. (Andrew Ferguson) Make sticky bit warnings quieter while determining file system abilities. Closes Savannah bug #25788. (Andrew Ferguson) Fix situation where destination file cannot be opened because of an access error. Thanks to Dean Cording for the bug report. (Andrew Ferguson) Fix --compare-hash options on Windows. Thanks to Serge Zub for the fix. New in v1.3.2 (2009/03/02) --------------------------- Don't crash when filesystem can't set ACL. Thanks to Matt Thompson for the bug report. (Andrew Ferguson) Fix Security Error when performing non-backup operations on Windows. Thanks to Tommy Keene for the bug report. (Andrew Ferguson) Properly disable hardlinks by default on Windows. Fix Python 2.2 compatibility. Closes Savannah bug #25529. (Andrew Ferguson) Fix typo which caused failure when checking if another rdiff-backup process is running on Windows. Thanks to Ryan Hughes for the bug report. (Andrew Ferguson) Disable hardlinks by default on Windows when performing operations such as --compare, etc. Thanks to Ryan Hughes for the bug report. (Andrew Ferguson) Change --min-file-size and --max-file-size to agree with man page. These options no longer include files, and will only apply to regular files. Thanks to Johannes Jensen for the suggestion. (Andrew Ferguson) Improve error message if regress operation fails due to Security Violation. Thanks to Grzegorz Marszalek for the bug report. (Andrew Ferguson) >How-To-Repeat: >Fix: --- rdiff-backup-devel-1.3.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/rdiff-backup-devel.orig/Makefile /usr/ports/sysutils/rdiff-backup-devel/Makefile --- /usr/ports/sysutils/rdiff-backup-devel.orig/Makefile 2009-05-07 09:05:52.000000000 +0200 +++ /usr/ports/sysutils/rdiff-backup-devel/Makefile 2009-07-03 21:11:12.529209224 +0200 @@ -6,7 +6,7 @@ # PORTNAME= rdiff-backup -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.3 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SAVANNAH:S/$/:savannah/} \ ${MASTER_SITE_LOCAL:S/$/:local/} diff -ruN --exclude=CVS /usr/ports/sysutils/rdiff-backup-devel.orig/distinfo /usr/ports/sysutils/rdiff-backup-devel/distinfo --- /usr/ports/sysutils/rdiff-backup-devel.orig/distinfo 2009-07-03 21:10:44.000000000 +0200 +++ /usr/ports/sysutils/rdiff-backup-devel/distinfo 2009-07-03 21:11:19.816059096 +0200 @@ -1,3 +1,3 @@ -MD5 (rdiff-backup-1.3.1.tar.gz) = 09e82f7e7d463a7d2c3ce8da34eefdf4 -SHA256 (rdiff-backup-1.3.1.tar.gz) = 1e546a1916a4714283e2cea4c9578dafcd6d911c3a9d9aca54841b036fc424a5 -SIZE (rdiff-backup-1.3.1.tar.gz) = 197817 +MD5 (rdiff-backup-1.3.3.tar.gz) = e3ec506c01e12b693adb79751daa7c63 +SHA256 (rdiff-backup-1.3.3.tar.gz) = ee030ce638df0eb1047cf72578e0de15d9a3ee9ab24da2dc0023e2978be30c06 +SIZE (rdiff-backup-1.3.3.tar.gz) = 198412 --- rdiff-backup-devel-1.3.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Fri Jul 3 19:28:23 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Jul 3 19:28:29 2009 Subject: ports/136285: mail/qmail-scanner can't install with maildrop-2.1.0 Message-ID: <200907031928.n63JSN4I024586@freefall.freebsd.org> Old Synopsis: qmail-scanner can't install with maildrop-2.1.0 New Synopsis: mail/qmail-scanner can't install with maildrop-2.1.0 Responsible-Changed-From-To: freebsd-ports-bugs->lippe Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jul 3 19:27:44 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=136285 From yasu at utahime.org Fri Jul 3 19:40:07 2009 From: yasu at utahime.org (Yasuhiro KIMURA) Date: Fri Jul 3 19:40:16 2009 Subject: ports/136298: [MAINTAINER] japanese/eb: update to 4.4.1 Message-ID: <20090703193311.00B4A175D3@eastasia.home.utahime.org> >Number: 136298 >Category: ports >Synopsis: [MAINTAINER] japanese/eb: update to 4.4.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:40:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD xxxx 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Fri Jun 26 02:11:21 JST 2009 xxxx i386 >Description: - Update japanese/eb to 4.4.1. - Bump PORTREVISION of depending ports to chase shlib version change. >How-To-Repeat: >Fix: --- patch-ja-eb begins here --- Index: japanese/eb/Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/japanese/eb/Makefile,v retrieving revision 1.65 diff -u -r1.65 Makefile --- japanese/eb/Makefile 11 Jan 2009 21:29:32 -0000 1.65 +++ japanese/eb/Makefile 3 Jul 2009 19:01:53 -0000 @@ -6,7 +6,7 @@ # PORTNAME= eb -PORTVERSION= 4.3.4 +PORTVERSION= 4.4.1 CATEGORIES= japanese MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/ \ ftp://ftp.sra.co.jp/pub/misc/eb/old/eb-${PORTVERSION:C/^([0-9]+)\.([0-9]+).*/\1.\2/}/ Index: japanese/eb/distinfo =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/japanese/eb/distinfo,v retrieving revision 1.34 diff -u -r1.34 distinfo --- japanese/eb/distinfo 11 Jan 2009 21:29:32 -0000 1.34 +++ japanese/eb/distinfo 3 Jul 2009 19:02:18 -0000 @@ -1,6 +1,6 @@ -MD5 (eb/eb-4.3.4.tar.bz2) = 7c571b4eb4cfa065b110e806563349c0 -SHA256 (eb/eb-4.3.4.tar.bz2) = a0d57e1bf2f8816c94fa35721e21153144fba310b1dee343fa1f6b783aa26d14 -SIZE (eb/eb-4.3.4.tar.bz2) = 517645 +MD5 (eb/eb-4.4.1.tar.bz2) = 02e7c53d3d2b597daedd14c3083e3945 +SHA256 (eb/eb-4.4.1.tar.bz2) = 3564e776a484b29c0865076598c5fe9d1f08e016c338cc010476e87835b78056 +SIZE (eb/eb-4.4.1.tar.bz2) = 504514 MD5 (eb/appendix/cencro-1.0.tar.gz) = 1c93a68fae90990b631bd5302349d199 SHA256 (eb/appendix/cencro-1.0.tar.gz) = 02d7937f4cd0b3bebb23f9d5917a261d382b4f1004b3b49830c64762d58a02e5 SIZE (eb/appendix/cencro-1.0.tar.gz) = 1666 Index: japanese/eb/pkg-plist =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/japanese/eb/pkg-plist,v retrieving revision 1.20 diff -u -r1.20 pkg-plist --- japanese/eb/pkg-plist 2 Dec 2006 16:06:25 -0000 1.20 +++ japanese/eb/pkg-plist 3 Jul 2009 19:06:14 -0000 @@ -21,7 +21,7 @@ lib/libeb.a lib/libeb.la lib/libeb.so -lib/libeb.so.12 +lib/libeb.so.14 share/aclocal/eb4.m4 %%DOCSDIR%%/eb-01.html %%DOCSDIR%%/eb-02.html Index: japanese/eblook/Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/japanese/eblook/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- japanese/eblook/Makefile 21 Aug 2008 06:17:27 -0000 1.22 +++ japanese/eblook/Makefile 3 Jul 2009 19:12:15 -0000 @@ -7,7 +7,7 @@ PORTNAME= eblook PORTVERSION= 1.6.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= japanese textproc MASTER_SITES= http://openlab.ring.gr.jp/edict/eblook/dist/ DIST_SUBDIR= eb @@ -15,7 +15,7 @@ MAINTAINER= yasu@utahime.org COMMENT= Interactive EB interface command for seraching words in electoric dictionaries -LIB_DEPENDS= eb.12:${PORTSDIR}/japanese/eb +LIB_DEPENDS= eb.14:${PORTSDIR}/japanese/eb GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-eb-includes=${PREFIX}/include \ Index: japanese/ebnetd/Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/japanese/ebnetd/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- japanese/ebnetd/Makefile 21 Aug 2008 06:17:27 -0000 1.41 +++ japanese/ebnetd/Makefile 3 Jul 2009 19:12:33 -0000 @@ -7,14 +7,14 @@ PORTNAME= ebnetd PORTVERSION= 1.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= japanese ipv6 MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/ MAINTAINER= yasu@utahime.org COMMENT= Servers for accessing CD-ROM books via TCP/IP -LIB_DEPENDS= eb.12:${PORTSDIR}/japanese/eb +LIB_DEPENDS= eb.14:${PORTSDIR}/japanese/eb GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=${RUNDIR} --with-logdir=${LOGDIR} Index: japanese/ebview/Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/japanese/ebview/Makefile,v retrieving revision 1.34 diff -u -r1.34 Makefile --- japanese/ebview/Makefile 21 Aug 2008 06:17:28 -0000 1.34 +++ japanese/ebview/Makefile 3 Jul 2009 19:12:48 -0000 @@ -7,7 +7,7 @@ PORTNAME= ebview PORTVERSION= 0.2.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -15,7 +15,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Electronic Book Viewer -LIB_DEPENDS= eb.12:${PORTSDIR}/japanese/eb +LIB_DEPENDS= eb.14:${PORTSDIR}/japanese/eb CONFLICTS= ja-ebview-gtk2-* Index: japanese/ebview-gtk2/Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/japanese/ebview-gtk2/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- japanese/ebview-gtk2/Makefile 6 Jun 2008 13:37:26 -0000 1.41 +++ japanese/ebview-gtk2/Makefile 3 Jul 2009 19:12:59 -0000 @@ -7,7 +7,7 @@ PORTNAME= ebview PORTVERSION= 0.3.6 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= japanese MASTER_SITES= SF PKGNAMESUFFIX= -gtk2 @@ -15,7 +15,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Electronic Book Viewer -LIB_DEPENDS= eb.12:${PORTSDIR}/japanese/eb +LIB_DEPENDS= eb.14:${PORTSDIR}/japanese/eb CONFLICTS= ja-ebview-0* Index: japanese/ruby-eb/Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/japanese/ruby-eb/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- japanese/ruby-eb/Makefile 16 Jun 2009 15:53:13 -0000 1.23 +++ japanese/ruby-eb/Makefile 3 Jul 2009 19:13:16 -0000 @@ -7,7 +7,7 @@ PORTNAME= eb PORTVERSION= 2.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= japanese ruby #MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} #MASTER_SITE_SUBDIR= ruby${PORTNAME} @@ -18,7 +18,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bind of EB library -LIB_DEPENDS= eb.12:${PORTSDIR}/japanese/eb +LIB_DEPENDS= eb.14:${PORTSDIR}/japanese/eb USE_RUBY= yes USE_RUBY_EXTCONF= yes --- patch-ja-eb ends here --- >Release-Note: >Audit-Trail: >Unformatted: From dan at langille.org Fri Jul 3 19:50:03 2009 From: dan at langille.org (Dan Langille) Date: Fri Jul 3 19:50:15 2009 Subject: ports/136299: [MAINTAINER-UPDATE] sysutils/bacula-docs upgrade to latest version Message-ID: <20090703193032.09ADCBA63@bast.unixathome.org> >Number: 136299 >Category: ports >Synopsis: [MAINTAINER-UPDATE] sysutils/bacula-docs upgrade to latest version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:50:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Dan Langille >Release: FreeBSD 6.2-STABLE i386 >Organization: The FreeBSD Diary >Environment: System: FreeBSD bast.example.org 6.2-STABLE FreeBSD 6.2-STABLE #3: Wed Feb 28 22:21:12 EST 2007 dan@bast.example.org:/usr/obj/usr/src/sys/BAST i386 >Description: Upgrade 3.0.1 >How-To-Repeat: >Fix: --- bacula-docs.3.0.1.diff begins here --- diff -ruN /usr/ports/sysutils/bacula-docs/Makefile bacula-docs/Makefile --- /usr/ports/sysutils/bacula-docs/Makefile Wed May 6 20:30:10 2009 +++ bacula-docs/Makefile Fri Jul 3 15:21:41 2009 @@ -6,7 +6,7 @@ # PORTNAME= bacula -PORTVERSION= 3.0.0 +PORTVERSION= 3.0.1 CATEGORIES= sysutils MASTER_SITES= SF PKGNAMESUFFIX= -docs diff -ruN /usr/ports/sysutils/bacula-docs/distinfo bacula-docs/distinfo --- /usr/ports/sysutils/bacula-docs/distinfo Wed May 6 20:30:10 2009 +++ bacula-docs/distinfo Fri Jul 3 15:22:24 2009 @@ -1,6 +1,6 @@ -MD5 (bacula-docs-3.0.0.tar.bz2) = 2c3a1c6ba46b1371240a9b8d053fdf61 -SHA256 (bacula-docs-3.0.0.tar.bz2) = 7fc4d944f7e8222bfddba4b342ca19f7783e89e5439daa059cb45f783049e996 -SIZE (bacula-docs-3.0.0.tar.bz2) = 40703755 -MD5 (bacula-3.0.0.tar.gz) = 5ea5294c4f66f0d8ba1414f1ca9dc79b -SHA256 (bacula-3.0.0.tar.gz) = cafcf9e9682662d2efcef84a6d90ee09230c60c7ed15a7051b70a30f2966d45c -SIZE (bacula-3.0.0.tar.gz) = 3834280 +MD5 (bacula-docs-3.0.1.tar.bz2) = 5c8d0710eaaf439f4b78913915d45523 +SHA256 (bacula-docs-3.0.1.tar.bz2) = 43820d2da23f61b990a284bdefc25cb44cb4beec6df3c12d95f95ca387d31fb3 +SIZE (bacula-docs-3.0.1.tar.bz2) = 40756082 +MD5 (bacula-3.0.1.tar.gz) = 173ef4d07ff10dfdbcc1142d8be21f17 +SHA256 (bacula-3.0.1.tar.gz) = 310ad1d9fb97b5eaf78cae6de47219d485a6762b523753415bbced5dca41dd2c +SIZE (bacula-3.0.1.tar.gz) = 3842746 --- bacula-docs.3.0.1.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From dan at langille.org Fri Jul 3 19:50:03 2009 From: dan at langille.org (Dan Langille) Date: Fri Jul 3 19:50:15 2009 Subject: ports/136300: [MAINTAINER-UPDATE] sysutils/bacula-server upgrade to latest version Message-ID: <20090703193000.9342CB85E@bast.unixathome.org> >Number: 136300 >Category: ports >Synopsis: [MAINTAINER-UPDATE] sysutils/bacula-server upgrade to latest version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 19:50:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Dan Langille >Release: FreeBSD 6.2-STABLE i386 >Organization: The FreeBSD Diary >Environment: System: FreeBSD bast.example.org 6.2-STABLE FreeBSD 6.2-STABLE #3: Wed Feb 28 22:21:12 EST 2007 dan@bast.example.org:/usr/obj/usr/src/sys/BAST i386 >Description: Upgrade to 3.0.1 >How-To-Repeat: >Fix: --- bacula-server.3.0.1.diff begins here --- diff -ruN /usr/ports/sysutils/bacula-server/Makefile bacula-server/Makefile --- /usr/ports/sysutils/bacula-server/Makefile Mon Jun 1 12:49:39 2009 +++ bacula-server/Makefile Fri Jul 3 15:12:22 2009 @@ -6,7 +6,7 @@ # PORTNAME= bacula -DISTVERSION= 3.0.0 +DISTVERSION= 3.0.1 CATEGORIES?= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= bacula Binary files /usr/ports/sysutils/bacula-server/bacula-server-3.0.1.tbz and bacula-server/bacula-server-3.0.1.tbz differ diff -ruN /usr/ports/sysutils/bacula-server/distinfo bacula-server/distinfo --- /usr/ports/sysutils/bacula-server/distinfo Sun Apr 12 22:38:38 2009 +++ bacula-server/distinfo Fri Jul 3 15:12:31 2009 @@ -1,3 +1,3 @@ -MD5 (bacula-3.0.0.tar.gz) = 5ea5294c4f66f0d8ba1414f1ca9dc79b -SHA256 (bacula-3.0.0.tar.gz) = cafcf9e9682662d2efcef84a6d90ee09230c60c7ed15a7051b70a30f2966d45c -SIZE (bacula-3.0.0.tar.gz) = 3834280 +MD5 (bacula-3.0.1.tar.gz) = 173ef4d07ff10dfdbcc1142d8be21f17 +SHA256 (bacula-3.0.1.tar.gz) = 310ad1d9fb97b5eaf78cae6de47219d485a6762b523753415bbced5dca41dd2c +SIZE (bacula-3.0.1.tar.gz) = 3842746 --- bacula-server.3.0.1.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Fri Jul 3 20:06:04 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri Jul 3 20:06:26 2009 Subject: ports/136292: [MAINTAINER] net-p2p/bitflu: update to 0.91 Message-ID: <200907032006.n63K63XK054707@freefall.freebsd.org> Synopsis: [MAINTAINER] net-p2p/bitflu: update to 0.91 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri Jul 3 20:06:03 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136292 From miwi at FreeBSD.org Fri Jul 3 20:06:06 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri Jul 3 20:06:26 2009 Subject: ports/136293: [maintainer] Update security/zenmap to 4.90.r1 Message-ID: <200907032006.n63K65Ma054773@freefall.freebsd.org> Synopsis: [maintainer] Update security/zenmap to 4.90.r1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri Jul 3 20:06:05 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136293 From miwi at FreeBSD.org Fri Jul 3 20:06:09 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri Jul 3 20:06:27 2009 Subject: ports/136295: [maintainer] Update security/nmap to 4.90.r1 Message-ID: <200907032006.n63K68Cp054839@freefall.freebsd.org> Synopsis: [maintainer] Update security/nmap to 4.90.r1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri Jul 3 20:06:07 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136295 From miwi at FreeBSD.org Fri Jul 3 20:06:11 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri Jul 3 20:06:28 2009 Subject: ports/136296: [MAINTAINER] sysutils/duplicity: update to 0.6.01 Message-ID: <200907032006.n63K6Ax5054907@freefall.freebsd.org> Synopsis: [MAINTAINER] sysutils/duplicity: update to 0.6.01 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri Jul 3 20:06:10 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136296 From miwi at FreeBSD.org Fri Jul 3 20:06:23 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri Jul 3 20:06:41 2009 Subject: ports/136294: [MAINTAINER] textproc/asciidoc: update to 8.4.5 Message-ID: <200907032006.n63K6MJB055012@freefall.freebsd.org> Synopsis: [MAINTAINER] textproc/asciidoc: update to 8.4.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri Jul 3 20:06:22 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136294 From a.pirko at inode.at Fri Jul 3 20:10:36 2009 From: a.pirko at inode.at (Armin Pirkovitsch) Date: Fri Jul 3 20:10:41 2009 Subject: ports/136142: Removal of irc/kvirc-devel Message-ID: <200907032010.n63KAYBQ058311@freefall.freebsd.org> The following reply was made to PR ports/136142; it has been noted by GNATS. From: Armin Pirkovitsch To: bug-followup@FreeBSD.org, c.petrik.sosa@gmail.com Cc: Subject: Re: ports/136142: Removal of irc/kvirc-devel Date: Fri, 3 Jul 2009 22:09:03 +0200 @Chris: Looks like you have big plans for the port - so I won't be in your way. If Chris wants to take the maintainership I'm fine with it. Armin -- Armin Pirkovitsch a.pirko@inode.at From c.petrik.sosa at gmail.com Fri Jul 3 20:30:18 2009 From: c.petrik.sosa at gmail.com (Chris Petrik) Date: Fri Jul 3 20:30:24 2009 Subject: ports/136142: Removal of irc/kvirc-devel Message-ID: <200907032030.n63KUHrL075502@freefall.freebsd.org> The following reply was made to PR ports/136142; it has been noted by GNATS. From: Chris Petrik To: Armin Pirkovitsch Cc: bug-followup@FreeBSD.org Subject: Re: ports/136142: Removal of irc/kvirc-devel Date: Fri, 03 Jul 2009 15:27:36 -0500 Armin Pirkovitsch wrote: > @Chris: Looks like you have big plans for the port - so I won't be in your way. > > If Chris wants to take the maintainership I'm fine with it. > > Armin > Hello, Its not that, It's just that I have seen this port unchanged for so long, but sure I will take maintainership. I would rather the port be removed and care taken to make kvirc working. But if you don't agree I will take maintainership of the port. From alson+ml at alm.flutnet.org Fri Jul 3 20:40:07 2009 From: alson+ml at alm.flutnet.org (Alson van der Meulen) Date: Fri Jul 3 20:40:12 2009 Subject: ports/136301: net/avahi-app removes/overwrites config files on de/reinstall Message-ID: <20090703200909.1239978C1C@tafi.alm.flutnet.org> >Number: 136301 >Category: ports >Synopsis: net/avahi-app removes/overwrites config files on de/reinstall >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 20:40:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alson van der Meulen >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD tafi.alm.flutnet.org 7.2-STABLE FreeBSD 7.2-STABLE #23: Thu Jul 2 17:43:27 CEST 2009 root@tafi.alm.flutnet.org:/usr/obj/usr/src/sys/TAFI amd64 avahi-app-0.6.25_1 >Description: When deinstalling the net/avahi-app port, it deletes the config files in /usr/local/etc, even if they were modified by the user. When reinstalling the port and the config files already exist, they are overwritten by the default ones. >How-To-Repeat: - install net/avahi-app - vi /usr/local/etc/avahi/avahi-daemon.conf - portupgrade -f avahi-app - less /usr/local/etc/avahi/avahi-daemon.conf >Fix: >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 20:40:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 20:40:21 2009 Subject: ports/136301: net/avahi-app removes/overwrites config files on de/reinstall Message-ID: <200907032040.n63KeFZ9084983@freefall.freebsd.org> Synopsis: net/avahi-app removes/overwrites config files on de/reinstall Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 20:40:15 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136301 From alexey at renatasystems.org Fri Jul 3 21:00:17 2009 From: alexey at renatasystems.org (Alexey V.Degtyarev) Date: Fri Jul 3 21:00:23 2009 Subject: ports/136302: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling Message-ID: <20090703205340.34425.qmail@hs-9.renatasystems.org> >Number: 136302 >Category: ports >Synopsis: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 21:00:15 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexey V. Degtyarev >Release: FreeBSD 6.3-RELEASE i386 >Organization: >Environment: System: FreeBSD renatasystems.org 6.3-RELEASE FreeBSD 6.3-RELEASE #2: Sat May 24 23:23:42 MSD 2008 root@renatasystems.org:/usr/obj/usr/src/sys/alexey i386 >Description: tinderbox-devel port has a number of patches files/patch-webui* which can not be applied with WEBUI option turned off: ===> Found saved configuration for tinderbox-devel-3.2_4 ===> Extracting for tinderbox-devel-3.2_4 => MD5 Checksum OK for tinderbox/tinderbox-3.2.tar.gz. => SHA256 Checksum OK for tinderbox/tinderbox-3.2.tar.gz. ===> Patching for tinderbox-devel-3.2_4 ===> Applying FreeBSD patches for tinderbox-devel-3.2_4 File to patch: ^C=> Patch patch-webui__core__TinderboxDS.php failed to apply cleanly. => Patch(es) patch-lib__buildscript patch-lib__tc_command.pl patch-lib__tc_command.sh patch-lib__tinderlib.sh patch-sql__schema.mysql.pre patch-sql__schema.pgsql.pre patch-sql__values.pfp patch-sql__values.pfr applied cleanly. This happens due to premature removing of the whole webui directory: .if !defined(WITH_WEBUI) post-extract: @${RM} -R ${WRKSRC}/webui .endif Secondly, pkg-message after port was installed shows notes about tinderbox webui configuration, which is rather confusing as soon as webui was completely disabled. Probably this also should be fixed in ports-mgmt/tinderbox port too. >How-To-Repeat: Just try to install ports-mgmt/tinderbox-devel having WEBUI option tunded off. >Fix: --- tinderbox-devel.patch begins here --- diff -u -rN tinderbox-devel.orig/Makefile tinderbox-devel/Makefile --- tinderbox-devel.orig/Makefile 2009-05-11 10:19:40.000000000 +0400 +++ tinderbox-devel/Makefile 2009-07-04 00:21:43.000000000 +0400 @@ -29,7 +29,6 @@ NO_BUILD= yes WANT_PERL= yes -SUB_FILES= pkg-message MAN1= tc-configCcache.1 tc-configDistfile.1 tc-configGet.1 \ tc-configJail.1 tc-configTinderd.1 tc-init.1 @@ -47,8 +46,10 @@ WANT_PHP_WEB= yes USE_PHP= session PLIST_SUB+= WEBUI="" +SUB_FILES+= pkg-message .else PLIST_SUB+= WEBUI="@comment " +SUB_FILES+= pkg-message-nowebui .endif .if defined(WITH_PGSQL) @@ -90,11 +91,6 @@ @${FALSE} .endif -.if !defined(WITH_WEBUI) -post-extract: - @${RM} -R ${WRKSRC}/webui -.endif - post-patch: .ifdef WITHOUT_CHECK_FOR_ROOT ${REINPLACE_CMD} -e 's/^if \[ `id -u` != 0 \]; then/if false; then/' \ @@ -102,6 +98,10 @@ .endif @cd ${WRKSRC} && ${FIND} . -name '*.orig' -exec ${RM} {} \; +.if !defined(WITH_WEBUI) + @${RM} -R ${WRKSRC}/webui +.endif + do-install: @${MKDIR} ${PREFIX}/tinderbox/scripts @${ECHO_CMD} "Installing man pages ..." diff -u -rN tinderbox-devel.orig/files/pkg-message-nowebui.in tinderbox-devel/files/pkg-message-nowebui.in --- tinderbox-devel.orig/files/pkg-message-nowebui.in 1970-01-01 03:00:00.000000000 +0300 +++ tinderbox-devel/files/pkg-message-nowebui.in 2009-07-04 00:16:50.000000000 +0400 @@ -0,0 +1,10 @@ + +=============================================================================== +ports-mgmt/tinderbox is now installed, but it requires some additional setup. + +**************************************************** +Please do read: %%PREFIX%%/tinderbox/scripts/README +**************************************************** + +============================================================================= + --- tinderbox-devel.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 21:00:28 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 21:00:35 2009 Subject: ports/136302: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling Message-ID: <200907032100.n63L0RWd099405@freefall.freebsd.org> Synopsis: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 21:00:27 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136302 From gahr at FreeBSD.org Fri Jul 3 22:10:04 2009 From: gahr at FreeBSD.org (Pietro Cerutti) Date: Fri Jul 3 22:10:11 2009 Subject: ports/136303: [patch] textproc/texi2html -- update to 1.82 Message-ID: <1246658696.78050@gahrtop.gahr.ch> >Number: 136303 >Category: ports >Synopsis: [patch] textproc/texi2html -- update to 1.82 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 22:10:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Pietro Cerutti >Release: FreeBSD 8.0-CURRENT i386 >Organization: The FreeBSD Project >Environment: System: FreeBSD 8.0-CURRENT #5: Fri Jun 19 09:46:39 CEST 2009 root@:/usr/obj/usr/src/sys/MSI1034 >Description: - update to 1.82 - install docs only if NOPORTDOCS is not set - correct DOCSDIR - correct MASTER_SITES >How-To-Repeat: >Fix: --- texi2html.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/texi2html/Makefile,v retrieving revision 1.22 diff -u -u -r1.22 Makefile --- Makefile 14 Feb 2005 22:05:53 -0000 1.22 +++ Makefile 3 Jul 2009 21:52:25 -0000 @@ -6,12 +6,11 @@ # PORTNAME= texi2html -PORTVERSION= 1.76 -PORTREVISION= 1 +PORTVERSION= 1.82 PORTEPOCH= 1 CATEGORIES= textproc -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= hrs +MASTER_SITES= ${MASTER_SITE_SAVANNAH} +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= roam@FreeBSD.org COMMENT= Texinfo to HTML converter @@ -39,7 +38,9 @@ @${ECHO} "" post-patch: - sleep 2 ${TOUCH} ${WRKSRC}/translations.pl +.if defined(NOPORTDOCS) + ${REINPLACE_CMD} -e 's| install-texinfohtmlDATA||g' ${WRKSRC}/doc/Makefile.in +.endif .include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/textproc/texi2html/distinfo,v retrieving revision 1.8 diff -u -u -r1.8 distinfo --- distinfo 24 Jan 2006 03:10:19 -0000 1.8 +++ distinfo 3 Jul 2009 21:24:45 -0000 @@ -1,3 +1,3 @@ -MD5 (texi2html-1.76.tar.gz) = 38d0021c547612dba3543bdb1376569f -SHA256 (texi2html-1.76.tar.gz) = 387392086e591be9bd58879eb1e05908b6b886c871b92ad240b159af2ae6a623 -SIZE (texi2html-1.76.tar.gz) = 470207 +MD5 (texi2html-1.82.tar.gz) = 7ea537a8c81ffbf5421b39c0333e91df +SHA256 (texi2html-1.82.tar.gz) = 6c7c94a2d88ffe218a33e91118c2b039336cbe3f2f8b4e3a78e4fd1502072936 +SIZE (texi2html-1.82.tar.gz) = 7350232 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/textproc/texi2html/pkg-plist,v retrieving revision 1.6 diff -u -u -r1.6 pkg-plist --- pkg-plist 6 Feb 2005 18:42:52 -0000 1.6 +++ pkg-plist 3 Jul 2009 21:55:13 -0000 @@ -1,91 +1,103 @@ -@comment $FreeBSD: ports/textproc/texi2html/pkg-plist,v 1.6 2005/02/06 18:42:52 roam Exp $ -bin/%%PROGRAM_PREFIX%%texi2html -%%DATADIR%%/i18n/en +bin/texi2html +%%PORTDOCS%%%%DOCSDIR%%/texi2html.html +%%DATADIR%%/bib-example.texi +%%DATADIR%%/book.init +%%DATADIR%%/chm.init +%%DATADIR%%/docbook.init +%%DATADIR%%/enable_encoding.init +%%DATADIR%%/glossary.texi +%%DATADIR%%/html32.init %%DATADIR%%/i18n/de +%%DATADIR%%/i18n/en %%DATADIR%%/i18n/es %%DATADIR%%/i18n/fr +%%DATADIR%%/i18n/ja %%DATADIR%%/i18n/nl %%DATADIR%%/i18n/no %%DATADIR%%/i18n/pt -%%DATADIR%%/images/a_begin.gif -%%DATADIR%%/images/a_begin_na.gif -%%DATADIR%%/images/a_document.gif -%%DATADIR%%/images/a_document_na.gif -%%DATADIR%%/images/a_empty.gif -%%DATADIR%%/images/a_end.gif -%%DATADIR%%/images/a_end_na.gif -%%DATADIR%%/images/a_help.gif -%%DATADIR%%/images/a_help_na.gif -%%DATADIR%%/images/a_index.gif -%%DATADIR%%/images/a_index_na.gif -%%DATADIR%%/images/a_leftdouble.gif -%%DATADIR%%/images/a_leftdouble_na.gif -%%DATADIR%%/images/a_left.gif -%%DATADIR%%/images/a_left_na.gif -%%DATADIR%%/images/a_page.gif -%%DATADIR%%/images/a_page_na.gif -%%DATADIR%%/images/a_rightdouble.gif -%%DATADIR%%/images/a_rightdouble_na.gif -%%DATADIR%%/images/a_right.gif -%%DATADIR%%/images/bg.jpg -%%DATADIR%%/images/a_right_na.gif -%%DATADIR%%/images/a_searchdoc.gif -%%DATADIR%%/images/a_searchdoc_na.gif -%%DATADIR%%/images/a_search.gif -%%DATADIR%%/images/a_search_na.gif -%%DATADIR%%/images/a_tableofcon.gif -%%DATADIR%%/images/a_tableofcon_na.gif -%%DATADIR%%/images/a_top.gif -%%DATADIR%%/images/a_top_na.gif -%%DATADIR%%/images/a_up.gif -%%DATADIR%%/images/a_up_na.gif -%%DATADIR%%/images/bg_left.gif -%%DATADIR%%/images/bg_right.gif -%%DATADIR%%/images/blue_dir.gif -%%DATADIR%%/images/blue_down.gif -%%DATADIR%%/images/blue_grab.gif -%%DATADIR%%/images/blue_help.gif -%%DATADIR%%/images/blue_next.gif -%%DATADIR%%/images/blue_nnext.gif -%%DATADIR%%/images/blue_pprev.gif -%%DATADIR%%/images/blue_prev.gif -%%DATADIR%%/images/blue_readme.gif -%%DATADIR%%/images/blue_top.gif -%%DATADIR%%/images/blue_up.gif -%%DATADIR%%/images/blue_uup.gif -%%DATADIR%%/images/contents_motif.gif +%%DATADIR%%/i18n/pt_BR %%DATADIR%%/images/COPYING -%%DATADIR%%/images/index_motif.gif -%%DATADIR%%/images/Mybg.gif -%%DATADIR%%/images/next_motif.gif -%%DATADIR%%/images/next_motif_gr.gif -%%DATADIR%%/images/previous_motif.gif -%%DATADIR%%/images/previous_motif_gr.gif -%%DATADIR%%/images/spacer3.gif -%%DATADIR%%/images/xy_contents.gif -%%DATADIR%%/images/xy_foot.gif -%%DATADIR%%/images/xy_next.gif -%%DATADIR%%/images/xy_next_gr.gif -%%DATADIR%%/images/xy_nextsection.gif -%%DATADIR%%/images/xy_nextsection_gr.gif -%%DATADIR%%/images/xy_previous.gif -%%DATADIR%%/images/xy_previous_gr.gif -%%DATADIR%%/images/xy_previoussection.gif -%%DATADIR%%/images/xy_previoussection_gr.gif -%%DATADIR%%/images/xy_up.gif -%%DATADIR%%/images/xy_up_gr.gif +%%DATADIR%%/images/COPYING.Attribution-ShareAlike +%%DATADIR%%/images/GPL +%%DATADIR%%/images/Mybg.png +%%DATADIR%%/images/README +%%DATADIR%%/images/a_begin.png +%%DATADIR%%/images/a_begin_na.png +%%DATADIR%%/images/a_document.png +%%DATADIR%%/images/a_document_na.png +%%DATADIR%%/images/a_empty.png +%%DATADIR%%/images/a_end.png +%%DATADIR%%/images/a_end_na.png +%%DATADIR%%/images/a_help.png +%%DATADIR%%/images/a_help_na.png +%%DATADIR%%/images/a_index.png +%%DATADIR%%/images/a_index_na.png +%%DATADIR%%/images/a_left.png +%%DATADIR%%/images/a_left_na.png +%%DATADIR%%/images/a_leftdouble.png +%%DATADIR%%/images/a_leftdouble_na.png +%%DATADIR%%/images/a_page.png +%%DATADIR%%/images/a_page_na.png +%%DATADIR%%/images/a_right.png +%%DATADIR%%/images/a_right_na.png +%%DATADIR%%/images/a_rightdouble.png +%%DATADIR%%/images/a_rightdouble_na.png +%%DATADIR%%/images/a_search.png +%%DATADIR%%/images/a_search_na.png +%%DATADIR%%/images/a_searchdoc.png +%%DATADIR%%/images/a_searchdoc_na.png +%%DATADIR%%/images/a_tableofcon.png +%%DATADIR%%/images/a_tableofcon_na.png +%%DATADIR%%/images/a_top.png +%%DATADIR%%/images/a_top_na.png +%%DATADIR%%/images/a_up.png +%%DATADIR%%/images/a_up_na.png +%%DATADIR%%/images/bg.jpg +%%DATADIR%%/images/bg_left.png +%%DATADIR%%/images/bg_right.png +%%DATADIR%%/images/blue_dir.png +%%DATADIR%%/images/blue_down.png +%%DATADIR%%/images/blue_grab.png +%%DATADIR%%/images/blue_help.png +%%DATADIR%%/images/blue_next.png +%%DATADIR%%/images/blue_nnext.png +%%DATADIR%%/images/blue_pprev.png +%%DATADIR%%/images/blue_prev.png +%%DATADIR%%/images/blue_readme.png +%%DATADIR%%/images/blue_top.png +%%DATADIR%%/images/blue_up.png +%%DATADIR%%/images/blue_uup.png +%%DATADIR%%/images/contents_motif.png +%%DATADIR%%/images/index_motif.png +%%DATADIR%%/images/next_motif.png +%%DATADIR%%/images/next_motif_gr.png +%%DATADIR%%/images/previous_motif.png +%%DATADIR%%/images/previous_motif_gr.png +%%DATADIR%%/images/spacer3.png +%%DATADIR%%/images/xy_contents.png +%%DATADIR%%/images/xy_foot.png +%%DATADIR%%/images/xy_next.png +%%DATADIR%%/images/xy_next_gr.png +%%DATADIR%%/images/xy_nextsection.png +%%DATADIR%%/images/xy_nextsection_gr.png +%%DATADIR%%/images/xy_previous.png +%%DATADIR%%/images/xy_previous_gr.png +%%DATADIR%%/images/xy_previoussection.png +%%DATADIR%%/images/xy_previoussection_gr.png +%%DATADIR%%/images/xy_up.png +%%DATADIR%%/images/xy_up_gr.png +%%DATADIR%%/inlinestyle.init %%DATADIR%%/l2h.init %%DATADIR%%/makeinfo.init -%%DATADIR%%/xhtml.init -%%DATADIR%%/html32.init -%%DATADIR%%/book.init +%%DATADIR%%/mediawiki.init +%%DATADIR%%/my-bib-macros.texi %%DATADIR%%/noheaders.init -%%DATADIR%%/inlinestyle.init -%%DATADIR%%/utf8.init -%%DATADIR%%/chm.init %%DATADIR%%/roff.init -@dirrm %%DATADIR%%/i18n +%%DATADIR%%/tex4ht.init +%%DATADIR%%/utf8.init +%%DATADIR%%/xhtml.init +%%DATADIR%%/xml.init @dirrm %%DATADIR%%/images +@dirrm %%DATADIR%%/i18n @dirrm %%DATADIR%% -share/doc/texinfo/texi2html.html -@dirrm share/doc/texinfo +%%PORTDOCS%%@dirrm %%DOCSDIR%% Index: files/patch-doc::Makefile.in =================================================================== RCS file: /home/pcvs/ports/textproc/texi2html/files/patch-doc::Makefile.in,v retrieving revision 1.1 diff -u -u -r1.1 patch-doc::Makefile.in --- files/patch-doc::Makefile.in 6 Feb 2005 18:42:52 -0000 1.1 +++ files/patch-doc::Makefile.in 3 Jul 2009 21:35:18 -0000 @@ -6,7 +6,7 @@ # -texinfodata = $(datadir)/texinfo -texinfohtmldir = $(texinfodata)/html -+texinfodata = $(datadir)/doc/texinfo ++texinfodata = $(datadir)/doc/texi2html +texinfohtmldir = $(texinfodata) texinfohtml_DATA = texi2html.html Index: files/patch-texi2html.pl =================================================================== RCS file: files/patch-texi2html.pl diff -N files/patch-texi2html.pl --- files/patch-texi2html.pl 12 Feb 2005 22:40:59 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,41 +0,0 @@ ---- texi2html.pl.orig Fri Feb 4 02:16:52 2005 -+++ texi2html.pl Sun Feb 13 00:18:09 2005 -@@ -2445,20 +2445,24 @@ - - if ($Texi2HTML::Config::SPLIT and ($Texi2HTML::Config::OUT ne '')) - { -- $Texi2HTML::Config::OUT =~ s|/*$||; -- $docu_rdir = "$Texi2HTML::Config::OUT/"; -- unless (-d $Texi2HTML::Config::OUT) -- { -- if ( mkdir($Texi2HTML::Config::OUT, oct(755))) -- { -- print STDERR "# created directory $Texi2HTML::Config::OUT\n" if ($T2H_VERBOSE); -- } -- else -- { -- die "$ERROR can't create directory $Texi2HTML::Config::OUT\n"; -- } -- } -- print STDERR "# putting result files into directory $docu_rdir\n" if ($T2H_VERBOSE); -+# $Texi2HTML::Config::OUT =~ s|/*$||; -+# $docu_rdir = "$Texi2HTML::Config::OUT/"; -+# unless (-d $Texi2HTML::Config::OUT) -+# { -+# if ( mkdir($Texi2HTML::Config::OUT, oct(755))) -+# { -+# print STDERR "# created directory $Texi2HTML::Config::OUT\n" if ($T2H_VERBOSE); -+# } -+# else -+# { -+# die "$ERROR can't create directory $Texi2HTML::Config::OUT\n"; -+# } -+# } -+# print STDERR "# putting result files into directory $docu_rdir\n" if ($T2H_VERBOSE); -+ # FIXME: handle the case when ::OUT includes a basedir -+ $Texi2HTML::Config::PREFIX = $Texi2HTML::Config::OUT; -+ $docu_rdir = ''; -+ $Texi2HTML::Config::OUT = ''; - } - elsif (! $Texi2HTML::Config::SPLIT and ($Texi2HTML::Config::OUT ne '')) - { --- texi2html.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri Jul 3 22:10:15 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jul 3 22:10:21 2009 Subject: ports/136303: [patch] textproc/texi2html -- update to 1.82 Message-ID: <200907032210.n63MAFIP051452@freefall.freebsd.org> Synopsis: [patch] textproc/texi2html -- update to 1.82 Responsible-Changed-From-To: freebsd-ports-bugs->roam Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 3 22:10:14 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136303 From c.petrik.sosa at gmail.com Fri Jul 3 22:20:06 2009 From: c.petrik.sosa at gmail.com (Chris Petrik) Date: Fri Jul 3 22:20:12 2009 Subject: ports/136142: Removal of irc/kvirc-devel Message-ID: <200907032220.n63MK56R058828@freefall.freebsd.org> The following reply was made to PR ports/136142; it has been noted by GNATS. From: Chris Petrik To: Cc: bug-followup@FreeBSD.org Subject: Re: ports/136142: Removal of irc/kvirc-devel Date: Fri, 03 Jul 2009 17:12:09 -0500 This is a multi-part message in MIME format. --------------080706030809060700040107 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Patch to request Maintainership --------------080706030809060700040107 Content-Type: text/plain; name="patch-kvirc-devel-Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-kvirc-devel-Makefile.diff" --- Makefile.old 2009-07-03 17:09:40.000000000 -0500 +++ Makefile 2009-07-03 17:10:17.000000000 -0500 @@ -12,7 +12,7 @@ MASTER_SITES= ftp://ftp.kvirc.ru/pub/source/dev/ PKGNAMESUFFIX= -devel -MAINTAINER= a.pirko@inode.at +MAINTAINER= chris@officialunix.com COMMENT= IRC client for QT and KDE USE_AUTOTOOLS= libtool:15 --------------080706030809060700040107-- From daniel at roe.ch Fri Jul 3 22:40:06 2009 From: daniel at roe.ch (Daniel Roethlisberger) Date: Fri Jul 3 22:40:12 2009 Subject: ports/136304: [maintainer] mail/dma - fix message corruption Message-ID: >Number: 136304 >Category: ports >Synopsis: [maintainer] mail/dma - fix message corruption >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 03 22:40:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Daniel Roethlisberger >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD marvin.ustcor.roe.ch 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:57:44 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Fix a race condition in the multiple recipient delivery code which can cause message corruption, sometimes visibly, sometimes silently. >How-To-Repeat: $ dd if=/dev/urandom bs=1k count=100 | openssl base64 > /tmp/data $ mail -s test your@email.com your_second@email.com < /tmp/data Notice that dma(8) will bounce the message for some or all of the recipients and/or that the received messages vastly differ in size and content from /tmp/data. >Fix: --- dma-lock-delivery.diff begins here --- diff -ruN dma.orig/Makefile dma/Makefile --- dma.orig/Makefile 2009-02-13 21:19:04.000000000 +0100 +++ dma/Makefile 2009-07-03 21:58:59.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= dma PORTVERSION= 20090208 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail ipv6 MASTER_SITES= http://mirror.roe.ch/dist/dma/ diff -ruN dma.orig/files/patch-libexec_dma_dma.c dma/files/patch-libexec_dma_dma.c --- dma.orig/files/patch-libexec_dma_dma.c 1970-01-01 01:00:00.000000000 +0100 +++ dma/files/patch-libexec_dma_dma.c 2009-07-04 00:13:15.000000000 +0200 @@ -0,0 +1,38 @@ +--- libexec/dma/dma.c.orig 2009-02-09 01:36:50.000000000 +0100 ++++ libexec/dma/dma.c 2009-07-04 00:12:53.000000000 +0200 +@@ -612,6 +612,7 @@ + const char *errmsg = "unknown bounce reason"; + struct timeval now; + struct stat st; ++ struct flock fl; + + syslog(LOG_INFO, "%s: mail from=<%s> to=<%s>", + it->queueid, it->sender, it->addr); +@@ -620,11 +621,27 @@ + syslog(LOG_INFO, "%s: trying delivery", + it->queueid); + ++ bzero(&fl, sizeof(fl)); ++ fl.l_type = F_WRLCK; ++ fl.l_whence = SEEK_SET; ++ if (fcntl(fileno(it->queuef), F_SETLKW, &fl) == -1) { ++ syslog(LOG_ERR, "%s: failed to lock queue file: %m", ++ it->queueid); ++ } ++ + if (it->remote) + error = deliver_remote(it, &errmsg); + else + error = deliver_local(it, &errmsg); + ++ bzero(&fl, sizeof(fl)); ++ fl.l_type = F_UNLCK; ++ fl.l_whence = SEEK_SET; ++ if (fcntl(fileno(it->queuef), F_SETLKW, &fl) == -1) { ++ syslog(LOG_ERR, "%s: failed to unlock queue file: %m", ++ it->queueid); ++ } ++ + switch (error) { + case 0: + unlink(it->queuefn); --- dma-lock-delivery.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From dhorn2000 at gmail.com Sat Jul 4 00:30:05 2009 From: dhorn2000 at gmail.com (David Horn) Date: Sat Jul 4 00:30:12 2009 Subject: ports/136305: [patch] audio/musicpd: 0.15 update Message-ID: <200907040020.n640KHIg053012@www.freebsd.org> >Number: 136305 >Category: ports >Synopsis: [patch] audio/musicpd: 0.15 update >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 00:30:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: David Horn >Release: 7.2 >Organization: >Environment: FreeBSD dhorn-bsd 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:57:44 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: This is an update to audio/musicpd to the new upstream version 0.15 - Updated Makefile with fix to ports/131991 (missing LIBDEPENDS for libcurl) - Added new config knobs and appropriate LIBDEPENDS/CONFIG_ARGS for 0.15 features: - Last.fm experimental streaming input - mms streaming input - Modplug decoder input - Archive file support (bzip2/zip/iso9660) - built-in httpd streaming output >How-To-Repeat: >Fix: See attached unified diff patch file. Patch attached with submission follows: diff -u musicpd-orig/Makefile musicpd/Makefile --- musicpd-orig/Makefile 2009-03-18 12:45:43.000000000 -0400 +++ musicpd/Makefile 2009-07-03 19:33:47.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= musicpd -PORTVERSION= 0.14.2 +PORTVERSION= 0.15 CATEGORIES= audio ipv6 MASTER_SITES= SF DISTNAME= mpd-${PORTVERSION} @@ -14,7 +14,8 @@ MAINTAINER= jo.lindqvist@gmail.com COMMENT= A remote-controllable music daemon -LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad +LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad \ + curl.5:${PORTSDIR}/ftp/curl USE_GMAKE= yes USE_BZIP2= yes @@ -34,21 +35,26 @@ SUB_FILES= pkg-message -OPTIONS= FLAC "Support FLAC audio format" on \ - VORBIS "Support OGG Vorbis audio format" on \ +OPTIONS= ID3TAG "Support ID3 v1/v2 tags" on \ + IPV6 "Support IPv6 protocol" on \ + FLAC "Support FLAC audio format" on \ + VORBIS "Support OGG Vorbis audio format" on \ + WAV "Support WAV audio format" on \ + FFMPEG "Support FFMPEG (wma aiff ac3 ape...)" on \ TREMOR "Support Tremor (integer-only Vorbis)" off \ - WAV "Support WAV audio format" on \ AAC "Support MP4/AAC audio format" off \ MUSEPACK "Support MPC audio format" off \ - MOD "Support MOD audio format" off \ - FFMPEG "Support FFMPEG (wma aiff ac3 ape...)" on \ - ID3TAG "Support ID3 v1/v2 tags" on \ - IPV6 "Support IPv6 protocol" on \ + MIKMOD "Support MOD audio format" off \ + MODPLUG "Support MODPLUG decoder" off \ + ARCHIVE "Support bzip2/zip/iso9660 archive" off \ + MMS "Support MMS stream input" off \ + LASTFM "Support Last.FM stream input (experimental)" off \ AO "Support libao audio library" off \ PULSEAUDIO "Support PulseAudio sound server" off \ JACK "Support JACK audio server" off \ SHOUTCAST "Support for OGG Icecast and Shoutcast" off \ LAME "Support for MP3 Icecast Streams" off \ + HTTPD "Support for httpd output streaming" off \ SAMPLERATE "Support sample rate conversion" off .include @@ -61,7 +67,7 @@ .endif .if defined(WITHOUT_VORBIS) -CONFIGURE_ARGS+=--disable-oggvorbis +CONFIGURE_ARGS+=--disable-vorbis .else LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis .endif @@ -78,10 +84,17 @@ .endif .if defined(WITH_LAME) -CONFIGURE_ARGS+=--enable-shout-mp3 +CONFIGURE_ARGS+=--enable-lame-encoder \ + --enable-shout LIB_DEPENDS+= mp3lame.0:${PORTSDIR}/audio/lame .else -CONFIGURE_ARGS+=--disable-shout-mp3 +CONFIGURE_ARGS+=--disable-lame-encoder +.endif + +.if defined(WITH_HTTPD) +CONFIGURE_ARGS+=--enable-httpd-output +.else +CONFIGURE_ARGS+=--disable-httpd-output .endif .if defined(WITHOUT_WAV) @@ -96,10 +109,26 @@ CONFIGURE_ARGS+=--disable-mpc .endif -.if defined(WITH_MOD) +.if defined(WITH_MIKMOD) LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod +CONFIGURE_ARGS+=--enable-mikmod +.else +CONFIGURE_ARGS+=--disable-mikmod +.endif + +.if defined(WITH_MODPLUG) +LIB_DEPENDS+= modplug.0:${PORTSDIR}/audio/libmodplug +CONFIGURE_ARGS+=--enable-modplug .else -CONFIGURE_ARGS+=--disable-mod +CONFIGURE_ARGS+=--disable-modplug +.endif + +.if defined(WITH_ARCHIVE) +CONFIGURE_ARGS+=--enable-bzip2 \ + --enable-zip \ + --enable-iso9660 +LIB_DEPENDS+= zzip.13:${PORTSDIR}/devel/zziplib \ + iso9660.5:${PORTSDIR}/sysutils/libcdio .endif .if defined(WITHOUT_FFMPEG) @@ -110,6 +139,19 @@ avutil.1:${PORTSDIR}/multimedia/ffmpeg .endif +.if defined(WITH_LASTFM) +CONFIGURE_ARGS+=--enable-lastfm +.else +CONFIGURE_ARGS+=--disable-lastfm +.endif + +.if defined(WITH_MMS) +CONFIGURE_ARGS+=--enable-mms +LIBDEPENDS+= libmms.0:${PORTSDIR}/net/libmms +.else +CONFIGURE_ARGS+=--disable-mms +.endif + .if defined(WITHOUT_ID3TAG) CONFIGURE_ARGS+=--disable-id3 .else @@ -123,6 +165,8 @@ .if defined(WITH_AO) CONFIGURE_ARGS+=--enable-ao LIB_DEPENDS+= ao.3:${PORTSDIR}/audio/libao +.else +CONFIGURE_ARGS+=--disable-ao .endif .if defined(WITH_PULSEAUDIO) @@ -141,14 +185,17 @@ # also with tremor since the latter does not support vorbis encoding .if defined(WITH_SHOUTCAST) && !defined(WITH_TREMOR) LIB_DEPENDS+= shout.5:${PORTSDIR}/audio/libshout2 +CONFIGURE_ARGS+=--enable-vorbis-encoder \ + --enable-shout .else -CONFIGURE_ARGS+=--disable-shout-ogg +CONFIGURE_ARGS+=--disable-vorbis-encoder .endif .if defined(WITHOUT_SAMPLERATE) CONFIGURE_ARGS+=--disable-lsr .else LIB_DEPENDS+= samplerate.1:${PORTSDIR}/audio/libsamplerate +CONFIGURE_ARGS+=--enable-lsr .endif .if defined(NOPORTDOCS) diff -u musicpd-orig/distinfo musicpd/distinfo --- musicpd-orig/distinfo 2009-03-18 12:45:43.000000000 -0400 +++ musicpd/distinfo 2009-07-02 23:33:48.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (mpd-0.14.2.tar.bz2) = 66817a4b4c05454e6488f6b821f2a6a3 -SHA256 (mpd-0.14.2.tar.bz2) = 0b3926a141873f179efc3c3b9d296b65d332dbb898340ac5e5d1dd0c3dd9fb20 -SIZE (mpd-0.14.2.tar.bz2) = 287115 +SIZE (mpd-0.15.tar.bz2) = 385833 +MD5 (mpd-0.15.tar.bz2) = 2ed93a60bd703ba46d6794e12cfb5f1d +SHA256 (mpd-0.15.tar.bz2) = 38d4c4073e81585c0f0b1a3b4909f7fecd0305de90f373a9a1c087090e6ddc20 Common subdirectories: musicpd-orig/files and musicpd/files >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 00:30:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 00:30:22 2009 Subject: ports/136305: [patch] audio/musicpd: 0.15 update Message-ID: <200907040030.n640UFYS057094@freefall.freebsd.org> Synopsis: [patch] audio/musicpd: 0.15 update State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Jul 4 00:30:15 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136305 From edwin at FreeBSD.org Sat Jul 4 00:40:07 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Sat Jul 4 00:40:13 2009 Subject: ports/136305: [patch] audio/musicpd: 0.15 update Message-ID: <200907040040.n640e6en065006@freefall.freebsd.org> The following reply was made to PR ports/136305; it has been noted by GNATS. From: Edwin Groothuis To: jo.lindqvist@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/136305: [patch] audio/musicpd: 0.15 update Date: Sat, 4 Jul 2009 00:30:12 UT Maintainer of audio/musicpd, Please note that PR ports/136305 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136305 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From scjamorim at bsd.com.br Sat Jul 4 00:50:04 2009 From: scjamorim at bsd.com.br (Sylvio Cesar) Date: Sat Jul 4 00:50:14 2009 Subject: ports/136306: [PATCH] math/dislin: update to 9.5 Message-ID: <200907040046.n640kCBZ002924@fbsd_tb7st.vida.br> >Number: 136306 >Category: ports >Synopsis: [PATCH] math/dislin: update to 9.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 00:50:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sylvio Cesar >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: System: FreeBSD fbsd_tb7st.vida.br 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC >Description: - Update to 9.5 - Take maintainership Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- dislin-9.5_4.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/math/dislin/Makefile,v retrieving revision 1.35 diff -u -u -r1.35 Makefile --- Makefile 11 Sep 2008 16:50:42 -0000 1.35 +++ Makefile 4 Jul 2009 00:44:26 -0000 @@ -6,14 +6,14 @@ # PORTNAME= dislin -PORTVERSION= 9.3 -PORTREVISION= 3 +PORTVERSION= 9.5 +PORTREVISION= 4 CATEGORIES= math MASTER_SITES= ftp://ftp.gwdg.de/pub/grafik/dislin/unix/ DISTNAME= ${PORTNAME}-${PORTVERSION}.fbsd${BINVER} DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}_${PORTREVISION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= scjamorim@bsd.com.br COMMENT= A scientific data plotting package LIB_DEPENDS= f2c.2:${PORTSDIR}/lang/f2c Index: distinfo-6.0 =================================================================== RCS file: /home/ncvs/ports/math/dislin/distinfo-6.0,v retrieving revision 1.11 diff -u -u -r1.11 distinfo-6.0 --- distinfo-6.0 11 Sep 2008 16:50:42 -0000 1.11 +++ distinfo-6.0 4 Jul 2009 00:44:26 -0000 @@ -1,3 +1,3 @@ -MD5 (dislin-9.3_3/dislin-9.3.fbsd-6.0.tar.gz) = d622c633f142dc4e9b14f5b33e1b9f0f -SHA256 (dislin-9.3_3/dislin-9.3.fbsd-6.0.tar.gz) = 972f3aa2f2354e0ab64df27afd921ffade211deb4bf2f6af05b3a2b4e111b7c8 -SIZE (dislin-9.3_3/dislin-9.3.fbsd-6.0.tar.gz) = 14779630 +MD5 (dislin-9.5_4/dislin-9.5.fbsd-6.0.tar.gz) = bf17875ffce11dd10fa917075df2a19a +SHA256 (dislin-9.5_4/dislin-9.5.fbsd-6.0.tar.gz) = fb05963bfee3f33b19d391280de536c67560941c77761407982c3d4655aa0955 +SIZE (dislin-9.5_4/dislin-9.5.fbsd-6.0.tar.gz) = 16823244 Index: distinfo-7.0 =================================================================== RCS file: /home/ncvs/ports/math/dislin/distinfo-7.0,v retrieving revision 1.5 diff -u -u -r1.5 distinfo-7.0 --- distinfo-7.0 11 Sep 2008 16:50:42 -0000 1.5 +++ distinfo-7.0 4 Jul 2009 00:44:26 -0000 @@ -1,3 +1,3 @@ -MD5 (dislin-9.3_3/dislin-9.3.fbsd-7.0.tar.gz) = 72d226a283ff24fc00e92857dc5c4756 -SHA256 (dislin-9.3_3/dislin-9.3.fbsd-7.0.tar.gz) = 7a13942489269a809a283e8fb4a4eba45b8096e1fdf5164b1f6a22da533e29b6 -SIZE (dislin-9.3_3/dislin-9.3.fbsd-7.0.tar.gz) = 15102160 +MD5 (dislin-9.5_4/dislin-9.5.fbsd-7.0.tar.gz) = 1235014e9397ec5912667f30003485f3 +SHA256 (dislin-9.5_4/dislin-9.5.fbsd-7.0.tar.gz) = 59f9747ff74e961ef82fe01f4c73e5d70b3ac5129e9f4f0c2951dd7452c958f9 +SIZE (dislin-9.5_4/dislin-9.5.fbsd-7.0.tar.gz) = 16848340 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/math/dislin/pkg-plist,v retrieving revision 1.4 diff -u -u -r1.4 pkg-plist --- pkg-plist 16 Feb 2008 22:52:24 -0000 1.4 +++ pkg-plist 4 Jul 2009 00:44:27 -0000 @@ -15,8 +15,6 @@ bin/gclhelp bin/gclhlp bin/gclman -dislin/DISLIN -dislin/README dislin/bin/clink dislin/bin/disaps dislin/bin/disdrv @@ -35,9 +33,725 @@ dislin/bin/gclhelp dislin/bin/gclhlp dislin/bin/gclman +dislin/chf/abs3pt.chf +dislin/chf/addlab.chf +dislin/chf/angle.chf +dislin/chf/arcell.chf +dislin/chf/areaf.chf +dislin/chf/autres.chf +dislin/chf/ax2grf.chf +dislin/chf/ax3len.chf +dislin/chf/axclrs.chf +dislin/chf/axends.chf +dislin/chf/axgit.chf +dislin/chf/axis3d.chf +dislin/chf/axsbgd.chf +dislin/chf/axslen.chf +dislin/chf/axsorg.chf +dislin/chf/axspos.chf +dislin/chf/axsscl.chf +dislin/chf/axstyp.chf +dislin/chf/barbor.chf +dislin/chf/barclr.chf +dislin/chf/bargrp.chf +dislin/chf/barmod.chf +dislin/chf/baropt.chf +dislin/chf/barpos.chf +dislin/chf/bars3d.chf +dislin/chf/bars.chf +dislin/chf/bartyp.chf +dislin/chf/barwth.chf +dislin/chf/basalf.chf +dislin/chf/basdat.chf +dislin/chf/bezier.chf +dislin/chf/bitsi2.chf +dislin/chf/bitsi4.chf +dislin/chf/bmpfnt.chf +dislin/chf/bmpmod.chf +dislin/chf/box2d.chf +dislin/chf/box3d.chf +dislin/chf/center.chf +dislin/chf/cgmbgd.chf +dislin/chf/cgmpic.chf +dislin/chf/cgmver.chf +dislin/chf/chaang.chf +dislin/chf/chacod.chf +dislin/chf/chaspc.chf +dislin/chf/chawth.chf +dislin/chf/chnatt.chf +dislin/chf/chnbar.chf +dislin/chf/chncrv.chf +dislin/chf/chndot.chf +dislin/chf/chndsh.chf +dislin/chf/chnpie.chf +dislin/chf/circ3p.chf +dislin/chf/circle.chf +dislin/chf/circsp.chf +dislin/chf/clip3d.chf +dislin/chf/closfl.chf +dislin/chf/clpbor.chf +dislin/chf/clpmod.chf +dislin/chf/clpwin.chf +dislin/chf/clrcyc.chf +dislin/chf/clrmod.chf +dislin/chf/clswin.chf +dislin/chf/color.chf +dislin/chf/colran.chf +dislin/chf/colray.chf +dislin/chf/complx.chf +dislin/chf/conclr.chf +dislin/chf/concrv.chf +dislin/chf/cone3d.chf +dislin/chf/confll.chf +dislin/chf/congap.chf +dislin/chf/conlab.chf +dislin/chf/conmat.chf +dislin/chf/conmod.chf +dislin/chf/conn3d.chf +dislin/chf/connpt.chf +dislin/chf/conpts.chf +dislin/chf/conshd.chf +dislin/chf/contri.chf +dislin/chf/contur.chf +dislin/chf/cross.chf +dislin/chf/crvmat.chf +dislin/chf/crvtri.chf +dislin/chf/csrkey.chf +dislin/chf/csrmod.chf +dislin/chf/csrmov.chf +dislin/chf/csrpos.chf +dislin/chf/csrpt1.chf +dislin/chf/csrpts.chf +dislin/chf/csrrec.chf +dislin/chf/csrtyp.chf +dislin/chf/csruni.chf +dislin/chf/curv3d.chf +dislin/chf/curve3.chf +dislin/chf/curve.chf +dislin/chf/curvmp.chf +dislin/chf/curvx3.chf +dislin/chf/curvy3.chf +dislin/chf/cyli3d.chf +dislin/chf/dash.chf +dislin/chf/dashl.chf +dislin/chf/dashm.chf +dislin/chf/dbffin.chf +dislin/chf/dbfini.chf +dislin/chf/delglb.chf +dislin/chf/digits.chf +dislin/chf/disalf.chf +dislin/chf/disfin.chf +dislin/chf/disini.chf +dislin/chf/disk3d.chf +dislin/chf/doevnt.chf +dislin/chf/dot.chf +dislin/chf/dotl.chf +dislin/chf/duplx.chf +dislin/chf/dwgbut.chf +dislin/chf/dwgfil.chf +dislin/chf/dwglis.chf +dislin/chf/dwgmsg.chf +dislin/chf/dwgtxt.chf +dislin/chf/ellips.chf +dislin/chf/endgrf.chf +dislin/chf/erase.chf +dislin/chf/errbar.chf +dislin/chf/errdev.chf +dislin/chf/errfil.chf +dislin/chf/errmod.chf +dislin/chf/eushft.chf +dislin/chf/expzlb.chf +dislin/chf/fcha.chf +dislin/chf/field3d.chf +dislin/chf/field.chf +dislin/chf/filbox.chf +dislin/chf/filclr.chf +dislin/chf/filmod.chf +dislin/chf/filopt.chf +dislin/chf/fixspc.chf +dislin/chf/flab3d.chf +dislin/chf/flen.chf +dislin/chf/frame.chf +dislin/chf/frmclr.chf +dislin/chf/frmess.chf +dislin/chf/gapcrv.chf +dislin/chf/gaxpar.chf +dislin/chf/getalf.chf +dislin/chf/getang.chf +dislin/chf/getbpp.chf +dislin/chf/getclp.chf +dislin/chf/getclr.chf +dislin/chf/getdig.chf +dislin/chf/getdsp.chf +dislin/chf/getfil.chf +dislin/chf/getgrf.chf +dislin/chf/gethgt.chf +dislin/chf/gethnm.chf +dislin/chf/getind.chf +dislin/chf/getlab.chf +dislin/chf/getlen.chf +dislin/chf/getlev.chf +dislin/chf/getlin.chf +dislin/chf/getlit.chf +dislin/chf/getmat.chf +dislin/chf/getmfl.chf +dislin/chf/getmix.chf +dislin/chf/getor.chf +dislin/chf/getpag.chf +dislin/chf/getpat.chf +dislin/chf/getplv.chf +dislin/chf/getpos.chf +dislin/chf/getran.chf +dislin/chf/getres.chf +dislin/chf/getrgb.chf +dislin/chf/getscl.chf +dislin/chf/getscr.chf +dislin/chf/getshf.chf +dislin/chf/getsp1.chf +dislin/chf/getsp2.chf +dislin/chf/getsym.chf +dislin/chf/gettcl.chf +dislin/chf/gettic.chf +dislin/chf/gettyp.chf +dislin/chf/getuni.chf +dislin/chf/getver.chf +dislin/chf/getvk.chf +dislin/chf/getvlt.chf +dislin/chf/getwid.chf +dislin/chf/getwin.chf +dislin/chf/getxid.chf +dislin/chf/gifmod.chf +dislin/chf/gmxalf.chf +dislin/chf/gothic.chf +dislin/chf/grace.chf +dislin/chf/graf3.chf +dislin/chf/graf3d.chf +dislin/chf/graf.chf +dislin/chf/grafmp.chf +dislin/chf/grafp.chf +dislin/chf/grdpol.chf +dislin/chf/grffin.chf +dislin/chf/grfini.chf +dislin/chf/grid3d.chf +dislin/chf/grid.chf +dislin/chf/gridmp.chf +dislin/chf/gwgatt.chf +dislin/chf/gwgbox.chf +dislin/chf/gwgbut.chf +dislin/chf/gwgfil.chf +dislin/chf/gwgflt.chf +dislin/chf/gwgint.chf +dislin/chf/gwglis.chf +dislin/chf/gwgscl.chf +dislin/chf/gwgtbf.chf +dislin/chf/gwgtbi.chf +dislin/chf/gwgtbl.chf +dislin/chf/gwgtbs.chf +dislin/chf/gwgtxt.chf +dislin/chf/gwgxid.chf +dislin/chf/height.chf +dislin/chf/helve.chf +dislin/chf/helves.chf +dislin/chf/histog.chf +dislin/chf/hname.chf +dislin/chf/hpgmod.chf +dislin/chf/hsvrgb.chf +dislin/chf/hsym3d.chf +dislin/chf/hsymbl.chf +dislin/chf/htitle.chf +dislin/chf/hwfont.chf +dislin/chf/hworig.chf +dislin/chf/hwpage.chf +dislin/chf/hwscal.chf +dislin/chf/imgbox.chf +dislin/chf/imgclp.chf +dislin/chf/imgfin.chf +dislin/chf/imgfmt.chf +dislin/chf/imgini.chf +dislin/chf/imgmod.chf +dislin/chf/imgsiz.chf +dislin/chf/inccrv.chf +dislin/chf/incdat.chf +dislin/chf/incfil.chf +dislin/chf/incmrk.chf +dislin/chf/indrgb.chf +dislin/chf/intax.chf +dislin/chf/intcha.chf +dislin/chf/intlen.chf +dislin/chf/intrgb.chf +dislin/chf/intutf.chf +dislin/chf/isopts.chf +dislin/chf/itmcat.chf +dislin/chf/itmcnt.chf +dislin/chf/itmstr.chf +dislin/chf/labclr.chf +dislin/chf/labdig.chf +dislin/chf/labdis.chf +dislin/chf/labels.chf +dislin/chf/labjus.chf +dislin/chf/labl3d.chf +dislin/chf/labmod.chf +dislin/chf/labpos.chf +dislin/chf/labtyp.chf +dislin/chf/legclr.chf +dislin/chf/legend.chf +dislin/chf/legini.chf +dislin/chf/leglin.chf +dislin/chf/legopt.chf +dislin/chf/legpat.chf +dislin/chf/legpos.chf +dislin/chf/legtit.chf +dislin/chf/legval.chf +dislin/chf/lfttit.chf +dislin/chf/light.chf +dislin/chf/lincyc.chf +dislin/chf/line.chf +dislin/chf/linesp.chf +dislin/chf/lintyp.chf +dislin/chf/linwid.chf +dislin/chf/litmod.chf +dislin/chf/litop3.chf +dislin/chf/litopt.chf +dislin/chf/litpos.chf +dislin/chf/lncap.chf +dislin/chf/lnjoin.chf +dislin/chf/lnmlt.chf +dislin/chf/logtic.chf +dislin/chf/mapbas.chf +dislin/chf/mapfil.chf +dislin/chf/maplab.chf +dislin/chf/maplev.chf +dislin/chf/mapmod.chf +dislin/chf/mapopt.chf +dislin/chf/mappol.chf +dislin/chf/mapref.chf +dislin/chf/mapsph.chf +dislin/chf/marker.chf +dislin/chf/matop3.chf +dislin/chf/matopt.chf +dislin/chf/mdfmat.chf +dislin/chf/messag.chf +dislin/chf/metafl.chf +dislin/chf/mixalf.chf +dislin/chf/mixleg.chf +dislin/chf/mpaepl.chf +dislin/chf/mplang.chf +dislin/chf/mplclr.chf +dislin/chf/mplpos.chf +dislin/chf/mplsiz.chf +dislin/chf/mpslogo.chf +dislin/chf/msgbox.chf +dislin/chf/mshclr.chf +dislin/chf/mshcrv.chf +dislin/chf/mylab.chf +dislin/chf/myline.chf +dislin/chf/mypat.chf +dislin/chf/mysymb.chf +dislin/chf/myvlt.chf +dislin/chf/namdis.chf +dislin/chf/name.chf +dislin/chf/namjus.chf +dislin/chf/neglog.chf +dislin/chf/newmix.chf +dislin/chf/newpag.chf +dislin/chf/nlmess.chf +dislin/chf/nlnumb.chf +dislin/chf/noarln.chf +dislin/chf/nobar.chf +dislin/chf/nobgd.chf +dislin/chf/nochek.chf +dislin/chf/noclip.chf +dislin/chf/nofill.chf +dislin/chf/nograf.chf +dislin/chf/nohide.chf +dislin/chf/noline.chf +dislin/chf/number.chf +dislin/chf/numfmt.chf +dislin/chf/numode.chf +dislin/chf/nwkday.chf +dislin/chf/nxlegn.chf +dislin/chf/nxpixl.chf +dislin/chf/nxposn.chf +dislin/chf/nylegn.chf +dislin/chf/nypixl.chf +dislin/chf/nyposn.chf +dislin/chf/nzposn.chf +dislin/chf/openfl.chf +dislin/chf/opnwin.chf +dislin/chf/origin.chf +dislin/chf/page.chf +dislin/chf/pagera.chf +dislin/chf/pagfll.chf +dislin/chf/paghdr.chf +dislin/chf/pagmod.chf +dislin/chf/pagorg.chf +dislin/chf/pagwin.chf +dislin/chf/patcyc.chf +dislin/chf/pdfbuf.chf +dislin/chf/pdfmod.chf +dislin/chf/pdfmrk.chf +dislin/chf/penwid.chf +dislin/chf/piebor.chf +dislin/chf/pie.chf +dislin/chf/pieclr.chf +dislin/chf/pieexp.chf +dislin/chf/piegrf.chf +dislin/chf/pielab.chf +dislin/chf/pieopt.chf +dislin/chf/pietyp.chf +dislin/chf/pievec.chf +dislin/chf/pike3d.chf +dislin/chf/plat3d.chf +dislin/chf/pngmod.chf +dislin/chf/point.chf +dislin/chf/polar.chf +dislin/chf/polclp.chf +dislin/chf/polcrv.chf +dislin/chf/polmod.chf +dislin/chf/pos2pt.chf +dislin/chf/pos3pt.chf +dislin/chf/posifl.chf +dislin/chf/projct.chf +dislin/chf/psfont.chf +dislin/chf/psmode.chf +dislin/chf/pyra3d.chf +dislin/chf/qplbar.chf +dislin/chf/qplclr.chf +dislin/chf/qplcon.chf +dislin/chf/qplot.chf +dislin/chf/qplpie.chf +dislin/chf/qplsca.chf +dislin/chf/qplsur.chf +dislin/chf/quad3d.chf +dislin/chf/rbfpng.chf +dislin/chf/rbmp.chf +dislin/chf/readfl.chf +dislin/chf/reawgt.chf +dislin/chf/recfll.chf +dislin/chf/rectan.chf +dislin/chf/rel3pt.chf +dislin/chf/resatt.chf +dislin/chf/reset.chf +dislin/chf/revscr.chf +dislin/chf/rgbhsv.chf +dislin/chf/rgif.chf +dislin/chf/rgtlab.chf +dislin/chf/rimage.chf +dislin/chf/rlarc.chf +dislin/chf/rlarea.chf +dislin/chf/rlcirc.chf +dislin/chf/rlconn.chf +dislin/chf/rlell.chf +dislin/chf/rline.chf +dislin/chf/rlmess.chf +dislin/chf/rlnumb.chf +dislin/chf/rlpie.chf +dislin/chf/rlpoin.chf +dislin/chf/rlrec.chf +dislin/chf/rlrnd.chf +dislin/chf/rlsec.chf +dislin/chf/rlstrt.chf +dislin/chf/rlsymb.chf +dislin/chf/rlvec.chf +dislin/chf/rlwind.chf +dislin/chf/rndrec.chf +dislin/chf/rot3d.chf +dislin/chf/rpixel.chf +dislin/chf/rpixls.chf +dislin/chf/rpng.chf +dislin/chf/rppm.chf +dislin/chf/rpxrow.chf +dislin/chf/rtiff.chf +dislin/chf/rvynam.chf +dislin/chf/scale.chf +dislin/chf/sclfac.chf +dislin/chf/sclmod.chf +dislin/chf/scrmod.chf +dislin/chf/sector.chf +dislin/chf/selwin.chf +dislin/chf/sendbf.chf +dislin/chf/sendmb.chf +dislin/chf/sendok.chf +dislin/chf/serif.chf +dislin/chf/setbas.chf +dislin/chf/setcbk.chf +dislin/chf/setclr.chf +dislin/chf/setcsr.chf +dislin/chf/setexp.chf +dislin/chf/setfce.chf +dislin/chf/setfil.chf +dislin/chf/setgrf.chf +dislin/chf/setind.chf +dislin/chf/setmix.chf +dislin/chf/setpag.chf +dislin/chf/setres.chf +dislin/chf/setrgb.chf +dislin/chf/setscl.chf +dislin/chf/setvlt.chf +dislin/chf/setxid.chf +dislin/chf/shdafr.chf +dislin/chf/shdasi.chf +dislin/chf/shdaus.chf +dislin/chf/shdcha.chf +dislin/chf/shdcrv.chf +dislin/chf/shdeur.chf +dislin/chf/shdmap.chf +dislin/chf/shdmod.chf +dislin/chf/shdnor.chf +dislin/chf/shdpat.chf +dislin/chf/shdsou.chf +dislin/chf/shdusa.chf +dislin/chf/shield.chf +dislin/chf/shlcir.chf +dislin/chf/shldel.chf +dislin/chf/shlell.chf +dislin/chf/shlind.chf +dislin/chf/shlpie.chf +dislin/chf/shlpol.chf +dislin/chf/shlrct.chf +dislin/chf/shlrec.chf +dislin/chf/shlres.chf +dislin/chf/shlsur.chf +dislin/chf/shlvis.chf +dislin/chf/simplx.chf +dislin/chf/skipfl.chf +dislin/chf/smxalf.chf +dislin/chf/solid.chf +dislin/chf/sortr1.chf +dislin/chf/sortr2.chf +dislin/chf/sphe3d.chf +dislin/chf/spline.chf +dislin/chf/splmod.chf +dislin/chf/strt3d.chf +dislin/chf/strtpt.chf +dislin/chf/surclr.chf +dislin/chf/surfce.chf +dislin/chf/surfcp.chf +dislin/chf/surfun.chf +dislin/chf/suriso.chf +dislin/chf/surmat.chf +dislin/chf/surmsh.chf +dislin/chf/suropt.chf +dislin/chf/surshd.chf +dislin/chf/sursze.chf +dislin/chf/surtri.chf +dislin/chf/survis.chf +dislin/chf/swapi2.chf +dislin/chf/swapi4.chf +dislin/chf/swgatt.chf +dislin/chf/swgbox.chf +dislin/chf/swgbut.chf +dislin/chf/swgcb2.chf +dislin/chf/swgcbk.chf +dislin/chf/swgclr.chf +dislin/chf/swgdrw.chf +dislin/chf/swgfil.chf +dislin/chf/swgflt.chf +dislin/chf/swgfnt.chf +dislin/chf/swgfoc.chf +dislin/chf/swghlp.chf +dislin/chf/swgint.chf +dislin/chf/swgjus.chf +dislin/chf/swglis.chf +dislin/chf/swgmix.chf +dislin/chf/swgmrg.chf +dislin/chf/swgoff.chf +dislin/chf/swgopt.chf +dislin/chf/swgpop.chf +dislin/chf/swgpos.chf +dislin/chf/swgray.chf +dislin/chf/swgscl.chf +dislin/chf/swgsiz.chf +dislin/chf/swgspc.chf +dislin/chf/swgstp.chf +dislin/chf/swgtbf.chf +dislin/chf/swgtbi.chf +dislin/chf/swgtbl.chf +dislin/chf/swgtbs.chf +dislin/chf/swgtit.chf +dislin/chf/swgtxt.chf +dislin/chf/swgtyp.chf +dislin/chf/swgval.chf +dislin/chf/swgwin.chf +dislin/chf/swgwth.chf +dislin/chf/symb3d.chf +dislin/chf/symbol.chf +dislin/chf/symfil.chf +dislin/chf/symrot.chf +dislin/chf/tellfl.chf +dislin/chf/texmod.chf +dislin/chf/texopt.chf +dislin/chf/texval.chf +dislin/chf/thkc3d.chf +dislin/chf/thkcrv.chf +dislin/chf/thrfin.chf +dislin/chf/thrini.chf +dislin/chf/ticks.chf +dislin/chf/ticlen.chf +dislin/chf/ticmod.chf +dislin/chf/ticpos.chf +dislin/chf/tifmod.chf +dislin/chf/tiforg.chf +dislin/chf/tifwin.chf +dislin/chf/timopt.chf +dislin/chf/titjus.chf +dislin/chf/title.chf +dislin/chf/titlin.chf +dislin/chf/titpos.chf +dislin/chf/torus3d.chf +dislin/chf/tprfin.chf +dislin/chf/tprini.chf +dislin/chf/tprmod.chf +dislin/chf/tprval.chf +dislin/chf/tr3res.chf +dislin/chf/tr3rot.chf +dislin/chf/tr3scl.chf +dislin/chf/tr3shf.chf +dislin/chf/trfco1.chf +dislin/chf/trfco2.chf +dislin/chf/trfco3.chf +dislin/chf/trfdat.chf +dislin/chf/trfmat.chf +dislin/chf/trfrel.chf +dislin/chf/trfres.chf +dislin/chf/trfrot.chf +dislin/chf/trfscl.chf +dislin/chf/trfshf.chf +dislin/chf/tria3d.chf +dislin/chf/triang.chf +dislin/chf/trifll.chf +dislin/chf/triplx.chf +dislin/chf/tripts.chf +dislin/chf/trmlen.chf +dislin/chf/tube3d.chf +dislin/chf/txtjus.chf +dislin/chf/unit.chf +dislin/chf/units.chf +dislin/chf/upstr.chf +dislin/chf/utfint.chf +dislin/chf/vang3d.chf +dislin/chf/vclp3d.chf +dislin/chf/vecclr.chf +dislin/chf/vecf3d.chf +dislin/chf/vecopt.chf +dislin/chf/vector.chf +dislin/chf/vectr3.chf +dislin/chf/vfoc3d.chf +dislin/chf/view3d.chf +dislin/chf/vkxbar.chf +dislin/chf/vkybar.chf +dislin/chf/vkytit.chf +dislin/chf/vltfil.chf +dislin/chf/vtx3d.chf +dislin/chf/vtxc3d.chf +dislin/chf/vtxn3d.chf +dislin/chf/vup3d.chf +dislin/chf/wgapp.chf +dislin/chf/wgbas.chf +dislin/chf/wgbox.chf +dislin/chf/wgbut.chf +dislin/chf/wgcmd.chf +dislin/chf/wgdlis.chf +dislin/chf/wgdraw.chf +dislin/chf/wgfil.chf +dislin/chf/wgfin.chf +dislin/chf/wgini.chf +dislin/chf/wglab.chf +dislin/chf/wglis.chf +dislin/chf/wgltxt.chf +dislin/chf/wgok.chf +dislin/chf/wgpbar.chf +dislin/chf/wgpbut.chf +dislin/chf/wgpop.chf +dislin/chf/wgquit.chf +dislin/chf/wgscl.chf +dislin/chf/wgstxt.chf +dislin/chf/wgtbl.chf +dislin/chf/wgtxt.chf +dislin/chf/widbar.chf +dislin/chf/wimage.chf +dislin/chf/winapp.chf +dislin/chf/windbr.chf +dislin/chf/window.chf +dislin/chf/winfin.chf +dislin/chf/winfnt.chf +dislin/chf/winid.chf +dislin/chf/winkey.chf +dislin/chf/winmod.chf +dislin/chf/winopt.chf +dislin/chf/winsiz.chf +dislin/chf/wintit.chf +dislin/chf/wmfmod.chf +dislin/chf/world.chf +dislin/chf/wpixel.chf +dislin/chf/wpixls.chf +dislin/chf/wpxrow.chf +dislin/chf/writfl.chf +dislin/chf/wtiff.chf +dislin/chf/x11fnt.chf +dislin/chf/x11mod.chf +dislin/chf/x2dpos.chf +dislin/chf/x3dabs.chf +dislin/chf/x3dpos.chf +dislin/chf/x3drel.chf +dislin/chf/xaxgit.chf +dislin/chf/xaxis.chf +dislin/chf/xaxlg.chf +dislin/chf/xaxmap.chf +dislin/chf/xcross.chf +dislin/chf/xdraw.chf +dislin/chf/xinvrs.chf +dislin/chf/xmove.chf +dislin/chf/xposn.chf +dislin/chf/y2dpos.chf +dislin/chf/y3dabs.chf +dislin/chf/y3dpos.chf +dislin/chf/y3drel.chf +dislin/chf/yaxgit.chf +dislin/chf/yaxis.chf +dislin/chf/yaxlg.chf +dislin/chf/yaxmap.chf +dislin/chf/ycross.chf +dislin/chf/yinvrs.chf +dislin/chf/yposn.chf +dislin/chf/z3dpos.chf +dislin/chf/zaxis.chf +dislin/chf/zaxlg.chf +dislin/chf/zbfers.chf +dislin/chf/zbffin.chf +dislin/chf/zbfini.chf +dislin/chf/zbflin.chf +dislin/chf/zbfres.chf +dislin/chf/zbfscl.chf +dislin/chf/zbftri.chf +dislin/chf/zscale.chf dislin/device.dat +dislin/DISLIN +dislin/dislin.dl dislin/dislin.h dislin/dislin.log +dislin/examples/ch/bars3d.ch +dislin/examples/ch/bars.ch +dislin/examples/ch/chart3d.ch +dislin/examples/ch/color3d.ch +dislin/examples/ch/contour2.ch +dislin/examples/ch/contour.ch +dislin/examples/ch/curve.ch +dislin/examples/ch/dislin.h +dislin/examples/ch/intpol.ch +dislin/examples/ch/legend.ch +dislin/examples/ch/pies.ch +dislin/examples/ch/polar.ch +dislin/examples/ch/solids.ch +dislin/examples/ch/spheres.ch +dislin/examples/ch/surface2.ch +dislin/examples/ch/surface3.ch +dislin/examples/ch/surface.ch +dislin/examples/ch/surfcp.ch +dislin/examples/ch/symbols.ch +dislin/examples/ch/tex.ch +dislin/examples/ch/widgets.ch +dislin/examples/ch/world.ch dislin/examples/exa_c.c dislin/examples/exa_f77.f dislin/examples/map_c.c @@ -61,20 +775,20 @@ dislin/gcldir/curve.gcl dislin/gcldir/legend.gcl dislin/gcldir/pie.gcl -dislin/gcldir/plot.gcl -dislin/gcldir/plot.ini +dislin/gcldir/plot3cb.gcl dislin/gcldir/plot3.gcl dislin/gcldir/plot3.ini -dislin/gcldir/plot3cb.gcl +dislin/gcldir/plot3rcb.gcl dislin/gcldir/plot3r.gcl dislin/gcldir/plot3r.ini -dislin/gcldir/plot3rcb.gcl dislin/gcldir/plotcb.gcl +dislin/gcldir/plot.gcl +dislin/gcldir/plot.ini +dislin/gcldir/scattrcb.gcl dislin/gcldir/scattr.gcl dislin/gcldir/scattr.ini -dislin/gcldir/scattrcb.gcl -dislin/gcldir/surface.gcl dislin/gcldir/surface2.gcl +dislin/gcldir/surface.gcl dislin/gcldir/widgets.gcl dislin/gcldir/world.gcl dislin/hlp/gclhlp0.txt @@ -96,9 +810,9 @@ dislin/hlp/hlp3.txt dislin/hlp/hlp4.txt dislin/hlp/hlp5.txt -dislin/hlp/hlp6.txt dislin/hlp/hlp6_1.txt dislin/hlp/hlp6_2.txt +dislin/hlp/hlp6.txt dislin/hlp/hlp7.txt dislin/hlp/hlp8.txt dislin/hlp/hlp9.txt @@ -107,8 +821,8 @@ dislin/java/conshd.java dislin/java/contour.java dislin/java/curve.java -dislin/java/dislin-%%VER%%.java.tar.gz dislin/java/dislin.jar +dislin/java/dislin-%%VER%%.java.tar.gz dislin/java/intpol.java dislin/java/legend.java dislin/java/logscl.java @@ -121,32 +835,33 @@ dislin/java/symbols.java dislin/java/vectors.java dislin/java/world.java -dislin/lib/dislin-%%VER%%.a -dislin/lib/dislin-%%VER%%.so -dislin/lib/dislin_d-%%VER%%.a -dislin/lib/dislin_d-%%VER%%.so dislin/libdislin.a -dislin/libdislin.so -dislin/libdislin.so.9 dislin/libdislin_d.a dislin/libdislin_d.so dislin/libdislin_d.so.9 +dislin/lib/dislin_d-%%VER%%.a +dislin/lib/dislin_d-%%VER%%.so +dislin/libdislin.so +dislin/libdislin.so.9 +dislin/lib/dislin-%%VER%%.a +dislin/lib/dislin-%%VER%%.so dislin/libdislnc.a -dislin/libdislnc.so -dislin/libdislnc.so.9 dislin/libdislnc_d.a dislin/libdislnc_d.so dislin/libdislnc_d.so.9 +dislin/libdislnc.so +dislin/libdislnc.so.9 dislin/libg2c.so dislin/libg2c.so.2 +dislin/license.txt dislin/man/appa.txt dislin/man/appb.txt dislin/man/appc.txt dislin/man/contents.txt dislin/man/gclman0.txt -dislin/man/gclman1.txt dislin/man/gclman10.txt dislin/man/gclman11.txt +dislin/man/gclman1.txt dislin/man/gclman2.txt dislin/man/gclman3.txt dislin/man/gclman4.txt @@ -156,7 +871,6 @@ dislin/man/gclman8.txt dislin/man/gclman9.txt dislin/man/kap0.txt -dislin/man/kap1.txt dislin/man/kap10.txt dislin/man/kap11.txt dislin/man/kap12.txt @@ -164,14 +878,15 @@ dislin/man/kap14.txt dislin/man/kap15.txt dislin/man/kap16.txt +dislin/man/kap1.txt dislin/man/kap2.txt dislin/man/kap3.txt dislin/man/kap4.txt dislin/man/kap5.txt -dislin/man/kap6.txt dislin/man/kap6_1.txt dislin/man/kap6_2.txt dislin/man/kap6_3.txt +dislin/man/kap6.txt dislin/man/kap7.txt dislin/man/kap8.txt dislin/man/kap9.txt @@ -182,13 +897,15 @@ dislin/map/map4.dat dislin/map/map5.dat dislin/map/map6.dat -dislin/perl/Dislin.pm -dislin/perl/Dislin.so +dislin/map/map7.dat +dislin/map/map8.dat dislin/perl/areaf.pl dislin/perl/color3d.pl dislin/perl/conshd.pl dislin/perl/contour.pl dislin/perl/curve.pl +dislin/perl/Dislin.pm +dislin/perl/Dislin.so dislin/perl/dislin-%%VER%%.perl.tar.gz dislin/perl/intpol.pl dislin/perl/legend.pl @@ -208,8 +925,8 @@ dislin/python/conshd.py dislin/python/contour.py dislin/python/curve.py -dislin/python/dislin-%%VER%%.python.tar.gz dislin/python/dislinmodule.so +dislin/python/dislin-%%VER%%.python.tar.gz dislin/python/intpol.py dislin/python/legend.py dislin/python/logscl.py @@ -223,21 +940,24 @@ dislin/python/vectors.py dislin/python/widgets.py dislin/python/world.py +dislin/README dislin/real64/dislin.h lib/libdislin.a -lib/libdislin.so.%%MAJ%% lib/libdislin_d.a lib/libdislin_d.so.%%MAJ%% -@dirrm dislin/real64 -@dirrm dislin/python -@dirrm dislin/perl -@dirrm dislin/map -@dirrm dislin/man -@dirrm dislin/lib -@dirrm dislin/java -@dirrm dislin/hlp -@dirrm dislin/gcldir -@dirrm dislin/fonts -@dirrm dislin/examples +lib/libdislin.so.%%MAJ%% @dirrm dislin/bin +@dirrm dislin/chf +@dirrm dislin/examples/ch +@dirrm dislin/examples +@dirrm dislin/fonts +@dirrm dislin/gcldir +@dirrm dislin/hlp +@dirrm dislin/java +@dirrm dislin/lib +@dirrm dislin/man +@dirrm dislin/map +@dirrm dislin/perl +@dirrm dislin/python +@dirrm dislin/real64 @dirrm dislin --- dislin-9.5_4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 00:50:17 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 00:50:25 2009 Subject: ports/136306: [PATCH] math/dislin: update to 9.5 Message-ID: <200907040050.n640oGwp073137@freefall.freebsd.org> Synopsis: [PATCH] math/dislin: update to 9.5 Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 00:50:16 UTC 2009 Responsible-Changed-Why: araujo@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136306 From samesame at akruijff.dds.nl Sat Jul 4 01:10:04 2009 From: samesame at akruijff.dds.nl (Alex de Kruijff) Date: Sat Jul 4 01:10:11 2009 Subject: ports/136307: [MAINTAINER] sysutils/samesame Message-ID: <200907040100.n6410HLQ052061@Server1.lan> >Number: 136307 >Category: ports >Synopsis: [MAINTAINER] sysutils/samesame >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 01:10:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alex de Kruijff >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: - Please remove the patch file - I've included a test tartet. If this fails and breaks the port, then please remove the target. I would appreciate if you where to mail me the log in that case. --- Makefile.diff begins here --- --- Makefile.orig Sat Jul 4 00:42:13 2009 +++ Makefile Sat Jul 4 02:56:07 2009 @@ -4,9 +4,9 @@ # # $FreeBSD: ports/sysutils/samesame/Makefile,v 1.7 2009/06/30 20:43:11 dhn Exp $ + PORTNAME= samesame -PORTVERSION= 1.2 -PORTREVISION= 1 +PORTVERSION= 1.3 CATEGORIES= sysutils MASTER_SITES= http://samesame.kruijff.org/ \ ${MASTER_SITE_LOCAL} @@ -18,56 +18,50 @@ CONFLICTS= samefile-[0-9]* MAN1= samearchive.1 samearchive-lite.1 samefile.1 samelink.1 -MANCOMPRESSED= yes +MANCOMPRESSED= no PLIST_FILES= bin/samearchive bin/samefile \ bin/samearchive-lite bin/samelink \ etc/rc.d/samesame.sh +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --mandir=${PREFIX}/man USE_BZIP2= yes OPTIONS= DEBUG "Enables debugging support" Off \ - DISK_STORAGE "Allow temporarily storage paths on disk" On \ + DISK_STORAGE "Allows temporarily storage paths on disk" On \ LOGIC "Determine results by using logic when posible" On \ TEST "Run quality assurance test" Off .include .if defined(WITH_DEBUG) -CFLAGS+= -DDEBUG +CONFIGURE_ARGS+= --enable-debug .endif .if defined(WITH_DISK_STORAGE) -CFLAGS+= -DWITH_DISK_STORAGE +CONFIGURE_ARGS+= --enable-disk-storage .endif .if defined(WITHOUT_LOGIC) -CFLAGS+= -DWITHOUT_LOGIC +CONFIGURE_ARGS+= --disable-logic .endif -CFLAGS+= -DWITH_MMAP -CFLAGS+= -D'TEMP_STORAGE_DIR=\"/tmp\"' -CFLAGS+= -DPATH_INIT=256 -CFLAGS+= -DSTATIC_CACHE_CAPACITY=8192 - -post-patch: - @${REINPLACE_CMD} -e 's|@||g' ${WRKSRC}/Makefile - -post-build: -.if defined(WITH_TEST) - cd ${WRKSRC}; ${MAKE} test -.endif +test: build + cd ${WRKSRC}; ${MAKE} check pre-install: .if defined(WITH_TEST) - cd ${WRKSRC}; ${MAKE} test + cd ${WRKSRC}; ${MAKE} check .endif post-install: +.if defined(WITHOUT_DEBUG) ${STRIP_CMD} ${PREFIX}/bin/samefile ${STRIP_CMD} ${PREFIX}/bin/samelink ${STRIP_CMD} ${PREFIX}/bin/samearchive ${STRIP_CMD} ${PREFIX}/bin/samearchive-lite +.endif ${INSTALL_SCRIPT} ${FILESDIR}/samesame.sh ${PREFIX}/etc/rc.d/ + @${CAT} pkg-message .include - --- Makefile.diff ends here --- --- distinfo begins here --- MD5 (samesame-1.3.tar.bz2) = b65526ea0eba1d0f617ade7dd2a3d468 SHA256 (samesame-1.3.tar.bz2) = 2c03b46d19e42470155a4848f02b0c1ced35c2b26875e192fdf9d0bd3de90efc SIZE (samesame-1.3.tar.bz2) = 100829 --- distinfo ends here --- --- pkg-message begins here --- --------------------------------------------------- A 2 clause BSD licence applies to this application: http://samesame.kruijff.org/license.html --------------------------------------------------- --- pkg-message ends here --- >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sat Jul 4 01:50:23 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat Jul 4 01:50:30 2009 Subject: ports/136277: portupgrading security/courier-authlib over-writes existing config files Message-ID: <200907040150.n641oNNS019322@freefall.freebsd.org> Old Synopsis: portupgrading courier-authlib over-writes existing config files New Synopsis: portupgrading security/courier-authlib over-writes existing config files Responsible-Changed-From-To: freebsd-ports-bugs->oliver Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 4 01:49:44 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=136277 From hsmtkk at gmail.com Sat Jul 4 02:40:05 2009 From: hsmtkk at gmail.com (Kouki Hashimoto) Date: Sat Jul 4 02:40:12 2009 Subject: ports/136308: `make fetch' failed in print/pdflib Message-ID: <200907040235.n642ZBAm058924@www.freebsd.org> >Number: 136308 >Category: ports >Synopsis: `make fetch' failed in print/pdflib >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 02:40:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Kouki Hashimoto >Release: 8.0-CURRENT >Organization: private >Environment: FreeBSD black.xenon.homeunix.net 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Thu Jul 2 20:47:41 JST 2009 root@black.xenon.homeunix.net:/usr/obj/usr/src/sys/BLACK i386 >Description: `make fetch' failed in print/pdflib. # cd /usr/ports/print/pdflib # make fetch ===> Vulnerability check disabled, database not found => PDFlib-Lite-7.0.3.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://www.pdflib.com/binaries/PDFlib/703/. fetch: http://www.pdflib.com/binaries/PDFlib/703/PDFlib-Lite-7.0.3.tar.gz: Not Found => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/PDFlib-Lite-7.0.3.tar.gz: Unknown error: 0 => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/print/pdflib. on Mar 19 2009, PDFlib Lite source code upgraded from 7.0.3 to 7.0.4 http://www.pdflib.com/download/pdflib-family/pdflib-lite/ >How-To-Repeat: # cd /usr/ports/print/pdflib # make fetch >Fix: To install print/pdflib, I modified Makefile & distinfo. Please check the patch. # cd /usr/ports/print/pdflib # patch -p1 < pdflib_patch.txt # make fetch ===> Vulnerability check disabled, database not found => PDFlib-Lite-7.0.4p4.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://www.pdflib.com/binaries/PDFlib/704/. PDFlib-Lite-7.0.4p4.tar.gz 100% of 6118 kB 183 kBps 00m00s # make install clean => installed successfully. Patch attached with submission follows: diff -r 74be37c06b79 -r 895447918ab7 Makefile --- a/Makefile Sat Jul 04 11:06:17 2009 +0900 +++ b/Makefile Sat Jul 04 11:18:17 2009 +0900 @@ -6,10 +6,10 @@ # PORTNAME= pdflib -PORTVERSION= 7.0.3 +PORTVERSION= 7.0.4 CATEGORIES= print MASTER_SITES= http://www.pdflib.com/binaries/PDFlib/${PORTVERSION:S/.//g}/ -DISTNAME= PDFlib-Lite-${PORTVERSION} +DISTNAME= PDFlib-Lite-${PORTVERSION}p4 MAINTAINER= ale@FreeBSD.org COMMENT= A C library for dynamically generating PDF diff -r 74be37c06b79 -r 895447918ab7 distinfo --- a/distinfo Sat Jul 04 11:06:17 2009 +0900 +++ b/distinfo Sat Jul 04 11:18:17 2009 +0900 @@ -1,3 +1,3 @@ -MD5 (PDFlib-Lite-7.0.3.tar.gz) = 97bcdd73206bae30b322f49d2c0d852b -SHA256 (PDFlib-Lite-7.0.3.tar.gz) = 9420e4d90fdd3accb03fa47679873cf897d2cdd2d72b35486389e283781531ab -SIZE (PDFlib-Lite-7.0.3.tar.gz) = 5898798 +MD5 (PDFlib-Lite-7.0.4p4.tar.gz) = 1765de9c5f2b6c5769a2160eaa911e9a +SHA256 (PDFlib-Lite-7.0.4p4.tar.gz) = c62ed0407038955802e3a15f11724e31bd1f232e1e65ad0bcf23022174c04f4f +SIZE (PDFlib-Lite-7.0.4p4.tar.gz) = 6264932 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 02:40:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 02:40:22 2009 Subject: ports/136308: `make fetch' failed in print/pdflib Message-ID: <200907040240.n642eFqc055669@freefall.freebsd.org> Synopsis: `make fetch' failed in print/pdflib Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 02:40:15 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136308 From nork at FreeBSD.org Sat Jul 4 07:27:39 2009 From: nork at FreeBSD.org (nork@FreeBSD.org) Date: Sat Jul 4 07:27:45 2009 Subject: ports/136298: [MAINTAINER] japanese/eb: update to 4.4.1 Message-ID: <200907040727.n647RdA5082214@freefall.freebsd.org> Synopsis: [MAINTAINER] japanese/eb: update to 4.4.1 Responsible-Changed-From-To: freebsd-ports-bugs->nork Responsible-Changed-By: nork Responsible-Changed-When: Sat Jul 4 07:27:25 UTC 2009 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=136298 From nmh at T3X.ORG Sat Jul 4 07:50:02 2009 From: nmh at T3X.ORG (Nils M Holm) Date: Sat Jul 4 07:50:08 2009 Subject: ports/136309: Maintainer update: lang/s9fes Message-ID: <0MKt2u-1MMzyd2tuk-000oAB@mrelayeu.kundenserver.de> >Number: 136309 >Category: ports >Synopsis: Maintainer update: lang/s9fes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 07:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Nils M Holm >Release: FreeBSD 7.0-RELEASE i386 >Organization: not really >Environment: System: FreeBSD maya.t3x.org 7.0-RELEASE FreeBSD 7.0-RELEASE #4: Sun Mar 1 11:43:23 CET 2009 nmh@maya.t3x.org:/u/local/src/sys/i386/compile/MAYA i386 >Description: Update to 2009-07-04 >How-To-Repeat: >Fix: diff -ru lang/s9fes-old/Makefile lang/s9fes/Makefile --- lang/s9fes-old/Makefile 2009-06-25 20:57:10.000000000 +0200 +++ lang/s9fes/Makefile 2009-07-04 09:42:21.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= s9fes -PORTVERSION= 20090625 +PORTVERSION= 20090704 CATEGORIES= lang scheme MASTER_SITES= http://www.t3x.org/s9fes/ diff -ru lang/s9fes-old/distinfo lang/s9fes/distinfo --- lang/s9fes-old/distinfo 2009-06-25 20:57:10.000000000 +0200 +++ lang/s9fes/distinfo 2009-07-04 09:42:21.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (s9fes-20090625.tar.gz) = 714b6344f3ff031683a47dddf3f0bd84 -SHA256 (s9fes-20090625.tar.gz) = dde208742fa3baa858998d441ba7626ed432563da70c2c34441a9938148a5798 -SIZE (s9fes-20090625.tar.gz) = 189982 +MD5 (s9fes-20090704.tar.gz) = 49b9eda7b31ecd9223b5da2d494861c1 +SHA256 (s9fes-20090704.tar.gz) = 1a8395cbfde0fce161b2a2c6d0aec4d91a773e5929de0dd719bbbfd9a42253c6 +SIZE (s9fes-20090704.tar.gz) = 191202 >Release-Note: >Audit-Trail: >Unformatted: From peter.schuller at infidyne.com Sat Jul 4 08:39:51 2009 From: peter.schuller at infidyne.com (Peter Schuller) Date: Sat Jul 4 08:39:58 2009 Subject: ports/136296: [MAINTAINER] sysutils/duplicity: update to 0.6.01 In-Reply-To: <200907031920.n63JK8pV016860@freefall.freebsd.org> References: <20090703184231.7958C4AE69F@prometheus.scode.org> <200907031920.n63JK8pV016860@freefall.freebsd.org> Message-ID: <20090704083948.GA82157@hyperion.scode.org> Please hold off on this one (or just close it). I've detected some problems in the upstream version with this release too. -- / Peter Schuller PGP userID: 0xE9758B7D or 'Peter Schuller ' Key retrieval: Send an E-Mail to getpgpkey@scode.org E-Mail: peter.schuller@infidyne.com Web: http://www.scode.org -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-ports-bugs/attachments/20090704/53dc8856/attachment.pgp From wenheping at gmail.com Sat Jul 4 09:00:17 2009 From: wenheping at gmail.com (Wen Heping) Date: Sat Jul 4 09:00:23 2009 Subject: ports/136310: [Maintainer Update]biology/p5-Bio-Graphics:update to 1.97 Message-ID: <200907040850.n648oCdg059640@www.freebsd.org> >Number: 136310 >Category: ports >Synopsis: [Maintainer Update]biology/p5-Bio-Graphics:update to 1.97 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 09:00:16 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 1.97 from 1.95 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-07-03 19:07:50.000000000 +0800 +++ Makefile 2009-07-04 01:00:49.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= Bio-Graphics -PORTVERSION= 1.95 +PORTVERSION= 1.97 CATEGORIES= biology perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -35,6 +35,7 @@ Bio::Graphics::DrawTransmembrane.3 \ Bio::Graphics::Feature.3 \ Bio::Graphics::FeatureBase.3 \ + Bio::Graphics::FeatureDir.3 \ Bio::Graphics::FeatureFile.3 \ Bio::Graphics::FeatureFile::Iterator.3 \ Bio::Graphics::Glyph.3 \ @@ -60,9 +61,11 @@ Bio::Graphics::Glyph::generic.3 \ Bio::Graphics::Glyph::graded_segments.3 \ Bio::Graphics::Glyph::group.3 \ + Bio::Graphics::Glyph::hat.3 \ Bio::Graphics::Glyph::heat_map.3 \ Bio::Graphics::Glyph::heat_map_ideogram.3 \ Bio::Graphics::Glyph::heterogeneous_segments.3 \ + Bio::Graphics::Glyph::hidden.3 \ Bio::Graphics::Glyph::hybrid_plot.3 \ Bio::Graphics::Glyph::ideogram.3 \ Bio::Graphics::Glyph::image.3 \ @@ -73,12 +76,14 @@ Bio::Graphics::Glyph::minmax.3 \ Bio::Graphics::Glyph::oval.3 \ Bio::Graphics::Glyph::pentagram.3 \ + Bio::Graphics::Glyph::pairplot.3 \ Bio::Graphics::Glyph::phylo_align.3 \ Bio::Graphics::Glyph::pinsertion.3 \ Bio::Graphics::Glyph::primers.3 \ Bio::Graphics::Glyph::processed_transcript.3 \ Bio::Graphics::Glyph::protein.3 \ Bio::Graphics::Glyph::ragged_ends.3 \ + Bio::Graphics::Glyph::rainbow_gene.3 \ Bio::Graphics::Glyph::redgreen_box.3 \ Bio::Graphics::Glyph::redgreen_segment.3 \ Bio::Graphics::Glyph::repeating_shape.3 \ --- distinfo.orig 2009-07-03 19:07:59.000000000 +0800 +++ distinfo 2009-07-03 19:08:58.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (Bio-Graphics-1.95.tar.gz) = 60885538664998f668af0dbdb26fd8e9 -SHA256 (Bio-Graphics-1.95.tar.gz) = 543aac5f8a2d860ebfb242fb630fa810ef32dfcafce03217ca3fba1a2af701bd -SIZE (Bio-Graphics-1.95.tar.gz) = 624347 +MD5 (Bio-Graphics-1.97.tar.gz) = f83ffe265910b5275e7213617bf82199 +SHA256 (Bio-Graphics-1.97.tar.gz) = 6a91c11ea426f2f2bdc50fb5a983f825321d60a84ed6616c496bce238160c3b1 +SIZE (Bio-Graphics-1.97.tar.gz) = 636595 --- pkg-plist.orig 2009-07-03 19:08:08.000000000 +0800 +++ pkg-plist 2009-07-04 01:03:02.000000000 +0800 @@ -5,9 +5,13 @@ bin/search_overview.pl %%SITE_PERL%%/Bio/Graphics/FeatureFile/Iterator.pm %%SITE_PERL%%/Bio/Graphics/Glyph/phylo_align.pm +%%SITE_PERL%%/Bio/Graphics/Glyph/pairplot.pm +%%SITE_PERL%%/Bio/Graphics/Glyph/rainbow_gene.pm %%SITE_PERL%%/Bio/Graphics/Glyph/spectrogram.pm %%SITE_PERL%%/Bio/Graphics/Glyph/ideogram.pm +%%SITE_PERL%%/Bio/Graphics/Glyph/hat.pm %%SITE_PERL%%/Bio/Graphics/Glyph/heat_map.pm +%%SITE_PERL%%/Bio/Graphics/Glyph/hidden.pm %%SITE_PERL%%/Bio/Graphics/Glyph/hybrid_plot.pm %%SITE_PERL%%/Bio/Graphics/Glyph/smoothing.pm %%SITE_PERL%%/Bio/Graphics/Glyph/stackedplot.pm @@ -22,6 +26,7 @@ %%SITE_PERL%%/Bio/Graphics/Wiggle/Loader.pm %%SITE_PERL%%/Bio/Graphics/DrawTransmembrane.pm %%SITE_PERL%%/Bio/Graphics/FeatureBase.pm +%%SITE_PERL%%/Bio/Graphics/FeatureDir.pm %%SITE_PERL%%/Bio/Graphics/RendererI.pm %%SITE_PERL%%/Bio/Graphics/Util.pm %%SITE_PERL%%/Bio/Graphics/Pictogram.pm >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 09:00:28 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 09:00:39 2009 Subject: ports/136310: [Maintainer Update]biology/p5-Bio-Graphics:update to 1.97 Message-ID: <200907040900.n6490Q9k081827@freefall.freebsd.org> Synopsis: [Maintainer Update]biology/p5-Bio-Graphics:update to 1.97 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 09:00:26 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136310 From tonve at yandex.ru Sat Jul 4 09:30:09 2009 From: tonve at yandex.ru (S Smirnov) Date: Sat Jul 4 09:30:14 2009 Subject: ports/136311: x11-toolkits/pango compilation is broken under 8-current Message-ID: <200907040924.n649OanX095109@www.freebsd.org> >Number: 136311 >Category: ports >Synopsis: x11-toolkits/pango compilation is broken under 8-current >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 09:30:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: S Smirnov >Release: 8.0-current >Organization: >Environment: FreeBSD s.home.ru 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Tue Jun 30 23:44:43 IRKST 2009 root@s.home.ru:/usr/src/sys/amd64/compile/TEST amd64 >Description: pango-1.24.4, latest ports env generating symbol list for `libpango-1.0.la' /usr/bin/nm -B .libs/break.o .libs/ellipsize.o .libs/fonts.o .libs/glyphstring.o .libs/modules.o .libs/pango-attributes.o .libs/pango-bidi-type.o .libs/pango-color.o .libs/pango-context.o .libs/pango-coverage.o .libs/pango-engine.o .libs/pango-fontmap.o .libs/pango-fontset.o .libs/pango-glyph-item.o .libs/pango-gravity.o .libs/pango-item.o .libs/pango-language.o .libs/pango-layout.o .libs/pango-markup.o .libs/pango-matrix.o .libs/pango-renderer.o .libs/pango-script.o .libs/pango-tabs.o .libs/pango-utils.o .libs/reorder-items.o .libs/shape.o .libs/pango-enum-types.o .libs/module-defs-lang.o mini-fribidi/.libs/libmini-fribidi.a | | /usr/bin/sed 's/.* //' | sort | uniq > .libs/libpango-1.0.exp eval: 1: Syntax error: "|" unexpected gmake[4]: *** [libpango-1.0.la] Error 2 gmake[4]: Leaving directory `/usr/ports/x11-toolkits/pango/work/pango-1.24.4/pango' gmake[3]: *** [all-recursive] Error 1 >How-To-Repeat: portsnap fetch update cd /usr/ports/x11-toolkits/pango make >Fix: >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 09:30:22 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 09:30:33 2009 Subject: ports/136311: x11-toolkits/pango compilation is broken under 8-current Message-ID: <200907040930.n649ULir005031@freefall.freebsd.org> Synopsis: x11-toolkits/pango compilation is broken under 8-current Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 09:30:20 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136311 From lioux at FreeBSD.org Sat Jul 4 09:40:04 2009 From: lioux at FreeBSD.org (Mario Sergio Fujikawa Ferreira) Date: Sat Jul 4 09:40:37 2009 Subject: ports/136312: [PATCH] archivers/lzip: Uphold CXX, CXXFLAGS and LDFLAGS Message-ID: <20090704093016.54348.qmail@exxodus.fedaykin.here> >Number: 136312 >Category: ports >Synopsis: [PATCH] archivers/lzip: Uphold CXX, CXXFLAGS and LDFLAGS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 09:40:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: System: FreeBSD exxodus.fedaykin.here 7.2-STABLE FreeBSD 7.2-STABLE #98: Fri Jul 3 17:55:51 BRT >Description: - Change the port to uphold CXX, CXXFLAGS and LDFLAGS. - Bump PORTREVISION Port maintainer (scjamorim@bsd.com.br) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- lzip-1.7_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/archivers/lzip/Makefile,v retrieving revision 1.2 diff -d -u -u -r1.2 Makefile --- Makefile 30 Jun 2009 14:28:41 -0000 1.2 +++ Makefile 4 Jul 2009 09:28:57 -0000 @@ -7,6 +7,7 @@ PORTNAME= lzip PORTVERSION= 1.7 +PORTREVISION= 1 CATEGORIES= archivers MASTER_SITES= SAVANNAH/lzip @@ -16,6 +17,9 @@ PLIST_FILES= bin/lzip bin/lzdiff bin/lzgrep bin/lziprecover GNU_CONFIGURE= yes +CONFIGURE_ARGS= CXX="${CXX}" \ + CXXFLAGS="${CXXFLAGS}" \ + LDFLAGS="${LDFLAGS}" MAN1= lzip.1 lzdiff.1 lzgrep.1 lziprecover.1 INFO= lzip --- lzip-1.7_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 09:40:41 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 09:40:46 2009 Subject: ports/136312: [PATCH] archivers/lzip: Uphold CXX, CXXFLAGS and LDFLAGS Message-ID: <200907040940.n649ee0G018630@freefall.freebsd.org> Synopsis: [PATCH] archivers/lzip: Uphold CXX, CXXFLAGS and LDFLAGS Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 09:40:40 UTC 2009 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136312 From areilly at bigpond.net.au Sat Jul 4 10:10:04 2009 From: areilly at bigpond.net.au (Andrew Reilly) Date: Sat Jul 4 10:10:11 2009 Subject: ports/136313: port databases/evolution-data-server install fails because textproc/gtk-doc is not listed as a prerequisite. Message-ID: <20090704081445.19726.qmail@areilly.bpa.nu> >Number: 136313 >Category: ports >Synopsis: port databases/evolution-data-server install fails because textproc/gtk-doc is not listed as a prerequisite. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 10:10:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrew Reilly >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD duncan.reilly.home 7.2-STABLE FreeBSD 7.2-STABLE #67: Sat Jul 4 09:43:45 EST 2009 root@duncan.reilly.home:/usr/obj/usr/src/sys/DUNCAN amd64 >Description: Today a portmaster -a run tripped over the reinstall of evolution-data-server-2.26.3 while trying to install the manual pages. The build itself had gone without a hitch. The line that broke was: gtkdoc-rebase: not found Checking the work dir for that string found references in the CHANGELOG to a requirement for gtk-doc, but that was not on my system. >How-To-Repeat: Try to install evolution-data-server-2.26.3 on a system that does not already have textproc/gtk-doc. >Fix: Install the port txtproc/gtk-doc, then go back and re-do the install of evolution-data-server, and notice that it completes without further problems. >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 10:10:19 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 10:10:30 2009 Subject: ports/136313: port databases/evolution-data-server install fails because textproc/gtk-doc is not listed as a prerequisite. Message-ID: <200907041010.n64AAI7d058478@freefall.freebsd.org> Synopsis: port databases/evolution-data-server install fails because textproc/gtk-doc is not listed as a prerequisite. Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 10:10:17 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136313 From villa.alberto at gmail.com Sat Jul 4 11:40:04 2009 From: villa.alberto at gmail.com (Alberto Villa) Date: Sat Jul 4 11:40:16 2009 Subject: ports/136315: [maintainer update] Update port: multimedia/mlt 0.4.2 -> 0.4.4 Message-ID: <200907041133.n64BXMBv005800@www.freebsd.org> >Number: 136315 >Category: ports >Synopsis: [maintainer update] Update port: multimedia/mlt 0.4.2 -> 0.4.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 11:40:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alberto Villa >Release: FreeBSD 7-STABLE >Organization: >Environment: FreeBSD echo.hoth 7.2-STABLE FreeBSD 7.2-STABLE #1: Thu Jun 18 12:20:31 CEST 2009 root@echo.hoth:/usr/obj/usr/src/sys/TPR60 i386 >Description: update to 0.4.4 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN mlt/Makefile /usr/ports/multimedia/mlt/Makefile --- mlt/Makefile 2009-07-04 10:49:48.509966245 +0200 +++ /usr/ports/multimedia/mlt/Makefile 2009-07-04 12:01:01.405062423 +0200 @@ -5,14 +5,14 @@ # $FreeBSD: ports/multimedia/mlt/Makefile,v 1.6 2009/06/15 10:20:09 beat Exp $ PORTNAME= mlt -PORTVERSION= 0.4.2 +PORTVERSION= 0.4.4 CATEGORIES= multimedia MASTER_SITES= SFE MAINTAINER= villa.alberto@gmail.com COMMENT= A multimedia framework and video playout server for TV broadcasting -USE_GNOME= libxml2 gnomehack +USE_GNOME= gnomehack libxml2 USE_QT_VER= 4 USE_SDL= image MAKE_JOBS_SAFE= yes diff -ruN mlt/distinfo /usr/ports/multimedia/mlt/distinfo --- mlt/distinfo 2009-07-04 10:49:48.511004925 +0200 +++ /usr/ports/multimedia/mlt/distinfo 2009-07-04 11:19:23.225027540 +0200 @@ -1,3 +1,3 @@ -MD5 (mlt-0.4.2.tar.gz) = e1f3d89989571d0c5efccfb3d96f345c -SHA256 (mlt-0.4.2.tar.gz) = 069abee48f9400ad8af0b63a55811d666a2e049221523e434b59d53908619b04 -SIZE (mlt-0.4.2.tar.gz) = 734746 +MD5 (mlt-0.4.4.tar.gz) = 0019996624b6a61ea27e07b4851ac765 +SHA256 (mlt-0.4.4.tar.gz) = ae367a07122f042f8af4d30101444862c6b50781e563ea0f171652a8b379b4df +SIZE (mlt-0.4.4.tar.gz) = 737592 diff -ruN mlt/pkg-plist /usr/ports/multimedia/mlt/pkg-plist --- mlt/pkg-plist 2009-07-04 10:49:48.509966245 +0200 +++ /usr/ports/multimedia/mlt/pkg-plist 2009-07-04 12:10:35.708281636 +0200 @@ -48,10 +48,10 @@ include/mlt/framework/mlt_transition.h include/mlt/framework/mlt_types.h lib/libmlt++.so -lib/libmlt++.so.0.4.2 +lib/libmlt++.so.0.4.4 lib/libmlt++.so.2 lib/libmlt.so -lib/libmlt.so.0.4.2 +lib/libmlt.so.0.4.4 lib/libmlt.so.1 %%AVFORMAT%%lib/mlt/libmltavformat.so lib/mlt/libmltcore.so @@ -89,6 +89,7 @@ %%DATADIR%%/feeds/PAL/etv.properties %%DATADIR%%/feeds/PAL/example.properties %%DATADIR%%/feeds/PAL/obscure.properties +%%FREI0R%%%%DATADIR%%/frei0r/blacklist.txt %%DATADIR%%/lumas/NTSC/luma01.pgm %%DATADIR%%/lumas/NTSC/luma02.pgm %%DATADIR%%/lumas/NTSC/luma03.pgm @@ -201,6 +202,7 @@ @dirrm %%DATADIR%%/lumas/PAL @dirrm %%DATADIR%%/lumas/NTSC @dirrm %%DATADIR%%/lumas +%%FREI0R%%@dirrm %%DATADIR%%/frei0r @dirrm %%DATADIR%%/feeds/PAL @dirrm %%DATADIR%%/feeds/NTSC @dirrm %%DATADIR%%/feeds >Release-Note: >Audit-Trail: >Unformatted: From villa.alberto at gmail.com Sat Jul 4 11:40:05 2009 From: villa.alberto at gmail.com (Alberto Villa) Date: Sat Jul 4 11:40:16 2009 Subject: ports/136316: [maintainer update] Update port: multimedia/kdenlive 0.7.4 -> 0.7.5 Message-ID: <200907041134.n64BYa9B005908@www.freebsd.org> >Number: 136316 >Category: ports >Synopsis: [maintainer update] Update port: multimedia/kdenlive 0.7.4 -> 0.7.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 11:40:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alberto Villa >Release: FreeBSD 7-STABLE >Organization: >Environment: FreeBSD echo.hoth 7.2-STABLE FreeBSD 7.2-STABLE #1: Thu Jun 18 12:20:31 CEST 2009 root@echo.hoth:/usr/obj/usr/src/sys/TPR60 i386 >Description: update to 0.7.5 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN kdenlive/Makefile /usr/ports/multimedia/kdenlive/Makefile --- kdenlive/Makefile 2009-07-04 10:49:45.167422487 +0200 +++ /usr/ports/multimedia/kdenlive/Makefile 2009-07-04 13:09:45.626290473 +0200 @@ -5,7 +5,7 @@ # $FreeBSD: ports/multimedia/kdenlive/Makefile,v 1.6 2009/06/15 10:23:04 beat Exp $ PORTNAME= kdenlive -PORTVERSION= 0.7.4 +PORTVERSION= 0.7.5 CATEGORIES= multimedia kde MASTER_SITES= SFE @@ -26,7 +26,7 @@ MAN1= kdenlive.1 kdenlive_render.1 -OPTIONS= DVD "DVD creation with dvdauthor and cdrtools" on \ +OPTIONS= DVD "DVD creation with cdrtools and dvdauthor" on \ FREI0R "Frei0r plugins" on \ LADSPA "LADSPA plugins" on \ SCREENGRAB "Screen capture with recordMyDesktop" on @@ -51,6 +51,8 @@ .endif post-patch: + ${REINPLACE_CMD} -E -e '/${PORTNAME}.(menu|xpm)/d' \ + ${PATCH_WRKSRC}/data/CMakeLists.txt # prevent updating mime during build ${REINPLACE_CMD} -e '/^update_xdg_mimetypes/d; /SharedMimeInfo/d' \ ${PATCH_WRKSRC}/src/mimetypes/CMakeLists.txt diff -ruN kdenlive/distinfo /usr/ports/multimedia/kdenlive/distinfo --- kdenlive/distinfo 2009-07-04 10:49:45.155422630 +0200 +++ /usr/ports/multimedia/kdenlive/distinfo 2009-07-04 12:23:23.310382924 +0200 @@ -1,3 +1,3 @@ -MD5 (kdenlive-0.7.4.tar.gz) = fff7314cdca5b37cdcc34b1cfa8a1bda -SHA256 (kdenlive-0.7.4.tar.gz) = 8c9fab425bca3ebb4f87c19730df6c126529568e11b91f5222b49457638aadf9 -SIZE (kdenlive-0.7.4.tar.gz) = 2281573 +MD5 (kdenlive-0.7.5.tar.gz) = 2b56a9a5b2b4e18d026d13fa4e159cba +SHA256 (kdenlive-0.7.5.tar.gz) = c4bd4900163eacbf626d8f9d1693866f230fb25366eb539a2012bd78c0147db9 +SIZE (kdenlive-0.7.5.tar.gz) = 2425900 diff -ruN kdenlive/pkg-plist /usr/ports/multimedia/kdenlive/pkg-plist --- kdenlive/pkg-plist 2009-07-04 10:49:45.155422630 +0200 +++ /usr/ports/multimedia/kdenlive/pkg-plist 2009-07-04 12:51:40.562721302 +0200 @@ -64,10 +64,12 @@ share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-align-hor.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-align-none.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-align-vert.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-insert-rect.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-insert-unicode.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-lock.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-select-tool.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-show-audio.png @@ -80,6 +82,10 @@ share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-unlock.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-zone-start.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-zoom-large.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-zoom-small.png +share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-align-none.svgz +share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz @@ -89,10 +95,12 @@ share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-add-slide-clip.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-add-text-clip.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-align-hor.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-align-none.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-align-vert.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-hide-audio.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-hide-video.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-insert-rect.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-insert-unicode.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-lock.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-select-tool.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-show-audio.png @@ -105,6 +113,10 @@ share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-unlock.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-zone-end.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-zone-start.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-zoom-large.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-zoom-small.png +share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-align-none.svgz +share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-insert-unicode.svgz share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-select-tool.svgz share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-spacer-tool.svgz share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-zone-end.svgz @@ -153,6 +165,7 @@ share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo +share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Sat Jul 4 12:10:31 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat Jul 4 12:10:43 2009 Subject: ports/136300: [MAINTAINER-UPDATE] sysutils/bacula-server upgrade to latest version Message-ID: <200907041210.n64CAUi6089345@freefall.freebsd.org> Synopsis: [MAINTAINER-UPDATE] sysutils/bacula-server upgrade to latest version Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jul 4 12:10:29 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136300 From miwi at FreeBSD.org Sat Jul 4 12:10:36 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat Jul 4 12:10:45 2009 Subject: ports/136299: [MAINTAINER-UPDATE] sysutils/bacula-docs upgrade to latest version Message-ID: <200907041210.n64CAXrE089924@freefall.freebsd.org> Synopsis: [MAINTAINER-UPDATE] sysutils/bacula-docs upgrade to latest version Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jul 4 12:10:33 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136299 From miwi at FreeBSD.org Sat Jul 4 12:10:48 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat Jul 4 12:10:55 2009 Subject: ports/136309: Maintainer update: lang/s9fes Message-ID: <200907041210.n64CAgfH091275@freefall.freebsd.org> Synopsis: Maintainer update: lang/s9fes Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jul 4 12:10:41 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136309 From cperciva at tarsnap.com Sat Jul 4 12:50:01 2009 From: cperciva at tarsnap.com (Colin Percival) Date: Sat Jul 4 12:50:08 2009 Subject: ports/136317: security/scrypt is out of date Message-ID: <20090704124616.31206.qmail@xps.daemonology.net> >Number: 136317 >Category: ports >Synopsis: security/scrypt is out of date >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 12:50:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Colin Percival >Release: FreeBSD 7.2-RELEASE-p1 amd64 >Organization: >Environment: >Description: The security/scrypt port is out of date; the latest version is 1.1.4. This version contains a major bugfix in the SSE2 code (the code in version 1.1.3 segfaults). >How-To-Repeat: >Fix: --- scrypt.old/Makefile 2009-07-04 05:41:49.000000000 -0700 +++ scrypt/Makefile 2009-07-04 05:41:57.000000000 -0700 @@ -6,7 +6,7 @@ # PORTNAME= scrypt -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.4 CATEGORIES= security MASTER_SITES= http://www.tarsnap.com/scrypt/ EXTRACT_SUFX= .tgz diff -ruN scrypt.old/distinfo scrypt/distinfo --- scrypt.old/distinfo 2009-07-04 05:41:49.000000000 -0700 +++ scrypt/distinfo 2009-07-04 05:42:51.000000000 -0700 @@ -1,3 +1,3 @@ -MD5 (scrypt-1.1.3.tgz) = 36d8554574cebe45613273de9bed310a -SHA256 (scrypt-1.1.3.tgz) = 437009b4ac70e4c2477d1ea31ae0ad8218e14eb9d41073ff51d8f074f11a374f -SIZE (scrypt-1.1.3.tgz) = 79571 +MD5 (scrypt-1.1.4.tgz) = c4df85cfd7e165af0a306d04e38bd15d +SHA256 (scrypt-1.1.4.tgz) = a5b956b2b02ea272303d2d1354e55a8a9d8b8831f6518c6adf6be87abf91ce19 +SIZE (scrypt-1.1.4.tgz) = 82902 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 12:50:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 12:50:19 2009 Subject: ports/136317: security/scrypt is out of date Message-ID: <200907041250.n64CoCEE018386@freefall.freebsd.org> Synopsis: security/scrypt is out of date State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Jul 4 12:50:12 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136317 From edwin at FreeBSD.org Sat Jul 4 13:00:16 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Sat Jul 4 13:00:54 2009 Subject: ports/136317: security/scrypt is out of date Message-ID: <200907041300.n64D0F6k024734@freefall.freebsd.org> The following reply was made to PR ports/136317; it has been noted by GNATS. From: Edwin Groothuis To: wenheping@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/136317: security/scrypt is out of date Date: Sat, 4 Jul 2009 12:50:10 UT Maintainer of security/scrypt, Please note that PR ports/136317 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136317 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From alexey at renatasystems.org Sat Jul 4 13:00:17 2009 From: alexey at renatasystems.org (Alexey V. Degtyarev) Date: Sat Jul 4 13:00:54 2009 Subject: ports/136318: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling Message-ID: <200907032050.n63KoNbi040041@hs-6.renatasystems.org> >Number: 136318 >Category: ports >Synopsis: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 13:00:16 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexey V. Degtyarev >Release: FreeBSD 6.3-RELEASE i386 >Organization: >Environment: System: FreeBSD renatasystems.org 6.3-RELEASE FreeBSD 6.3-RELEASE #2: Sat May 24 23:23:42 MSD 2008 root@renatasystems.org:/usr/obj/usr/src/sys/alexey i386 >Description: tinderbox-devel port has a number of patches files/patch-webui* which can not be applied with WEBUI option turned off: ===> Found saved configuration for tinderbox-devel-3.2_4 ===> Extracting for tinderbox-devel-3.2_4 => MD5 Checksum OK for tinderbox/tinderbox-3.2.tar.gz. => SHA256 Checksum OK for tinderbox/tinderbox-3.2.tar.gz. ===> Patching for tinderbox-devel-3.2_4 ===> Applying FreeBSD patches for tinderbox-devel-3.2_4 File to patch: ^C=> Patch patch-webui__core__TinderboxDS.php failed to apply cleanly. => Patch(es) patch-lib__buildscript patch-lib__tc_command.pl patch-lib__tc_command.sh patch-lib__tinderlib.sh patch-sql__schema.mysql.pre patch-sql__schema.pgsql.pre patch-sql__values.pfp patch-sql__values.pfr applied cleanly. This happens due to premature removing of the whole webui directory: .if !defined(WITH_WEBUI) post-extract: @${RM} -R ${WRKSRC}/webui .endif Secondly, pkg-message after port was installed shows notes about tinderbox webui configuration, which is rather confusing as soon as webui was completely disabled. Probably this also should be fixed in ports-mgmt/tinderbox port too. >How-To-Repeat: Just try to install ports-mgmt/tinderbox-devel having WEBUI option tunded off. >Fix: --- tinderbox-devel.patch begins here --- diff -u -rN tinderbox-devel.orig/Makefile tinderbox-devel/Makefile --- tinderbox-devel.orig/Makefile 2009-05-11 10:19:40.000000000 +0400 +++ tinderbox-devel/Makefile 2009-07-04 00:21:43.000000000 +0400 @@ -29,7 +29,6 @@ NO_BUILD= yes WANT_PERL= yes -SUB_FILES= pkg-message MAN1= tc-configCcache.1 tc-configDistfile.1 tc-configGet.1 \ tc-configJail.1 tc-configTinderd.1 tc-init.1 @@ -47,8 +46,10 @@ WANT_PHP_WEB= yes USE_PHP= session PLIST_SUB+= WEBUI="" +SUB_FILES+= pkg-message .else PLIST_SUB+= WEBUI="@comment " +SUB_FILES+= pkg-message-nowebui .endif .if defined(WITH_PGSQL) @@ -90,11 +91,6 @@ @${FALSE} .endif -.if !defined(WITH_WEBUI) -post-extract: - @${RM} -R ${WRKSRC}/webui -.endif - post-patch: .ifdef WITHOUT_CHECK_FOR_ROOT ${REINPLACE_CMD} -e 's/^if \[ `id -u` != 0 \]; then/if false; then/' \ @@ -102,6 +98,10 @@ .endif @cd ${WRKSRC} && ${FIND} . -name '*.orig' -exec ${RM} {} \; +.if !defined(WITH_WEBUI) + @${RM} -R ${WRKSRC}/webui +.endif + do-install: @${MKDIR} ${PREFIX}/tinderbox/scripts @${ECHO_CMD} "Installing man pages ..." diff -u -rN tinderbox-devel.orig/files/pkg-message-nowebui.in tinderbox-devel/files/pkg-message-nowebui.in --- tinderbox-devel.orig/files/pkg-message-nowebui.in 1970-01-01 03:00:00.000000000 +0300 +++ tinderbox-devel/files/pkg-message-nowebui.in 2009-07-04 00:16:50.000000000 +0400 @@ -0,0 +1,10 @@ + +=============================================================================== +ports-mgmt/tinderbox is now installed, but it requires some additional setup. + +**************************************************** +Please do read: %%PREFIX%%/tinderbox/scripts/README +**************************************************** + +============================================================================= + --- tinderbox-devel.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 13:00:58 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 13:01:04 2009 Subject: ports/136318: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling Message-ID: <200907041300.n64D0vHw031183@freefall.freebsd.org> Synopsis: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 13:00:57 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136318 From wenheping at gmail.com Sat Jul 4 13:40:05 2009 From: wenheping at gmail.com (Wen Heping) Date: Sat Jul 4 13:40:11 2009 Subject: ports/136319: [NEW PORT]devel/p5-JSON-RPC-Common:Transport agnostic JSON RPC helper objects Message-ID: <200907041337.n64DbQYx067027@www.freebsd.org> >Number: 136319 >Category: ports >Synopsis: [NEW PORT]devel/p5-JSON-RPC-Common:Transport agnostic JSON RPC helper objects >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 13:40:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-CURRENT >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Mar 22 22:12:06 CST 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: p5-JSON-RPC-Common is a perl module provides abstractions for JSON-RPC 1.0, 1.1 (both variations) and 2.0 (formerly 1.2) Procedure Call and Procedure Return objects (formerly known as request and result), along with error objects. It also provides marshalling objects to convert the model objects into JSON text and HTTP requests/responses. WWW: http://search.cpan.org/dist/JSON-RPC-Common/ >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-JSON-RPC-Common # p5-JSON-RPC-Common/Makefile # p5-JSON-RPC-Common/distinfo # p5-JSON-RPC-Common/pkg-descr # p5-JSON-RPC-Common/pkg-plist # echo c - p5-JSON-RPC-Common mkdir -p p5-JSON-RPC-Common > /dev/null 2>&1 echo x - p5-JSON-RPC-Common/Makefile sed 's/^X//' >p5-JSON-RPC-Common/Makefile << '9f713400e141f7bfdf7db1ee825a1738' X# New ports collection makefile for: p5-JSON-RPC-Common X# Date created: 03 July, 2009 X# Whom: Wen Heping X# X# $FreeBSD$ X# X XPORTNAME= JSON-RPC-Common XPORTVERSION= 0.05 XCATEGORIES= devel perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= wenheping@gmail.com XCOMMENT= Transport agnostic JSON RPC helper objects X XRUN_DEPENDS= p5-Moose>=0.81:${PORTSDIR}/devel/p5-Moose \ X p5-JSON>=2.11:${PORTSDIR}/converters/p5-JSON \ X p5-MooseX-Types>=0:${PORTSDIR}/devel/p5-MooseX-Types \ X p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ X p5-Test-use-ok>=0:${PORTSDIR}/devel/p5-Test-use-ok \ X p5-namespace-clean>=0.08:${PORTSDIR}/devel/p5-namespace-clean X XPERL_CONFIGURE= YES X XMAN3= JSON::RPC::Common::Marshal::Text.3 \ X JSON::RPC::Common::Procedure::Call.3 \ X JSON::RPC::Common::Procedure::Return::Version_1_1.3 \ X JSON::RPC::Common::Procedure::Return::Error.3 \ X JSON::RPC::Common::Procedure::Call::Version_1_0.3 \ X JSON::RPC::Common::Procedure::Return.3 \ X JSON::RPC::Common.3 \ X JSON::RPC::Common::Procedure::Return::Version_2_0.3 \ X JSON::RPC::Common::Procedure::Return::Version_1_0.3 \ X JSON::RPC::Common::Procedure::Call::Version_1_1.3 \ X JSON::RPC::Common::Procedure::Return::Version_2_0::Error.3 \ X JSON::RPC::Common::TypeConstraints.3 \ X JSON::RPC::Common::Procedure::Return::Version_1_1::Error.3 \ X JSON::RPC::Common::Procedure::Call::Version_2_0.3 \ X JSON::RPC::Common::Procedure::Return::Version_1_0::Error.3 \ X JSON::RPC::Common::Marshal::HTTP.3 X X.include 9f713400e141f7bfdf7db1ee825a1738 echo x - p5-JSON-RPC-Common/distinfo sed 's/^X//' >p5-JSON-RPC-Common/distinfo << 'cb43dcd2bcc80ade7b547a33df73d633' XMD5 (JSON-RPC-Common-0.05.tar.gz) = 096a772d5760b22ea2cda668d031ad95 XSHA256 (JSON-RPC-Common-0.05.tar.gz) = 57bde254b1a381bdfb7b14e287e73319d96577af3fc269e588a720109157f5a1 XSIZE (JSON-RPC-Common-0.05.tar.gz) = 18403 cb43dcd2bcc80ade7b547a33df73d633 echo x - p5-JSON-RPC-Common/pkg-descr sed 's/^X//' >p5-JSON-RPC-Common/pkg-descr << '02a0c86c342eb3aa978ffe1fc5ff706b' Xp5-JSON-RPC-Common is a perl module provides abstractions for XJSON-RPC 1.0, 1.1 (both variations) and 2.0 (formerly 1.2) XProcedure Call and Procedure Return objects (formerly known as Xrequest and result), along with error objects. It also provides Xmarshalling objects to convert the model objects into JSON text Xand HTTP requests/responses. X XWWW: http://search.cpan.org/dist/JSON-RPC-Common/ 02a0c86c342eb3aa978ffe1fc5ff706b echo x - p5-JSON-RPC-Common/pkg-plist sed 's/^X//' >p5-JSON-RPC-Common/pkg-plist << 'fbaa273168c0971708d0c354f11a8219' X%%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON/RPC/Common/.packlist X%%SITE_PERL%%/JSON/RPC/Common.pm X%%SITE_PERL%%/JSON/RPC/Common/Message.pm X%%SITE_PERL%%/JSON/RPC/Common/TypeConstraints.pm X%%SITE_PERL%%/JSON/RPC/Common/Marshal/Text.pm X%%SITE_PERL%%/JSON/RPC/Common/Marshal/HTTP.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Call.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Return.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_1_1.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Error.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_2_0.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_1_0.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_2_0/Error.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_1_1/Error.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_1_0/Error.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Call/Version_1_0.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Call/Version_1_1.pm X%%SITE_PERL%%/JSON/RPC/Common/Procedure/Call/Version_2_0.pm X@dirrm %%SITE_PERL%%/JSON/RPC/Common/Procedure/Call X@dirrm %%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_2_0 X@dirrm %%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_1_1 X@dirrm %%SITE_PERL%%/JSON/RPC/Common/Procedure/Return/Version_1_0 X@dirrm %%SITE_PERL%%/JSON/RPC/Common/Procedure/Return X@dirrm %%SITE_PERL%%/JSON/RPC/Common/Procedure X@dirrm %%SITE_PERL%%/JSON/RPC/Common/Marshal X@dirrm %%SITE_PERL%%/JSON/RPC/Common X@dirrmtry %%SITE_PERL%%/JSON/RPC X@dirrmtry %%SITE_PERL%%/JSON X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON/RPC/Common X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON/RPC X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON fbaa273168c0971708d0c354f11a8219 exit >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 13:40:18 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 13:40:24 2009 Subject: ports/136319: [NEW PORT]devel/p5-JSON-RPC-Common:Transport agnostic JSON RPC helper objects Message-ID: <200907041340.n64DeH1j066229@freefall.freebsd.org> Synopsis: [NEW PORT]devel/p5-JSON-RPC-Common:Transport agnostic JSON RPC helper objects Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 13:40:17 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136319 From wenheping at gmail.com Sat Jul 4 13:50:05 2009 From: wenheping at gmail.com (wen heping) Date: Sat Jul 4 13:50:11 2009 Subject: ports/136317: security/scrypt is out of date Message-ID: <200907041350.n64Do5BZ072070@freefall.freebsd.org> The following reply was made to PR ports/136317; it has been noted by GNATS. From: wen heping To: bug-followup@FreeBSD.org, cperciva@tarsnap.com Cc: Subject: Re: ports/136317: security/scrypt is out of date Date: Sat, 4 Jul 2009 21:49:40 +0800 --0016e64f466c614f61046de18b5c Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I approve it. Thank you. wen --0016e64f466c614f61046de18b5c Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I approve it.
Thank you.

wen
--0016e64f466c614f61046de18b5c-- From miwi at FreeBSD.org Sat Jul 4 13:53:13 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat Jul 4 13:53:19 2009 Subject: ports/136317: security/scrypt is out of date Message-ID: <200907041353.n64DrCjK078904@freefall.freebsd.org> Synopsis: security/scrypt is out of date Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat Jul 4 13:53:12 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136317 From lwhsu at FreeBSD.org Sat Jul 4 14:10:04 2009 From: lwhsu at FreeBSD.org (Li-Wen Hsu) Date: Sat Jul 4 14:10:25 2009 Subject: ports/136320: [repocopy] databases/py-bsddb -> databases/py25-bsddb Message-ID: <200907041401.n64E1QRI085965@freefall.freebsd.org> >Number: 136320 >Category: ports >Synopsis: [repocopy] databases/py-bsddb -> databases/py25-bsddb >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 14:10:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 7.2-STABLE FreeBSD 7.2-STABLE #38 r194101: Sat Jun 13 11:12:24 UTC 2009 simon@freefall.freebsd.org:/usr/src/sys/i386/compile/FREEFALL i386 >Description: mail/py-spambayes works only with Python 2.5 and also needs databases/py-bsddb with Python 2.5. So please repo-copy databases/py-bsddb to databases/py25-bsddb. Thanks. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From samesame at akruijff.dds.nl Sat Jul 4 14:10:05 2009 From: samesame at akruijff.dds.nl (Alex de Kruijff) Date: Sat Jul 4 14:10:25 2009 Subject: ports/136307: [MAINTAINER] sysutils/samesame Message-ID: <200907041410.n64EA59R086178@freefall.freebsd.org> The following reply was made to PR ports/136307; it has been noted by GNATS. From: Alex de Kruijff To: bug-followup@FreeBSD.org, samesame@akruijff.dds.nl Cc: Subject: Re: ports/136307: [MAINTAINER] sysutils/samesame Date: Sat, 4 Jul 2009 15:54:44 +0200 There was a small typo in the source (ifndef instead of ifdef), that may cause the program not to compile on other platforms. This result in a new distinfo. --- distinfo begins here --- MD5 (samesame-1.3.tar.bz2) = e64863157690dfcc161c92f079a1dee7 SHA256 (samesame-1.3.tar.bz2) = 057f5e754cdcceae1d78d4878d501c589fbe214ce63022feebe9c9b7d11d3483 SIZE (samesame-1.3.tar.bz2) = 100841 --- distinfo ends here --- -- Alex de Kruijff From lapo at lapo.it Sat Jul 4 14:10:07 2009 From: lapo at lapo.it (Lapo Luchini) Date: Sat Jul 4 14:10:26 2009 Subject: ports/134743: devel/Monotone and pthreaded dependencies Message-ID: <200907041410.n64EA7H6086191@freefall.freebsd.org> The following reply was made to PR ports/134743; it has been noted by GNATS. From: Lapo Luchini To: bug-followup@FreeBSD.org, eirnym@gmail.com Cc: Subject: Re: ports/134743: devel/Monotone and pthreaded dependencies Date: Sat, 04 Jul 2009 16:09:19 +0200 Mhh, also botan uses pthreads, and (as opposed to sqlite) in an unconditional way, and botan-config doesn't advertise the use right now (also, botan in the ports is quite old). So yes, it's probably better to just add -phtreads in the port Makefile. The fact that I can't reproduce the problem (I used a not-threaded monotone with a threaded sqlite and botan for the last year without seeing that problem) doesn't help me know if the patch is doing what's is supposed to, tough. I'll take a better look at it someday tomorrow. From edwin at FreeBSD.org Sat Jul 4 14:10:14 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 14:10:26 2009 Subject: ports/136320: [repocopy] databases/py-bsddb -> databases/py25-bsddb Message-ID: <200907041410.n64EADuL086893@freefall.freebsd.org> Synopsis: [repocopy] databases/py-bsddb -> databases/py25-bsddb Responsible-Changed-From-To: freebsd-ports-bugs->perky Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 14:10:13 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136320 From freebsd at adamaix.co.za Sat Jul 4 14:30:06 2009 From: freebsd at adamaix.co.za (Shakir Solomon) Date: Sat Jul 4 14:30:12 2009 Subject: ports/136321: Please update linux based port of Pango Message-ID: <200907041426.n64EQIDl012032@www.freebsd.org> >Number: 136321 >Category: ports >Synopsis: Please update linux based port of Pango >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 14:30:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Shakir Solomon >Release: FreeBSD 7.2-RELEASE-p1 >Organization: >Environment: FreeBSD amalia.adamaix.local 7.2-RELEASE-p1 FreeBSD 7.2-RELEASE-p1 #0: Sun Jun 21 20:06:40 SAST 2009 root@amalia.adamaix.local:/usr/obj/usr/src/sys/AMALIA i386 >Description: pango -- integer overflow. Reference: Affected ports: linux-pango-1.10.2_3 linux-f8-pango-1.18.4_1 linux-f10-pango-1.22.3 Release of Pango with the vulnerability fixed is pango-1.24.4 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From alexey at renatasystems.org Sat Jul 4 14:38:24 2009 From: alexey at renatasystems.org (Alexey V. Degtyarev) Date: Sat Jul 4 14:38:30 2009 Subject: ports/136318: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling In-Reply-To: <200907041300.n64D0GTt024741@freefall.freebsd.org> References: <200907032050.n63KoNbi040041@hs-6.renatasystems.org> <200907041300.n64D0GTt024741@freefall.freebsd.org> Message-ID: <20090704141140.GO53514@hs-4.renatasystems.org> > Thank you very much for your problem report. > It has the internal identification `ports/136318'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=136318 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [patch] ports-mgmt/tinderbox-devel incorrect WEBUI option handling > >Arrival-Date: Sat Jul 04 13:00:16 UTC 2009 Sorry for this duplicate report (mail server queue problem). This one need to be closed. The original report is ports/136302. -- Alexey V. Degtyarev From tobias.rehbein at web.de Sat Jul 4 14:40:06 2009 From: tobias.rehbein at web.de (Tobias Rehbein) Date: Sat Jul 4 14:40:13 2009 Subject: ports/136322: [patch] Update port www/nanoblogger to 3.4 and take maintainership Message-ID: <200907041438.n64EchWE060040@sushi.pseudo.local> >Number: 136322 >Category: ports >Synopsis: [patch] Update port www/nanoblogger to 3.4 and take maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 14:40:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Tobias Rehbein >Release: FreeBSD 7.2-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD sushi.pseudo.local 7.2-RELEASE-p1 FreeBSD 7.2-RELEASE-p1 #48: Wed Jun 17 13:26:54 CEST 2009 tobi@sushi.pseudo.local:/usr/obj/usr/src/sys/SUSHI i386 >Description: From the nanoblogger project site: Changes (since 3.3): * Adds support for new "shortcode" style plugins. e.g. "[youtube]..." * Adds new commands for creating and importing articles. * Adds support for user defined break points via the entry excerpt plugin. * Improved language support allows displaying early error messages in desired language. * Includes several optimizations which translates to noticeable gains in overall speed. * Adds additional control over amount and type of archives generated. * Improves management of flat-file databases. * Includes numerous bug fixes. >How-To-Repeat: >Fix: --- 0001-Update-www-nanoblogger-to-version-3.4.patch begins here --- >From cbb16fa6c4499967825458863e0e247da0417041 Mon Sep 17 00:00:00 2001 From: Tobias Rehbein Date: Fri, 19 Jun 2009 21:42:25 +0200 >From the nanoblogger project page: Changes (since 3.3): * Adds support for new "shortcode" style plugins. e.g. "[youtube]..." * Adds new commands for creating and importing articles. * Adds support for user defined break points via the entry excerpt plugin. * Improved language support allows displaying early error messages in desired language. * Includes several optimizations which translates to noticeable gains in overall speed. * Adds additional control over amount and type of archives generated. * Improves management of flat-file databases. * Includes numerous bug fixes. --- www/nanoblogger/Makefile | 22 +++--- www/nanoblogger/distinfo | 6 +- www/nanoblogger/files/patch-nb | 38 ++++++--- www/nanoblogger/files/patch-nb.conf | 11 +++ .../files/patch-plugins__archive__master_index.sh | 20 +++++ .../patch-plugins__archive__year__year_archive.sh | 35 ++++++++ .../files/patch-plugins__page__feed_links.sh | 52 ++++++++++++ .../files/patch-plugins_entry_format_markdown_sh | 11 --- .../files/patch-plugins_page_format_markdown_sh | 11 --- www/nanoblogger/files/pkg-message.in | 10 +-- www/nanoblogger/pkg-plist | 85 ++++++++++---------- 11 files changed, 200 insertions(+), 101 deletions(-) diff --git a/www/nanoblogger/Makefile b/www/nanoblogger/Makefile index 597011b..f99c32e 100644 --- a/www/nanoblogger/Makefile +++ b/www/nanoblogger/Makefile @@ -7,12 +7,11 @@ # PORTNAME= nanoblogger -PORTVERSION= 3.3 -PORTREVISION= 2 +PORTVERSION= 3.4 CATEGORIES= www MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= tobias.rehbein@web.de COMMENT= Small weblog engine written in Bash for the command line RUN_DEPENDS= bash:${PORTSDIR}/shells/bash @@ -23,20 +22,19 @@ SUB_FILES= pkg-message post-patch: @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX},g" ${WRKSRC}/nb - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/plugins/entry/format/markdown.sh - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/plugins/page/format/markdown.sh + @${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE},g" ${WRKSRC}/nb + @${REINPLACE_CMD} -e "s,%%DATADIR%%,${DATADIR},g" ${WRKSRC}/nb + @${REINPLACE_CMD} -e "s,%%DOCSDIR%%,${DOCSDIR},g" ${WRKSRC}/nb do-install: ${INSTALL_SCRIPT} ${WRKSRC}/nb ${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/nb.conf ${PREFIX}/etc/nb.conf.sample ${MKDIR} ${DATADIR} -.for data in lang lib moods plugins +.for data in default lang lib moods plugins ${MKDIR} ${DATADIR}/${data} && \ ( cd ${WRKSRC}/${data} && \ - ${COPYTREE_SHARE} \* ${DATADIR}/${data} "! -name *.orig ! -name *.bak" ) + ${COPYTREE_SHARE} \* ${DATADIR}/${data} "! -name *.orig" ) .endfor - ${MKDIR} ${DATADIR}/default && \ - ${CP} -R ${WRKSRC}/default ${DATADIR}/ ${CP} ${WRKSRC}/welcome-to-nb.txt ${DATADIR} post-install: @@ -45,9 +43,11 @@ post-install: fi .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} -.for doc in COPYING ChangeLog README TODO docs/nanoblogger.html - ${INSTALL_MAN} ${WRKSRC}/${doc} ${DOCSDIR} +.for doc in COPYING ChangeLog README TODO copyright + ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} .endfor + ${MKDIR} ${DOCSDIR}/html + ${INSTALL_DATA} ${WRKSRC}/docs/nanoblogger.html ${DOCSDIR}/html .endif @${CAT} ${PKGMESSAGE} diff --git a/www/nanoblogger/distinfo b/www/nanoblogger/distinfo index fdb7d3e..d9a950a 100644 --- a/www/nanoblogger/distinfo +++ b/www/nanoblogger/distinfo @@ -1,3 +1,3 @@ -MD5 (nanoblogger-3.3.tar.gz) = c9df242e48be0c9b7fca2443c00fd6dc -SHA256 (nanoblogger-3.3.tar.gz) = b49b25ee18c42dc9cf47fdd456e5dd19033456c64104a0ccba34e318e5daf1a0 -SIZE (nanoblogger-3.3.tar.gz) = 82302 +MD5 (nanoblogger-3.4.tar.gz) = 6162a3637ab22e98ac4267e0db687fe1 +SHA256 (nanoblogger-3.4.tar.gz) = 29c42b3d5e356fb17ca08693279f16e966aeecf430d1a1cab8601c130b3a5a02 +SIZE (nanoblogger-3.4.tar.gz) = 95517 diff --git a/www/nanoblogger/files/patch-nb b/www/nanoblogger/files/patch-nb index c426e0a..23b3038 100644 --- a/www/nanoblogger/files/patch-nb +++ b/www/nanoblogger/files/patch-nb @@ -1,23 +1,33 @@ ---- nb.orig Sun Jan 14 17:38:03 2007 -+++ nb Sun Jan 14 17:41:26 2007 +--- ./nb.orig 2009-04-26 03:55:07.000000000 +0200 ++++ ./nb 2009-06-22 09:31:59.000000000 +0200 @@ -1,4 +1,4 @@ -#! /bin/bash -+#!/usr/bin/env bash ++#! %%LOCALBASE%%/bin/bash ############################################################ - # NanoBlogger 3.3 Copyright 2006 n1xt3r (Kevin R. Wood) # + # NanoBlogger 3.4 Copyright 2009 n1xt3r (Kevin R. Wood) # ############################################################ -@@ -8,11 +8,11 @@ - VERSION="3.3" +@@ -9,11 +9,11 @@ - # nanoblogger's base install directory. + # -- hardcoded paths -- + # where to expect nanoblogger's base -NB_BASE_DIR=`dirname $0` -+NB_BASE_DIR="%%PREFIX%%/share/nanoblogger" - # documentation ++NB_BASE_DIR=%%DATADIR%% + # where to expect nanoblogger's documentation -NB_DOC_DIR="$NB_BASE_DIR/docs" -+NB_DOC_DIR="%%PREFIX%%/share/doc/nanoblogger" - # nanoblogger's conf file ++NB_DOC_DIR="%%DOCSDIR%%" + # where to expect nanoblogger's conf file -NB_CFG_DIR="$NB_BASE_DIR" +NB_CFG_DIR="%%PREFIX%%/etc" - - ### hardcoded paths ### - + # nanoblogger's language definitions directory. + NB_LANG_DIR="${NB_BASE_DIR}/lang" + # nanoblogger's module directory. +@@ -863,6 +863,9 @@ + for weblog_dir in "$NB_BASE_DIR"/default/*; do + cp -R "$weblog_dir" "$BLOG_DIR" + done ++ # set writable mode for default files ++ find "$BLOG_DIR" -type d -print0 | xargs -0 chmod 755 ++ find "$BLOG_DIR" -type f -print0 | xargs -0 chmod 644 + # create some critical empty directories + for weblog_emptydir in "$ARCHIVES_DIR" "$CACHE_DIR" "$PARTS_DIR"; do + [ ! -d "$BLOG_DIR/$weblog_emptydir" ] && mkdir "$BLOG_DIR/$weblog_emptydir" diff --git a/www/nanoblogger/files/patch-nb.conf b/www/nanoblogger/files/patch-nb.conf new file mode 100644 index 0000000..6f99204 --- /dev/null +++ b/www/nanoblogger/files/patch-nb.conf @@ -0,0 +1,11 @@ +--- ./nb.conf.orig 2007-02-19 00:55:08.000000000 +0100 ++++ ./nb.conf 2009-06-22 09:31:59.000000000 +0200 +@@ -7,7 +7,7 @@ + NB_LANG="en" + + # Set the default blog directory +-#BLOG_DIR="/var/www/weblog" ++#BLOG_DIR="/usr/local/www/weblog" + + # --- Blog Templates --- + # diff --git a/www/nanoblogger/files/patch-plugins__archive__master_index.sh b/www/nanoblogger/files/patch-plugins__archive__master_index.sh new file mode 100644 index 0000000..d1c9b31 --- /dev/null +++ b/www/nanoblogger/files/patch-plugins__archive__master_index.sh @@ -0,0 +1,20 @@ +--- ./plugins/archive/master_index.sh.orig 2008-05-27 06:37:33.000000000 +0200 ++++ ./plugins/archive/master_index.sh 2009-06-22 09:31:59.000000000 +0200 +@@ -65,7 +65,7 @@ + cat_total=${#db_categories[*]} + if [ "$cat_total" -gt 0 ]; then + # make NB_CategoryLinks placeholder +- NB_BrowseCategoryLinks=$( ++ NB_BrowseCategoryLinks=` + cat <<-EOF + + $template_browsecat +@@ -73,7 +73,7 @@ + $NB_ArchiveCategoryLinks + +
+- EOF) ++ EOF` + fi + + # make NB_ArchiveLinks placeholder diff --git a/www/nanoblogger/files/patch-plugins__archive__year__year_archive.sh b/www/nanoblogger/files/patch-plugins__archive__year__year_archive.sh new file mode 100644 index 0000000..356c174 --- /dev/null +++ b/www/nanoblogger/files/patch-plugins__archive__year__year_archive.sh @@ -0,0 +1,35 @@ +--- ./plugins/archive/year/year_archive.sh.orig 2008-07-15 20:11:53.000000000 +0200 ++++ ./plugins/archive/year/year_archive.sh 2009-06-22 09:33:11.000000000 +0200 +@@ -50,7 +50,7 @@ + set_baseurl "../../" + + ARCHENTRY_LIST=${DB_RESULTS[*]} +- NB_ArchiveEntryLinks=$( ++ NB_ArchiveEntryLinks=` + for entry in ${ARCHENTRY_LIST[*]}; do + NB_EntryID=$x_id${entrylink_var//[\/]/-} + set_entrylink "$entry" +@@ -66,12 +66,12 @@ + # Command to help filter order of categories + : ${CATLINKS_FILTERCMD:=sort} + >"$SCRATCH_FILE".cat_links +- entry_wcatids=`grep "$entry" "$NB_DATA_DIR/master.$NB_DBTYPE"` ++ entry_wcatids=$(grep "$entry" "$NB_DATA_DIR/master.$NB_DBTYPE") + entry_catids=${entry_wcatids##*\>} + [ "$entry_wcatids" = "$entry_catids" ] && + entry_catids= + for entry_catnum in ${entry_catids//\,/ }; do +- cat_title=`nb_print "$NB_DATA_DIR"/cat_"$entry_catnum.$NB_DBTYPE" 1` ++ cat_title=$(nb_print "$NB_DATA_DIR"/cat_"$entry_catnum.$NB_DBTYPE" 1) + set_catlink cat_"$entry_catnum.$NB_DBTYPE" + cat_index="$category_link" + # following must fit on single line +@@ -92,7 +92,7 @@ + - $NB_ArchiveEntryTitle + $([ ! -z "$NB_EntryCategories" ] && echo "- $NB_EntryCategories")
+ EOF +- done; month=) ++ done; month=` + + # create links for monthly archives + [ -z "$CAL_CMD" ] && CAL_CMD="cal" diff --git a/www/nanoblogger/files/patch-plugins__page__feed_links.sh b/www/nanoblogger/files/patch-plugins__page__feed_links.sh new file mode 100644 index 0000000..4867eb3 --- /dev/null +++ b/www/nanoblogger/files/patch-plugins__page__feed_links.sh @@ -0,0 +1,52 @@ +--- ./plugins/page/feed_links.sh.orig 2007-02-05 00:12:00.000000000 +0100 ++++ ./plugins/page/feed_links.sh 2009-06-22 09:31:59.000000000 +0200 +@@ -16,14 +16,14 @@ + NB_AtomLink="${BASE_URL}atom.$NB_SYND_FILETYPE" + NB_AtomTitle="Atom $NB_AtomVer" + fi +- NB_AtomAltLink=$( ++ NB_AtomAltLink=` + cat <<-EOF + + EOF +- ) ++ ` + fi + + # RSS 2.0 +@@ -36,14 +36,14 @@ + NB_RSS2Link="${BASE_URL}rss.$NB_SYND_FILETYPE" + NB_RSS2Title="RSS $NB_RSS2Ver" + fi +- NB_RSS2AltLink=$( ++ NB_RSS2AltLink=` + cat <<-EOF + + EOF +- ) ++ ` + fi + + # RSS 1.0 +@@ -56,13 +56,13 @@ + NB_RSSLink="${BASE_URL}index.$NB_SYND_FILETYPE" + NB_RSSTitle="RSS $NB_RSSVer" + fi +- NB_RSSAltLink=$( ++ NB_RSSAltLink=` + cat <<-EOF + + EOF +- ) ++ ` + fi + diff --git a/www/nanoblogger/files/patch-plugins_entry_format_markdown_sh b/www/nanoblogger/files/patch-plugins_entry_format_markdown_sh deleted file mode 100644 index da31b0d..0000000 --- a/www/nanoblogger/files/patch-plugins_entry_format_markdown_sh +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/entry/format/markdown.sh.orig 2005-11-03 08:21:22.000000000 +0100 -+++ plugins/entry/format/markdown.sh 2008-06-12 11:22:45.000000000 +0200 -@@ -2,7 +2,7 @@ - # Markdown is documented and implemented at - # - --MARKDOWN="/usr/bin/markdown" -+MARKDOWN="%%PREFIX%%/bin/markdown" - MARKDOWN_OPTS="" - - # nb_msg "$plugins_textformataction `basename $nb_plugin` ..." diff --git a/www/nanoblogger/files/patch-plugins_page_format_markdown_sh b/www/nanoblogger/files/patch-plugins_page_format_markdown_sh deleted file mode 100644 index 443504f..0000000 --- a/www/nanoblogger/files/patch-plugins_page_format_markdown_sh +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/page/format/markdown.sh.orig 2005-11-09 23:45:03.000000000 +0100 -+++ plugins/page/format/markdown.sh 2008-06-12 11:23:22.000000000 +0200 -@@ -2,7 +2,7 @@ - # Markdown is documented and implemented at - # - --MARKDOWN="/usr/bin/markdown" -+MARKDOWN="%%PREFIX%%/bin/markdown" - MARKDOWN_OPTS="" - - nb_msg "$plugins_textformataction `basename $nb_plugin` ..." diff --git a/www/nanoblogger/files/pkg-message.in b/www/nanoblogger/files/pkg-message.in index 15ba3ba..a2a5628 100644 --- a/www/nanoblogger/files/pkg-message.in +++ b/www/nanoblogger/files/pkg-message.in @@ -17,16 +17,8 @@ The provided documentation and the preferred upgrade path (in the README file) can be found in the additional documentation directory: %%DOCSDIR%%/* - SIDE NOTES FOR OLD USERS: As always with new release, don't forget to read the documentation and to -update your weblog configuration file, e.g. ${blog_dir}/blog.conf. In the -same time, pay attention to these particular points: - - The way articles are build has changed: nb {-E|--draft} must be use now. - - The base skeleton has been modified too, you _may_ want to update your - old entries, but that seems not mandatory though. - - Be careful if you have customized your CSS style file: there is a lot of - changes in this area, so layout may be very different with this version - than you may expected. +update your weblog configuration file, e.g. ${blog_dir}/blog.conf. diff --git a/www/nanoblogger/pkg-plist b/www/nanoblogger/pkg-plist index 139f40f..2d42137 100644 --- a/www/nanoblogger/pkg-plist +++ b/www/nanoblogger/pkg-plist @@ -5,24 +5,14 @@ etc/nb.conf.sample @exec mkdir -p %D/share/nanoblogger/default/parts @exec mkdir -p %D/share/nanoblogger/default/cache @exec mkdir -p %D/share/nanoblogger/default/plugins -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/TODO -%%PORTDOCS%%%%DOCSDIR%%/nanoblogger.html %%DATADIR%%/default/articles/example.txt -%%DATADIR%%/default/atom.xml %%DATADIR%%/default/blog.conf %%DATADIR%%/default/data/cat_1.db %%DATADIR%%/default/images/favicon.ico %%DATADIR%%/default/images/feed-icon-14x14.png -%%DATADIR%%/default/index.html -%%DATADIR%%/default/index.xml +%%DATADIR%%/default/styles/feed.css %%DATADIR%%/default/styles/nb_clean.css %%DATADIR%%/default/styles/nb_default.css -%%DATADIR%%/default/styles/nb_rusted.css -%%DATADIR%%/default/styles/nb_spring.css -%%DATADIR%%/default/styles/nb_steelblue.css %%DATADIR%%/default/styles/print.css %%DATADIR%%/default/templates/category_archive.htm %%DATADIR%%/default/templates/category_entry.htm @@ -34,6 +24,7 @@ etc/nb.conf.sample %%DATADIR%%/default/templates/main_links.htm %%DATADIR%%/default/templates/makepage.htm %%DATADIR%%/default/templates/month_archive.htm +%%DATADIR%%/default/templates/month_entry.htm %%DATADIR%%/default/templates/permalink.htm %%DATADIR%%/default/templates/permalink_entry.htm %%DATADIR%%/default/templates/weblog_status.htm @@ -42,9 +33,10 @@ etc/nb.conf.sample %%DATADIR%%/lang/en/messages.lang %%DATADIR%%/lang/en/plugins.lang %%DATADIR%%/lang/en/templates.lang +%%DATADIR%%/lib/archive.sh %%DATADIR%%/lib/config.sh +%%DATADIR%%/lib/database.sh %%DATADIR%%/lib/error.sh -%%DATADIR%%/lib/query.sh %%DATADIR%%/lib/tools.sh %%DATADIR%%/moods/moods.conf %%DATADIR%%/moods/mymood.txt @@ -64,18 +56,16 @@ etc/nb.conf.sample %%DATADIR%%/moods/smilies/smiley.gif %%DATADIR%%/moods/smilies/tongue.gif %%DATADIR%%/moods/smilies/wink.gif -%%DATADIR%%/plugins/archive/day/cal2daytitle.sh +%%DATADIR%%/plugins/archive/day/day_archive.sh %%DATADIR%%/plugins/archive/master_index.sh -%%DATADIR%%/plugins/archive/month/month_calendar.sh -%%DATADIR%%/plugins/archive/year/year_index.sh +%%DATADIR%%/plugins/archive/month/month_archive.sh +%%DATADIR%%/plugins/archive/year/year_archive.sh %%DATADIR%%/plugins/atom.sh %%DATADIR%%/plugins/calendar.sh %%DATADIR%%/plugins/entry/category_links.sh %%DATADIR%%/plugins/entry/format/autobr.sh %%DATADIR%%/plugins/entry/format/markdown.sh %%DATADIR%%/plugins/entry/format/raw.sh -%%DATADIR%%/plugins/entry/mod/base_url.sh -%%DATADIR%%/plugins/entry/mod/moods.sh %%DATADIR%%/plugins/makepage/tidy.sh %%DATADIR%%/plugins/page/feed_links.sh %%DATADIR%%/plugins/page/format/autobr.sh @@ -85,35 +75,46 @@ etc/nb.conf.sample %%DATADIR%%/plugins/post/clean_parts.off %%DATADIR%%/plugins/recent_entries.sh %%DATADIR%%/plugins/rss2.sh +%%DATADIR%%/plugins/shortcode/baseurl.sh +%%DATADIR%%/plugins/shortcode/moods.sh %%DATADIR%%/plugins/weblog_links.sh %%DATADIR%%/plugins/weblog_status.sh %%DATADIR%%/plugins/z001_articles_meta.sh %%DATADIR%%/welcome-to-nb.txt -@dirrm %%DATADIR%%/plugins/post -@dirrm %%DATADIR%%/plugins/page/format -@dirrm %%DATADIR%%/plugins/page -@dirrm %%DATADIR%%/plugins/makepage -@dirrm %%DATADIR%%/plugins/entry/mod -@dirrm %%DATADIR%%/plugins/entry/format -@dirrm %%DATADIR%%/plugins/entry -@dirrm %%DATADIR%%/plugins/archive/year -@dirrm %%DATADIR%%/plugins/archive/month +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/copyright +%%PORTDOCS%%%%DOCSDIR%%/html/nanoblogger.html +@dirrm %%DATADIR%%/default/articles +@dirrm %%DATADIR%%/default/cache +@dirrm %%DATADIR%%/default/data +@dirrm %%DATADIR%%/default/images +@dirrm %%DATADIR%%/default/plugins +@dirrm %%DATADIR%%/default/styles +@dirrm %%DATADIR%%/default/templates +@dirrm %%DATADIR%%/default +@dirrm %%DATADIR%%/lang/en +@dirrm %%DATADIR%%/lang +@dirrm %%DATADIR%%/lib +@dirrm %%DATADIR%%/moods/smilies +@dirrm %%DATADIR%%/moods +@dirrm %%DATADIR%%/plugins/archive/category @dirrm %%DATADIR%%/plugins/archive/day +@dirrm %%DATADIR%%/plugins/archive/month +@dirrm %%DATADIR%%/plugins/archive/year @dirrm %%DATADIR%%/plugins/archive +@dirrm %%DATADIR%%/plugins/entry/format +@dirrm %%DATADIR%%/plugins/entry/mod +@dirrm %%DATADIR%%/plugins/entry +@dirrm %%DATADIR%%/plugins/makepage +@dirrm %%DATADIR%%/plugins/page/format +@dirrm %%DATADIR%%/plugins/page/mod +@dirrm %%DATADIR%%/plugins/page +@dirrm %%DATADIR%%/plugins/post +@dirrm %%DATADIR%%/plugins/shortcode @dirrm %%DATADIR%%/plugins -@dirrm %%DATADIR%%/moods/smilies -@dirrm %%DATADIR%%/moods -@dirrm %%DATADIR%%/lib -@dirrm %%DATADIR%%/lang/en -@dirrm %%DATADIR%%/lang -@dirrm %%DATADIR%%/default/templates -@dirrm %%DATADIR%%/default/styles -@dirrm %%DATADIR%%/default/plugins -@dirrm %%DATADIR%%/default/parts -@dirrm %%DATADIR%%/default/images -@dirrm %%DATADIR%%/default/data -@dirrm %%DATADIR%%/default/cache -@dirrm %%DATADIR%%/default/articles -@dirrm %%DATADIR%%/default -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%%/ +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html +%%PORTDOCS%%@dirrm %%DOCSDIR%%/ -- 1.6.3.2 --- 0001-Update-www-nanoblogger-to-version-3.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sat Jul 4 14:52:21 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat Jul 4 14:52:32 2009 Subject: ports/136321: x11-toolkits/linux-pango: please update linux based port of pango Message-ID: <200907041452.n64EqK55024239@freefall.freebsd.org> Old Synopsis: Please update linux based port of Pango New Synopsis: x11-toolkits/linux-pango: please update linux based port of pango Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-emulation Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 4 14:50:51 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=136321 From tobias.rehbein at web.de Sat Jul 4 15:00:20 2009 From: tobias.rehbein at web.de (Tobias Rehbein) Date: Sat Jul 4 15:00:27 2009 Subject: ports/136323: new port: www/nanoblogger-extra - optional additions to www/nanoblogger Message-ID: <200907041459.n64ExmBJ050592@sushi.pseudo.local> >Number: 136323 >Category: ports >Synopsis: new port: www/nanoblogger-extra - optional additions to www/nanoblogger >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 15:00:16 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Tobias Rehbein >Release: FreeBSD 7.2-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD sushi.pseudo.local 7.2-RELEASE-p1 FreeBSD 7.2-RELEASE-p1 #48: Wed Jun 17 13:26:54 CEST 2009 tobi@sushi.pseudo.local:/usr/obj/usr/src/sys/SUSHI i386 >Description: This PR is a follow-up to ports/136322 as these ports have to be in sync. www/nanoblogger-extra contains additional language definitions, plugins, and various other add-ons. While www/nanoblogger might be used stand-alone www/nanoblogger-extra is run-dependent of www/nanoblogger (and in fact shares it's ${DATADIR} with it). The additional patch you find attached changes the pkg-message to point nanoblogger users to the existence of nanoblogger-extra. >How-To-Repeat: >Fix: --- new-port__www_nanoblogger-extra.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # www/nanoblogger-extra # www/nanoblogger-extra/files # www/nanoblogger-extra/Makefile # www/nanoblogger-extra/distinfo # www/nanoblogger-extra/pkg-descr # www/nanoblogger-extra/pkg-plist # echo c - www/nanoblogger-extra mkdir -p www/nanoblogger-extra > /dev/null 2>&1 echo c - www/nanoblogger-extra/files mkdir -p www/nanoblogger-extra/files > /dev/null 2>&1 echo x - www/nanoblogger-extra/Makefile sed 's/^X//' >www/nanoblogger-extra/Makefile << 'd153722807fb182bc0469145aa0fca74' X# ex:ts=8 X# Ports collection makefile for: nanoblogger-extra X# Date created: Jun 19, 2009 X# Whom: Tobias Rehbein X# X# $FreeBSD$ X# X XPORTNAME= nanoblogger-extra XPORTVERSION= 3.4 XCATEGORIES= www XMASTER_SITES= SF/nanoblogger X XMAINTAINER= tobias.rehbein@web.de XCOMMENT= Extras for nanoblogger, a small weblog engine X XRUN_DEPENDS= nb:${PORTSDIR}/www/nanoblogger X XNO_BUILD= yes X XDATADIR= ${PREFIX}/share/nanoblogger X Xdo-install: X.for data in default lang plugins X ( cd ${WRKSRC}/${data} && \ X ${COPYTREE_SHARE} \* ${DATADIR}/${data} "! -name *.orig" ) X.endfor X Xpost-install: X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X.for doc in COPYING README X ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} X.endfor X ${MKDIR} ${DOCSDIR}/html X ${INSTALL_DATA} ${WRKSRC}/docs/*.html ${DOCSDIR}/html X.endif X.if !defined(NOPORTEXAMPLES) X ${MKDIR} ${EXAMPLESDIR} X ${INSTALL_DATA} ${WRKSRC}/docs/examples/nanoblogger.bash_completion ${EXAMPLESDIR} X.endif X X.include d153722807fb182bc0469145aa0fca74 echo x - www/nanoblogger-extra/distinfo sed 's/^X//' >www/nanoblogger-extra/distinfo << '440d91f732f22822774f5c60df66db85' XMD5 (nanoblogger-extra-3.4.tar.gz) = 0c64600939a50faf67fb8ba1a6431ef1 XSHA256 (nanoblogger-extra-3.4.tar.gz) = 6f92ba47cf28b9caa6e309196ec4018988708dee87219631940da450def7bc3b XSIZE (nanoblogger-extra-3.4.tar.gz) = 68202 440d91f732f22822774f5c60df66db85 echo x - www/nanoblogger-extra/pkg-descr sed 's/^X//' >www/nanoblogger-extra/pkg-descr << 'a8bd5f863031a44677748864d64c8675' XNanoBlogger is a small weblog engine written in Bash for the command Xline. It uses common UNIX tools such as cat, grep, and sed to create Xstatic HTML content. X XThis port (www/nanoblogger-extra) contains additional language Xdefinitions, plugins, and various other add-ons for www/nanoblogger. X XWWW: http://nanoblogger.sourceforge.net/ a8bd5f863031a44677748864d64c8675 echo x - www/nanoblogger-extra/pkg-plist sed 's/^X//' >www/nanoblogger-extra/pkg-plist << '23e319591861173dfe0bb72392af31d8' X%%DATADIR%%/default/styles/nb_rusted.css X%%DATADIR%%/default/styles/nb_spring.css X%%DATADIR%%/default/styles/nb_steelblue.css X%%DATADIR%%/default/templates/category_inc_archive.htm X%%DATADIR%%/default/templates/category_inc_entry.htm X%%DATADIR%%/lang/de/help.txt X%%DATADIR%%/lang/de/messages.lang X%%DATADIR%%/lang/de/plugins.lang X%%DATADIR%%/lang/de/templates.lang X%%DATADIR%%/lang/es/help.txt X%%DATADIR%%/lang/es/messages.lang X%%DATADIR%%/lang/es/plugins.lang X%%DATADIR%%/lang/es/templates.lang X%%DATADIR%%/lang/fr/help.txt X%%DATADIR%%/lang/fr/messages.lang X%%DATADIR%%/lang/fr/plugins.lang X%%DATADIR%%/lang/fr/templates.lang X%%DATADIR%%/lang/tr/help.txt X%%DATADIR%%/lang/tr/messages.lang X%%DATADIR%%/lang/tr/plugins.lang X%%DATADIR%%/lang/tr/templates.lang X%%DATADIR%%/lang/zh_TW/help.txt X%%DATADIR%%/lang/zh_TW/messages.lang X%%DATADIR%%/lang/zh_TW/plugins.lang X%%DATADIR%%/lang/zh_TW/templates.lang X%%DATADIR%%/plugins/archive/category/include_listings.sh X%%DATADIR%%/plugins/archive/master_fullindex.off X%%DATADIR%%/plugins/entry/format/autopbr.sh X%%DATADIR%%/plugins/entry/z0_excerpt.off X%%DATADIR%%/plugins/page/format/autopbr.sh X%%DATADIR%%/plugins/page/page_links.off X%%DATADIR%%/plugins/shortcode/yahoobuzz.sh X%%DATADIR%%/plugins/shortcode/youtube.sh X%%DATADIR%%/plugins/001_mymood.off X%%DATADIR%%/plugins/file_links.sh X%%DATADIR%%/plugins/fortune.sh X%%DATADIR%%/plugins/rss.sh X%%PORTDOCS%%%%DOCSDIR%%/COPYING X%%PORTDOCS%%%%DOCSDIR%%/README X%%PORTDOCS%%%%DOCSDIR%%/html/nanoblogger_de.html X%%PORTDOCS%%%%DOCSDIR%%/html/nanoblogger_fr.html X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nanoblogger.bash_completion X%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ X%%PORTDOCS%%@dirrm %%DOCSDIR%%/html X%%PORTDOCS%%@dirrm %%DOCSDIR%%/ X@dirrm %%DATADIR%%/lang/de X@dirrm %%DATADIR%%/lang/es X@dirrm %%DATADIR%%/lang/fr X@dirrm %%DATADIR%%/lang/tr X@dirrm %%DATADIR%%/lang/zh_TW 23e319591861173dfe0bb72392af31d8 exit --- new-port__www_nanoblogger-extra.shar ends here --- --- 0001-Add-www-nanoblogger-extra-port-for-version-3.4.patch begins here --- >From cb738ec179afc273c4189b4bd98e70527517fc15 Mon Sep 17 00:00:00 2001 From: Tobias Rehbein Date: Sat, 20 Jun 2009 21:07:35 +0200 This port (www/nanoblogger-extra) contains additional language definitions, plugins, and various other add-ons for www/nanoblogger. --- www/nanoblogger/files/pkg-message.in | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/www/nanoblogger/files/pkg-message.in b/www/nanoblogger/files/pkg-message.in index a2a5628..68164cd 100644 --- a/www/nanoblogger/files/pkg-message.in +++ b/www/nanoblogger/files/pkg-message.in @@ -17,6 +17,9 @@ The provided documentation and the preferred upgrade path (in the README file) can be found in the additional documentation directory: %%DOCSDIR%%/* +Consider installing the www/nanoblogger-extra port for additional language +definitions, plugins, and various other add-ons. + SIDE NOTES FOR OLD USERS: As always with new release, don't forget to read the documentation and to -- 1.6.3.2 --- 0001-Add-www-nanoblogger-extra-port-for-version-3.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From hsn at sendmail.cz Sat Jul 4 15:30:09 2009 From: hsn at sendmail.cz (Radim Kolar SF.NET) Date: Sat Jul 4 15:30:15 2009 Subject: ports/136324: [PATCH] sysutils/bacula-server: update to 3.0.1 Message-ID: >Number: 136324 >Category: ports >Synopsis: [PATCH] sysutils/bacula-server: update to 3.0.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 15:30:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Radim Kolar SF.NET >Release: FreeBSD 6.4-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD sanatana.dharma 6.4-RELEASE-p4 FreeBSD 6.4-RELEASE-p4 #1: Tue Jun 9 11:43:11 CEST >Description: update to 3.0.1 Port maintainer (dan@langille.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- bacula-server-3.0.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/bacula-server/Makefile /home/hsn/hacked/bacula-server/Makefile --- /usr/ports/sysutils/bacula-server/Makefile 2009-06-01 18:49:39.000000000 +0200 +++ /home/hsn/hacked/bacula-server/Makefile 2009-07-04 15:32:23.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= bacula -DISTVERSION= 3.0.0 +DISTVERSION= 3.0.1 CATEGORIES?= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= bacula diff -ruN --exclude=CVS /usr/ports/sysutils/bacula-server/distinfo /home/hsn/hacked/bacula-server/distinfo --- /usr/ports/sysutils/bacula-server/distinfo 2009-04-13 04:38:38.000000000 +0200 +++ /home/hsn/hacked/bacula-server/distinfo 2009-07-04 15:32:49.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (bacula-3.0.0.tar.gz) = 5ea5294c4f66f0d8ba1414f1ca9dc79b -SHA256 (bacula-3.0.0.tar.gz) = cafcf9e9682662d2efcef84a6d90ee09230c60c7ed15a7051b70a30f2966d45c -SIZE (bacula-3.0.0.tar.gz) = 3834280 +MD5 (bacula-3.0.1.tar.gz) = 173ef4d07ff10dfdbcc1142d8be21f17 +SHA256 (bacula-3.0.1.tar.gz) = 310ad1d9fb97b5eaf78cae6de47219d485a6762b523753415bbced5dca41dd2c +SIZE (bacula-3.0.1.tar.gz) = 3842746 diff -ruN --exclude=CVS /usr/ports/sysutils/bacula-server/pkg-plist /home/hsn/hacked/bacula-server/pkg-plist --- /usr/ports/sysutils/bacula-server/pkg-plist 2009-04-13 04:38:38.000000000 +0200 +++ /home/hsn/hacked/bacula-server/pkg-plist 2009-07-04 16:51:32.000000000 +0200 @@ -1,4 +1,3 @@ -lib/bpipe-fd.so lib/libbac.la lib/libbac.so lib/libbac.so.1 --- bacula-server-3.0.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 15:30:21 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 15:30:27 2009 Subject: ports/136324: [PATCH] sysutils/bacula-server: update to 3.0.1 Message-ID: <200907041530.n64FUKXH048030@freefall.freebsd.org> Synopsis: [PATCH] sysutils/bacula-server: update to 3.0.1 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Jul 4 15:30:19 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136324 From edwin at FreeBSD.org Sat Jul 4 15:40:05 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Sat Jul 4 15:40:12 2009 Subject: ports/136324: [PATCH] sysutils/bacula-server: update to 3.0.1 Message-ID: <200907041540.n64Fe49K055517@freefall.freebsd.org> The following reply was made to PR ports/136324; it has been noted by GNATS. From: Edwin Groothuis To: dan@langille.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/136324: [PATCH] sysutils/bacula-server: update to 3.0.1 Date: Sat, 4 Jul 2009 15:30:16 UT Maintainer of sysutils/bacula-server, Please note that PR ports/136324 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/136324 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From markk at knigma.org Sat Jul 4 16:10:06 2009 From: markk at knigma.org (Mark Knight) Date: Sat Jul 4 16:10:12 2009 Subject: ports/136326: Update audi/squeezecenter to 7.3.3 Message-ID: <200907041609.n64G9QjQ000260@shrewd.pub.knigma.org> >Number: 136326 >Category: ports >Synopsis: Update audi/squeezecenter to 7.3.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 16:10:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mark Knight >Release: FreeBSD 6.4-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD shrewd.pub.knigma.org 6.4-RELEASE-p1 FreeBSD 6.4-RELEASE-p1 #0: Mon Dec 29 20:00:06 GMT 2008 root@shrewd.pub.knigma.org:/usr/obj/usr/src/sys/SHREWD i386 >Description: Update audio/squeezecenter to 7.3.3 >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/audio/squeezecenter/Makefile,v retrieving revision 1.60 diff -u -r1.60 Makefile --- Makefile 3 Jun 2009 21:29:53 -0000 1.60 +++ Makefile 20 Jun 2009 18:22:50 -0000 @@ -6,8 +6,7 @@ # PORTNAME= squeezecenter -PORTVERSION= 7.3.2 -PORTREVISION= 2 +PORTVERSION= 7.3.3 CATEGORIES= audio MASTER_SITES= http://downloads.slimdevices.com/SqueezeCenter_v${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.0//}-noCPAN Index: distinfo =================================================================== RCS file: /home/ncvs/ports/audio/squeezecenter/distinfo,v retrieving revision 1.29 diff -u -r1.29 distinfo --- distinfo 23 Jan 2009 21:59:48 -0000 1.29 +++ distinfo 21 Jun 2009 08:52:53 -0000 @@ -1,3 +1,3 @@ -MD5 (squeezecenter-7.3.2-noCPAN.tgz) = fc8d01eb4977bc583d8c6e851ebf9adf -SHA256 (squeezecenter-7.3.2-noCPAN.tgz) = 42be2af96fd0924df3fb69bb6cbeb3d73304608bd865cb7f2c505c254f8d664d -SIZE (squeezecenter-7.3.2-noCPAN.tgz) = 25322353 +MD5 (squeezecenter-7.3.3-noCPAN.tgz) = ba0f2a512d533a03874d10b676ef0126 +SHA256 (squeezecenter-7.3.3-noCPAN.tgz) = 1aaa6b3867657f6c35a1ebadf3e0aa3e0bfaa519d26eb0f35fdbb32a0f4ff533 +SIZE (squeezecenter-7.3.3-noCPAN.tgz) = 25491195 Index: files/patch-convert.conf =================================================================== RCS file: /home/ncvs/ports/audio/squeezecenter/files/patch-convert.conf,v retrieving revision 1.5 diff -u -r1.5 patch-convert.conf --- files/patch-convert.conf 23 Jan 2009 21:59:48 -0000 1.5 +++ files/patch-convert.conf 20 Jun 2009 18:17:11 -0000 @@ -1,7 +1,7 @@ ---- convert.conf.orig 2009-01-23 19:23:04.000000000 +0100 -+++ convert.conf 2009-01-23 19:21:33.000000000 +0100 -@@ -74,8 +74,8 @@ - # specific combinations match before wildcards +--- convert.conf.orig 2009-06-15 23:02:33.000000000 +0100 ++++ convert.conf 2009-06-20 19:16:20.000000000 +0100 +@@ -82,8 +82,8 @@ + [faad] -q -w -f 1 $FILE$ | [lame] --silent -q $QUALITY$ $BITRATE - - mov mp3 * * - # FRB:{BITRATE=-B %B}D:{RESAMPLE=--resample %D} @@ -11,10 +11,10 @@ alc mp3 * * # FB:{BITRATE=-B %B}D:{RESAMPLE=--resample %D} -@@ -158,9 +158,9 @@ - [wvunpack] $FILE$ -rq $START$ $END$ -o - +@@ -173,9 +173,9 @@ + # IF + [faad] -q -w -f 2 -b 1 -s 44100 $FILE$ - ## you can comment this out if you want to use LAME to transcode AAC/MOV files to MP3. -mov aif * * - # FR - [mov123] $FILE$ @@ -24,8 +24,8 @@ wma wma * * - -@@ -198,8 +198,8 @@ - [mac] $FILE$ - -d | [flac] -cs --totally-silent --compression-level-0 - +@@ -221,8 +221,8 @@ + [faad] -q -w -f 1 $FILE$ | [flac] -cs --totally-silent --compression-level-0 --ignore-chunk-sizes - mov flc * * - # FR >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Sat Jul 4 16:23:48 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat Jul 4 16:23:54 2009 Subject: ports/136324: [PATCH] sysutils/bacula-server: update to 3.0.1 Message-ID: <200907041623.n64GNlZ5091478@freefall.freebsd.org> Synopsis: [PATCH] sysutils/bacula-server: update to 3.0.1 State-Changed-From-To: feedback->closed State-Changed-By: miwi State-Changed-When: Sat Jul 4 16:23:47 UTC 2009 State-Changed-Why: duplicate with 136300. http://www.freebsd.org/cgi/query-pr.cgi?pr=136324 From gustau.perez at gmail.com Sat Jul 4 17:40:04 2009 From: gustau.perez at gmail.com (Gustau Pérez) Date: Sat Jul 4 17:40:10 2009 Subject: ports/136328: Policykit-gnome doesn't bring the auth dialog when not root Message-ID: <200907041729.n64HTtXs065055@www.freebsd.org> >Number: 136328 >Category: ports >Synopsis: Policykit-gnome doesn't bring the auth dialog when not root >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 17:40:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Gustau Pérez >Release: 7.2 STABLE >Organization: >Environment: FreeBSD gusiport 7.2-STABLE FreeBSD 7.2-STABLE #3: Thu Jun 25 10:35:14 CEST 2009 gus@gusiport:/usr/obj/usr/src/sys/CUSTOM i386 >Description: I'm having troubles using policykit-gnome. My system is a clean 7.2 STABLE, all ports removed and recompiled. /usr/local completely clean. If I log as a normal user and if I try to change some actions with policykit-gnome, it doesn't bring me the auth dialog. If I log as root, I can change everything. If I remember well I thing the same happened with CURRENT, but can't confirm it right now. I checked 'policykit -> Modify defaults for implicit authorization', which gave me 'Admin Authentication' (the default value). My ${LOCALBASE}/etc/PolicyKit/PolicyKit.conf allows root to do anything and defines an admin group. If I add a user and allow him to do anything (by editing PolicyKit.conf) , then it works. So that made me think the problem is related to policykit-gnome. I'm attaching a patch which fixes the problem. >How-To-Repeat: Log into gnome as a non root user, gnome -> system -> preferences -> authorization and try to change a default config. >Fix: Patch attached with submission follows: --- polkit-gnome/polkit-gnome-action.c.old 2009-06-28 12:54:35.000000000 +0200 +++ polkit-gnome/polkit-gnome-action.c 2009-06-28 12:55:07.000000000 +0200 @@ -2062,6 +2062,8 @@ case POLKIT_RESULT_ONLY_VIA_SELF_AUTH_KEEP_ALWAYS: /* g_debug ("blocking clicked"); */ g_signal_stop_emission_by_name (button, "clicked"); + if (action->priv->polkit_action != NULL) + g_signal_emit (action, signals [AUTH_START_SIGNAL], 0); break; default: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sat Jul 4 18:06:24 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat Jul 4 18:06:30 2009 Subject: ports/136326: Update audio/squeezecenter to 7.3.3 Message-ID: <200907041806.n64I6NLr067763@freefall.freebsd.org> Old Synopsis: Update audi/squeezecenter to 7.3.3 New Synopsis: Update audio/squeezecenter to 7.3.3 Responsible-Changed-From-To: freebsd-ports-bugs->brooks Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 4 18:05:56 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=136326 From linimon at FreeBSD.org Sat Jul 4 19:24:40 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat Jul 4 19:24:47 2009 Subject: ports/136328: sysutils/policykit-gnome doesn't bring the auth dialog when not root Message-ID: <200907041924.n64JOdKr030203@freefall.freebsd.org> Old Synopsis: Policykit-gnome doesn't bring the auth dialog when not root New Synopsis: sysutils/policykit-gnome doesn't bring the auth dialog when not root Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jul 4 19:24:09 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=136328 From sbrabez at gmail.com Sat Jul 4 20:40:01 2009 From: sbrabez at gmail.com (Sofian Brabez) Date: Sat Jul 4 20:40:08 2009 Subject: ports/136330: [patch] x11-wm/i3: Fix path in example and man file Message-ID: <200907042038.n64Kc0hx017260@www.freebsd.org> >Number: 136330 >Category: ports >Synopsis: [patch] x11-wm/i3: Fix path in example and man file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 20:40:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: FreeBSD freebsd.ifr.lan 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jul 2 23:42:18 CEST 2009 root@freebsd.ifr.lan:/usr/obj/usr/src/sys/FREEBSD i386 >Description: - Fix path in config.sample file - Handle correct path in i3.man file >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN i3.orig/Makefile i3/Makefile --- i3.orig/Makefile 2009-07-04 22:30:34.000000000 +0200 +++ i3/Makefile 2009-07-04 22:27:12.000000000 +0200 @@ -39,8 +39,9 @@ post-patch: @${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|g' ${WRKSRC}/src/config.c - @${REINPLACE_CMD} -e 's|/usr/|${PREFIX}|g' ${WRKSRC}/config.sample - @${REINPLACE_CMD} -e 's|PREFIX|${PREFIX}|g' ${WRKSRC}/man/Makefile + @${REINPLACE_CMD} -e 's|/usr/|${PREFIX}/|g' ${WRKSRC}/config.sample + @${REINPLACE_CMD} -e 's|PREFIX|${PREFIX}/|g' ${WRKSRC}/man/Makefile + @${REINPLACE_CMD} -e 's|/usr/|${PREFIX}/|g' ${WRKSRC}/man/i3.man # Create the manpage post-build: >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 20:40:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 20:40:19 2009 Subject: ports/136330: [patch] x11-wm/i3: Fix path in example and man file Message-ID: <200907042040.n64KeCcL089899@freefall.freebsd.org> Synopsis: [patch] x11-wm/i3: Fix path in example and man file Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 20:40:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136330 From e-ports at gmx.de Sat Jul 4 22:20:02 2009 From: e-ports at gmx.de (fusselbaer) Date: Sat Jul 4 22:21:53 2009 Subject: ports/136331: [update] make databases/sqlite3 compile with tcl85 Message-ID: <200907042217.n64MHpxI002476@www.freebsd.org> >Number: 136331 >Category: ports >Synopsis: [update] make databases/sqlite3 compile with tcl85 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jul 04 22:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: fusselbaer >Release: 7.2-STABLE i386 >Organization: >Environment: FreeBSD PENDRAGON.TASKFORCE 7.2-STABLE FreeBSD 7.2-STABLE #0: Thu Jun 25 04:54:00 CEST 2009 fussel@PENDRAGON.TASKFORCE:/usr/obj/usr/src/sys/PENDRAGON i386 >Description: Have no more tcl84 installad. databases/sqlite3 dont't like to compile with tcl85 that i have installed. Made patches patch-tcl-85-86_configure patch-tcl-85-86_configure.ac so databases/sclite3 compile on my box wiht tcl85, put tcl86 in the patches too, tcl86 with databases/sqlite is untestested. >How-To-Repeat: >Fix: patch-tcl-85-86_configure patch-tcl-85-86_configure.ac Patch attached with submission follows: diff -ruN files.orig/patch-tcl-85-86_configure files/patch-tcl-85-86_configure --- files.orig/patch-tcl-85-86_configure 1970-01-01 01:00:00.000000000 +0100 +++ files/patch-tcl-85-86_configure 2009-07-04 22:51:57.000000000 +0200 @@ -0,0 +1,11 @@ +--- configure.orig 2009-07-04 22:47:36.000000000 +0200 ++++ configure 2009-07-04 22:50:42.000000000 +0200 +@@ -12259,7 +12259,7 @@ + # if not, then we fall back to plain tclsh. + # TODO: try other versions before falling back? + # +-for ac_prog in tclsh8.4 tclsh ++for ac_prog in tclsh8.4 tclsh8.5 tclsh8.6 tclsh + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 diff -ruN files.orig/patch-tcl-85-86_configure.ac files/patch-tcl-85-86_configure.ac --- files.orig/patch-tcl-85-86_configure.ac 1970-01-01 01:00:00.000000000 +0100 +++ files/patch-tcl-85-86_configure.ac 2009-07-04 22:37:55.000000000 +0200 @@ -0,0 +1,11 @@ +--- configure.ac.orig 2009-07-04 22:24:23.000000000 +0200 ++++ configure.ac 2009-07-04 22:28:55.000000000 +0200 +@@ -139,7 +139,7 @@ + # if not, then we fall back to plain tclsh. + # TODO: try other versions before falling back? + # +-AC_CHECK_PROGS(TCLSH_CMD, [tclsh8.4 tclsh], none) ++AC_CHECK_PROGS(TCLSH_CMD, [tclsh8.4 tclsh8.5 tclsh8.6 tclsh], none) + if test "$TCLSH_CMD" = "none"; then + # If we can't find a local tclsh, then building the amalgamation will fail. + # We act as though --disable-amalgamation has been used. >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jul 4 22:21:56 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jul 4 22:22:52 2009 Subject: ports/136331: [update] make databases/sqlite3 compile with tcl85 Message-ID: <200907042221.n64MLtSW070324@freefall.freebsd.org> Synopsis: [update] make databases/sqlite3 compile with tcl85 Responsible-Changed-From-To: freebsd-ports-bugs->mnag Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 4 22:21:55 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136331 From linimon at FreeBSD.org Sun Jul 5 00:26:53 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Jul 5 00:26:59 2009 Subject: ports/136260: Re: [PATCH]GPGME 1.2.0 will break crypto in kdepim (Re: ports/135911: [MAINTAINER] security/gpgme: Update to version 1.2.0) Message-ID: <200907050026.n650Qq1p064646@freefall.freebsd.org> Old Synopsis: Re: Fwd: [PATCH]GPGME 1.2.0 will break crypto in kdepim (Re: New Synopsis: Re: [PATCH]GPGME 1.2.0 will break crypto in kdepim (Re: ports/135911: [MAINTAINER] security/gpgme: Update to version 1.2.0) State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Jul 5 00:25:27 UTC 2009 State-Changed-Why: Misfiled followup to ports/135911, already committed. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 5 00:25:27 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=136260 From linimon at FreeBSD.org Sun Jul 5 00:28:35 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Jul 5 00:28:41 2009 Subject: ports/136261: Re: ports/134194: graphics/dri fail Message-ID: <200907050028.n650SZhk064713@freefall.freebsd.org> Old Synopsis: graphics/dri fail - PR 134194 New Synopsis: Re: ports/134194: graphics/dri fail State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Jul 5 00:27:09 UTC 2009 State-Changed-Why: Misfiled followup to ports/134194; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 5 00:27:09 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=136261 From linimon at FreeBSD.org Sun Jul 5 00:31:05 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Jul 5 00:31:11 2009 Subject: ports/136274: Re: ports/136273: sysutils/linux-megacli fix Message-ID: <200907050031.n650V4V8073019@freefall.freebsd.org> Synopsis: Re: ports/136273: sysutils/linux-megacli fix State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Jul 5 00:30:15 UTC 2009 State-Changed-Why: Misfiled followup to ports/136273, already committed. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 5 00:30:15 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=136274 From linimon at FreeBSD.org Sun Jul 5 00:32:14 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Jul 5 00:32:20 2009 Subject: ports/136276: Re: sysutils/linux-megacli fix Message-ID: <200907050032.n650WDxb073149@freefall.freebsd.org> Synopsis: Re: sysutils/linux-megacli fix State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Jul 5 00:31:18 UTC 2009 State-Changed-Why: Misfiled followup to ports/136273, already committed. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 5 00:31:18 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=136276 From linimon at FreeBSD.org Sun Jul 5 00:33:02 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Jul 5 00:33:09 2009 Subject: ports/136279: Re: ports/136273: sysutils/linux-megacli fix Message-ID: <200907050033.n650X1B2073919@freefall.freebsd.org> Synopsis: Re: ports/136273: sysutils/linux-megacli fix State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Jul 5 00:32:23 UTC 2009 State-Changed-Why: Misfiled followup to ports/136273, already committed. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jul 5 00:32:23 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=136279 From miwi at FreeBSD.org Sun Jul 5 00:42:26 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sun Jul 5 00:42:37 2009 Subject: ports/136315: [maintainer update] Update port: multimedia/mlt 0.4.2 -> 0.4.4 Message-ID: <200907050042.n650gPQV081338@freefall.freebsd.org> Synopsis: [maintainer update] Update port: multimedia/mlt 0.4.2 -> 0.4.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jul 5 00:42:25 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136315 From miwi at FreeBSD.org Sun Jul 5 00:42:29 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sun Jul 5 00:42:37 2009 Subject: ports/136316: [maintainer update] Update port: multimedia/kdenlive 0.7.4 -> 0.7.5 Message-ID: <200907050042.n650gShY081404@freefall.freebsd.org> Synopsis: [maintainer update] Update port: multimedia/kdenlive 0.7.4 -> 0.7.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun Jul 5 00:42:28 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136316 From alex-goncharov at comcast.net Sun Jul 5 03:00:14 2009 From: alex-goncharov at comcast.net (Alex Goncharov) Date: Sun Jul 5 03:00:27 2009 Subject: ports/136263: New port: MySQL 5.4 -- requesting ownership Message-ID: <200907050300.n6530Do6078439@freefall.freebsd.org> The following reply was made to PR ports/136263; it has been noted by GNATS. From: Alex Goncharov To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: "Ian Lord" , alex-goncharov@comcast.net Subject: Re: ports/136263: New port: MySQL 5.4 -- requesting ownership Date: Sat, 04 Jul 2009 22:51:55 -0400 The shar file I sent in the previous submission had a defective pkg-list; this one is good. ====================================================================== # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # databases/mysql54-server # databases/mysql54-server/files # databases/mysql54-server/files/mysql-server.sh.in # databases/mysql54-server/files/patch-scripts_mysqld_safe.sh # databases/mysql54-server/pkg-message # databases/mysql54-server/pkg-install # databases/mysql54-server/pkg-descr # databases/mysql54-server/distinfo # databases/mysql54-server/Makefile # databases/mysql54-server/pkg-plist # databases/mysql54-client # databases/mysql54-client/Makefile # databases/mysql54-scripts # databases/mysql54-scripts/Makefile # echo c - databases/mysql54-server mkdir -p databases/mysql54-server > /dev/null 2>&1 echo c - databases/mysql54-server/files mkdir -p databases/mysql54-server/files > /dev/null 2>&1 echo x - databases/mysql54-server/files/mysql-server.sh.in sed 's/^X//' >databases/mysql54-server/files/mysql-server.sh.in << '1d49d852ed6ef3da1b8ac7871de2a467' X#!/bin/sh X# X# $FreeBSD: ports/databases/mysql51-server/files/mysql-server.sh.in,v 1.6 2008/07/30 06:11:16 ale Exp $ X# X X# PROVIDE: mysql X# REQUIRE: LOGIN X# KEYWORD: shutdown X X# X# Add the following line to /etc/rc.conf to enable mysql: X# mysql_enable (bool): Set to "NO" by default. X# Set it to "YES" to enable MySQL. X# mysql_limits (bool): Set to "NO" by default. X# Set it to yes to run `limits -e -U mysql` X# just before mysql starts. X# mysql_dbdir (str): Default to "/var/db/mysql" X# Base database directory. X# mysql_args (str): Custom additional arguments to be passed X# to mysqld_safe (default empty). X# X X. %%RC_SUBR%% X Xname="mysql" Xrcvar=`set_rcvar` X Xload_rc_config $name X X: ${mysql_enable="NO"} X: ${mysql_limits="NO"} X: ${mysql_dbdir="/var/db/mysql"} X: ${mysql_args=""} X Xmysql_user="mysql" Xmysql_limits_args="-e -U ${mysql_user}" Xpidfile="${mysql_dbdir}/`/bin/hostname`.pid" Xcommand="%%PREFIX%%/bin/mysqld_safe" Xcommand_args="--defaults-extra-file=${mysql_dbdir}/my.cnf --user=${mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} ${mysql_args} > /dev/null 2>&1 &" Xprocname="%%PREFIX%%/libexec/mysqld" Xstart_precmd="${name}_prestart" Xstart_postcmd="${name}_poststart" Xmysql_install_db="%%PREFIX%%/bin/mysql_install_db" Xmysql_install_db_args="--ldata=${mysql_dbdir}" X Xmysql_create_auth_tables() X{ X eval $mysql_install_db $mysql_install_db_args >/dev/null 2>/dev/null X [ $? -eq 0 ] && chown -R ${mysql_user}:${mysql_user} ${mysql_dbdir} X} X Xmysql_prestart() X{ X if [ ! -d "${mysql_dbdir}/mysql/." ]; then X mysql_create_auth_tables || return 1 X fi X if checkyesno mysql_limits; then X eval `/usr/bin/limits ${mysql_limits_args}` 2>/dev/null X else X return 0 X fi X} X Xmysql_poststart() X{ X local timeout=15 X while [ ! -f "${pidfile}" -a ${timeout} -gt 0 ]; do X timeout=$(( timeout - 1 )) X sleep 1 X done X return 0 X} X Xrun_rc_command "$1" 1d49d852ed6ef3da1b8ac7871de2a467 echo x - databases/mysql54-server/files/patch-scripts_mysqld_safe.sh sed 's/^X//' >databases/mysql54-server/files/patch-scripts_mysqld_safe.sh << '4018e129a847121e6164e776fa89f4c4' X--- scripts/mysqld_safe.sh.orig 2007-10-08 10:39:23.000000000 +0200 X+++ scripts/mysqld_safe.sh 2007-10-08 10:40:52.000000000 +0200 X@@ -242,10 +242,10 @@ X X if test -z "$MYSQL_HOME" X then X- if test -r "$MY_BASEDIR_VERSION/my.cnf" && test -r "$DATADIR/my.cnf" X+ if test -r "$MY_BASEDIR_VERSION/etc/my.cnf" && test -r "$DATADIR/my.cnf" X then X log_error "WARNING: Found two instances of my.cnf - X-$MY_BASEDIR_VERSION/my.cnf and X+$MY_BASEDIR_VERSION/etc/my.cnf and X $DATADIR/my.cnf X IGNORING $DATADIR/my.cnf" X X@@ -254,7 +254,7 @@ X then X log_error "WARNING: Found $DATADIR/my.cnf X The data directory is a deprecated location for my.cnf, please move it to X-$MY_BASEDIR_VERSION/my.cnf" X+$MY_BASEDIR_VERSION/etc/my.cnf" X MYSQL_HOME=$DATADIR X else X MYSQL_HOME=$MY_BASEDIR_VERSION 4018e129a847121e6164e776fa89f4c4 echo x - databases/mysql54-server/pkg-message sed 's/^X//' >databases/mysql54-server/pkg-message << '327b081145f01def458a04f220430286' X************************************************************************ X XRemember to run mysql_upgrade (with the optional --datadir= flag) Xthe first time you start the MySQL server after an upgrade from an Xearlier version. X X************************************************************************ 327b081145f01def458a04f220430286 echo x - databases/mysql54-server/pkg-install sed 's/^X//' >databases/mysql54-server/pkg-install << '91ee992958f1e591dfdda2afea8779e4' X#!/bin/sh X XPATH=/bin:/usr/sbin X Xcase $2 in XPOST-INSTALL) X USER=mysql X GROUP=${USER} X UID=88 X GID=${UID} X X if pw group show "${GROUP}" 2>/dev/null; then X echo "You already have a group \"${GROUP}\", so I will use it." X else X if pw groupadd ${GROUP} -g ${GID}; then X echo "Added group \"${GROUP}\"." X else X echo "Adding group \"${GROUP}\" failed..." X exit 1 X fi X fi X X if pw user show "${USER}" 2>/dev/null; then X echo "You already have a user \"${USER}\", so I will use it." X else X if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ X -d /nonexistent -s /sbin/nologin -c "MySQL Daemon" X then X echo "Added user \"${USER}\"." X else X echo "Adding user \"${USER}\" failed..." X exit 1 X fi X fi X ;; Xesac 91ee992958f1e591dfdda2afea8779e4 echo x - databases/mysql54-server/pkg-descr sed 's/^X//' >databases/mysql54-server/pkg-descr << '50eacd9d6e1e7559e3972174c5e7bed7' XMySQL 5.4 Community Edition - Preview Release X XMySQL Community Edition is a freely downloadable version of the Xworld's most popular open source database that is supported by an Xactive community of open source developers and enthusiasts. X XMySQL 5.4 is based on MySQL 5.1 but includes small, high-impact Xchanges to enhance scalability and performance in MySQL Server. X XAs with any other pre-production set of software, the preview release Xof MySQL 5.4 is not recommended for use on production systems. When Xusing MySQL 5.4, note that it is good practice to back up your data Xbefore installing the new software. MySQL/Sun generally recommends Xthat you dump and reload your tables from any previous version to Xupgrade to MySQL 5.4. X Xhttp://dev.mysql.com/doc/mysql-5.4-features/en/index.html X XAlex Goncharov 50eacd9d6e1e7559e3972174c5e7bed7 echo x - databases/mysql54-server/distinfo sed 's/^X//' >databases/mysql54-server/distinfo << '70a40e7f13e4346332c3ba012ff62413' XMD5 (mysql-5.4.1-beta.tar.gz) = 65e7a154e065c92c2a6bb97c9043b8b6 XSHA256 (mysql-5.4.1-beta.tar.gz) = 43b0ff572e9f1a39d84c3a74d24f63382003e8ca54d73231064d9ba075d1dcb7 XSIZE (mysql-5.4.1-beta.tar.gz) = 35199612 70a40e7f13e4346332c3ba012ff62413 echo x - databases/mysql54-server/Makefile sed 's/^X//' >databases/mysql54-server/Makefile << '5d930b86d5dc64940f4064d75259aa3b' X# New ports collection makefile for: MySQL-server X6 Date created: 28 Jan 2006 X# Whom: Alex Dupre X# X# $FreeBSD: ports/databases/mysql54-server/Makefile,v 1.248 2009/06/08 06:49:58 ale Exp $ X# X XPORTNAME?= mysql XPORTVERSION= 5.4.1 XPORTREVISION?= 0 XCATEGORIES= databases XMASTER_SITES= ${MASTER_SITE_MYSQL} XMASTER_SITE_SUBDIR= MySQL-5.4 XPKGNAMESUFFIX?= -server XDISTNAME= ${PORTNAME}-${PORTVERSION}-beta X XMAINTAINER= alex-goncharov@comcast.net XCOMMENT?= Multithreaded SQL database (server) X XSLAVEDIRS= databases/mysql54-client databases/mysql54-scripts XUSE_AUTOTOOLS= libtool:15 XUSE_GMAKE= yes XMAKE_JOBS_SAFE= yes X XCONFIGURE_ARGS= --localstatedir=/var/db/mysql \ X --infodir=${PREFIX}/info \ X --mandir=${PREFIX}/man \ X --without-debug \ X --without-readline \ X --without-libedit \ X --with-libwrap \ X --with-low-memory \ X --with-comment='FreeBSD port: ${PKGNAME}' \ X --enable-thread-safe-client X X.ifdef USE_MYSQL X.error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again. X.endif X X.if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" XCONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} X.endif X.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != "" XCONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET} X.endif X.if defined(WITH_OPENSSL) XCONFIGURE_ARGS+=--with-ssl=bundled X.endif X.if defined(WITH_FAST_MUTEXES) XCONFIGURE_ARGS+=--with-fast-mutexes X.endif X.if defined(BUILD_STATIC) XCONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static X.endif X.if defined(WITH_NDB) XCONFIGURE_ARGS+=--with-plugins=max X.else XCONFIGURE_ARGS+=--with-plugins=max-no-ndb X.endif X.if defined(WITH_COLLATION) && ${WITH_COLLATION} != "" XCONFIGURE_ARGS+=--with-collation=${WITH_COLLATION} X.endif X.if defined(WITH_DTRACE) XCONFIGURE_ARGS+=--enable-dtrace X.else XCONFIGURE_ARGS+=--enable-dtrace=no X.endif X X.include X X.if ${ARCH} == "i386" XCONFIGURE_ARGS+=--enable-assembler X.endif X.if defined(WITH_LINUXTHREADS) XCONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R XCONFIGURE_ARGS+=-D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads XCFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE XCFLAGS+= -I${LOCALBASE}/include/pthread/linuxthreads XLIB_DEPENDS+= lthread:${PORTSDIR}/devel/linuxthreads XCONFIGURE_ARGS+=-L${LOCALBASE}/lib -llthread -llgcc_r -llstdc++ -llsupc++' X.else XCONFIGURE_ARGS+=--with-named-thread-libs=${PTHREAD_LIBS} XCFLAGS+= ${PTHREAD_CFLAGS} X.endif X X.if defined(BUILD_OPTIMIZED) XCFLAGS+= -O3 -fno-omit-frame-pointer XCFLAGS+= -fno-gcse X.endif XCXXFLAGS+= ${CFLAGS} -felide-constructors -fno-rtti XCXXFLAGS+= -fno-exceptions X X# MySQL-Server part X.if !defined(CLIENT_ONLY) && !defined(SCRIPTS_ONLY) XUSE_MYSQL= yes XWANT_MYSQL_VER= 54 X XLATEST_LINK= mysql54-server X XCONFLICTS= mysql-server-3.* mysql-server-4.* mysql-server-5.0.* mysql-server-5.1.* mysql-server-6.* X XUSE_RC_SUBR= mysql-server.sh X X.if defined(WITH_NDB) XPLIST_SUB+= NDB="" X.else XPLIST_SUB+= NDB="@comment " X.endif X XMAN1= innochecksum.1 myisamchk.1 myisamlog.1 myisampack.1 \ X my_print_defaults.1 myisam_ftdump.1 mysql_client_test_embedded.1 \ X mysql_install_db.1 mysql_tzinfo_to_sql.1 \ X mysql_waitpid.1 mysqld_safe.1 mysqltest_embedded.1 mysql.server.1 \ X perror.1 replace.1 resolve_stack_dump.1 resolveip.1 X.if defined(WITH_NDB) XMAN1+= ndb_config.1 ndb_delete_all.1 ndb_desc.1 ndb_drop_index.1 \ X ndb_drop_table.1 ndb_error_reporter.1 ndb_mgm.1 \ X ndb_print_backup_file.1 ndb_print_schema_file.1 \ X ndb_print_sys_file.1 ndb_restore.1 ndb_select_all.1 \ X ndb_select_count.1 ndb_show_tables.1 ndb_size.pl.1 ndb_waiter.1 X.endif X XINFO= mysql X XCONFIGURE_ARGS+=--with-embedded-server X XCFLAGS+= -fPIC X Xpre-fetch: X @${ECHO} "" X @${ECHO} "You may use the following build options:" X @${ECHO} "" X @${ECHO} " WITH_CHARSET=charset Define the primary built-in charset (latin1)." X @${ECHO} " WITH_XCHARSET=list Define other built-in charsets (may be 'all')." X @${ECHO} " WITH_COLLATION=collate Define default collation (latin1_swedish_ci)." X @${ECHO} " WITH_OPENSSL=yes Enable secure connections." X @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." X @${ECHO} " WITH_PROC_SCOPE_PTH=yes Use process scope threads" X @${ECHO} " (try it if you use libpthread)." X @${ECHO} " WITH_FAST_MUTEXES=yes Replace mutexes with spinlocks." X @${ECHO} " BUILD_OPTIMIZED=yes Enable compiler optimizations" X @${ECHO} " (use it if you need speed)." X @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." X @${ECHO} " (use it if you need even more speed)." X @${ECHO} " WITH_NDB=yes Enable support for NDB Cluster." X @${ECHO} "" X Xpost-patch: X @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = include @docs_dirs@ sql-common @sql_server_dirs@ libmysql storage scripts @sql_server@ @man_dirs@ @libmysqld_dirs@ support-files|g" ${WRKSRC}/Makefile.in X @${REINPLACE_CMD} -e "s|bin_SCRIPTS =|bin_SCRIPTS = @server_scripts@|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|dist_pkgdata_DATA =|dist_pkgdata_DATA = fill_help_tables.sql mysql_system_tables.sql mysql_system_tables_data.sql|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|man1_MANS =|man1_MANS = ${MAN1}|g" ${WRKSRC}/man/Makefile.in X @${REINPLACE_CMD} -e "s|install-data-am: install-pkgincludeHEADERS|install-data-am:|g" ${WRKSRC}/extra/Makefile.in X @${REINPLACE_CMD} -e "s|install-data-am: install-pkgincludeHEADERS|install-data-am:|g" ${WRKSRC}/include/Makefile.in X @${REINPLACE_CMD} -e "s|install-exec-am: install-pkglibLTLIBRARIES|install-exec-am:|g" ${WRKSRC}/libmysql/Makefile.in X @${REINPLACE_CMD} -e "/^AM_CXXFLAGS/s|=.*|+= \$$(NDB_CXXFLAGS)|" `${FIND} ${WRKSRC}/storage/ndb -name Makefile.in` X.if defined(WITH_PROC_SCOPE_PTH) X @${REINPLACE_CMD} -e "s|PTHREAD_SCOPE_SYSTEM|PTHREAD_SCOPE_PROCESS|g" ${WRKSRC}/sql/mysqld.cc X.endif X Xpost-install: X.if !defined(PACKAGE_BUILDING) X @${SETENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X @${CAT} ${PKGMESSAGE} X.endif X X.else X# MySQL-Client part X.if defined(CLIENT_ONLY) XLATEST_LINK= mysql54-client X XCONFLICTS= mysql-client-3.* mysql-client-4.* mysql-client-5.0.* mysql-client-5.1.* mysql-client-6.* X XMAN1= mysql_config.1 mysql_upgrade.1 mysql.1 mysqladmin.1 \ X mysqlbinlog.1 mysqlbug.1 mysqlcheck.1 \ X mysqldump.1 mysqlimport.1 mysqlshow.1 mysqlslap.1 mysqltest.1 X XMAN8= mysqlmanager.8 X XUSE_LDCONFIG= ${PREFIX}/lib/mysql X XCONFIGURE_ARGS+=--without-server X Xpost-patch: X @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = include sql-common scripts strings regex mysys dbug extra libmysql libmysql_r client @man_dirs@|g" ${WRKSRC}/Makefile.in X @${REINPLACE_CMD} -e "s|install-exec-am: install-pkglibLIBRARIES|install-exec-am:|g" ${WRKSRC}/strings/Makefile.in ${WRKSRC}/mysys/Makefile.in ${WRKSRC}/dbug/Makefile.in X @${REINPLACE_CMD} -e "s|bin_SCRIPTS =|bin_SCRIPTS = mysql_config mysql_fix_privilege_tables mysqlbug|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|dist_pkgdata_DATA =|dist_pkgdata_DATA = mysql_fix_privilege_tables.sql|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|man1_MANS =|man1_MANS = ${MAN1}|g;s|man8_MANS =|man8_MANS = ${MAN8}|g" ${WRKSRC}/man/Makefile.in X @${REINPLACE_CMD} -e "s|install-exec-am: install-binPROGRAMS|install-exec-am:|g" ${WRKSRC}/extra/Makefile.in X Xpost-install: X ${INSTALL_DATA} ${WRKSRC}/support-files/mysql.m4 ${PREFIX}/share/aclocal/ X X.else X# MySQL-Scripts part XUSE_MYSQL= yes XWANT_MYSQL_VER= 54 X XRUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql54 X.if ${PERL_LEVEL} <= 500800 XRUN_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp X.endif X XLATEST_LINK= mysql54-scripts X XCONFLICTS= mysql-scripts-3.* mysql-scripts-4.* mysql-scripts-5.0.* mysql-scripts-5.1.* mysql-scripts-6.* X XMAN1= msql2mysql.1 mysql_convert_table_format.1 mysql_find_rows.1 \ X mysql_fix_extensions.1 mysql_secure_installation.1 \ X mysql_setpermission.1 mysql_zap.1 mysqlaccess.1 \ X mysqldumpslow.1 mysqlhotcopy.1 mysqld_multi.1 X XSCRIPTS= msql2mysql mysql_fix_extensions mysql_setpermission \ X mysql_secure_installation mysql_zap mysqlaccess \ X mysql_convert_table_format mysql_find_rows mysqlhotcopy \ X mysqldumpslow mysqld_multi X Xpost-patch: X @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = scripts @man_dirs@|g" ${WRKSRC}/Makefile.in X @${REINPLACE_CMD} -e "s|bin_SCRIPTS =|bin_SCRIPTS = ${SCRIPTS}|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|install-exec-am install-data-am|install-exec-am|g" ${WRKSRC}/scripts/Makefile.in X @${REINPLACE_CMD} -e "s|man1_MANS =|man1_MANS = ${MAN1}|g" ${WRKSRC}/man/Makefile.in X.endif X.endif X# Common part Xpost-extract: X @${CP} /usr/include/tcpd.h ${WRKSRC}/include/my_tcpd.h X X.if defined(WITH_OPENSSL) && defined(BUILD_STATIC) Xpre-configure: X @${ECHO} "You can't use the BUILD_STATIC option when using OpenSSL." X @${FALSE} X.endif X X.include 5d930b86d5dc64940f4064d75259aa3b echo x - databases/mysql54-server/pkg-plist sed 's/^X//' >databases/mysql54-server/pkg-plist << '6c7d90f38382366d9d3cdd3c535ca65f' Xbin/innochecksum Xbin/msql2mysql Xbin/my_print_defaults Xbin/myisam_ftdump Xbin/myisamchk Xbin/myisamlog Xbin/myisampack Xbin/mysql Xbin/mysql_client_test Xbin/mysql_client_test_embedded Xbin/mysql_config Xbin/mysql_convert_table_format Xbin/mysql_find_rows Xbin/mysql_fix_extensions Xbin/mysql_fix_privilege_tables Xbin/mysql_install_db Xbin/mysql_secure_installation Xbin/mysql_setpermission Xbin/mysql_tzinfo_to_sql Xbin/mysql_upgrade Xbin/mysql_waitpid Xbin/mysql_zap Xbin/mysqlaccess Xbin/mysqladmin Xbin/mysqlbinlog Xbin/mysqlbug Xbin/mysqlcheck Xbin/mysqld_multi Xbin/mysqld_safe Xbin/mysqldump Xbin/mysqldumpslow Xbin/mysqlhotcopy Xbin/mysqlimport Xbin/mysqlshow Xbin/mysqlslap Xbin/mysqltest Xbin/mysqltest_embedded Xbin/perror Xbin/replace Xbin/resolve_stack_dump Xbin/resolveip Xetc/rc.d/mysql-server Xinfo/dir Xinfo/mysql.info Xlib/mysql/libdbug.a Xlib/mysql/libheap.a Xlib/mysql/libmyisam.a Xlib/mysql/libmyisammrg.a Xlib/mysql/libmysqlclient_r.a Xlib/mysql/libmysqlclient_r.la Xlib/mysql/libmysqlclient_r.so Xlib/mysql/libmysqlclient_r.so.16 Xlib/mysql/libmysqld.a Xlib/mysql/libmystrings.a Xlib/mysql/libmysys.a Xlib/mysql/libvio.a Xlib/mysql/plugin/ha_example.a Xlib/mysql/plugin/ha_example.la Xlib/mysql/plugin/ha_example.so Xlib/mysql/plugin/ha_example.so.0 Xlib/mysql/plugin/libdaemon_example.a Xlib/mysql/plugin/libdaemon_example.la Xlib/mysql/plugin/libdaemon_example.so Xlib/mysql/plugin/libdaemon_example.so.0 Xlib/mysql/plugin/mypluglib.a Xlib/mysql/plugin/mypluglib.la Xlib/mysql/plugin/mypluglib.so Xlib/mysql/plugin/mypluglib.so.0 Xlibexec/mysqld Xman/man1/comp_err.1 Xman/man1/innochecksum.1.gz Xman/man1/make_win_bin_dist.1 Xman/man1/msql2mysql.1 Xman/man1/my_print_defaults.1.gz Xman/man1/myisam_ftdump.1.gz Xman/man1/myisamchk.1.gz Xman/man1/myisamlog.1.gz Xman/man1/myisampack.1.gz Xman/man1/mysql-stress-test.pl.1 Xman/man1/mysql-test-run.pl.1 Xman/man1/mysql.1 Xman/man1/mysql.server.1.gz Xman/man1/mysql_client_test.1 Xman/man1/mysql_client_test_embedded.1.gz Xman/man1/mysql_config.1 Xman/man1/mysql_convert_table_format.1 Xman/man1/mysql_find_rows.1 Xman/man1/mysql_fix_extensions.1 Xman/man1/mysql_fix_privilege_tables.1 Xman/man1/mysql_install_db.1.gz Xman/man1/mysql_secure_installation.1 Xman/man1/mysql_setpermission.1 Xman/man1/mysql_tzinfo_to_sql.1.gz Xman/man1/mysql_upgrade.1 Xman/man1/mysql_waitpid.1.gz Xman/man1/mysql_zap.1 Xman/man1/mysqlaccess.1 Xman/man1/mysqladmin.1 Xman/man1/mysqlbinlog.1 Xman/man1/mysqlbug.1 Xman/man1/mysqlcheck.1 Xman/man1/mysqld_multi.1 Xman/man1/mysqld_safe.1.gz Xman/man1/mysqldump.1 Xman/man1/mysqldumpslow.1 Xman/man1/mysqlhotcopy.1 Xman/man1/mysqlimport.1 Xman/man1/mysqlman.1 Xman/man1/mysqlshow.1 Xman/man1/mysqlslap.1 Xman/man1/mysqltest.1 Xman/man1/mysqltest_embedded.1.gz Xman/man1/perror.1.gz Xman/man1/replace.1.gz Xman/man1/resolve_stack_dump.1.gz Xman/man1/resolveip.1.gz Xman/man8/mysqld.8 Xman/man8/mysqlmanager.8 Xmysql-test/extra/binlog_tests/binlog.test Xmysql-test/extra/binlog_tests/binlog_insert_delayed.test Xmysql-test/extra/binlog_tests/binlog_truncate.test Xmysql-test/extra/binlog_tests/blackhole.test Xmysql-test/extra/binlog_tests/ctype_cp932.test Xmysql-test/extra/binlog_tests/ctype_cp932_binlog.test Xmysql-test/extra/binlog_tests/ctype_ucs_binlog.test Xmysql-test/extra/binlog_tests/database.test Xmysql-test/extra/binlog_tests/drop_temp_table.test Xmysql-test/extra/binlog_tests/innodb_stat.test Xmysql-test/extra/binlog_tests/insert_select-binlog.test Xmysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test Xmysql-test/extra/binlog_tests/mix_innodb_myisam_side_effects.test Xmysql-test/extra/rpl_tests/rpl_EE_err.test Xmysql-test/extra/rpl_tests/rpl_auto_increment.test Xmysql-test/extra/rpl_tests/rpl_blackhole.test Xmysql-test/extra/rpl_tests/rpl_charset.test Xmysql-test/extra/rpl_tests/rpl_commit_after_flush.test Xmysql-test/extra/rpl_tests/rpl_conflicts.test Xmysql-test/extra/rpl_tests/rpl_ddl.test Xmysql-test/extra/rpl_tests/rpl_deadlock.test Xmysql-test/extra/rpl_tests/rpl_delete_no_where.test Xmysql-test/extra/rpl_tests/rpl_extraMaster_Col.test Xmysql-test/extra/rpl_tests/rpl_extraSlave_Col.test Xmysql-test/extra/rpl_tests/rpl_failed_optimize.test Xmysql-test/extra/rpl_tests/rpl_flsh_tbls.test Xmysql-test/extra/rpl_tests/rpl_foreign_key.test Xmysql-test/extra/rpl_tests/rpl_insert_delayed.test Xmysql-test/extra/rpl_tests/rpl_insert_id.test Xmysql-test/extra/rpl_tests/rpl_insert_id_pk.test Xmysql-test/extra/rpl_tests/rpl_insert_ignore.test Xmysql-test/extra/rpl_tests/rpl_loaddata.test Xmysql-test/extra/rpl_tests/rpl_log.test Xmysql-test/extra/rpl_tests/rpl_max_relay_size.test Xmysql-test/extra/rpl_tests/rpl_multi_query.test Xmysql-test/extra/rpl_tests/rpl_multi_update.test Xmysql-test/extra/rpl_tests/rpl_multi_update2.test Xmysql-test/extra/rpl_tests/rpl_multi_update3.test Xmysql-test/extra/rpl_tests/rpl_ndb_2multi_basic.test Xmysql-test/extra/rpl_tests/rpl_ndb_2multi_eng.test Xmysql-test/extra/rpl_tests/rpl_ndb_apply_status.test Xmysql-test/extra/rpl_tests/rpl_partition.test Xmysql-test/extra/rpl_tests/rpl_relayrotate.test Xmysql-test/extra/rpl_tests/rpl_reset_slave.test Xmysql-test/extra/rpl_tests/rpl_row_001.test Xmysql-test/extra/rpl_tests/rpl_row_UUID.test Xmysql-test/extra/rpl_tests/rpl_row_basic.test Xmysql-test/extra/rpl_tests/rpl_row_blob.test Xmysql-test/extra/rpl_tests/rpl_row_delayed_ins.test Xmysql-test/extra/rpl_tests/rpl_row_func003.test Xmysql-test/extra/rpl_tests/rpl_row_sp002.test Xmysql-test/extra/rpl_tests/rpl_row_sp003.test Xmysql-test/extra/rpl_tests/rpl_row_sp006.test Xmysql-test/extra/rpl_tests/rpl_row_sp007.test Xmysql-test/extra/rpl_tests/rpl_row_tabledefs.test Xmysql-test/extra/rpl_tests/rpl_stm_000001.test Xmysql-test/extra/rpl_tests/rpl_stm_EE_err2.test Xmysql-test/extra/rpl_tests/rpl_sv_relay_space.test Xmysql-test/extra/rpl_tests/rpl_trig004.test Xmysql-test/extra/rpl_tests/rpl_truncate.test Xmysql-test/extra/rpl_tests/rpl_truncate_helper.test Xmysql-test/include/add_anonymous_users.inc Xmysql-test/include/analyze-sync_with_master.test Xmysql-test/include/analyze-timeout.test Xmysql-test/include/big_test.inc Xmysql-test/include/check-testcase.test Xmysql-test/include/check-warnings.test Xmysql-test/include/check_events_off.inc Xmysql-test/include/check_var_limit.inc Xmysql-test/include/circular_rpl_for_4_hosts_init.inc Xmysql-test/include/circular_rpl_for_4_hosts_sync.inc Xmysql-test/include/cleanup_fake_relay_log.inc Xmysql-test/include/commit.inc Xmysql-test/include/common-tests.inc Xmysql-test/include/concurrent.inc Xmysql-test/include/connect2.inc Xmysql-test/include/count_sessions.inc Xmysql-test/include/ctype_common.inc Xmysql-test/include/ctype_filesort.inc Xmysql-test/include/ctype_german.inc Xmysql-test/include/ctype_innodb_like.inc Xmysql-test/include/ctype_like_escape.inc Xmysql-test/include/ctype_like_range_f1f2.inc Xmysql-test/include/ctype_regex.inc Xmysql-test/include/ddl_i18n.check_events.inc Xmysql-test/include/ddl_i18n.check_sp.inc Xmysql-test/include/ddl_i18n.check_triggers.inc Xmysql-test/include/ddl_i18n.check_views.inc Xmysql-test/include/deadlock.inc Xmysql-test/include/default_my.cnf Xmysql-test/include/default_mysqld.cnf Xmysql-test/include/default_ndbd.cnf Xmysql-test/include/delete_anonymous_users.inc Xmysql-test/include/diff_tables.inc Xmysql-test/include/endspace.inc Xmysql-test/include/get_binlog_dump_thread_id.inc Xmysql-test/include/gis_generic.inc Xmysql-test/include/gis_keys.inc Xmysql-test/include/grant_cache.inc Xmysql-test/include/handler.inc Xmysql-test/include/have_32bit.inc Xmysql-test/include/have_64bit.inc Xmysql-test/include/have_archive.inc Xmysql-test/include/have_big5.inc Xmysql-test/include/have_binlog_format_mixed.inc Xmysql-test/include/have_binlog_format_mixed_or_row.inc Xmysql-test/include/have_binlog_format_mixed_or_statement.inc Xmysql-test/include/have_binlog_format_row.inc Xmysql-test/include/have_binlog_format_row_or_statement.inc Xmysql-test/include/have_binlog_format_statement.inc Xmysql-test/include/have_blackhole.inc Xmysql-test/include/have_case_insensitive_file_system.inc Xmysql-test/include/have_case_sensitive_file_system.inc Xmysql-test/include/have_community_features.inc Xmysql-test/include/have_compress.inc Xmysql-test/include/have_cp1250_ch.inc Xmysql-test/include/have_cp1251.inc Xmysql-test/include/have_cp866.inc Xmysql-test/include/have_cp932.inc Xmysql-test/include/have_crypt.inc Xmysql-test/include/have_csv.inc Xmysql-test/include/have_debug.inc Xmysql-test/include/have_eucjpms.inc Xmysql-test/include/have_euckr.inc Xmysql-test/include/have_example_plugin.inc Xmysql-test/include/have_exampledb.inc Xmysql-test/include/have_gb2312.inc Xmysql-test/include/have_gbk.inc Xmysql-test/include/have_geometry.inc Xmysql-test/include/have_innodb.inc Xmysql-test/include/have_koi8r.inc Xmysql-test/include/have_latin2_ch.inc Xmysql-test/include/have_local_infile.inc Xmysql-test/include/have_log_bin.inc Xmysql-test/include/have_lowercase0.inc Xmysql-test/include/have_lowercase1.inc Xmysql-test/include/have_lowercase2.inc Xmysql-test/include/have_multi_ndb.inc Xmysql-test/include/have_ndb.inc Xmysql-test/include/have_ndb_extra.inc Xmysql-test/include/have_ndbapi_examples.inc Xmysql-test/include/have_outfile.inc Xmysql-test/include/have_partition.inc Xmysql-test/include/have_query_cache.inc Xmysql-test/include/have_simple_parser.inc Xmysql-test/include/have_sjis.inc Xmysql-test/include/have_ssl.inc Xmysql-test/include/have_symlink.inc Xmysql-test/include/have_tis620.inc Xmysql-test/include/have_ucs2.inc Xmysql-test/include/have_udf.inc Xmysql-test/include/have_ujis.inc Xmysql-test/include/have_utf8.inc Xmysql-test/include/index_merge1.inc Xmysql-test/include/index_merge2.inc Xmysql-test/include/index_merge_2sweeps.inc Xmysql-test/include/index_merge_ror.inc Xmysql-test/include/index_merge_ror_cpk.inc Xmysql-test/include/innodb_rollback_on_timeout.inc Xmysql-test/include/innodb_trx_weight.inc Xmysql-test/include/is_embedded.inc Xmysql-test/include/linux_sys_vars.inc Xmysql-test/include/load_sysvars.inc Xmysql-test/include/loaddata_autocom.inc Xmysql-test/include/master-slave-end.inc Xmysql-test/include/master-slave-reset.inc Xmysql-test/include/master-slave.inc Xmysql-test/include/mix1.inc Xmysql-test/include/mix2.inc Xmysql-test/include/mix2_ucs2.inc Xmysql-test/include/mtr_check.sql Xmysql-test/include/mtr_warnings.sql Xmysql-test/include/mysqlbinlog_row_engine.inc Xmysql-test/include/mysqltest-x.inc Xmysql-test/include/ndb_backup.inc Xmysql-test/include/ndb_backup_print.inc Xmysql-test/include/ndb_default_cluster.inc Xmysql-test/include/ndb_master-slave.inc Xmysql-test/include/ndb_master-slave_2ch.inc Xmysql-test/include/ndb_not_readonly.inc Xmysql-test/include/ndb_restore_master.inc Xmysql-test/include/ndb_restore_slave_eoption.inc Xmysql-test/include/ndb_setup_slave.inc Xmysql-test/include/ndb_wait_connected.inc Xmysql-test/include/no_running_event_scheduler.inc Xmysql-test/include/no_running_events.inc Xmysql-test/include/not_as_root.inc Xmysql-test/include/not_embedded.inc Xmysql-test/include/not_ndb.inc Xmysql-test/include/not_ndb_default.inc Xmysql-test/include/not_openssl.inc Xmysql-test/include/not_valgrind.inc Xmysql-test/include/not_windows.inc Xmysql-test/include/one_thread_per_connection.inc Xmysql-test/include/parser_bug21114.inc Xmysql-test/include/ps_conv.inc Xmysql-test/include/ps_create.inc Xmysql-test/include/ps_ddl_1.inc Xmysql-test/include/ps_modify.inc Xmysql-test/include/ps_modify1.inc Xmysql-test/include/ps_query.inc Xmysql-test/include/ps_renew.inc Xmysql-test/include/query_cache.inc Xmysql-test/include/query_cache_sql_prepare.inc Xmysql-test/include/read_many_rows.inc Xmysql-test/include/report-features.test Xmysql-test/include/reset_master_and_slave.inc Xmysql-test/include/restart_mysqld.inc Xmysql-test/include/rowid_order.inc Xmysql-test/include/rpl_events.inc Xmysql-test/include/rpl_multi_engine.inc Xmysql-test/include/rpl_multi_engine2.inc Xmysql-test/include/rpl_multi_engine3.inc Xmysql-test/include/rpl_stmt_seq.inc Xmysql-test/include/rpl_udf.inc Xmysql-test/include/running_event_scheduler.inc Xmysql-test/include/safe_set_to_maybe_ro_var.inc Xmysql-test/include/select_ndb_apply_status.inc Xmysql-test/include/set_binlog_format_mixed.sql Xmysql-test/include/set_binlog_format_row.sql Xmysql-test/include/set_binlog_format_statement.sql Xmysql-test/include/setup_fake_relay_log.inc Xmysql-test/include/show_binary_logs.inc Xmysql-test/include/show_binlog_events.inc Xmysql-test/include/show_binlog_events2.inc Xmysql-test/include/show_binlog_using_logname.inc Xmysql-test/include/show_master_logs.inc Xmysql-test/include/show_master_status.inc Xmysql-test/include/show_msg.inc Xmysql-test/include/show_msg80.inc Xmysql-test/include/show_rpl_debug_info.inc Xmysql-test/include/show_slave_status.inc Xmysql-test/include/show_slave_status2.inc Xmysql-test/include/sp-vars.inc Xmysql-test/include/start_slave.inc Xmysql-test/include/stop_slave.inc Xmysql-test/include/strict_autoinc.inc Xmysql-test/include/sync_slave_io_with_master.inc Xmysql-test/include/system_db_struct.inc Xmysql-test/include/test_fieldsize.inc Xmysql-test/include/test_outfile.inc Xmysql-test/include/testdb_only.inc Xmysql-test/include/tpcb.inc Xmysql-test/include/tpcb_disk_data.inc Xmysql-test/include/unsafe_binlog.inc Xmysql-test/include/uses_vardir.inc Xmysql-test/include/varchar.inc Xmysql-test/include/wait_condition.inc Xmysql-test/include/wait_condition_sp.inc Xmysql-test/include/wait_for_binlog_event.inc Xmysql-test/include/wait_for_query_to_suceed.inc Xmysql-test/include/wait_for_slave_io_to_start.inc Xmysql-test/include/wait_for_slave_io_to_stop.inc Xmysql-test/include/wait_for_slave_param.inc Xmysql-test/include/wait_for_slave_sql_error.inc Xmysql-test/include/wait_for_slave_sql_error_and_skip.inc Xmysql-test/include/wait_for_slave_sql_to_start.inc Xmysql-test/include/wait_for_slave_sql_to_stop.inc Xmysql-test/include/wait_for_slave_to_start.inc Xmysql-test/include/wait_for_slave_to_stop.inc Xmysql-test/include/wait_until_connected_again.inc Xmysql-test/include/wait_until_count_sessions.inc Xmysql-test/include/wait_until_disconnected.inc Xmysql-test/include/wait_until_rows_count.inc Xmysql-test/include/windows.inc Xmysql-test/include/windows_sys_vars.inc Xmysql-test/lib/My/Config.pm Xmysql-test/lib/My/ConfigFactory.pm Xmysql-test/lib/My/CoreDump.pm Xmysql-test/lib/My/File/Path.pm Xmysql-test/lib/My/Find.pm Xmysql-test/lib/My/Handles.pm Xmysql-test/lib/My/Options.pm Xmysql-test/lib/My/Platform.pm Xmysql-test/lib/My/SafeProcess.pm Xmysql-test/lib/My/SafeProcess/Base.pm Xmysql-test/lib/My/SafeProcess/my_safe_process Xmysql-test/lib/My/SafeProcess/safe_process.pl Xmysql-test/lib/My/SysInfo.pm Xmysql-test/lib/My/Test.pm Xmysql-test/lib/mtr_cases.pm Xmysql-test/lib/mtr_gcov.pl Xmysql-test/lib/mtr_gprof.pl Xmysql-test/lib/mtr_io.pl Xmysql-test/lib/mtr_match.pm Xmysql-test/lib/mtr_misc.pl Xmysql-test/lib/mtr_process.pl Xmysql-test/lib/mtr_report.pm Xmysql-test/lib/mtr_stress.pl Xmysql-test/lib/mtr_unique.pm Xmysql-test/lib/v1/My/Config.pm Xmysql-test/lib/v1/mtr_cases.pl Xmysql-test/lib/v1/mtr_gcov.pl Xmysql-test/lib/v1/mtr_gprof.pl Xmysql-test/lib/v1/mtr_im.pl Xmysql-test/lib/v1/mtr_io.pl Xmysql-test/lib/v1/mtr_match.pl Xmysql-test/lib/v1/mtr_misc.pl Xmysql-test/lib/v1/mtr_process.pl Xmysql-test/lib/v1/mtr_report.pl Xmysql-test/lib/v1/mtr_stress.pl Xmysql-test/lib/v1/mtr_timer.pl Xmysql-test/lib/v1/mtr_unique.pl Xmysql-test/lib/v1/mysql-test-run.pl Xmysql-test/lib/v1/ndb_config_1_node.ini Xmysql-test/lib/v1/ndb_config_2_node.ini Xmysql-test/mtr Xmysql-test/mysql-stress-test.pl Xmysql-test/mysql-test-run Xmysql-test/mysql-test-run.pl Xmysql-test/r/1st.result Xmysql-test/r/alias.result Xmysql-test/r/almost_full.result Xmysql-test/r/alter_table-big.result Xmysql-test/r/alter_table.result Xmysql-test/r/analyse.result Xmysql-test/r/analyze.result Xmysql-test/r/ansi.result Xmysql-test/r/archive-big.result Xmysql-test/r/archive.result Xmysql-test/r/archive_bitfield.result Xmysql-test/r/archive_gis.result Xmysql-test/r/auto_increment.result Xmysql-test/r/backup.result Xmysql-test/r/bench_count_distinct.result Xmysql-test/r/big_test.require Xmysql-test/r/bigint.result Xmysql-test/r/binary.result Xmysql-test/r/binlog_tx_isolation.result Xmysql-test/r/bool.result Xmysql-test/r/bootstrap.result Xmysql-test/r/bulk_replace.result Xmysql-test/r/cache_innodb.result Xmysql-test/r/case.result Xmysql-test/r/case_insensitive_file_system.require Xmysql-test/r/case_sensitive_file_system.require Xmysql-test/r/cast.result Xmysql-test/r/change_user.result Xmysql-test/r/check.result Xmysql-test/r/check_var_limit.require Xmysql-test/r/client_xml.result Xmysql-test/r/comments.result Xmysql-test/r/commit_1innodb.result Xmysql-test/r/compare.result Xmysql-test/r/compress.result Xmysql-test/r/concurrent_innodb_safelog.result Xmysql-test/r/concurrent_innodb_unsafelog.result Xmysql-test/r/connect.result Xmysql-test/r/consistent_snapshot.result Xmysql-test/r/constraints.result Xmysql-test/r/contributors.result Xmysql-test/r/count_distinct.result Xmysql-test/r/count_distinct2.result Xmysql-test/r/count_distinct3.result Xmysql-test/r/crash_commit_before.result Xmysql-test/r/create-big.result Xmysql-test/r/create.result Xmysql-test/r/create_not_windows.result Xmysql-test/r/create_select_tmp.result Xmysql-test/r/csv.result Xmysql-test/r/csv_alter_table.result Xmysql-test/r/csv_not_null.result Xmysql-test/r/ctype_ascii.result Xmysql-test/r/ctype_big5.result Xmysql-test/r/ctype_collate.result Xmysql-test/r/ctype_cp1250_ch.result Xmysql-test/r/ctype_cp1251.result Xmysql-test/r/ctype_cp932_binlog_row.result Xmysql-test/r/ctype_cp932_binlog_stm.result Xmysql-test/r/ctype_create.result Xmysql-test/r/ctype_eucjpms.result Xmysql-test/r/ctype_euckr.result Xmysql-test/r/ctype_filename.result Xmysql-test/r/ctype_filesystem.result Xmysql-test/r/ctype_gb2312.result Xmysql-test/r/ctype_gbk.result Xmysql-test/r/ctype_hebrew.result Xmysql-test/r/ctype_latin1.result Xmysql-test/r/ctype_latin1_de.result Xmysql-test/r/ctype_latin2.result Xmysql-test/r/ctype_latin2_ch.result Xmysql-test/r/ctype_ldml.result Xmysql-test/r/ctype_many.result Xmysql-test/r/ctype_mb.result Xmysql-test/r/ctype_recoding.result Xmysql-test/r/ctype_sjis.result Xmysql-test/r/ctype_tis620.result Xmysql-test/r/ctype_uca.result Xmysql-test/r/ctype_ucs.result Xmysql-test/r/ctype_ucs2_def.result Xmysql-test/r/ctype_ujis.result Xmysql-test/r/ctype_ujis_ucs2.result Xmysql-test/r/ctype_utf8.result Xmysql-test/r/date_formats.result Xmysql-test/r/ddl_i18n_koi8r.result Xmysql-test/r/ddl_i18n_utf8.result Xmysql-test/r/deadlock_innodb.result Xmysql-test/r/default.result Xmysql-test/r/delayed.result Xmysql-test/r/delete.result Xmysql-test/r/derived.result Xmysql-test/r/dirty_close.result Xmysql-test/r/distinct.result Xmysql-test/r/drop.result Xmysql-test/r/empty_table.result Xmysql-test/r/endspace.result Xmysql-test/r/error_simulation.result Xmysql-test/r/errors.result Xmysql-test/r/events_1.result Xmysql-test/r/events_2.result Xmysql-test/r/events_bugs.result Xmysql-test/r/events_embedded.result Xmysql-test/r/events_grant.result Xmysql-test/r/events_logs_tests.result Xmysql-test/r/events_microsec.result Xmysql-test/r/events_restart.result Xmysql-test/r/events_scheduling.result Xmysql-test/r/events_stress.result Xmysql-test/r/events_time_zone.result Xmysql-test/r/events_trans.result Xmysql-test/r/events_trans_notembedded.result Xmysql-test/r/exampledb.result Xmysql-test/r/execution_constants.result Xmysql-test/r/explain.result Xmysql-test/r/fix_priv_tables.result Xmysql-test/r/flush.result Xmysql-test/r/flush2.result Xmysql-test/r/flush_block_commit.result Xmysql-test/r/flush_block_commit_notembedded.result Xmysql-test/r/flush_read_lock_kill.result Xmysql-test/r/flush_table.result Xmysql-test/r/foreign_key.result Xmysql-test/r/fulltext.result Xmysql-test/r/fulltext2.result Xmysql-test/r/fulltext3.result Xmysql-test/r/fulltext_cache.result Xmysql-test/r/fulltext_distinct.result Xmysql-test/r/fulltext_left_join.result Xmysql-test/r/fulltext_multi.result Xmysql-test/r/fulltext_order_by.result Xmysql-test/r/fulltext_plugin.result Xmysql-test/r/fulltext_update.result Xmysql-test/r/fulltext_var.result Xmysql-test/r/func_compress.result Xmysql-test/r/func_concat.result Xmysql-test/r/func_crypt.result Xmysql-test/r/func_date_add.result Xmysql-test/r/func_default.result Xmysql-test/r/func_des_encrypt.result Xmysql-test/r/func_encrypt.result Xmysql-test/r/func_encrypt_nossl.result Xmysql-test/r/func_equal.result Xmysql-test/r/func_gconcat.result Xmysql-test/r/func_group.result Xmysql-test/r/func_group_innodb.result Xmysql-test/r/func_if.result Xmysql-test/r/func_in.result Xmysql-test/r/func_isnull.result Xmysql-test/r/func_like.result Xmysql-test/r/func_math.result Xmysql-test/r/func_misc.result Xmysql-test/r/func_op.result Xmysql-test/r/func_regexp.result Xmysql-test/r/func_rollback.result Xmysql-test/r/func_sapdb.result Xmysql-test/r/func_set.result Xmysql-test/r/func_str.result Xmysql-test/r/func_system.result Xmysql-test/r/func_test.result Xmysql-test/r/func_time.result Xmysql-test/r/func_timestamp.result Xmysql-test/r/gcc296.result Xmysql-test/r/gis-rtree.result Xmysql-test/r/gis.result Xmysql-test/r/grant.result Xmysql-test/r/grant2.result Xmysql-test/r/grant3.result Xmysql-test/r/grant_cache_no_prot.result Xmysql-test/r/grant_cache_ps_prot.result Xmysql-test/r/greedy_optimizer.result Xmysql-test/r/group_by.result Xmysql-test/r/group_min_max.result Xmysql-test/r/group_min_max_innodb.result Xmysql-test/r/handler_innodb.result Xmysql-test/r/handler_myisam.result Xmysql-test/r/have_big5.require Xmysql-test/r/have_binlog_format_mixed.require Xmysql-test/r/have_binlog_format_row.require Xmysql-test/r/have_binlog_format_statement.require Xmysql-test/r/have_community_features.require Xmysql-test/r/have_compress.require Xmysql-test/r/have_cp1250_ch.require Xmysql-test/r/have_cp1251.require Xmysql-test/r/have_cp866.require Xmysql-test/r/have_cp932.require Xmysql-test/r/have_crypt.require Xmysql-test/r/have_debug.require Xmysql-test/r/have_dynamic_loading.require Xmysql-test/r/have_eucjpms.require Xmysql-test/r/have_euckr.require Xmysql-test/r/have_example_plugin.require Xmysql-test/r/have_gb2312.require Xmysql-test/r/have_gbk.require Xmysql-test/r/have_geometry.require Xmysql-test/r/have_koi8r.require Xmysql-test/r/have_latin2_ch.require Xmysql-test/r/have_local_infile.require Xmysql-test/r/have_log_bin.require Xmysql-test/r/have_met_timezone.require Xmysql-test/r/have_moscow_leap_timezone.require Xmysql-test/r/have_mysql_upgrade.result Xmysql-test/r/have_ndb_extra.require Xmysql-test/r/have_ndbapi_examples.require Xmysql-test/r/have_outfile.require Xmysql-test/r/have_partition.require Xmysql-test/r/have_perror.require Xmysql-test/r/have_query_cache.require Xmysql-test/r/have_simple_parser.require Xmysql-test/r/have_sjis.require Xmysql-test/r/have_ssl.require Xmysql-test/r/have_symlink.require Xmysql-test/r/have_tis620.require Xmysql-test/r/have_ucs2.require Xmysql-test/r/have_udf_example.require Xmysql-test/r/have_ujis.require Xmysql-test/r/have_utf8.require Xmysql-test/r/having.result Xmysql-test/r/heap.result Xmysql-test/r/heap_auto_increment.result Xmysql-test/r/heap_btree.result Xmysql-test/r/heap_hash.result Xmysql-test/r/help.result Xmysql-test/r/index_merge_innodb.result Xmysql-test/r/index_merge_myisam.result Xmysql-test/r/information_schema.result Xmysql-test/r/information_schema_chmod.result Xmysql-test/r/information_schema_db.result Xmysql-test/r/information_schema_inno.result Xmysql-test/r/information_schema_part.result Xmysql-test/r/init_connect.result Xmysql-test/r/init_file.result Xmysql-test/r/innodb-autoinc-optimize.result Xmysql-test/r/innodb-autoinc.result Xmysql-test/r/innodb-lock.result Xmysql-test/r/innodb-replace.result Xmysql-test/r/innodb-semi-consistent.result Xmysql-test/r/innodb-ucs2.result Xmysql-test/r/innodb.result Xmysql-test/r/innodb_autoinc_lock_mode_zero.result Xmysql-test/r/innodb_bug30919.result Xmysql-test/r/innodb_bug34053.result Xmysql-test/r/innodb_bug34300.result Xmysql-test/r/innodb_bug35220.result Xmysql-test/r/innodb_bug38231.result Xmysql-test/r/innodb_bug39438.result Xmysql-test/r/innodb_gis.result Xmysql-test/r/innodb_ignore_builtin.result Xmysql-test/r/innodb_mysql.result Xmysql-test/r/innodb_mysql_rbk.result Xmysql-test/r/innodb_notembedded.result Xmysql-test/r/innodb_timeout_rollback.result Xmysql-test/r/innodb_trx_weight.result Xmysql-test/r/insert.result Xmysql-test/r/insert_notembedded.result Xmysql-test/r/insert_select.result Xmysql-test/r/insert_update.result Xmysql-test/r/is_debug_build.require Xmysql-test/r/is_embedded.require Xmysql-test/r/isam.result Xmysql-test/r/join.result Xmysql-test/r/join_crash.result Xmysql-test/r/join_nested.result Xmysql-test/r/join_outer.result Xmysql-test/r/join_outer_innodb.result Xmysql-test/r/key.result Xmysql-test/r/key_cache.result Xmysql-test/r/key_diff.result Xmysql-test/r/key_primary.result Xmysql-test/r/keywords.result Xmysql-test/r/kill.result Xmysql-test/r/limit.result Xmysql-test/r/loaddata.result Xmysql-test/r/loaddata_autocom_innodb.result Xmysql-test/r/lock.result Xmysql-test/r/lock_multi.result Xmysql-test/r/lock_tables_lost_commit.result Xmysql-test/r/log_state.result Xmysql-test/r/log_tables-big.result Xmysql-test/r/log_tables.result Xmysql-test/r/long_tmpdir.result Xmysql-test/r/lowercase0.require Xmysql-test/r/lowercase1.require Xmysql-test/r/lowercase2.require Xmysql-test/r/lowercase_fs_off.result Xmysql-test/r/lowercase_mixed_tmpdir.result Xmysql-test/r/lowercase_table.result Xmysql-test/r/lowercase_table2.result Xmysql-test/r/lowercase_table3.result Xmysql-test/r/lowercase_table_grant.result Xmysql-test/r/lowercase_table_qcache.result Xmysql-test/r/lowercase_view.result Xmysql-test/r/merge-big.result Xmysql-test/r/merge.result Xmysql-test/r/merge_innodb.result Xmysql-test/r/metadata.result Xmysql-test/r/mix2_myisam.result Xmysql-test/r/mix2_myisam_ucs2.result Xmysql-test/r/multi_statement.result Xmysql-test/r/multi_update.result Xmysql-test/r/multi_update2.result Xmysql-test/r/multi_update_tiny_hash.result Xmysql-test/r/myisam-blob.result Xmysql-test/r/myisam-system.result Xmysql-test/r/myisam.result Xmysql-test/r/myisampack.result Xmysql-test/r/mysql.result Xmysql-test/r/mysql_client_test.result Xmysql-test/r/mysql_comments.result Xmysql-test/r/mysql_cp932.result Xmysql-test/r/mysql_protocols.result Xmysql-test/r/mysql_upgrade.result Xmysql-test/r/mysqladmin.result Xmysql-test/r/mysqlbinlog-cp932.result Xmysql-test/r/mysqlbinlog.result Xmysql-test/r/mysqlbinlog2.result Xmysql-test/r/mysqlbinlog_base64.result Xmysql-test/r/mysqlbinlog_row.result Xmysql-test/r/mysqlbinlog_row_big.result Xmysql-test/r/mysqlbinlog_row_innodb.result Xmysql-test/r/mysqlbinlog_row_myisam.result Xmysql-test/r/mysqlbinlog_row_trans.result Xmysql-test/r/mysqlcheck.result Xmysql-test/r/mysqldump-compat.result Xmysql-test/r/mysqldump-max.result Xmysql-test/r/mysqldump-no-binlog.result Xmysql-test/r/mysqldump.result Xmysql-test/r/mysqlshow.result Xmysql-test/r/mysqlslap.result Xmysql-test/r/mysqltest.result Xmysql-test/r/named_pipe.result Xmysql-test/r/ndb_default_cluster.require Xmysql-test/r/negation_elimination.result Xmysql-test/r/no-threads.result Xmysql-test/r/not_embedded.require Xmysql-test/r/not_embedded_server.result Xmysql-test/r/not_ndb.require Xmysql-test/r/not_ndb_default.require Xmysql-test/r/not_openssl.require Xmysql-test/r/not_partition.require Xmysql-test/r/not_partition.result Xmysql-test/r/not_valgrind.require Xmysql-test/r/not_windows.require Xmysql-test/r/null.result Xmysql-test/r/null_key.result Xmysql-test/r/odbc.result Xmysql-test/r/olap.result Xmysql-test/r/one_thread_per_connection.require Xmysql-test/r/openssl_1.result Xmysql-test/r/order_by.result Xmysql-test/r/order_fill_sortbuf.result Xmysql-test/r/outfile.result Xmysql-test/r/outfile_loaddata.result Xmysql-test/r/overflow.result Xmysql-test/r/packet.result Xmysql-test/r/parser.result Xmysql-test/r/parser_bug21114_innodb.result Xmysql-test/r/parser_precedence.result Xmysql-test/r/parser_stack.result Xmysql-test/r/partition.result Xmysql-test/r/partition_archive.result Xmysql-test/r/partition_blackhole.result Xmysql-test/r/partition_bug18198.result Xmysql-test/r/partition_charset.result Xmysql-test/r/partition_csv.result Xmysql-test/r/partition_datatype.result Xmysql-test/r/partition_error.result Xmysql-test/r/partition_federated.result Xmysql-test/r/partition_grant.result Xmysql-test/r/partition_hash.result Xmysql-test/r/partition_innodb.result Xmysql-test/r/partition_innodb_semi_consistent.result Xmysql-test/r/partition_innodb_stmt.result Xmysql-test/r/partition_list.result Xmysql-test/r/partition_mgm.result Xmysql-test/r/partition_mgm_err.result Xmysql-test/r/partition_mgm_err2.result Xmysql-test/r/partition_not_windows.result Xmysql-test/r/partition_order.result Xmysql-test/r/partition_pruning.result Xmysql-test/r/partition_range.result Xmysql-test/r/partition_symlink.result Xmysql-test/r/partition_windows.result Xmysql-test/r/perror-win.result Xmysql-test/r/perror.result Xmysql-test/r/plugin.result Xmysql-test/r/plugin_load.result Xmysql-test/r/preload.result Xmysql-test/r/profiling.result Xmysql-test/r/ps.result Xmysql-test/r/ps_10nestset.result Xmysql-test/r/ps_11bugs.result Xmysql-test/r/ps_1general.result Xmysql-test/r/ps_2myisam.result Xmysql-test/r/ps_3innodb.result Xmysql-test/r/ps_4heap.result Xmysql-test/r/ps_5merge.result Xmysql-test/r/ps_ddl.result Xmysql-test/r/ps_ddl1.result Xmysql-test/r/ps_grant.result Xmysql-test/r/ps_not_windows.result Xmysql-test/r/query_cache.result Xmysql-test/r/query_cache_28249.result Xmysql-test/r/query_cache_debug.result Xmysql-test/r/query_cache_merge.result Xmysql-test/r/query_cache_notembedded.result Xmysql-test/r/query_cache_ps_no_prot.result Xmysql-test/r/query_cache_ps_ps_prot.result Xmysql-test/r/query_cache_with_views.result Xmysql-test/r/raid.result Xmysql-test/r/range.result Xmysql-test/r/read_many_rows_innodb.result Xmysql-test/r/read_only.result Xmysql-test/r/read_only_innodb.result Xmysql-test/r/rename.result Xmysql-test/r/renamedb.result Xmysql-test/r/repair.result Xmysql-test/r/replace.result Xmysql-test/r/rollback.result Xmysql-test/r/round.result Xmysql-test/r/row.result Xmysql-test/r/rowid_order_innodb.result Xmysql-test/r/rpl_colSize.result Xmysql-test/r/rpl_extraColmaster_innodb.result Xmysql-test/r/rpl_extraColmaster_myisam.result Xmysql-test/r/schema.result Xmysql-test/r/select.result Xmysql-test/r/select_found.result Xmysql-test/r/select_safe.result Xmysql-test/r/server_id.require Xmysql-test/r/server_id1.require Xmysql-test/r/shm.result Xmysql-test/r/show_check.result Xmysql-test/r/skip_grants.result Xmysql-test/r/skip_log_bin.result Xmysql-test/r/skip_name_resolve.result Xmysql-test/r/slave-running.result Xmysql-test/r/slave-stopped.result Xmysql-test/r/sp-big.result Xmysql-test/r/sp-code.result Xmysql-test/r/sp-destruct.result Xmysql-test/r/sp-dynamic.result Xmysql-test/r/sp-error.result Xmysql-test/r/sp-prelocking.result Xmysql-test/r/sp-security.result Xmysql-test/r/sp-threads.result Xmysql-test/r/sp-ucs2.result Xmysql-test/r/sp-vars.result Xmysql-test/r/sp.result Xmysql-test/r/sp_gis.result Xmysql-test/r/sp_notembedded.result Xmysql-test/r/sp_stress_case.result Xmysql-test/r/sp_trans.result Xmysql-test/r/sp_trans_log.result Xmysql-test/r/sql_mode.result Xmysql-test/r/ssl-big.result Xmysql-test/r/ssl.result Xmysql-test/r/ssl_8k_key.result Xmysql-test/r/ssl_compress.result Xmysql-test/r/ssl_connect.result Xmysql-test/r/status.result Xmysql-test/r/status2.result Xmysql-test/r/strict.result Xmysql-test/r/strict_autoinc_1myisam.result Xmysql-test/r/strict_autoinc_2innodb.result Xmysql-test/r/strict_autoinc_3heap.result Xmysql-test/r/subselect.result Xmysql-test/r/subselect2.result Xmysql-test/r/subselect3.result Xmysql-test/r/subselect_debug.result Xmysql-test/r/subselect_gis.result Xmysql-test/r/subselect_innodb.result Xmysql-test/r/subselect_notembedded.result Xmysql-test/r/sum_distinct-big.result Xmysql-test/r/sum_distinct.result Xmysql-test/r/symlink.result Xmysql-test/r/synchronization.result Xmysql-test/r/sysdate_is_now.result Xmysql-test/r/system_mysql_db.result Xmysql-test/r/system_mysql_db_refs.result Xmysql-test/r/tablelock.result Xmysql-test/r/temp_table.result Xmysql-test/r/testdb_only.require Xmysql-test/r/timezone.result Xmysql-test/r/timezone2.result Xmysql-test/r/timezone3.result Xmysql-test/r/timezone4.result Xmysql-test/r/timezone_grant.result Xmysql-test/r/trigger-compat.result Xmysql-test/r/trigger-trans.result Xmysql-test/r/trigger.result Xmysql-test/r/trigger_notembedded.result Xmysql-test/r/true.require Xmysql-test/r/truncate.result Xmysql-test/r/type_binary.result Xmysql-test/r/type_bit.result Xmysql-test/r/type_bit_innodb.result Xmysql-test/r/type_blob.result Xmysql-test/r/type_date.result Xmysql-test/r/type_datetime.result Xmysql-test/r/type_decimal.result Xmysql-test/r/type_enum.result Xmysql-test/r/type_float.result Xmysql-test/r/type_nchar.result Xmysql-test/r/type_newdecimal-big.result Xmysql-test/r/type_newdecimal.result Xmysql-test/r/type_rang