Index: head/Mk/Uses/python.mk =================================================================== --- head/Mk/Uses/python.mk (revision 430838) +++ head/Mk/Uses/python.mk (revision 430839) @@ -1,628 +1,643 @@ # $FreeBSD$ # # Provide support for Python related ports. This includes detecting Python # interpreters, ports providing package and modules for python as well as # consumer ports requiring Python at build or run time. # # Feature: python # Usage: USES=python or USES=python:args # Valid ARGS: , build, run, test # # version If your port requires only some set of Python versions, you # can set this to [min]-[max] or min+ or -max or as an # explicit version or as a meta port version (eg. 3.3-3.4 for # [min]-[max], 2.7+ or -3.3 for min+ and -max, 2.7 for an # explicit version or 3 for a meta port version). Example: # # USES=python:2.7 # Only use Python 2.7 # USES=python:3.3+ # Use Python 3.3 or newer # USES=python:3.3-3.4 # Use Python 3.3 or 3.4 # USES=python:-3.3 # Use any Python up to 3.3 # USES=python:2 # Use the Python 2 meta port # USES=python # Use the set default Python # # version # # build Indicates that Python is needed at build time and adds # it to BUILD_DEPENDS. # run Indicates that Python is needed at run time and adds # it to RUN_DEPENDS. # test Indicates that Python is needed at test time and adds # it to TEST_DEPENDS. # # If build, run and test are omitted, Python will be added as BUILD_DEPENDS, # RUN_DEPENDS and TEST_DEPENDS. PYTHON_NO_DEPENDS can be set to not add any # dependencies. # # Variables, which can be set by a user: # # PYTHON_VERSION - The chosen Python interpreter including the version, # e.g. python2.7, python3.3, etc. This allows the user # to override the currently chosen default version and # to install the port for a specific Python version. # It must not be set by a port. # # Variables, which can be set by the port: # # USE_PYTHON - A list of additional features and functionality to # enable. Supported features are: # # concurrent - Indicates that the port can be installed for # different python versions at the same time. The port # is supposed to use a unique prefix for certain # directories using USES=uniquefiles:dirs (see the # uniquefiles.mk Uses for details about the # directories), if set to yes. Binaries receive an # additional suffix, based on ${PYTHON_VER}. # # The values for the uniquefiles USES are set as # follows: # # UNIQUE_PREFIX= ${PYTHON_PKGNAMEPREFIX} # UNIQUE_SUFFIX= -${PYTHON_VER} # # If the port is installed for the current default # python version, scripts and binaries in # # ${PREFIX}/bin # ${PREFIX}/sbin # ${PREFIX}/libexec # # are linked from the prefixed version to the # prefix-less original name, e.g. # bin/foo-2.7 --> bin/foo. # # distutils - Use distutils as do-configure, do-build and # do-install targets. # # autoplist - Automatically generates the packaging list for a # port that uses distutils when defined. # requires: distutils # # py3kplist - Automatically generates Python 3.x compatible # __pycache__ entries from a Python 2.x packaging list # when defined. Use this for ports that do *not* use # standard Python packaging mechanisms such as # distutils, and support *both* Python 2.x and 3.x. # Not needed, if USE_PYTHON=autoplist is set. # # pythonprefix - Says that the port installs in ${PYTHONBASE} instead # of ${PREFIX}. # # noegginfo - Skip an egg-info entry from plist, if defined. # # PYTHON_CMD - Python's command line file name, including the # version number (used for dependencies). # default: ${PYTHONBASE}/bin/${PYTHON_VERSION} # # PYSETUP - Name of the setup script used by the distutils # package. # default: setup.py # # PYDISTUTILS_PKGNAME # - Internal name in the distutils for egg-info. # default: ${PORTNAME} # # PYDISTUTILS_PKGVERSION # - Internal version in the distutils for egg-info. # default: ${PORTVERSION} # # PYDISTUTILS_CONFIGURE_TARGET # - Pass this command to distutils on configure stage. # default: config # # PYDISTUTILS_BUILD_TARGET # - Pass this command to distutils on build stage. # default: build # # PYDISTUTILS_INSTALL_TARGET # - Pass this command to distutils on install stage. # default: install # # PYDISTUTILS_CONFIGUREARGS # - Arguments to config with distutils. # default: # # PYDISTUTILS_BUILDARGS # - Arguments to build with distutils. # default: # # PYDISTUTILS_INSTALLARGS # - Arguments to install with distutils. # default: -c -O1 --prefix=${PREFIX} --single-version-externally-managed --root=${STAGEDIR} # # PYDISTUTILS_EGGINFO # - Canonical name for egg-info. # default: ${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-py${PYTHON_VER}.egg-info # # The following variables can be read by ports and must not be modified: # # PYTHONBASE - The installation prefix of the chosen Python # interpreter, e.g. /usr/local # # PYTHON_PORTVERSION # - Version number suitable for ${PORTVERSION}. # # PYTHON_PORTSDIR - The port directory of the chosen Python interpreter # # PYTHON_REL - The release number of the chosen Python interpreter # without dots, e.g. 2706, 3401, ... # # PYTHON_SUFFIX - The major-minor release number of the chosen Python # interpreter without dots, e.g. 27, 34, ... # Used for prefixes and suffixes. # # PYTHON_MAJOR_VER - The major release version of the chosen Python # interpreter, e.g. 2, 3, ... # # PYTHON_VER - The major-minor release version of the chosen Python # interpreter, e.g. 2.7, 3.4, ... # # PYTHON_ABIVER - Additional ABI flags set by the chosen Python # interpreter, e.g. md # # PYTHON_INCLUDEDIR - Location of the Python include files. # default: ${PYTHONBASE}/include/${PYTHON_VERSION} # # PYTHON_LIBDIR - Base of the python library tree # default: ${PYTHONBASE}/lib/${PYTHON_VERSION} # # PYTHON_SITELIBDIR - Location of the site-packages tree. Don't change, # unless you know what you do. # default: ${PYTHON_LIBDIR}/site-packages # # There are PREFIX-clean variants of the PYTHON_*DIR variables above. # They are meant to be used by ports instead of the above variables, so the # ports respect ${PREFIX} (unless USE_PYTHON=pythonprefix is specified). # # PYTHONPREFIX_INCLUDEDIR default: ${PREFIX}/include/${PYTHON_VERSION} # PYTHONPREFIX_LIBDIR default: ${PREFIX}/lib/${PYTHON_VERSION} # PYTHONPREFIX_SITELIBDIR default: ${PYTHONPREFIX_LIBDIR}/site-packages # # PYTHON_PLATFORM - Python's idea of the OS release. # This is faked with ${OPSYS} and ${OSREL} until we # find out how to delay defining a variable until # after a certain target has been built. # # PYTHON_PKGNAMEPREFIX # - Use this as a ${PKGNAMEPREFIX} to distinguish # packages for different Python versions. # default: py${PYTHON_SUFFIX}- # # Using USES=python.mk also will add some useful entries to PLIST_SUB: # # PYTHON_INCLUDEDIR=${PYTHONPREFIX_INCLUDEDIR:S;${PREFIX}/;;} # PYTHON_LIBDIR=${PYTHONPREFIX_LIBDIR:S;${PREFIX}/;;} # PYTHON_PLATFORM=${PYTHON_PLATFORM} +# PYTHON_PYOEXTENSION=${PYTHON_PYOEXTENSION} # PYTHON_SITELIBDIR=${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} +# PYTHON_SUFFIX=${PYTHON_SUFFIX} # PYTHON_VER=${PYTHON_VER} # PYTHON_VERSION=${PYTHON_VERSION} # +# and PYTHON2 and PYTHON3 will be set according to the Python version: # +# PYTHON2="" PYTHON3="@comment " for Python 2.x +# PYTHON2="@comment " PYTHON3="" for Python 3.x +# # Deprecated variables, which exist for compatibility and will be removed # soon: # # PYTHON_DEFAULT_VERSION # PYTHON2_DEFAULT_VERSION # PYTHON3_DEFAULT_VERSION # - Deprecated, use PYTHON[2,3]_DEFAULT instead, # see bsd.default-versions.mk # # PYTHON_PKGNAMESUFFIX # - Deprecated, use PYTHON_PKGNAMEPREFIX instead # default: -py${PYTHON_SUFFIX} # # PYDISTUTILS_INSTALLNOSINGLE # - Deprecated without replacement # # MAINTAINER: python@FreeBSD.org .if !defined(_INCLUDE_USES_PYTHON_MK) _INCLUDE_USES_PYTHON_MK= yes # What Python version and what Python interpreters are currently supported? # When adding a version, please keep the comment in # Mk/bsd.default-versions.mk in sync. _PYTHON_VERSIONS= 2.7 3.6 3.5 3.4 3.3 # preferred first _PYTHON_PORTBRANCH= 2.7 # ${_PYTHON_VERSIONS:[1]} _PYTHON_BASECMD= ${LOCALBASE}/bin/python _PYTHON_RELPORTDIR= lang/python # Make each individual feature available as _PYTHON_FEATURE_ .for var in ${USE_PYTHON} _PYTHON_FEATURE_${var:tu}= yes .endfor # Make sure that no dependency or some other environment variable # pollutes the build/run dependency detection .undef _PYTHON_BUILD_DEP .undef _PYTHON_RUN_DEP .undef _PYTHON_TEST_DEP _PYTHON_ARGS= ${python_ARGS:S/,/ /g} .if ${_PYTHON_ARGS:Mbuild} _PYTHON_BUILD_DEP= yes _PYTHON_ARGS:= ${_PYTHON_ARGS:Nbuild} .endif .if ${_PYTHON_ARGS:Mrun} _PYTHON_RUN_DEP= yes _PYTHON_ARGS:= ${_PYTHON_ARGS:Nrun} .endif .if ${_PYTHON_ARGS:Mtest} _PYTHON_TEST_DEP= yes _PYTHON_ARGS:= ${_PYTHON_ARGS:Ntest} .endif # The port does not specify a build, run or test dependency, assume all are # required. .if !defined(_PYTHON_BUILD_DEP) && !defined(_PYTHON_RUN_DEP) && \ !defined(_PYTHON_TEST_DEP) && !defined(PYTHON_NO_DEPENDS) _PYTHON_BUILD_DEP= yes _PYTHON_RUN_DEP= yes _PYTHON_TEST_DEP= yes .endif .if defined(PYTHON_DEFAULT_VERSION) WARNING+= "PYTHON_DEFAULT_VERSION is defined, consider using DEFAULT_VERSIONS=python=${PYTHON_DEFAULT_VERSION:S/^python//} instead" .endif .if defined(PYTHON2_DEFAULT_VERSION) WARNING+= "PYTHON2_DEFAULT_VERSION is defined, consider using DEFAULT_VERSIONS=python2=${PYTHON2_DEFAULT_VERSION:S/^python//} instead" .endif .if defined(PYTHON3_DEFAULT_VERSION) WARNING+= "PYTHON3_DEFAULT_VERSION is defined, consider using DEFAULT_VERSIONS=python3=${PYTHON3_DEFAULT_VERSION:S/^python//} instead" .endif .if exists(${LOCALBASE}/bin/python) .if !defined(_PYTHON_DEFAULT_VERSION) _PYTHON_DEFAULT_VERSION!= (${LOCALBASE}/bin/python -c \ 'import sys; print("%d.%d" % sys.version_info[:2])' 2> /dev/null \ || ${ECHO_CMD} ${_PYTHON_PORTBRANCH}) | ${TAIL} -1 .endif _EXPORTED_VARS+= _PYTHON_DEFAULT_VERSION .if defined(PYTHON_DEFAULT) && (${PYTHON_DEFAULT} != ${_PYTHON_DEFAULT_VERSION}) WARNING+= "Your requested default python version ${PYTHON_DEFAULT} is different from the installed default python interpreter version ${_PYTHON_DEFAULT_VERSION}" .endif PYTHON_DEFAULT_VERSION= python${_PYTHON_DEFAULT_VERSION} .else PYTHON_DEFAULT_VERSION= python${PYTHON_DEFAULT} .endif # exists(${LOCALBASE}/bin/python) # Is only a meta-port version defined? .if ${PYTHON_DEFAULT_VERSION} == "python2" PYTHON2_DEFAULT_VERSION?= python${PYTHON2_DEFAULT} .elif ${PYTHON_DEFAULT_VERSION:R} == "python2" PYTHON2_DEFAULT_VERSION= ${PYTHON_DEFAULT_VERSION} .else PYTHON2_DEFAULT_VERSION?= python${PYTHON2_DEFAULT} .endif .if ${PYTHON_DEFAULT_VERSION} == "python3" PYTHON3_DEFAULT_VERSION?= python${PYTHON3_DEFAULT} .elif ${PYTHON_DEFAULT_VERSION:R} == "python3" PYTHON3_DEFAULT_VERSION= ${PYTHON_DEFAULT_VERSION} .else PYTHON3_DEFAULT_VERSION?= python${PYTHON3_DEFAULT} .endif .if ${_PYTHON_ARGS} == "2" _PYTHON_ARGS= ${PYTHON2_DEFAULT_VERSION:S/^python//} _WANTS_META_PORT= 2 .elif ${_PYTHON_ARGS} == "3" _PYTHON_ARGS= ${PYTHON3_DEFAULT_VERSION:S/^python//} _WANTS_META_PORT= 3 .endif # ${_PYTHON_ARGS} == "2" .if defined(PYTHON_VERSION) # A port/user requests a specific python version for its dependencies via # DEPENDS_ARGS, since it requires the specific python version itself. # Several things can happen now: # a) the dependency supports the requested version -> everything's fine # b) the dependency does not support the requested version # 1) the dependency works in a way that the different python # versions do not matter -> everything's fine # 2) the dependency is likely to break due to the conflict # nothing's fine # # b.2) needs to be resolved. Due to the complexity of how different pieces of # software are built, we can't solve this automatically. Instead, let's assume # that maintainers know what they are doing and assume PYTHON_VERSION to be a # hint. Just warn maintainers, if the versions do not match # (_PYTHON_VERSION_NONSUPPORTED). _PYTHON_VERSION:= ${PYTHON_VERSION:S/^python//} .else _PYTHON_VERSION:= ${PYTHON_DEFAULT_VERSION:S/^python//} .endif # defined(PYTHON_VERSION) # Validate Python version whether it meets the version restriction. _PYTHON_VERSION_CHECK:= ${_PYTHON_ARGS:C/^([1-9]\.[0-9])$/\1-\1/} _PYTHON_VERSION_MINIMUM_TMP:= ${_PYTHON_VERSION_CHECK:C/([1-9]\.[0-9])[-+].*/\1/} _PYTHON_VERSION_MINIMUM:= ${_PYTHON_VERSION_MINIMUM_TMP:M[1-9].[0-9]} _PYTHON_VERSION_MAXIMUM_TMP:= ${_PYTHON_VERSION_CHECK:C/.*-([1-9]\.[0-9])/\1/} _PYTHON_VERSION_MAXIMUM:= ${_PYTHON_VERSION_MAXIMUM_TMP:M[1-9].[0-9]} .undef _PYTHON_VERSION_NONSUPPORTED .if !empty(_PYTHON_VERSION_MINIMUM) && (${_PYTHON_VERSION} < ${_PYTHON_VERSION_MINIMUM}) _PYTHON_VERSION_NONSUPPORTED= ${_PYTHON_VERSION_MINIMUM} at least .elif !empty(_PYTHON_VERSION_MAXIMUM) && (${_PYTHON_VERSION} > ${_PYTHON_VERSION_MAXIMUM}) _PYTHON_VERSION_NONSUPPORTED= ${_PYTHON_VERSION_MAXIMUM} at most .endif # If we have an unsupported version of Python, try another. .if defined(_PYTHON_VERSION_NONSUPPORTED) .if defined(PYTHON_VERSION) || defined(PYTHON_CMD) _PV:= ${_PYTHON_VERSION} # preserve the specified python version WARNING+= "needs Python ${_PYTHON_VERSION_NONSUPPORTED}. But a port depending on this one specified ${_PV}" .endif # defined(PYTHON_VERSION) || defined(PYTHON_CMD) .undef _PYTHON_VERSION .for ver in ${PYTHON2_DEFAULT} ${PYTHON3_DEFAULT} ${_PYTHON_VERSIONS} __VER= ${ver} .if !defined(_PYTHON_VERSION) && \ !(!empty(_PYTHON_VERSION_MINIMUM) && ( \ ${__VER} < ${_PYTHON_VERSION_MINIMUM})) && \ !(!empty(_PYTHON_VERSION_MAXIMUM) && ( \ ${__VER} > ${_PYTHON_VERSION_MAXIMUM})) _PYTHON_VERSION= ${ver} .endif .endfor .if !defined(_PYTHON_VERSION) IGNORE= needs an unsupported version of Python .endif .endif # defined(_PYTHON_VERSION_NONSUPPORTED) # Pass PYTHON_VERSION down the dependency chain. This ensures that # port A -> B -> C all will use the same python version and do not # try to find a different one, if the passed version fits into # the supported version range. PYTHON_VERSION?= python${_PYTHON_VERSION} .if !defined(PYTHON_NO_DEPENDS) DEPENDS_ARGS+= PYTHON_VERSION=${PYTHON_VERSION} .endif # NOTE: # # PYTHON_VERSION will hold whatever is passed down the dependency chain. # If a user runs `make PYTHON_VERSION=python3.3, PYTHON_VERSION will be # set to 'python3.3'. A port however may require a different version, # which is stored (above) in _PYTHON_VERSION. # Every python bit below hence should use python${_PYTHON_VERSION}, since # this is the value, the _port_ requires # # Got the correct python version, set some publicly accessible variables PYTHON_VER= ${_PYTHON_VERSION} PYTHON_SUFFIX= ${_PYTHON_VERSION:S/.//g} PYTHON_MAJOR_VER= ${PYTHON_VER:R} PYTHON_REL= # empty PYTHON_ABIVER= # empty PYTHON_PORTSDIR= ${_PYTHON_RELPORTDIR}${PYTHON_SUFFIX} # Protect partial checkouts from Mk/Scripts/functions.sh:export_ports_env(). .if !defined(_PORTS_ENV_CHECK) || exists(${PORTSDIR}/${PYTHON_PORTSDIR}) .include "${PORTSDIR}/${PYTHON_PORTSDIR}/Makefile.version" .endif # Create a 4 integer version string, prefixing 0 to the last token if # it's a single character. Only use the the first 3 tokens of # PORTVERSION to support pre-release versions (rc3, alpha4, etc) of # any Python port (lang/pythonXY) PYTHON_REL= ${PYTHON_PORTVERSION:C/^([0-9]+\.[0-9]+\.[0-9]+).*/\1/:C/\.([0-9]+)$/.0\1/:C/\.0?([0-9][0-9])$/.\1/:S/.//g} # Might be overridden by calling ports PYTHON_CMD?= ${_PYTHON_BASECMD}${_PYTHON_VERSION} .if ${PYTHON_VER} != 2.7 .if exists(${PYTHON_CMD}-config) PYTHON_ABIVER!= ${PYTHON_CMD}-config --abiflags .else # Default ABI flags for lang/python3x ports PYTHON_ABIVER= m .endif .endif .if !defined(PYTHONBASE) PYTHONBASE!= (${PYTHON_CMD} -c 'import sys; print(sys.prefix)' \ 2> /dev/null || ${ECHO_CMD} ${LOCALBASE}) | ${TAIL} -1 .endif _EXPORTED_VARS+= PYTHONBASE PYTHON_INCLUDEDIR= ${PYTHONBASE}/include/python${_PYTHON_VERSION}${PYTHON_ABIVER} PYTHON_LIBDIR= ${PYTHONBASE}/lib/python${_PYTHON_VERSION} PYTHON_PLATFORM= ${OPSYS:tl}${OSREL:C/\.[0-9.]*//} PYTHON_SITELIBDIR= ${PYTHON_LIBDIR}/site-packages PYTHON_PKGNAMEPREFIX= py${PYTHON_SUFFIX}- PYTHON_PKGNAMESUFFIX= -py${PYTHON_SUFFIX} PYTHONPREFIX_INCLUDEDIR= ${PYTHON_INCLUDEDIR:S;${PYTHONBASE};${PREFIX};} PYTHONPREFIX_LIBDIR= ${PYTHON_LIBDIR:S;${PYTHONBASE};${PREFIX};} PYTHONPREFIX_SITELIBDIR= ${PYTHON_SITELIBDIR:S;${PYTHONBASE};${PREFIX};} # Used for recording the installed files. _PYTHONPKGLIST= ${WRKDIR}/.PLIST.pymodtmp +# PEP 0488 (https://www.python.org/dev/peps/pep-0488/) +.if ${PYTHON_REL} < 3500 +PYTHON_PYOEXTENSION= pyo +.else +PYTHON_PYOEXTENSION= opt-1.pyc +.endif + # Ports bound to a certain python version SHOULD # - use the PYTHON_PKGNAMEPREFIX # - use directories using the PYTHON_PKGNAMEPREFIX # - install binaries using the required PYTHON_VER, with # the default python version creating a symlink to the original binary # name (for staging-aware ports). # # What makes a port 'bound' to a certain python version? # - it installs data into PYTHON_SITELIBDIR, PYTHON_INCLUDEDIR, ... # - it links against libpython*.so # - it uses USE_PYTHON=distutils # .if defined(_PYTHON_FEATURE_CONCURRENT) _USES_POST+= uniquefiles:dirs .if ${PYTHON_VERSION} == ${PYTHON_DEFAULT_VERSION} UNIQUE_DEFAULT_LINKS= yes .else UNIQUE_DEFAULT_LINKS= no .endif UNIQUE_PREFIX= ${PYTHON_PKGNAMEPREFIX} UNIQUE_SUFFIX= -${PYTHON_VER} .if defined(_PYTHON_FEATURE_AUTOPLIST) UNIQUE_FIND_SUFFIX_FILES= \ ${SED} -e 's|^${PREFIX}/||' ${_PYTHONPKGLIST} ${TMPPLIST} | \ ${GREP} -e '^bin/.*$$\|^sbin/.*$$\|^libexec/.*$$' .else UNIQUE_FIND_SUFFIX_FILES= \ ${GREP} -he '^bin/.*$$\|^sbin/.*$$\|^libexec/.*$$' ${TMPPLIST} 2>/dev/null .endif .endif # defined(_PYTHON_FEATURE_CONCURRENT) _CURRENTPORT:= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} .if defined(_PYTHON_FEATURE_DISTUTILS) && \ ${_CURRENTPORT:S/${PYTHON_SUFFIX}$//} != ${PYTHON_PKGNAMEPREFIX}setuptools BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}setuptools${PYTHON_SUFFIX}>0:devel/py-setuptools${PYTHON_SUFFIX} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}setuptools${PYTHON_SUFFIX}>0:devel/py-setuptools${PYTHON_SUFFIX} .endif # distutils support PYSETUP?= setup.py PYDISTUTILS_SETUP?= -c \ "import sys; import setuptools; \ __file__='${PYSETUP}'; sys.argv[0]='${PYSETUP}'; \ exec(compile(open(__file__, 'rb').read().replace(b'\\r\\n', b'\\n'), __file__, 'exec'))" PYDISTUTILS_CONFIGUREARGS?= # empty PYDISTUTILS_BUILDARGS?= # empty PYDISTUTILS_INSTALLARGS?= -c -O1 --prefix=${PREFIX} .if defined(_PYTHON_FEATURE_DISTUTILS) . if !defined(PYDISTUTILS_INSTALLNOSINGLE) PYDISTUTILS_INSTALLARGS+= --single-version-externally-managed . endif PYDISTUTILS_INSTALLARGS+= --root=${STAGEDIR} .endif PYDISTUTILS_INSTALLARGS:= --record ${_PYTHONPKGLIST} \ ${PYDISTUTILS_INSTALLARGS} PYDISTUTILS_PKGNAME?= ${PORTNAME} PYDISTUTILS_PKGVERSION?=${PORTVERSION} PYDISTUTILS_EGGINFO?= ${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-py${PYTHON_VER}.egg-info PYDISTUTILS_EGGINFODIR?=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} .if !defined(_PYTHON_FEATURE_NOEGGINFO) && \ !defined(_PYTHON_FEATURE_AUTOPLIST) && \ defined(_PYTHON_FEATURE_DISTUTILS) && \ defined(PYTHON_REL) _USES_stage+= 933:add-plist-egginfo add-plist-egginfo: . for egginfo in ${PYDISTUTILS_EGGINFO} if [ -d "${PYDISTUTILS_EGGINFODIR}/${egginfo}" ]; then \ ${LS} ${PYDISTUTILS_EGGINFODIR}/${egginfo} | while read f; do \ ${ECHO_CMD} ${PYDISTUTILS_EGGINFODIR:S;^${STAGEDIR}${PREFIX}/;;}/${egginfo}/$${f} >> ${TMPPLIST}; \ done; \ fi; . endfor .endif .if defined(_PYTHON_FEATURE_AUTOPLIST) && defined(_PYTHON_FEATURE_DISTUTILS) _RELSITELIBDIR= ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} _RELLIBDIR= ${PYTHONPREFIX_LIBDIR:S;${PREFIX}/;;} _USES_stage+= 934:add-plist-pymod add-plist-pymod: @${SED} -e 's|^${STAGEDIR}${PREFIX}/||' \ -e 's|^${PREFIX}/||' \ -e 's|^\(man/.*man[0-9]\)/\(.*\.[0-9]\)$$|\1/\2.gz|' \ -e 's|[[:alnum:]|[:space:]]*/\.\./*||g; s|/\./|/|g' \ ${_PYTHONPKGLIST} | ${SORT} >> ${TMPPLIST} .else .if ${PYTHON_REL} >= 3200 && defined(_PYTHON_FEATURE_PY3KPLIST) # When Python version is 3.2+ we rewrite all the filenames # of TMPPLIST that end with .py[co], so that they conform # to PEP 3147 (see http://www.python.org/dev/peps/pep-3147/) PYMAGICTAG= ${PYTHON_CMD} -c 'import imp; print(imp.get_tag())' -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif _USES_stage+= 935:add-plist-python add-plist-python: @${AWK} '\ /\.py[co]$$/ && !($$0 ~ "/" pc "/") {id = match($$0, /\/[^\/]+\.py[co]$$/); if (id != 0) {d = substr($$0, 1, RSTART - 1); dirs[d] = 1}; sub(/\.pyc$$/, "." mt "&"); sub(/\.pyo$$/, "." mt "." pyo); sub(/[^\/]+\.py[co]$$/, pc "/&"); print; next} \ /^@dirrm / {d = substr($$0, 8); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \ /^@dirrmtry / {d = substr($$0, 11); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \ {print} \ ' \ - pc="__pycache__" mt="$$(${PYMAGICTAG})" pyo="${PYOEXTENSION}" \ + pc="__pycache__" mt="$$(${PYMAGICTAG})" pyo="${PYTHON_PYOEXTENSION}" \ ${TMPPLIST} > ${TMPPLIST}.pyc_tmp @${MV} ${TMPPLIST}.pyc_tmp ${TMPPLIST} .endif # ${PYTHON_REL} >= 3200 && defined(_PYTHON_FEATURE_PY3KPLIST) .endif # defined(_PYTHON_FEATURE_AUTOPLIST) && defined(_PYTHON_FEATURE_DISTUTILS) # Fix for programs that build python from a GNU auto* environment CONFIGURE_ENV+= PYTHON="${PYTHON_CMD}" # By default CMake picks up the highest available version of Python package. # Enforce the version required by the port or the default. CMAKE_ARGS+= -DPython_ADDITIONAL_VERSIONS=${PYTHON_VER} # Python 3rd-party modules PYGAME= ${PYTHON_PKGNAMEPREFIX}game>0:devel/py-game PYNUMERIC= ${PYTHON_SITELIBDIR}/Numeric/Numeric.py:math/py-numeric PYNUMPY= ${PYTHON_SITELIBDIR}/numpy/core/numeric.py:math/py-numpy # dependencies .if defined(_PYTHON_BUILD_DEP) BUILD_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} .if defined(_WANTS_META_PORT) BUILD_DEPENDS+= python${_WANTS_META_PORT}:${_PYTHON_RELPORTDIR}${_WANTS_META_PORT} .endif .endif .if defined(_PYTHON_RUN_DEP) RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} .if defined(_WANTS_META_PORT) RUN_DEPENDS+= python${_WANTS_META_PORT}:${_PYTHON_RELPORTDIR}${_WANTS_META_PORT} .endif .endif .if defined(_PYTHON_TEST_DEP) TEST_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} .if defined(_WANTS_META_PORT) TEST_DEPENDS+= python${_WANTS_META_PORT}:${_PYTHON_RELPORTDIR}${_WANTS_META_PORT} .endif .endif # set $PREFIX as Python's one .if defined(_PYTHON_FEATURE_PYTHONPREFIX) PREFIX= ${PYTHONBASE} .endif # Substitutions for pkg-plist # Use a short form of the PYTHONPREFIX_*DIR variables; we don't need the # base directory in the plist file. PLIST_SUB+= PYTHON_INCLUDEDIR=${PYTHONPREFIX_INCLUDEDIR:S;${PREFIX}/;;} \ PYTHON_LIBDIR=${PYTHONPREFIX_LIBDIR:S;${PREFIX}/;;} \ PYTHON_PLATFORM=${PYTHON_PLATFORM} \ + PYTHON_PYOEXTENSION=${PYTHON_PYOEXTENSION} \ PYTHON_SITELIBDIR=${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} \ + PYTHON_SUFFIX=${PYTHON_SUFFIX} \ PYTHON_VER=${PYTHON_VER} \ - PYTHON_VERSION=python${_PYTHON_VERSION} + PYTHON_VERSION=${PYTHON_VERSION} +.if ${PYTHON_REL} < 3000 +PLIST_SUB+= PYTHON2="" PYTHON3="@comment " +.else +PLIST_SUB+= PYTHON2="@comment " PYTHON3="" +.endif _USES_POST+= python .endif # _INCLUDE_USES_PYTHON_MK .if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_PYTHON_POST_MK) _INCLUDE_USES_PYTHON_POST_MK= yes # py-distutils support PYDISTUTILS_CONFIGURE_TARGET?= config PYDISTUTILS_BUILD_TARGET?= build PYDISTUTILS_INSTALL_TARGET?= install .if defined(_PYTHON_FEATURE_DISTUTILS) LDSHARED?= ${CC} -shared MAKE_ENV+= LDSHARED="${LDSHARED}" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE= .if !target(do-configure) && !defined(HAS_CONFIGURE) && !defined(GNU_CONFIGURE) do-configure: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} ${PYDISTUTILS_CONFIGURE_TARGET} ${PYDISTUTILS_CONFIGUREARGS}) .endif .if !target(do-build) do-build: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} ${PYDISTUTILS_BUILD_TARGET} ${PYDISTUTILS_BUILDARGS}) .endif .if !target(do-install) do-install: @(cd ${INSTALL_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} ${PYDISTUTILS_INSTALL_TARGET} ${PYDISTUTILS_INSTALLARGS}) .endif .endif # defined(_PYTHON_FEATURE_DISTUTILS) .endif # defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_PYTHON_POST_MK) Index: head/accessibility/accerciser/Makefile =================================================================== --- head/accessibility/accerciser/Makefile (revision 430838) +++ head/accessibility/accerciser/Makefile (revision 430839) @@ -1,42 +1,32 @@ # Created by: Michael Johnson # $FreeBSD$ # $MCom: ports/trunk/accessibility/accerciser/Makefile 19980 2014-10-17 06:01:57Z gusi $ PORTNAME= accerciser PORTVERSION= 3.14.0 PORTREVISION= 1 CATEGORIES= accessibility gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Interactive Python accessibility explorer for GNOME BUILD_DEPENDS= gsettings-desktop-schemas>=3.2.0:devel/gsettings-desktop-schemas \ itstool:textproc/itstool \ at-spi2-core>=2.1.5:accessibility/at-spi2-core RUN_DEPENDS= gsettings-desktop-schemas>=3.2.0:devel/gsettings-desktop-schemas \ at-spi2-core>=2.1.5:accessibility/at-spi2-core +NO_ARCH= yes USES= gettext gmake pkgconfig python:3 shebangfix tar:xz USE_GNOME= gtk30 intlhack py3gobject3 INSTALLS_ICONS= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib SHEBANG_FILES= plugins/ipython_view.py GLIB_SCHEMAS= org.a11y.Accerciser.gschema.xml -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \ - PYVER=${PYTHON_VER:S/.//} - -.include +.include Index: head/accessibility/accerciser/pkg-plist =================================================================== --- head/accessibility/accerciser/pkg-plist (revision 430838) +++ head/accessibility/accerciser/pkg-plist (revision 430839) @@ -1,709 +1,709 @@ bin/accerciser man/man1/accerciser.1.gz %%PYTHON_SITELIBDIR%%/accerciser/__init__.py %%PYTHON_SITELIBDIR%%/accerciser/about_dialog.py %%PYTHON_SITELIBDIR%%/accerciser/accerciser.py %%PYTHON_SITELIBDIR%%/accerciser/accessible_treeview.py %%PYTHON_SITELIBDIR%%/accerciser/bookmarks.py %%PYTHON_SITELIBDIR%%/accerciser/hotkey_manager.py %%PYTHON_SITELIBDIR%%/accerciser/i18n.py %%PYTHON_SITELIBDIR%%/accerciser/icons.py %%PYTHON_SITELIBDIR%%/accerciser/main_window.py %%PYTHON_SITELIBDIR%%/accerciser/node.py %%PYTHON_SITELIBDIR%%/accerciser/prefs_dialog.py %%PYTHON_SITELIBDIR%%/accerciser/tools.py %%PYTHON_SITELIBDIR%%/accerciser/ui_manager.py -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/about_dialog.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/about_dialog.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/accerciser.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/accerciser.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/accessible_treeview.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/accessible_treeview.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/bookmarks.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/bookmarks.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/hotkey_manager.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/hotkey_manager.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/i18n.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/i18n.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/icons.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/icons.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/main_window.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/main_window.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/node.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/node.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/prefs_dialog.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/prefs_dialog.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/tools.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/tools.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/ui_manager.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/ui_manager.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/about_dialog.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/about_dialog.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/accerciser.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/accerciser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/accessible_treeview.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/accessible_treeview.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/bookmarks.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/bookmarks.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/hotkey_manager.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/hotkey_manager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/i18n.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/i18n.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/icons.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/icons.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/main_window.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/main_window.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/node.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/node.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/prefs_dialog.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/prefs_dialog.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/tools.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/tools.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/ui_manager.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/__pycache__/ui_manager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/accerciser/plugin/__init__.py %%PYTHON_SITELIBDIR%%/accerciser/plugin/base_plugin.py %%PYTHON_SITELIBDIR%%/accerciser/plugin/message.py %%PYTHON_SITELIBDIR%%/accerciser/plugin/plugin_manager.py %%PYTHON_SITELIBDIR%%/accerciser/plugin/view.py -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/base_plugin.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/base_plugin.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/message.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/message.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/plugin_manager.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/plugin_manager.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/view.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/view.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/base_plugin.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/base_plugin.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/message.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/message.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/plugin_manager.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/plugin_manager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/view.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/accerciser/plugin/__pycache__/view.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/pixmaps/hicolor/22x22/acceleratorlabel.png %%DATADIR%%/pixmaps/hicolor/22x22/alert.png %%DATADIR%%/pixmaps/hicolor/22x22/animation.png %%DATADIR%%/pixmaps/hicolor/22x22/arrow.png %%DATADIR%%/pixmaps/hicolor/22x22/calendar.png %%DATADIR%%/pixmaps/hicolor/22x22/canvas.png %%DATADIR%%/pixmaps/hicolor/22x22/care.png %%DATADIR%%/pixmaps/hicolor/22x22/character.png %%DATADIR%%/pixmaps/hicolor/22x22/chart.png %%DATADIR%%/pixmaps/hicolor/22x22/checkbox.png %%DATADIR%%/pixmaps/hicolor/22x22/checkmenuitem.png %%DATADIR%%/pixmaps/hicolor/22x22/clock.png %%DATADIR%%/pixmaps/hicolor/22x22/colorchooser.png %%DATADIR%%/pixmaps/hicolor/22x22/column.png %%DATADIR%%/pixmaps/hicolor/22x22/columnheader.png %%DATADIR%%/pixmaps/hicolor/22x22/combobox.png %%DATADIR%%/pixmaps/hicolor/22x22/cursor.png %%DATADIR%%/pixmaps/hicolor/22x22/dateeditor.png %%DATADIR%%/pixmaps/hicolor/22x22/desktopicon.png %%DATADIR%%/pixmaps/hicolor/22x22/dial.png %%DATADIR%%/pixmaps/hicolor/22x22/dialog.png %%DATADIR%%/pixmaps/hicolor/22x22/directorypane.png %%DATADIR%%/pixmaps/hicolor/22x22/drawingarea.png %%DATADIR%%/pixmaps/hicolor/22x22/embedded.png %%DATADIR%%/pixmaps/hicolor/22x22/endnote.png %%DATADIR%%/pixmaps/hicolor/22x22/entry.png %%DATADIR%%/pixmaps/hicolor/22x22/filechooser.png %%DATADIR%%/pixmaps/hicolor/22x22/filler.png %%DATADIR%%/pixmaps/hicolor/22x22/focustraversable.png %%DATADIR%%/pixmaps/hicolor/22x22/fontchooser.png %%DATADIR%%/pixmaps/hicolor/22x22/form.png %%DATADIR%%/pixmaps/hicolor/22x22/frame.png %%DATADIR%%/pixmaps/hicolor/22x22/glasspane.png %%DATADIR%%/pixmaps/hicolor/22x22/grip.png %%DATADIR%%/pixmaps/hicolor/22x22/heading.png %%DATADIR%%/pixmaps/hicolor/22x22/helpballoon.png %%DATADIR%%/pixmaps/hicolor/22x22/htmlcontainer.png %%DATADIR%%/pixmaps/hicolor/22x22/icon.png %%DATADIR%%/pixmaps/hicolor/22x22/image.png %%DATADIR%%/pixmaps/hicolor/22x22/imagemap.png %%DATADIR%%/pixmaps/hicolor/22x22/inputmethodwindow.png %%DATADIR%%/pixmaps/hicolor/22x22/invalid.png %%DATADIR%%/pixmaps/hicolor/22x22/label.png %%DATADIR%%/pixmaps/hicolor/22x22/link.png %%DATADIR%%/pixmaps/hicolor/22x22/list.png %%DATADIR%%/pixmaps/hicolor/22x22/listitem.png %%DATADIR%%/pixmaps/hicolor/22x22/menu.png %%DATADIR%%/pixmaps/hicolor/22x22/menubar.png %%DATADIR%%/pixmaps/hicolor/22x22/menuitem.png %%DATADIR%%/pixmaps/hicolor/22x22/pagetab.png %%DATADIR%%/pixmaps/hicolor/22x22/pagetablist.png %%DATADIR%%/pixmaps/hicolor/22x22/passwordtext.png %%DATADIR%%/pixmaps/hicolor/22x22/popupmenu.png %%DATADIR%%/pixmaps/hicolor/22x22/progressbar.png %%DATADIR%%/pixmaps/hicolor/22x22/pushbutton.png %%DATADIR%%/pixmaps/hicolor/22x22/radiobutton.png %%DATADIR%%/pixmaps/hicolor/22x22/radiomenuitem.png %%DATADIR%%/pixmaps/hicolor/22x22/row.png %%DATADIR%%/pixmaps/hicolor/22x22/ruler.png %%DATADIR%%/pixmaps/hicolor/22x22/scrollbar.png %%DATADIR%%/pixmaps/hicolor/22x22/scrollpane.png %%DATADIR%%/pixmaps/hicolor/22x22/section.png %%DATADIR%%/pixmaps/hicolor/22x22/separator.png %%DATADIR%%/pixmaps/hicolor/22x22/shape.png %%DATADIR%%/pixmaps/hicolor/22x22/slider.png %%DATADIR%%/pixmaps/hicolor/22x22/sound.png %%DATADIR%%/pixmaps/hicolor/22x22/spinbutton.png %%DATADIR%%/pixmaps/hicolor/22x22/splitpane.png %%DATADIR%%/pixmaps/hicolor/22x22/statusbar.png %%DATADIR%%/pixmaps/hicolor/22x22/table.png %%DATADIR%%/pixmaps/hicolor/22x22/tablecell.png %%DATADIR%%/pixmaps/hicolor/22x22/tearoffmenuitem.png %%DATADIR%%/pixmaps/hicolor/22x22/terminal.png %%DATADIR%%/pixmaps/hicolor/22x22/text.png %%DATADIR%%/pixmaps/hicolor/22x22/togglebutton.png %%DATADIR%%/pixmaps/hicolor/22x22/toolbar.png %%DATADIR%%/pixmaps/hicolor/22x22/tooltip.png %%DATADIR%%/pixmaps/hicolor/22x22/tree.png %%DATADIR%%/pixmaps/hicolor/22x22/treetable.png %%DATADIR%%/pixmaps/hicolor/22x22/window.png %%DATADIR%%/plugindata/validate/basic.py %%DATADIR%%/plugins/api_view.py %%DATADIR%%/plugins/console.py %%DATADIR%%/plugins/event_monitor.py %%DATADIR%%/plugins/event_monitor.ui %%DATADIR%%/plugins/interface_view.py %%DATADIR%%/plugins/interface_view.ui %%DATADIR%%/plugins/ipython_view.py %%DATADIR%%/plugins/quick_select.py %%DATADIR%%/plugins/validate.py %%DATADIR%%/plugins/validate.ui share/applications/accerciser.desktop share/help/C/accerciser/api_browser_plugin.page share/help/C/accerciser/desktop_tree_view.page share/help/C/accerciser/event_monitor_plugin.page share/help/C/accerciser/figures/IPython_plugin.png share/help/C/accerciser/figures/accerciser-logo.png share/help/C/accerciser/figures/accerciser-view.png share/help/C/accerciser/figures/accerciser_preferences.png share/help/C/accerciser/figures/accessible_tree.png share/help/C/accerciser/figures/api_browser.png share/help/C/accerciser/figures/event_monitor.png share/help/C/accerciser/figures/event_monitor_plugin.png share/help/C/accerciser/figures/global-hotkeys.png share/help/C/accerciser/figures/highlighting.png share/help/C/accerciser/figures/interface_viewer_plugin.png share/help/C/accerciser/figures/plugins.png share/help/C/accerciser/figures/tree_view_accerciser.png share/help/C/accerciser/figures/validator_app_tree.png share/help/C/accerciser/figures/validator_report.png share/help/C/accerciser/howto_setting_up_accerciser.page share/help/C/accerciser/howto_write_a_plugin.page share/help/C/accerciser/index.page share/help/C/accerciser/interface_viewer_plugin.page share/help/C/accerciser/introduction.page share/help/C/accerciser/ipython_plugin.page share/help/C/accerciser/preferences.page share/help/C/accerciser/quick_select_plugin.page share/help/C/accerciser/validator_plugin.page share/help/ca/accerciser/api_browser_plugin.page share/help/ca/accerciser/desktop_tree_view.page share/help/ca/accerciser/event_monitor_plugin.page share/help/ca/accerciser/figures/IPython_plugin.png share/help/ca/accerciser/figures/accerciser-logo.png share/help/ca/accerciser/figures/accerciser-view.png share/help/ca/accerciser/figures/accerciser_preferences.png share/help/ca/accerciser/figures/accessible_tree.png share/help/ca/accerciser/figures/api_browser.png share/help/ca/accerciser/figures/event_monitor.png share/help/ca/accerciser/figures/event_monitor_plugin.png share/help/ca/accerciser/figures/global-hotkeys.png share/help/ca/accerciser/figures/highlighting.png share/help/ca/accerciser/figures/interface_viewer_plugin.png share/help/ca/accerciser/figures/plugins.png share/help/ca/accerciser/figures/tree_view_accerciser.png share/help/ca/accerciser/figures/validator_app_tree.png share/help/ca/accerciser/figures/validator_report.png share/help/ca/accerciser/howto_setting_up_accerciser.page share/help/ca/accerciser/howto_write_a_plugin.page share/help/ca/accerciser/index.page share/help/ca/accerciser/interface_viewer_plugin.page share/help/ca/accerciser/introduction.page share/help/ca/accerciser/ipython_plugin.page share/help/ca/accerciser/preferences.page share/help/ca/accerciser/quick_select_plugin.page share/help/ca/accerciser/validator_plugin.page share/help/cs/accerciser/api_browser_plugin.page share/help/cs/accerciser/desktop_tree_view.page share/help/cs/accerciser/event_monitor_plugin.page share/help/cs/accerciser/figures/IPython_plugin.png share/help/cs/accerciser/figures/accerciser-logo.png share/help/cs/accerciser/figures/accerciser-view.png share/help/cs/accerciser/figures/accerciser_preferences.png share/help/cs/accerciser/figures/accessible_tree.png share/help/cs/accerciser/figures/api_browser.png share/help/cs/accerciser/figures/event_monitor.png share/help/cs/accerciser/figures/event_monitor_plugin.png share/help/cs/accerciser/figures/global-hotkeys.png share/help/cs/accerciser/figures/highlighting.png share/help/cs/accerciser/figures/interface_viewer_plugin.png share/help/cs/accerciser/figures/plugins.png share/help/cs/accerciser/figures/tree_view_accerciser.png share/help/cs/accerciser/figures/validator_app_tree.png share/help/cs/accerciser/figures/validator_report.png share/help/cs/accerciser/howto_setting_up_accerciser.page share/help/cs/accerciser/howto_write_a_plugin.page share/help/cs/accerciser/index.page share/help/cs/accerciser/interface_viewer_plugin.page share/help/cs/accerciser/introduction.page share/help/cs/accerciser/ipython_plugin.page share/help/cs/accerciser/preferences.page share/help/cs/accerciser/quick_select_plugin.page share/help/cs/accerciser/validator_plugin.page share/help/de/accerciser/api_browser_plugin.page share/help/de/accerciser/desktop_tree_view.page share/help/de/accerciser/event_monitor_plugin.page share/help/de/accerciser/figures/IPython_plugin.png share/help/de/accerciser/figures/accerciser-logo.png share/help/de/accerciser/figures/accerciser-view.png share/help/de/accerciser/figures/accerciser_preferences.png share/help/de/accerciser/figures/accessible_tree.png share/help/de/accerciser/figures/api_browser.png share/help/de/accerciser/figures/event_monitor.png share/help/de/accerciser/figures/event_monitor_plugin.png share/help/de/accerciser/figures/global-hotkeys.png share/help/de/accerciser/figures/highlighting.png share/help/de/accerciser/figures/interface_viewer_plugin.png share/help/de/accerciser/figures/plugins.png share/help/de/accerciser/figures/tree_view_accerciser.png share/help/de/accerciser/figures/validator_app_tree.png share/help/de/accerciser/figures/validator_report.png share/help/de/accerciser/howto_setting_up_accerciser.page share/help/de/accerciser/howto_write_a_plugin.page share/help/de/accerciser/index.page share/help/de/accerciser/interface_viewer_plugin.page share/help/de/accerciser/introduction.page share/help/de/accerciser/ipython_plugin.page share/help/de/accerciser/preferences.page share/help/de/accerciser/quick_select_plugin.page share/help/de/accerciser/validator_plugin.page share/help/el/accerciser/api_browser_plugin.page share/help/el/accerciser/desktop_tree_view.page share/help/el/accerciser/event_monitor_plugin.page share/help/el/accerciser/figures/IPython_plugin.png share/help/el/accerciser/figures/accerciser-logo.png share/help/el/accerciser/figures/accerciser-view.png share/help/el/accerciser/figures/accerciser_preferences.png share/help/el/accerciser/figures/accessible_tree.png share/help/el/accerciser/figures/api_browser.png share/help/el/accerciser/figures/event_monitor.png share/help/el/accerciser/figures/event_monitor_plugin.png share/help/el/accerciser/figures/global-hotkeys.png share/help/el/accerciser/figures/highlighting.png share/help/el/accerciser/figures/interface_viewer_plugin.png share/help/el/accerciser/figures/plugins.png share/help/el/accerciser/figures/tree_view_accerciser.png share/help/el/accerciser/figures/validator_app_tree.png share/help/el/accerciser/figures/validator_report.png share/help/el/accerciser/howto_setting_up_accerciser.page share/help/el/accerciser/howto_write_a_plugin.page share/help/el/accerciser/index.page share/help/el/accerciser/interface_viewer_plugin.page share/help/el/accerciser/introduction.page share/help/el/accerciser/ipython_plugin.page share/help/el/accerciser/preferences.page share/help/el/accerciser/quick_select_plugin.page share/help/el/accerciser/validator_plugin.page share/help/en_GB/accerciser/api_browser_plugin.page share/help/en_GB/accerciser/desktop_tree_view.page share/help/en_GB/accerciser/event_monitor_plugin.page share/help/en_GB/accerciser/figures/IPython_plugin.png share/help/en_GB/accerciser/figures/accerciser-logo.png share/help/en_GB/accerciser/figures/accerciser-view.png share/help/en_GB/accerciser/figures/accerciser_preferences.png share/help/en_GB/accerciser/figures/accessible_tree.png share/help/en_GB/accerciser/figures/api_browser.png share/help/en_GB/accerciser/figures/event_monitor.png share/help/en_GB/accerciser/figures/event_monitor_plugin.png share/help/en_GB/accerciser/figures/global-hotkeys.png share/help/en_GB/accerciser/figures/highlighting.png share/help/en_GB/accerciser/figures/interface_viewer_plugin.png share/help/en_GB/accerciser/figures/plugins.png share/help/en_GB/accerciser/figures/tree_view_accerciser.png share/help/en_GB/accerciser/figures/validator_app_tree.png share/help/en_GB/accerciser/figures/validator_report.png share/help/en_GB/accerciser/howto_setting_up_accerciser.page share/help/en_GB/accerciser/howto_write_a_plugin.page share/help/en_GB/accerciser/index.page share/help/en_GB/accerciser/interface_viewer_plugin.page share/help/en_GB/accerciser/introduction.page share/help/en_GB/accerciser/ipython_plugin.page share/help/en_GB/accerciser/preferences.page share/help/en_GB/accerciser/quick_select_plugin.page share/help/en_GB/accerciser/validator_plugin.page share/help/es/accerciser/api_browser_plugin.page share/help/es/accerciser/desktop_tree_view.page share/help/es/accerciser/event_monitor_plugin.page share/help/es/accerciser/figures/IPython_plugin.png share/help/es/accerciser/figures/accerciser-logo.png share/help/es/accerciser/figures/accerciser-view.png share/help/es/accerciser/figures/accerciser_preferences.png share/help/es/accerciser/figures/accessible_tree.png share/help/es/accerciser/figures/api_browser.png share/help/es/accerciser/figures/event_monitor.png share/help/es/accerciser/figures/event_monitor_plugin.png share/help/es/accerciser/figures/global-hotkeys.png share/help/es/accerciser/figures/highlighting.png share/help/es/accerciser/figures/interface_viewer_plugin.png share/help/es/accerciser/figures/plugins.png share/help/es/accerciser/figures/tree_view_accerciser.png share/help/es/accerciser/figures/validator_app_tree.png share/help/es/accerciser/figures/validator_report.png share/help/es/accerciser/howto_setting_up_accerciser.page share/help/es/accerciser/howto_write_a_plugin.page share/help/es/accerciser/index.page share/help/es/accerciser/interface_viewer_plugin.page share/help/es/accerciser/introduction.page share/help/es/accerciser/ipython_plugin.page share/help/es/accerciser/preferences.page share/help/es/accerciser/quick_select_plugin.page share/help/es/accerciser/validator_plugin.page share/help/fr/accerciser/api_browser_plugin.page share/help/fr/accerciser/desktop_tree_view.page share/help/fr/accerciser/event_monitor_plugin.page share/help/fr/accerciser/figures/IPython_plugin.png share/help/fr/accerciser/figures/accerciser-logo.png share/help/fr/accerciser/figures/accerciser-view.png share/help/fr/accerciser/figures/accerciser_preferences.png share/help/fr/accerciser/figures/accessible_tree.png share/help/fr/accerciser/figures/api_browser.png share/help/fr/accerciser/figures/event_monitor.png share/help/fr/accerciser/figures/event_monitor_plugin.png share/help/fr/accerciser/figures/global-hotkeys.png share/help/fr/accerciser/figures/highlighting.png share/help/fr/accerciser/figures/interface_viewer_plugin.png share/help/fr/accerciser/figures/plugins.png share/help/fr/accerciser/figures/tree_view_accerciser.png share/help/fr/accerciser/figures/validator_app_tree.png share/help/fr/accerciser/figures/validator_report.png share/help/fr/accerciser/howto_setting_up_accerciser.page share/help/fr/accerciser/howto_write_a_plugin.page share/help/fr/accerciser/index.page share/help/fr/accerciser/interface_viewer_plugin.page share/help/fr/accerciser/introduction.page share/help/fr/accerciser/ipython_plugin.page share/help/fr/accerciser/preferences.page share/help/fr/accerciser/quick_select_plugin.page share/help/fr/accerciser/validator_plugin.page share/help/gl/accerciser/api_browser_plugin.page share/help/gl/accerciser/desktop_tree_view.page share/help/gl/accerciser/event_monitor_plugin.page share/help/gl/accerciser/figures/IPython_plugin.png share/help/gl/accerciser/figures/accerciser-logo.png share/help/gl/accerciser/figures/accerciser-view.png share/help/gl/accerciser/figures/accerciser_preferences.png share/help/gl/accerciser/figures/accessible_tree.png share/help/gl/accerciser/figures/api_browser.png share/help/gl/accerciser/figures/event_monitor.png share/help/gl/accerciser/figures/event_monitor_plugin.png share/help/gl/accerciser/figures/global-hotkeys.png share/help/gl/accerciser/figures/highlighting.png share/help/gl/accerciser/figures/interface_viewer_plugin.png share/help/gl/accerciser/figures/plugins.png share/help/gl/accerciser/figures/tree_view_accerciser.png share/help/gl/accerciser/figures/validator_app_tree.png share/help/gl/accerciser/figures/validator_report.png share/help/gl/accerciser/howto_setting_up_accerciser.page share/help/gl/accerciser/howto_write_a_plugin.page share/help/gl/accerciser/index.page share/help/gl/accerciser/interface_viewer_plugin.page share/help/gl/accerciser/introduction.page share/help/gl/accerciser/ipython_plugin.page share/help/gl/accerciser/preferences.page share/help/gl/accerciser/quick_select_plugin.page share/help/gl/accerciser/validator_plugin.page share/help/it/accerciser/api_browser_plugin.page share/help/it/accerciser/desktop_tree_view.page share/help/it/accerciser/event_monitor_plugin.page share/help/it/accerciser/figures/IPython_plugin.png share/help/it/accerciser/figures/accerciser-logo.png share/help/it/accerciser/figures/accerciser-view.png share/help/it/accerciser/figures/accerciser_preferences.png share/help/it/accerciser/figures/accessible_tree.png share/help/it/accerciser/figures/api_browser.png share/help/it/accerciser/figures/event_monitor.png share/help/it/accerciser/figures/event_monitor_plugin.png share/help/it/accerciser/figures/global-hotkeys.png share/help/it/accerciser/figures/highlighting.png share/help/it/accerciser/figures/interface_viewer_plugin.png share/help/it/accerciser/figures/plugins.png share/help/it/accerciser/figures/tree_view_accerciser.png share/help/it/accerciser/figures/validator_app_tree.png share/help/it/accerciser/figures/validator_report.png share/help/it/accerciser/howto_setting_up_accerciser.page share/help/it/accerciser/howto_write_a_plugin.page share/help/it/accerciser/index.page share/help/it/accerciser/interface_viewer_plugin.page share/help/it/accerciser/introduction.page share/help/it/accerciser/ipython_plugin.page share/help/it/accerciser/preferences.page share/help/it/accerciser/quick_select_plugin.page share/help/it/accerciser/validator_plugin.page share/help/ja/accerciser/api_browser_plugin.page share/help/ja/accerciser/desktop_tree_view.page share/help/ja/accerciser/event_monitor_plugin.page share/help/ja/accerciser/figures/IPython_plugin.png share/help/ja/accerciser/figures/accerciser-logo.png share/help/ja/accerciser/figures/accerciser-view.png share/help/ja/accerciser/figures/accerciser_preferences.png share/help/ja/accerciser/figures/accessible_tree.png share/help/ja/accerciser/figures/api_browser.png share/help/ja/accerciser/figures/event_monitor.png share/help/ja/accerciser/figures/event_monitor_plugin.png share/help/ja/accerciser/figures/global-hotkeys.png share/help/ja/accerciser/figures/highlighting.png share/help/ja/accerciser/figures/interface_viewer_plugin.png share/help/ja/accerciser/figures/plugins.png share/help/ja/accerciser/figures/tree_view_accerciser.png share/help/ja/accerciser/figures/validator_app_tree.png share/help/ja/accerciser/figures/validator_report.png share/help/ja/accerciser/howto_setting_up_accerciser.page share/help/ja/accerciser/howto_write_a_plugin.page share/help/ja/accerciser/index.page share/help/ja/accerciser/interface_viewer_plugin.page share/help/ja/accerciser/introduction.page share/help/ja/accerciser/ipython_plugin.page share/help/ja/accerciser/preferences.page share/help/ja/accerciser/quick_select_plugin.page share/help/ja/accerciser/validator_plugin.page share/help/oc/accerciser/api_browser_plugin.page share/help/oc/accerciser/desktop_tree_view.page share/help/oc/accerciser/event_monitor_plugin.page share/help/oc/accerciser/figures/IPython_plugin.png share/help/oc/accerciser/figures/accerciser-logo.png share/help/oc/accerciser/figures/accerciser-view.png share/help/oc/accerciser/figures/accerciser_preferences.png share/help/oc/accerciser/figures/accessible_tree.png share/help/oc/accerciser/figures/api_browser.png share/help/oc/accerciser/figures/event_monitor.png share/help/oc/accerciser/figures/event_monitor_plugin.png share/help/oc/accerciser/figures/global-hotkeys.png share/help/oc/accerciser/figures/highlighting.png share/help/oc/accerciser/figures/interface_viewer_plugin.png share/help/oc/accerciser/figures/plugins.png share/help/oc/accerciser/figures/tree_view_accerciser.png share/help/oc/accerciser/figures/validator_app_tree.png share/help/oc/accerciser/figures/validator_report.png share/help/oc/accerciser/howto_setting_up_accerciser.page share/help/oc/accerciser/howto_write_a_plugin.page share/help/oc/accerciser/index.page share/help/oc/accerciser/interface_viewer_plugin.page share/help/oc/accerciser/introduction.page share/help/oc/accerciser/ipython_plugin.page share/help/oc/accerciser/preferences.page share/help/oc/accerciser/quick_select_plugin.page share/help/oc/accerciser/validator_plugin.page share/help/pl/accerciser/api_browser_plugin.page share/help/pl/accerciser/desktop_tree_view.page share/help/pl/accerciser/event_monitor_plugin.page share/help/pl/accerciser/figures/IPython_plugin.png share/help/pl/accerciser/figures/accerciser-logo.png share/help/pl/accerciser/figures/accerciser-view.png share/help/pl/accerciser/figures/accerciser_preferences.png share/help/pl/accerciser/figures/accessible_tree.png share/help/pl/accerciser/figures/api_browser.png share/help/pl/accerciser/figures/event_monitor.png share/help/pl/accerciser/figures/event_monitor_plugin.png share/help/pl/accerciser/figures/global-hotkeys.png share/help/pl/accerciser/figures/highlighting.png share/help/pl/accerciser/figures/interface_viewer_plugin.png share/help/pl/accerciser/figures/plugins.png share/help/pl/accerciser/figures/tree_view_accerciser.png share/help/pl/accerciser/figures/validator_app_tree.png share/help/pl/accerciser/figures/validator_report.png share/help/pl/accerciser/howto_setting_up_accerciser.page share/help/pl/accerciser/howto_write_a_plugin.page share/help/pl/accerciser/index.page share/help/pl/accerciser/interface_viewer_plugin.page share/help/pl/accerciser/introduction.page share/help/pl/accerciser/ipython_plugin.page share/help/pl/accerciser/preferences.page share/help/pl/accerciser/quick_select_plugin.page share/help/pl/accerciser/validator_plugin.page share/help/pt_BR/accerciser/api_browser_plugin.page share/help/pt_BR/accerciser/desktop_tree_view.page share/help/pt_BR/accerciser/event_monitor_plugin.page share/help/pt_BR/accerciser/figures/IPython_plugin.png share/help/pt_BR/accerciser/figures/accerciser-logo.png share/help/pt_BR/accerciser/figures/accerciser-view.png share/help/pt_BR/accerciser/figures/accerciser_preferences.png share/help/pt_BR/accerciser/figures/accessible_tree.png share/help/pt_BR/accerciser/figures/api_browser.png share/help/pt_BR/accerciser/figures/event_monitor.png share/help/pt_BR/accerciser/figures/event_monitor_plugin.png share/help/pt_BR/accerciser/figures/global-hotkeys.png share/help/pt_BR/accerciser/figures/highlighting.png share/help/pt_BR/accerciser/figures/interface_viewer_plugin.png share/help/pt_BR/accerciser/figures/plugins.png share/help/pt_BR/accerciser/figures/tree_view_accerciser.png share/help/pt_BR/accerciser/figures/validator_app_tree.png share/help/pt_BR/accerciser/figures/validator_report.png share/help/pt_BR/accerciser/howto_setting_up_accerciser.page share/help/pt_BR/accerciser/howto_write_a_plugin.page share/help/pt_BR/accerciser/index.page share/help/pt_BR/accerciser/interface_viewer_plugin.page share/help/pt_BR/accerciser/introduction.page share/help/pt_BR/accerciser/ipython_plugin.page share/help/pt_BR/accerciser/preferences.page share/help/pt_BR/accerciser/quick_select_plugin.page share/help/pt_BR/accerciser/validator_plugin.page share/help/sl/accerciser/api_browser_plugin.page share/help/sl/accerciser/desktop_tree_view.page share/help/sl/accerciser/event_monitor_plugin.page share/help/sl/accerciser/figures/IPython_plugin.png share/help/sl/accerciser/figures/accerciser-logo.png share/help/sl/accerciser/figures/accerciser-view.png share/help/sl/accerciser/figures/accerciser_preferences.png share/help/sl/accerciser/figures/accessible_tree.png share/help/sl/accerciser/figures/api_browser.png share/help/sl/accerciser/figures/event_monitor.png share/help/sl/accerciser/figures/event_monitor_plugin.png share/help/sl/accerciser/figures/global-hotkeys.png share/help/sl/accerciser/figures/highlighting.png share/help/sl/accerciser/figures/interface_viewer_plugin.png share/help/sl/accerciser/figures/plugins.png share/help/sl/accerciser/figures/tree_view_accerciser.png share/help/sl/accerciser/figures/validator_app_tree.png share/help/sl/accerciser/figures/validator_report.png share/help/sl/accerciser/howto_setting_up_accerciser.page share/help/sl/accerciser/howto_write_a_plugin.page share/help/sl/accerciser/index.page share/help/sl/accerciser/interface_viewer_plugin.page share/help/sl/accerciser/introduction.page share/help/sl/accerciser/ipython_plugin.page share/help/sl/accerciser/preferences.page share/help/sl/accerciser/quick_select_plugin.page share/help/sl/accerciser/validator_plugin.page share/help/sv/accerciser/api_browser_plugin.page share/help/sv/accerciser/desktop_tree_view.page share/help/sv/accerciser/event_monitor_plugin.page share/help/sv/accerciser/figures/IPython_plugin.png share/help/sv/accerciser/figures/accerciser-logo.png share/help/sv/accerciser/figures/accerciser-view.png share/help/sv/accerciser/figures/accerciser_preferences.png share/help/sv/accerciser/figures/accessible_tree.png share/help/sv/accerciser/figures/api_browser.png share/help/sv/accerciser/figures/event_monitor.png share/help/sv/accerciser/figures/event_monitor_plugin.png share/help/sv/accerciser/figures/global-hotkeys.png share/help/sv/accerciser/figures/highlighting.png share/help/sv/accerciser/figures/interface_viewer_plugin.png share/help/sv/accerciser/figures/plugins.png share/help/sv/accerciser/figures/tree_view_accerciser.png share/help/sv/accerciser/figures/validator_app_tree.png share/help/sv/accerciser/figures/validator_report.png share/help/sv/accerciser/howto_setting_up_accerciser.page share/help/sv/accerciser/howto_write_a_plugin.page share/help/sv/accerciser/index.page share/help/sv/accerciser/interface_viewer_plugin.page share/help/sv/accerciser/introduction.page share/help/sv/accerciser/ipython_plugin.page share/help/sv/accerciser/preferences.page share/help/sv/accerciser/quick_select_plugin.page share/help/sv/accerciser/validator_plugin.page share/help/uk/accerciser/api_browser_plugin.page share/help/uk/accerciser/desktop_tree_view.page share/help/uk/accerciser/event_monitor_plugin.page share/help/uk/accerciser/figures/IPython_plugin.png share/help/uk/accerciser/figures/accerciser-logo.png share/help/uk/accerciser/figures/accerciser-view.png share/help/uk/accerciser/figures/accerciser_preferences.png share/help/uk/accerciser/figures/accessible_tree.png share/help/uk/accerciser/figures/api_browser.png share/help/uk/accerciser/figures/event_monitor.png share/help/uk/accerciser/figures/event_monitor_plugin.png share/help/uk/accerciser/figures/global-hotkeys.png share/help/uk/accerciser/figures/highlighting.png share/help/uk/accerciser/figures/interface_viewer_plugin.png share/help/uk/accerciser/figures/plugins.png share/help/uk/accerciser/figures/tree_view_accerciser.png share/help/uk/accerciser/figures/validator_app_tree.png share/help/uk/accerciser/figures/validator_report.png share/help/uk/accerciser/howto_setting_up_accerciser.page share/help/uk/accerciser/howto_write_a_plugin.page share/help/uk/accerciser/index.page share/help/uk/accerciser/interface_viewer_plugin.page share/help/uk/accerciser/introduction.page share/help/uk/accerciser/ipython_plugin.page share/help/uk/accerciser/preferences.page share/help/uk/accerciser/quick_select_plugin.page share/help/uk/accerciser/validator_plugin.page share/help/zh_CN/accerciser/api_browser_plugin.page share/help/zh_CN/accerciser/desktop_tree_view.page share/help/zh_CN/accerciser/event_monitor_plugin.page share/help/zh_CN/accerciser/figures/IPython_plugin.png share/help/zh_CN/accerciser/figures/accerciser-logo.png share/help/zh_CN/accerciser/figures/accerciser-view.png share/help/zh_CN/accerciser/figures/accerciser_preferences.png share/help/zh_CN/accerciser/figures/accessible_tree.png share/help/zh_CN/accerciser/figures/api_browser.png share/help/zh_CN/accerciser/figures/event_monitor.png share/help/zh_CN/accerciser/figures/event_monitor_plugin.png share/help/zh_CN/accerciser/figures/global-hotkeys.png share/help/zh_CN/accerciser/figures/highlighting.png share/help/zh_CN/accerciser/figures/interface_viewer_plugin.png share/help/zh_CN/accerciser/figures/plugins.png share/help/zh_CN/accerciser/figures/tree_view_accerciser.png share/help/zh_CN/accerciser/figures/validator_app_tree.png share/help/zh_CN/accerciser/figures/validator_report.png share/help/zh_CN/accerciser/howto_setting_up_accerciser.page share/help/zh_CN/accerciser/howto_write_a_plugin.page share/help/zh_CN/accerciser/index.page share/help/zh_CN/accerciser/interface_viewer_plugin.page share/help/zh_CN/accerciser/introduction.page share/help/zh_CN/accerciser/ipython_plugin.page share/help/zh_CN/accerciser/preferences.page share/help/zh_CN/accerciser/quick_select_plugin.page share/help/zh_CN/accerciser/validator_plugin.page share/icons/HighContrast/scalable/apps/accerciser.svg share/icons/hicolor/16x16/apps/accerciser.png share/icons/hicolor/22x22/apps/accerciser.png share/icons/hicolor/32x32/apps/accerciser.png share/icons/hicolor/48x48/apps/accerciser.png share/icons/hicolor/scalable/apps/accerciser.svg share/locale/ar/LC_MESSAGES/accerciser.mo share/locale/as/LC_MESSAGES/accerciser.mo share/locale/ast/LC_MESSAGES/accerciser.mo share/locale/be/LC_MESSAGES/accerciser.mo share/locale/bg/LC_MESSAGES/accerciser.mo share/locale/bn/LC_MESSAGES/accerciser.mo share/locale/bn_IN/LC_MESSAGES/accerciser.mo share/locale/br/LC_MESSAGES/accerciser.mo share/locale/ca/LC_MESSAGES/accerciser.mo share/locale/ca@valencia/LC_MESSAGES/accerciser.mo share/locale/cs/LC_MESSAGES/accerciser.mo share/locale/da/LC_MESSAGES/accerciser.mo share/locale/de/LC_MESSAGES/accerciser.mo share/locale/dz/LC_MESSAGES/accerciser.mo share/locale/el/LC_MESSAGES/accerciser.mo share/locale/en@shaw/LC_MESSAGES/accerciser.mo share/locale/en_CA/LC_MESSAGES/accerciser.mo share/locale/en_GB/LC_MESSAGES/accerciser.mo share/locale/eo/LC_MESSAGES/accerciser.mo share/locale/es/LC_MESSAGES/accerciser.mo share/locale/et/LC_MESSAGES/accerciser.mo share/locale/eu/LC_MESSAGES/accerciser.mo share/locale/fi/LC_MESSAGES/accerciser.mo share/locale/fr/LC_MESSAGES/accerciser.mo share/locale/gl/LC_MESSAGES/accerciser.mo share/locale/gu/LC_MESSAGES/accerciser.mo share/locale/he/LC_MESSAGES/accerciser.mo share/locale/hi/LC_MESSAGES/accerciser.mo share/locale/hu/LC_MESSAGES/accerciser.mo share/locale/hy/LC_MESSAGES/accerciser.mo share/locale/id/LC_MESSAGES/accerciser.mo share/locale/it/LC_MESSAGES/accerciser.mo share/locale/ja/LC_MESSAGES/accerciser.mo share/locale/km/LC_MESSAGES/accerciser.mo share/locale/kn/LC_MESSAGES/accerciser.mo share/locale/ko/LC_MESSAGES/accerciser.mo share/locale/lt/LC_MESSAGES/accerciser.mo share/locale/lv/LC_MESSAGES/accerciser.mo share/locale/mai/LC_MESSAGES/accerciser.mo share/locale/mk/LC_MESSAGES/accerciser.mo share/locale/ml/LC_MESSAGES/accerciser.mo share/locale/mr/LC_MESSAGES/accerciser.mo share/locale/nb/LC_MESSAGES/accerciser.mo share/locale/nl/LC_MESSAGES/accerciser.mo share/locale/oc/LC_MESSAGES/accerciser.mo share/locale/or/LC_MESSAGES/accerciser.mo share/locale/pa/LC_MESSAGES/accerciser.mo share/locale/pl/LC_MESSAGES/accerciser.mo share/locale/pt/LC_MESSAGES/accerciser.mo share/locale/pt_BR/LC_MESSAGES/accerciser.mo share/locale/ro/LC_MESSAGES/accerciser.mo share/locale/ru/LC_MESSAGES/accerciser.mo share/locale/si/LC_MESSAGES/accerciser.mo share/locale/sk/LC_MESSAGES/accerciser.mo share/locale/sl/LC_MESSAGES/accerciser.mo share/locale/sq/LC_MESSAGES/accerciser.mo share/locale/sr/LC_MESSAGES/accerciser.mo share/locale/sr@latin/LC_MESSAGES/accerciser.mo share/locale/sv/LC_MESSAGES/accerciser.mo share/locale/te/LC_MESSAGES/accerciser.mo share/locale/tg/LC_MESSAGES/accerciser.mo share/locale/th/LC_MESSAGES/accerciser.mo share/locale/tr/LC_MESSAGES/accerciser.mo share/locale/ug/LC_MESSAGES/accerciser.mo share/locale/uk/LC_MESSAGES/accerciser.mo share/locale/vi/LC_MESSAGES/accerciser.mo share/locale/zh_CN/LC_MESSAGES/accerciser.mo share/locale/zh_HK/LC_MESSAGES/accerciser.mo share/locale/zh_TW/LC_MESSAGES/accerciser.mo Index: head/accessibility/orca/Makefile =================================================================== --- head/accessibility/orca/Makefile (revision 430838) +++ head/accessibility/orca/Makefile (revision 430839) @@ -1,51 +1,41 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ PORTNAME= orca PORTVERSION= 3.18.2 CATEGORIES= accessibility gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Scriptable screen reader BUILD_DEPENDS= py3?-dbus>=0:devel/py3-dbus \ py3?-xdg>=0:devel/py3-xdg \ py3?-cairo>=0:graphics/py3-cairo \ itstool:textproc/itstool LIB_DEPENDS= libatspi.so:accessibility/at-spi2-core RUN_DEPENDS= py3?-dbus>=0:devel/py3-dbus \ py3?-speech-dispatcher>=0:accessibility/py3-speech-dispatcher \ py3?-atspi>=0:accessibility/py3-atspi \ py3?-xdg>=0:devel/py3-xdg \ py3?-cairo>=0:graphics/py3-cairo # conflict with py*-json-py because orca uses the json from python itself # and py*-json-py shadows this. CONFLICTS= py*-json-py-[0-9]* PORTSCOUT= limitw:1,even +NO_ARCH= yes USES= gettext gmake gnome pathfix pkgconfig python:3 tar:xz USE_GNOME= gtk30 py3gobject3 intlhack INSTALLS_ICONS= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/src/orca/orca_i18n.py -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \ - PYVER=${PYTHON_VER:S/.//} - -.include +.include Index: head/accessibility/orca/pkg-plist =================================================================== --- head/accessibility/orca/pkg-plist (revision 430838) +++ head/accessibility/orca/pkg-plist (revision 430839) @@ -1,1221 +1,1221 @@ bin/orca etc/xdg/autostart/orca-autostart.desktop %%PYTHON_SITELIBDIR%%/orca/__init__.py -%%PYTHON_SITELIBDIR%%/orca/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/acss.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/acss.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/bookmarks.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/bookmarks.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille_rolenames.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille_rolenames.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/brlmon.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/brlmon.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/brltablenames.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/brltablenames.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/caret_navigation.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/caret_navigation.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/chat.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/chat.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/chnames.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/chnames.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/cmdnames.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/cmdnames.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/colornames.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/colornames.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/common_keyboardmap.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/common_keyboardmap.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/debug.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/debug.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/desktop_keyboardmap.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/desktop_keyboardmap.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/event_manager.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/event_manager.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/eventsynthesizer.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/eventsynthesizer.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/find.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/find.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/flat_review.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/flat_review.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/formatting.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/formatting.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/guilabels.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/guilabels.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/input_event.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/input_event.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/keybindings.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/keybindings.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/keynames.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/keynames.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/label_inference.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/label_inference.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/laptop_keyboardmap.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/laptop_keyboardmap.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/liveregions.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/liveregions.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/logger.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/logger.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/mathsymbols.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/mathsymbols.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/messages.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/messages.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/mouse_review.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/mouse_review.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/notification_messages.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/notification_messages.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/object_properties.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/object_properties.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_console_prefs.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_console_prefs.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gtkbuilder.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gtkbuilder.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_commandlist.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_commandlist.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_find.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_find.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_navlist.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_navlist.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_prefs.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_prefs.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_profile.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_profile.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_i18n.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_i18n.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_platform.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_platform.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_state.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_state.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/phonnames.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/phonnames.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/pronunciation_dict.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/pronunciation_dict.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/punctuation_settings.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/punctuation_settings.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/script_manager.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/script_manager.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/settings.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/settings.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/settings_manager.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/settings_manager.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/speech.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/speech.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/speechdispatcherfactory.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/speechdispatcherfactory.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/speechserver.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/speechserver.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/spellcheck.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/spellcheck.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/structural_navigation.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/structural_navigation.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/text_attribute_names.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/text_attribute_names.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/tutorialgenerator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/tutorialgenerator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/__pycache__/where_am_I.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/__pycache__/where_am_I.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/acss.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/acss.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/bookmarks.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/bookmarks.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille_rolenames.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/braille_rolenames.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/brlmon.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/brlmon.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/brltablenames.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/brltablenames.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/caret_navigation.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/caret_navigation.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/chat.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/chat.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/chnames.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/chnames.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/cmdnames.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/cmdnames.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/colornames.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/colornames.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/common_keyboardmap.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/common_keyboardmap.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/debug.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/debug.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/desktop_keyboardmap.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/desktop_keyboardmap.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/event_manager.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/event_manager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/eventsynthesizer.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/eventsynthesizer.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/find.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/find.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/flat_review.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/flat_review.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/guilabels.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/guilabels.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/input_event.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/input_event.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/keybindings.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/keybindings.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/keynames.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/keynames.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/label_inference.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/label_inference.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/laptop_keyboardmap.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/laptop_keyboardmap.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/liveregions.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/liveregions.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/mathsymbols.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/mathsymbols.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/mouse_review.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/mouse_review.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/notification_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/notification_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/object_properties.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/object_properties.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_console_prefs.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_console_prefs.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gtkbuilder.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gtkbuilder.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_commandlist.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_commandlist.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_find.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_find.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_navlist.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_navlist.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_prefs.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_prefs.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_profile.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_gui_profile.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_i18n.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_i18n.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_platform.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_platform.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_state.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/orca_state.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/phonnames.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/phonnames.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/pronunciation_dict.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/pronunciation_dict.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/punctuation_settings.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/punctuation_settings.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/script_manager.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/script_manager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/settings.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/settings.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/settings_manager.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/settings_manager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/speech.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/speech.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/speechdispatcherfactory.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/speechdispatcherfactory.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/speechserver.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/speechserver.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/spellcheck.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/spellcheck.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/structural_navigation.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/structural_navigation.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/text_attribute_names.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/text_attribute_names.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/tutorialgenerator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/tutorialgenerator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/__pycache__/where_am_I.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/__pycache__/where_am_I.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/acss.py %%PYTHON_SITELIBDIR%%/orca/backends/__init__.py -%%PYTHON_SITELIBDIR%%/orca/backends/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/backends/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/backends/__pycache__/json_backend.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/backends/__pycache__/json_backend.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/backends/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/backends/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/backends/__pycache__/json_backend.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/backends/__pycache__/json_backend.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/backends/json_backend.py %%PYTHON_SITELIBDIR%%/orca/bookmarks.py %%PYTHON_SITELIBDIR%%/orca/braille.py %%PYTHON_SITELIBDIR%%/orca/braille_generator.py %%PYTHON_SITELIBDIR%%/orca/braille_rolenames.py %%PYTHON_SITELIBDIR%%/orca/brlmon.py %%PYTHON_SITELIBDIR%%/orca/brltablenames.py %%PYTHON_SITELIBDIR%%/orca/caret_navigation.py %%PYTHON_SITELIBDIR%%/orca/chat.py %%PYTHON_SITELIBDIR%%/orca/chnames.py %%PYTHON_SITELIBDIR%%/orca/cmdnames.py %%PYTHON_SITELIBDIR%%/orca/colornames.py %%PYTHON_SITELIBDIR%%/orca/common_keyboardmap.py %%PYTHON_SITELIBDIR%%/orca/debug.py %%PYTHON_SITELIBDIR%%/orca/desktop_keyboardmap.py %%PYTHON_SITELIBDIR%%/orca/event_manager.py %%PYTHON_SITELIBDIR%%/orca/eventsynthesizer.py %%PYTHON_SITELIBDIR%%/orca/find.py %%PYTHON_SITELIBDIR%%/orca/flat_review.py %%PYTHON_SITELIBDIR%%/orca/formatting.py %%PYTHON_SITELIBDIR%%/orca/generator.py %%PYTHON_SITELIBDIR%%/orca/guilabels.py %%PYTHON_SITELIBDIR%%/orca/input_event.py %%PYTHON_SITELIBDIR%%/orca/keybindings.py %%PYTHON_SITELIBDIR%%/orca/keynames.py %%PYTHON_SITELIBDIR%%/orca/label_inference.py %%PYTHON_SITELIBDIR%%/orca/laptop_keyboardmap.py %%PYTHON_SITELIBDIR%%/orca/liveregions.py %%PYTHON_SITELIBDIR%%/orca/logger.py %%PYTHON_SITELIBDIR%%/orca/mathsymbols.py %%PYTHON_SITELIBDIR%%/orca/messages.py %%PYTHON_SITELIBDIR%%/orca/mouse_review.py %%PYTHON_SITELIBDIR%%/orca/notification_messages.py %%PYTHON_SITELIBDIR%%/orca/object_properties.py %%PYTHON_SITELIBDIR%%/orca/orca.py %%PYTHON_SITELIBDIR%%/orca/orca_console_prefs.py %%PYTHON_SITELIBDIR%%/orca/orca_gtkbuilder.py %%PYTHON_SITELIBDIR%%/orca/orca_gui_commandlist.py %%PYTHON_SITELIBDIR%%/orca/orca_gui_find.py %%PYTHON_SITELIBDIR%%/orca/orca_gui_navlist.py %%PYTHON_SITELIBDIR%%/orca/orca_gui_prefs.py %%PYTHON_SITELIBDIR%%/orca/orca_gui_profile.py %%PYTHON_SITELIBDIR%%/orca/orca_i18n.py %%PYTHON_SITELIBDIR%%/orca/orca_platform.py %%PYTHON_SITELIBDIR%%/orca/orca_state.py %%PYTHON_SITELIBDIR%%/orca/phonnames.py %%PYTHON_SITELIBDIR%%/orca/pronunciation_dict.py %%PYTHON_SITELIBDIR%%/orca/punctuation_settings.py %%PYTHON_SITELIBDIR%%/orca/script.py %%PYTHON_SITELIBDIR%%/orca/script_manager.py %%PYTHON_SITELIBDIR%%/orca/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/default.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/default.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/self_voicing.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/self_voicing.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/default.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/default.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/self_voicing.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/__pycache__/self_voicing.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Banshee/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Eclipse/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/chat.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/chat.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/chat.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/chat.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/chat.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Instantbird/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/spellcheck.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/spellcheck.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/spellcheck.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__pycache__/spellcheck.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/spellcheck.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/ekiga/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/empathy/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/epiphany/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/evince/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/braille_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/braille_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/braille_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gajim/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdm-simple-greeter/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/spellcheck.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/spellcheck.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/spellcheck.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__pycache__/spellcheck.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/spellcheck.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-documents/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/formatting.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/formatting.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/formatting.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-shell/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/formatting.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/formatting.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/formatting.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gtk-window-decorator/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/chat.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/chat.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/chat.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/chat.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/chat.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/braille_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/braille_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/braille_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/formatting.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/formatting.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/formatting.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/braille_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/braille_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/formatting.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/formatting.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/spellcheck.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/spellcheck.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/structural_navigation.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/structural_navigation.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/spellcheck.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/spellcheck.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/structural_navigation.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__pycache__/structural_navigation.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/braille_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/formatting.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/spellcheck.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/structural_navigation.py %%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/apps/xfwm4/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/default.py %%PYTHON_SITELIBDIR%%/orca/scripts/self_voicing.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/formatting.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/formatting.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/formatting.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/formatting.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Qt/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/VCL.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/braille_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/braille_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/braille_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/WebKitGtk/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__pycache__/VCL.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__pycache__/VCL.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__pycache__/VCL.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__pycache__/VCL.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/clutter/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/gtk/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/web/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/bookmarks.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/bookmarks.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/braille_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/braille_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/script.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/script.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/script_utilities.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/script_utilities.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/speech_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/speech_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/tutorial_generator.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/tutorial_generator.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/bookmarks.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/bookmarks.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/braille_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/script.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/script_utilities.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/speech_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/tutorial_generator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/orca/scripts/web/__pycache__/tutorial_generator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/orca/scripts/web/bookmarks.py %%PYTHON_SITELIBDIR%%/orca/scripts/web/braille_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/web/script.py %%PYTHON_SITELIBDIR%%/orca/scripts/web/script_utilities.py %%PYTHON_SITELIBDIR%%/orca/scripts/web/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/scripts/web/tutorial_generator.py %%PYTHON_SITELIBDIR%%/orca/settings.py %%PYTHON_SITELIBDIR%%/orca/settings_manager.py %%PYTHON_SITELIBDIR%%/orca/speech.py %%PYTHON_SITELIBDIR%%/orca/speech_generator.py %%PYTHON_SITELIBDIR%%/orca/speechdispatcherfactory.py %%PYTHON_SITELIBDIR%%/orca/speechserver.py %%PYTHON_SITELIBDIR%%/orca/spellcheck.py %%PYTHON_SITELIBDIR%%/orca/structural_navigation.py %%PYTHON_SITELIBDIR%%/orca/text_attribute_names.py %%PYTHON_SITELIBDIR%%/orca/tutorialgenerator.py %%PYTHON_SITELIBDIR%%/orca/where_am_I.py man/man1/orca.1.gz share/applications/orca.desktop share/help/C/orca/commands.page share/help/C/orca/commands_bookmarks.page share/help/C/orca/commands_braille.page share/help/C/orca/commands_chat.page share/help/C/orca/commands_controlling_orca.page share/help/C/orca/commands_debugging.page share/help/C/orca/commands_find.page share/help/C/orca/commands_flat_review.page share/help/C/orca/commands_live_regions.page share/help/C/orca/commands_mouse.page share/help/C/orca/commands_profiles.page share/help/C/orca/commands_reading.page share/help/C/orca/commands_speech_settings.page share/help/C/orca/commands_structural_navigation.page share/help/C/orca/commands_table.page share/help/C/orca/commands_time_date_notifications.page share/help/C/orca/commands_where_am_i.page share/help/C/orca/figures/orca-logo.png share/help/C/orca/howto_bookmarks.page share/help/C/orca/howto_documents.page share/help/C/orca/howto_flat_review.page share/help/C/orca/howto_forms.page share/help/C/orca/howto_key_bindings.page share/help/C/orca/howto_keyboard_layout.page share/help/C/orca/howto_learn_modes.page share/help/C/orca/howto_live_regions.page share/help/C/orca/howto_mouse_review.page share/help/C/orca/howto_notifications.page share/help/C/orca/howto_orca_find.page share/help/C/orca/howto_profiles.page share/help/C/orca/howto_setting_up_orca.page share/help/C/orca/howto_structural_navigation.page share/help/C/orca/howto_tables.page share/help/C/orca/howto_text_attributes.page share/help/C/orca/howto_text_setup.page share/help/C/orca/howto_the_orca_modifier.page share/help/C/orca/howto_toggling_caps_lock.page share/help/C/orca/howto_whereami.page share/help/C/orca/index.page share/help/C/orca/introduction.page share/help/C/orca/preferences.page share/help/C/orca/preferences_braille.page share/help/C/orca/preferences_chat.page share/help/C/orca/preferences_gecko.page share/help/C/orca/preferences_general.page share/help/C/orca/preferences_introduction.page share/help/C/orca/preferences_key_bindings.page share/help/C/orca/preferences_key_echo.page share/help/C/orca/preferences_pronunciation.page share/help/C/orca/preferences_speech.page share/help/C/orca/preferences_spellcheck.page share/help/C/orca/preferences_table_navigation.page share/help/C/orca/preferences_text_attributes.page share/help/C/orca/preferences_voice.page share/help/cs/orca/commands.page share/help/cs/orca/commands_bookmarks.page share/help/cs/orca/commands_braille.page share/help/cs/orca/commands_chat.page share/help/cs/orca/commands_controlling_orca.page share/help/cs/orca/commands_debugging.page share/help/cs/orca/commands_find.page share/help/cs/orca/commands_flat_review.page share/help/cs/orca/commands_live_regions.page share/help/cs/orca/commands_mouse.page share/help/cs/orca/commands_profiles.page share/help/cs/orca/commands_reading.page share/help/cs/orca/commands_speech_settings.page share/help/cs/orca/commands_structural_navigation.page share/help/cs/orca/commands_table.page share/help/cs/orca/commands_time_date_notifications.page share/help/cs/orca/commands_where_am_i.page share/help/cs/orca/figures/orca-logo.png share/help/cs/orca/howto_bookmarks.page share/help/cs/orca/howto_documents.page share/help/cs/orca/howto_flat_review.page share/help/cs/orca/howto_forms.page share/help/cs/orca/howto_key_bindings.page share/help/cs/orca/howto_keyboard_layout.page share/help/cs/orca/howto_learn_modes.page share/help/cs/orca/howto_live_regions.page share/help/cs/orca/howto_mouse_review.page share/help/cs/orca/howto_notifications.page share/help/cs/orca/howto_orca_find.page share/help/cs/orca/howto_profiles.page share/help/cs/orca/howto_setting_up_orca.page share/help/cs/orca/howto_structural_navigation.page share/help/cs/orca/howto_tables.page share/help/cs/orca/howto_text_attributes.page share/help/cs/orca/howto_text_setup.page share/help/cs/orca/howto_the_orca_modifier.page share/help/cs/orca/howto_toggling_caps_lock.page share/help/cs/orca/howto_whereami.page share/help/cs/orca/index.page share/help/cs/orca/introduction.page share/help/cs/orca/preferences.page share/help/cs/orca/preferences_braille.page share/help/cs/orca/preferences_chat.page share/help/cs/orca/preferences_gecko.page share/help/cs/orca/preferences_general.page share/help/cs/orca/preferences_introduction.page share/help/cs/orca/preferences_key_bindings.page share/help/cs/orca/preferences_key_echo.page share/help/cs/orca/preferences_pronunciation.page share/help/cs/orca/preferences_speech.page share/help/cs/orca/preferences_spellcheck.page share/help/cs/orca/preferences_table_navigation.page share/help/cs/orca/preferences_text_attributes.page share/help/cs/orca/preferences_voice.page share/help/de/orca/commands.page share/help/de/orca/commands_bookmarks.page share/help/de/orca/commands_braille.page share/help/de/orca/commands_chat.page share/help/de/orca/commands_controlling_orca.page share/help/de/orca/commands_debugging.page share/help/de/orca/commands_find.page share/help/de/orca/commands_flat_review.page share/help/de/orca/commands_live_regions.page share/help/de/orca/commands_mouse.page share/help/de/orca/commands_profiles.page share/help/de/orca/commands_reading.page share/help/de/orca/commands_speech_settings.page share/help/de/orca/commands_structural_navigation.page share/help/de/orca/commands_table.page share/help/de/orca/commands_time_date_notifications.page share/help/de/orca/commands_where_am_i.page share/help/de/orca/figures/orca-logo.png share/help/de/orca/howto_bookmarks.page share/help/de/orca/howto_documents.page share/help/de/orca/howto_flat_review.page share/help/de/orca/howto_forms.page share/help/de/orca/howto_key_bindings.page share/help/de/orca/howto_keyboard_layout.page share/help/de/orca/howto_learn_modes.page share/help/de/orca/howto_live_regions.page share/help/de/orca/howto_mouse_review.page share/help/de/orca/howto_notifications.page share/help/de/orca/howto_orca_find.page share/help/de/orca/howto_profiles.page share/help/de/orca/howto_setting_up_orca.page share/help/de/orca/howto_structural_navigation.page share/help/de/orca/howto_tables.page share/help/de/orca/howto_text_attributes.page share/help/de/orca/howto_text_setup.page share/help/de/orca/howto_the_orca_modifier.page share/help/de/orca/howto_toggling_caps_lock.page share/help/de/orca/howto_whereami.page share/help/de/orca/index.page share/help/de/orca/introduction.page share/help/de/orca/preferences.page share/help/de/orca/preferences_braille.page share/help/de/orca/preferences_chat.page share/help/de/orca/preferences_gecko.page share/help/de/orca/preferences_general.page share/help/de/orca/preferences_introduction.page share/help/de/orca/preferences_key_bindings.page share/help/de/orca/preferences_key_echo.page share/help/de/orca/preferences_pronunciation.page share/help/de/orca/preferences_speech.page share/help/de/orca/preferences_spellcheck.page share/help/de/orca/preferences_table_navigation.page share/help/de/orca/preferences_text_attributes.page share/help/de/orca/preferences_voice.page share/help/el/orca/commands.page share/help/el/orca/commands_bookmarks.page share/help/el/orca/commands_braille.page share/help/el/orca/commands_chat.page share/help/el/orca/commands_controlling_orca.page share/help/el/orca/commands_debugging.page share/help/el/orca/commands_find.page share/help/el/orca/commands_flat_review.page share/help/el/orca/commands_live_regions.page share/help/el/orca/commands_mouse.page share/help/el/orca/commands_profiles.page share/help/el/orca/commands_reading.page share/help/el/orca/commands_speech_settings.page share/help/el/orca/commands_structural_navigation.page share/help/el/orca/commands_table.page share/help/el/orca/commands_time_date_notifications.page share/help/el/orca/commands_where_am_i.page share/help/el/orca/figures/orca-logo.png share/help/el/orca/howto_bookmarks.page share/help/el/orca/howto_documents.page share/help/el/orca/howto_flat_review.page share/help/el/orca/howto_forms.page share/help/el/orca/howto_key_bindings.page share/help/el/orca/howto_keyboard_layout.page share/help/el/orca/howto_learn_modes.page share/help/el/orca/howto_live_regions.page share/help/el/orca/howto_mouse_review.page share/help/el/orca/howto_notifications.page share/help/el/orca/howto_orca_find.page share/help/el/orca/howto_profiles.page share/help/el/orca/howto_setting_up_orca.page share/help/el/orca/howto_structural_navigation.page share/help/el/orca/howto_tables.page share/help/el/orca/howto_text_attributes.page share/help/el/orca/howto_text_setup.page share/help/el/orca/howto_the_orca_modifier.page share/help/el/orca/howto_toggling_caps_lock.page share/help/el/orca/howto_whereami.page share/help/el/orca/index.page share/help/el/orca/introduction.page share/help/el/orca/preferences.page share/help/el/orca/preferences_braille.page share/help/el/orca/preferences_chat.page share/help/el/orca/preferences_gecko.page share/help/el/orca/preferences_general.page share/help/el/orca/preferences_introduction.page share/help/el/orca/preferences_key_bindings.page share/help/el/orca/preferences_key_echo.page share/help/el/orca/preferences_pronunciation.page share/help/el/orca/preferences_speech.page share/help/el/orca/preferences_spellcheck.page share/help/el/orca/preferences_table_navigation.page share/help/el/orca/preferences_text_attributes.page share/help/el/orca/preferences_voice.page share/help/es/orca/commands.page share/help/es/orca/commands_bookmarks.page share/help/es/orca/commands_braille.page share/help/es/orca/commands_chat.page share/help/es/orca/commands_controlling_orca.page share/help/es/orca/commands_debugging.page share/help/es/orca/commands_find.page share/help/es/orca/commands_flat_review.page share/help/es/orca/commands_live_regions.page share/help/es/orca/commands_mouse.page share/help/es/orca/commands_profiles.page share/help/es/orca/commands_reading.page share/help/es/orca/commands_speech_settings.page share/help/es/orca/commands_structural_navigation.page share/help/es/orca/commands_table.page share/help/es/orca/commands_time_date_notifications.page share/help/es/orca/commands_where_am_i.page share/help/es/orca/figures/orca-logo.png share/help/es/orca/howto_bookmarks.page share/help/es/orca/howto_documents.page share/help/es/orca/howto_flat_review.page share/help/es/orca/howto_forms.page share/help/es/orca/howto_key_bindings.page share/help/es/orca/howto_keyboard_layout.page share/help/es/orca/howto_learn_modes.page share/help/es/orca/howto_live_regions.page share/help/es/orca/howto_mouse_review.page share/help/es/orca/howto_notifications.page share/help/es/orca/howto_orca_find.page share/help/es/orca/howto_profiles.page share/help/es/orca/howto_setting_up_orca.page share/help/es/orca/howto_structural_navigation.page share/help/es/orca/howto_tables.page share/help/es/orca/howto_text_attributes.page share/help/es/orca/howto_text_setup.page share/help/es/orca/howto_the_orca_modifier.page share/help/es/orca/howto_toggling_caps_lock.page share/help/es/orca/howto_whereami.page share/help/es/orca/index.page share/help/es/orca/introduction.page share/help/es/orca/preferences.page share/help/es/orca/preferences_braille.page share/help/es/orca/preferences_chat.page share/help/es/orca/preferences_gecko.page share/help/es/orca/preferences_general.page share/help/es/orca/preferences_introduction.page share/help/es/orca/preferences_key_bindings.page share/help/es/orca/preferences_key_echo.page share/help/es/orca/preferences_pronunciation.page share/help/es/orca/preferences_speech.page share/help/es/orca/preferences_spellcheck.page share/help/es/orca/preferences_table_navigation.page share/help/es/orca/preferences_text_attributes.page share/help/es/orca/preferences_voice.page share/help/fr/orca/commands.page share/help/fr/orca/commands_bookmarks.page share/help/fr/orca/commands_braille.page share/help/fr/orca/commands_chat.page share/help/fr/orca/commands_controlling_orca.page share/help/fr/orca/commands_debugging.page share/help/fr/orca/commands_find.page share/help/fr/orca/commands_flat_review.page share/help/fr/orca/commands_live_regions.page share/help/fr/orca/commands_mouse.page share/help/fr/orca/commands_profiles.page share/help/fr/orca/commands_reading.page share/help/fr/orca/commands_speech_settings.page share/help/fr/orca/commands_structural_navigation.page share/help/fr/orca/commands_table.page share/help/fr/orca/commands_time_date_notifications.page share/help/fr/orca/commands_where_am_i.page share/help/fr/orca/figures/orca-logo.png share/help/fr/orca/howto_bookmarks.page share/help/fr/orca/howto_documents.page share/help/fr/orca/howto_flat_review.page share/help/fr/orca/howto_forms.page share/help/fr/orca/howto_key_bindings.page share/help/fr/orca/howto_keyboard_layout.page share/help/fr/orca/howto_learn_modes.page share/help/fr/orca/howto_live_regions.page share/help/fr/orca/howto_mouse_review.page share/help/fr/orca/howto_notifications.page share/help/fr/orca/howto_orca_find.page share/help/fr/orca/howto_profiles.page share/help/fr/orca/howto_setting_up_orca.page share/help/fr/orca/howto_structural_navigation.page share/help/fr/orca/howto_tables.page share/help/fr/orca/howto_text_attributes.page share/help/fr/orca/howto_text_setup.page share/help/fr/orca/howto_the_orca_modifier.page share/help/fr/orca/howto_toggling_caps_lock.page share/help/fr/orca/howto_whereami.page share/help/fr/orca/index.page share/help/fr/orca/introduction.page share/help/fr/orca/preferences.page share/help/fr/orca/preferences_braille.page share/help/fr/orca/preferences_chat.page share/help/fr/orca/preferences_gecko.page share/help/fr/orca/preferences_general.page share/help/fr/orca/preferences_introduction.page share/help/fr/orca/preferences_key_bindings.page share/help/fr/orca/preferences_key_echo.page share/help/fr/orca/preferences_pronunciation.page share/help/fr/orca/preferences_speech.page share/help/fr/orca/preferences_spellcheck.page share/help/fr/orca/preferences_table_navigation.page share/help/fr/orca/preferences_text_attributes.page share/help/fr/orca/preferences_voice.page share/help/gl/orca/commands.page share/help/gl/orca/commands_bookmarks.page share/help/gl/orca/commands_braille.page share/help/gl/orca/commands_chat.page share/help/gl/orca/commands_controlling_orca.page share/help/gl/orca/commands_debugging.page share/help/gl/orca/commands_find.page share/help/gl/orca/commands_flat_review.page share/help/gl/orca/commands_live_regions.page share/help/gl/orca/commands_mouse.page share/help/gl/orca/commands_profiles.page share/help/gl/orca/commands_reading.page share/help/gl/orca/commands_speech_settings.page share/help/gl/orca/commands_structural_navigation.page share/help/gl/orca/commands_table.page share/help/gl/orca/commands_time_date_notifications.page share/help/gl/orca/commands_where_am_i.page share/help/gl/orca/figures/orca-logo.png share/help/gl/orca/howto_bookmarks.page share/help/gl/orca/howto_documents.page share/help/gl/orca/howto_flat_review.page share/help/gl/orca/howto_forms.page share/help/gl/orca/howto_key_bindings.page share/help/gl/orca/howto_keyboard_layout.page share/help/gl/orca/howto_learn_modes.page share/help/gl/orca/howto_live_regions.page share/help/gl/orca/howto_mouse_review.page share/help/gl/orca/howto_notifications.page share/help/gl/orca/howto_orca_find.page share/help/gl/orca/howto_profiles.page share/help/gl/orca/howto_setting_up_orca.page share/help/gl/orca/howto_structural_navigation.page share/help/gl/orca/howto_tables.page share/help/gl/orca/howto_text_attributes.page share/help/gl/orca/howto_text_setup.page share/help/gl/orca/howto_the_orca_modifier.page share/help/gl/orca/howto_toggling_caps_lock.page share/help/gl/orca/howto_whereami.page share/help/gl/orca/index.page share/help/gl/orca/introduction.page share/help/gl/orca/preferences.page share/help/gl/orca/preferences_braille.page share/help/gl/orca/preferences_chat.page share/help/gl/orca/preferences_gecko.page share/help/gl/orca/preferences_general.page share/help/gl/orca/preferences_introduction.page share/help/gl/orca/preferences_key_bindings.page share/help/gl/orca/preferences_key_echo.page share/help/gl/orca/preferences_pronunciation.page share/help/gl/orca/preferences_speech.page share/help/gl/orca/preferences_spellcheck.page share/help/gl/orca/preferences_table_navigation.page share/help/gl/orca/preferences_text_attributes.page share/help/gl/orca/preferences_voice.page share/help/hu/orca/commands.page share/help/hu/orca/commands_bookmarks.page share/help/hu/orca/commands_braille.page share/help/hu/orca/commands_chat.page share/help/hu/orca/commands_controlling_orca.page share/help/hu/orca/commands_debugging.page share/help/hu/orca/commands_find.page share/help/hu/orca/commands_flat_review.page share/help/hu/orca/commands_live_regions.page share/help/hu/orca/commands_mouse.page share/help/hu/orca/commands_profiles.page share/help/hu/orca/commands_reading.page share/help/hu/orca/commands_speech_settings.page share/help/hu/orca/commands_structural_navigation.page share/help/hu/orca/commands_table.page share/help/hu/orca/commands_time_date_notifications.page share/help/hu/orca/commands_where_am_i.page share/help/hu/orca/figures/orca-logo.png share/help/hu/orca/howto_bookmarks.page share/help/hu/orca/howto_documents.page share/help/hu/orca/howto_flat_review.page share/help/hu/orca/howto_forms.page share/help/hu/orca/howto_key_bindings.page share/help/hu/orca/howto_keyboard_layout.page share/help/hu/orca/howto_learn_modes.page share/help/hu/orca/howto_live_regions.page share/help/hu/orca/howto_mouse_review.page share/help/hu/orca/howto_notifications.page share/help/hu/orca/howto_orca_find.page share/help/hu/orca/howto_profiles.page share/help/hu/orca/howto_setting_up_orca.page share/help/hu/orca/howto_structural_navigation.page share/help/hu/orca/howto_tables.page share/help/hu/orca/howto_text_attributes.page share/help/hu/orca/howto_text_setup.page share/help/hu/orca/howto_the_orca_modifier.page share/help/hu/orca/howto_toggling_caps_lock.page share/help/hu/orca/howto_whereami.page share/help/hu/orca/index.page share/help/hu/orca/introduction.page share/help/hu/orca/preferences.page share/help/hu/orca/preferences_braille.page share/help/hu/orca/preferences_chat.page share/help/hu/orca/preferences_gecko.page share/help/hu/orca/preferences_general.page share/help/hu/orca/preferences_introduction.page share/help/hu/orca/preferences_key_bindings.page share/help/hu/orca/preferences_key_echo.page share/help/hu/orca/preferences_pronunciation.page share/help/hu/orca/preferences_speech.page share/help/hu/orca/preferences_spellcheck.page share/help/hu/orca/preferences_table_navigation.page share/help/hu/orca/preferences_text_attributes.page share/help/hu/orca/preferences_voice.page share/help/pt_BR/orca/commands.page share/help/pt_BR/orca/commands_bookmarks.page share/help/pt_BR/orca/commands_braille.page share/help/pt_BR/orca/commands_chat.page share/help/pt_BR/orca/commands_controlling_orca.page share/help/pt_BR/orca/commands_debugging.page share/help/pt_BR/orca/commands_find.page share/help/pt_BR/orca/commands_flat_review.page share/help/pt_BR/orca/commands_live_regions.page share/help/pt_BR/orca/commands_mouse.page share/help/pt_BR/orca/commands_profiles.page share/help/pt_BR/orca/commands_reading.page share/help/pt_BR/orca/commands_speech_settings.page share/help/pt_BR/orca/commands_structural_navigation.page share/help/pt_BR/orca/commands_table.page share/help/pt_BR/orca/commands_time_date_notifications.page share/help/pt_BR/orca/commands_where_am_i.page share/help/pt_BR/orca/figures/orca-logo.png share/help/pt_BR/orca/howto_bookmarks.page share/help/pt_BR/orca/howto_documents.page share/help/pt_BR/orca/howto_flat_review.page share/help/pt_BR/orca/howto_forms.page share/help/pt_BR/orca/howto_key_bindings.page share/help/pt_BR/orca/howto_keyboard_layout.page share/help/pt_BR/orca/howto_learn_modes.page share/help/pt_BR/orca/howto_live_regions.page share/help/pt_BR/orca/howto_mouse_review.page share/help/pt_BR/orca/howto_notifications.page share/help/pt_BR/orca/howto_orca_find.page share/help/pt_BR/orca/howto_profiles.page share/help/pt_BR/orca/howto_setting_up_orca.page share/help/pt_BR/orca/howto_structural_navigation.page share/help/pt_BR/orca/howto_tables.page share/help/pt_BR/orca/howto_text_attributes.page share/help/pt_BR/orca/howto_text_setup.page share/help/pt_BR/orca/howto_the_orca_modifier.page share/help/pt_BR/orca/howto_toggling_caps_lock.page share/help/pt_BR/orca/howto_whereami.page share/help/pt_BR/orca/index.page share/help/pt_BR/orca/introduction.page share/help/pt_BR/orca/preferences.page share/help/pt_BR/orca/preferences_braille.page share/help/pt_BR/orca/preferences_chat.page share/help/pt_BR/orca/preferences_gecko.page share/help/pt_BR/orca/preferences_general.page share/help/pt_BR/orca/preferences_introduction.page share/help/pt_BR/orca/preferences_key_bindings.page share/help/pt_BR/orca/preferences_key_echo.page share/help/pt_BR/orca/preferences_pronunciation.page share/help/pt_BR/orca/preferences_speech.page share/help/pt_BR/orca/preferences_spellcheck.page share/help/pt_BR/orca/preferences_table_navigation.page share/help/pt_BR/orca/preferences_text_attributes.page share/help/pt_BR/orca/preferences_voice.page share/help/sl/orca/commands.page share/help/sl/orca/commands_bookmarks.page share/help/sl/orca/commands_braille.page share/help/sl/orca/commands_chat.page share/help/sl/orca/commands_controlling_orca.page share/help/sl/orca/commands_debugging.page share/help/sl/orca/commands_find.page share/help/sl/orca/commands_flat_review.page share/help/sl/orca/commands_live_regions.page share/help/sl/orca/commands_mouse.page share/help/sl/orca/commands_profiles.page share/help/sl/orca/commands_reading.page share/help/sl/orca/commands_speech_settings.page share/help/sl/orca/commands_structural_navigation.page share/help/sl/orca/commands_table.page share/help/sl/orca/commands_time_date_notifications.page share/help/sl/orca/commands_where_am_i.page share/help/sl/orca/figures/orca-logo.png share/help/sl/orca/howto_bookmarks.page share/help/sl/orca/howto_documents.page share/help/sl/orca/howto_flat_review.page share/help/sl/orca/howto_forms.page share/help/sl/orca/howto_key_bindings.page share/help/sl/orca/howto_keyboard_layout.page share/help/sl/orca/howto_learn_modes.page share/help/sl/orca/howto_live_regions.page share/help/sl/orca/howto_mouse_review.page share/help/sl/orca/howto_notifications.page share/help/sl/orca/howto_orca_find.page share/help/sl/orca/howto_profiles.page share/help/sl/orca/howto_setting_up_orca.page share/help/sl/orca/howto_structural_navigation.page share/help/sl/orca/howto_tables.page share/help/sl/orca/howto_text_attributes.page share/help/sl/orca/howto_text_setup.page share/help/sl/orca/howto_the_orca_modifier.page share/help/sl/orca/howto_toggling_caps_lock.page share/help/sl/orca/howto_whereami.page share/help/sl/orca/index.page share/help/sl/orca/introduction.page share/help/sl/orca/preferences.page share/help/sl/orca/preferences_braille.page share/help/sl/orca/preferences_chat.page share/help/sl/orca/preferences_gecko.page share/help/sl/orca/preferences_general.page share/help/sl/orca/preferences_introduction.page share/help/sl/orca/preferences_key_bindings.page share/help/sl/orca/preferences_key_echo.page share/help/sl/orca/preferences_pronunciation.page share/help/sl/orca/preferences_speech.page share/help/sl/orca/preferences_spellcheck.page share/help/sl/orca/preferences_table_navigation.page share/help/sl/orca/preferences_text_attributes.page share/help/sl/orca/preferences_voice.page share/icons/hicolor/16x16/apps/orca.png share/icons/hicolor/22x22/apps/orca.png share/icons/hicolor/24x24/apps/orca.png share/icons/hicolor/32x32/apps/orca.png share/icons/hicolor/48x48/apps/orca.png share/icons/hicolor/scalable/apps/orca.svg share/icons/hicolor/symbolic/apps/orca-symbolic.svg share/locale/an/LC_MESSAGES/orca.mo share/locale/ar/LC_MESSAGES/orca.mo share/locale/ast/LC_MESSAGES/orca.mo share/locale/be/LC_MESSAGES/orca.mo share/locale/bg/LC_MESSAGES/orca.mo share/locale/bn/LC_MESSAGES/orca.mo share/locale/bn_IN/LC_MESSAGES/orca.mo share/locale/bs/LC_MESSAGES/orca.mo share/locale/ca/LC_MESSAGES/orca.mo share/locale/ca@valencia/LC_MESSAGES/orca.mo share/locale/cs/LC_MESSAGES/orca.mo share/locale/cy/LC_MESSAGES/orca.mo share/locale/da/LC_MESSAGES/orca.mo share/locale/de/LC_MESSAGES/orca.mo share/locale/dz/LC_MESSAGES/orca.mo share/locale/el/LC_MESSAGES/orca.mo share/locale/en_CA/LC_MESSAGES/orca.mo share/locale/en_GB/LC_MESSAGES/orca.mo share/locale/eo/LC_MESSAGES/orca.mo share/locale/es/LC_MESSAGES/orca.mo share/locale/et/LC_MESSAGES/orca.mo share/locale/eu/LC_MESSAGES/orca.mo share/locale/fi/LC_MESSAGES/orca.mo share/locale/fr/LC_MESSAGES/orca.mo share/locale/ga/LC_MESSAGES/orca.mo share/locale/gl/LC_MESSAGES/orca.mo share/locale/gu/LC_MESSAGES/orca.mo share/locale/he/LC_MESSAGES/orca.mo share/locale/hi/LC_MESSAGES/orca.mo share/locale/hu/LC_MESSAGES/orca.mo share/locale/id/LC_MESSAGES/orca.mo share/locale/is/LC_MESSAGES/orca.mo share/locale/it/LC_MESSAGES/orca.mo share/locale/ja/LC_MESSAGES/orca.mo share/locale/kn/LC_MESSAGES/orca.mo share/locale/ko/LC_MESSAGES/orca.mo share/locale/lt/LC_MESSAGES/orca.mo share/locale/lv/LC_MESSAGES/orca.mo share/locale/mai/LC_MESSAGES/orca.mo share/locale/mk/LC_MESSAGES/orca.mo share/locale/ml/LC_MESSAGES/orca.mo share/locale/mr/LC_MESSAGES/orca.mo share/locale/ms/LC_MESSAGES/orca.mo share/locale/nb/LC_MESSAGES/orca.mo share/locale/ne/LC_MESSAGES/orca.mo share/locale/nl/LC_MESSAGES/orca.mo share/locale/nn/LC_MESSAGES/orca.mo share/locale/oc/LC_MESSAGES/orca.mo share/locale/or/LC_MESSAGES/orca.mo share/locale/pa/LC_MESSAGES/orca.mo share/locale/pl/LC_MESSAGES/orca.mo share/locale/pt/LC_MESSAGES/orca.mo share/locale/pt_BR/LC_MESSAGES/orca.mo share/locale/ro/LC_MESSAGES/orca.mo share/locale/ru/LC_MESSAGES/orca.mo share/locale/rw/LC_MESSAGES/orca.mo share/locale/si/LC_MESSAGES/orca.mo share/locale/sk/LC_MESSAGES/orca.mo share/locale/sl/LC_MESSAGES/orca.mo share/locale/sq/LC_MESSAGES/orca.mo share/locale/sr/LC_MESSAGES/orca.mo share/locale/sr@latin/LC_MESSAGES/orca.mo share/locale/sv/LC_MESSAGES/orca.mo share/locale/ta/LC_MESSAGES/orca.mo share/locale/te/LC_MESSAGES/orca.mo share/locale/tg/LC_MESSAGES/orca.mo share/locale/th/LC_MESSAGES/orca.mo share/locale/tr/LC_MESSAGES/orca.mo share/locale/ug/LC_MESSAGES/orca.mo share/locale/uk/LC_MESSAGES/orca.mo share/locale/vi/LC_MESSAGES/orca.mo share/locale/zh_CN/LC_MESSAGES/orca.mo share/locale/zh_HK/LC_MESSAGES/orca.mo share/locale/zh_TW/LC_MESSAGES/orca.mo %%DATADIR%%/ui/orca-find.ui %%DATADIR%%/ui/orca-setup.ui Index: head/accessibility/py3-atspi/Makefile =================================================================== --- head/accessibility/py3-atspi/Makefile (revision 430838) +++ head/accessibility/py3-atspi/Makefile (revision 430839) @@ -1,37 +1,27 @@ # Created by: Maxim Sobolev # $FreeBSD$ PORTNAME= atspi PORTVERSION= 2.18.0 CATEGORIES= accessibility x11-toolkits python MASTER_SITES= GNOME/sources/pyatspi/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= pyatspi-${PORTVERSION} DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Python3 API for the D-BUS based SPI framework RUN_DEPENDS= ${LOCALBASE}/libexec/at-spi2-registryd:accessibility/at-spi2-core CONFLICTS= at-spi-1.[0-9]* PORTSCOUT= limitw:1,even +NO_ARCH= yes USES= gettext gmake gnome pathfix pkgconfig python:3 tar:xz USE_GNOME= intlhack py3gobject3 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \ - PYVER=${PYTHON_VER:S/.//} - -.include +.include Index: head/accessibility/py3-atspi/pkg-plist =================================================================== --- head/accessibility/py3-atspi/pkg-plist (revision 430838) +++ head/accessibility/py3-atspi/pkg-plist (revision 430839) @@ -1,72 +1,72 @@ %%PYTHON_SITELIBDIR%%/pyatspi/Accessibility.py %%PYTHON_SITELIBDIR%%/pyatspi/__init__.py -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/Accessibility.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/Accessibility.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/action.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/action.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/appevent.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/appevent.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/application.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/application.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/collection.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/collection.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/component.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/component.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/constants.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/constants.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/deviceevent.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/deviceevent.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/document.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/document.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/editabletext.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/editabletext.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/enum.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/enum.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/hypertext.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/hypertext.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/image.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/image.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/interface.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/interface.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/registry.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/registry.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/role.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/role.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/selection.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/selection.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/state.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/state.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/table.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/table.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/tablecell.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/tablecell.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/text.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/text.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/utils.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/utils.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/value.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/value.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/Accessibility.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/Accessibility.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/action.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/action.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/appevent.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/appevent.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/application.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/application.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/collection.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/collection.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/component.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/component.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/constants.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/constants.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/deviceevent.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/deviceevent.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/document.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/document.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/editabletext.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/editabletext.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/enum.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/enum.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/hypertext.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/hypertext.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/image.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/image.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/interface.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/interface.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/registry.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/registry.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/role.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/role.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/selection.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/selection.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/state.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/state.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/table.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/table.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/tablecell.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/tablecell.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/text.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/text.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/utils.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/utils.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/value.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pyatspi/__pycache__/value.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/pyatspi/action.py %%PYTHON_SITELIBDIR%%/pyatspi/appevent.py %%PYTHON_SITELIBDIR%%/pyatspi/application.py %%PYTHON_SITELIBDIR%%/pyatspi/collection.py %%PYTHON_SITELIBDIR%%/pyatspi/component.py %%PYTHON_SITELIBDIR%%/pyatspi/constants.py %%PYTHON_SITELIBDIR%%/pyatspi/deviceevent.py %%PYTHON_SITELIBDIR%%/pyatspi/document.py %%PYTHON_SITELIBDIR%%/pyatspi/editabletext.py %%PYTHON_SITELIBDIR%%/pyatspi/enum.py %%PYTHON_SITELIBDIR%%/pyatspi/hypertext.py %%PYTHON_SITELIBDIR%%/pyatspi/image.py %%PYTHON_SITELIBDIR%%/pyatspi/interface.py %%PYTHON_SITELIBDIR%%/pyatspi/registry.py %%PYTHON_SITELIBDIR%%/pyatspi/role.py %%PYTHON_SITELIBDIR%%/pyatspi/selection.py %%PYTHON_SITELIBDIR%%/pyatspi/state.py %%PYTHON_SITELIBDIR%%/pyatspi/table.py %%PYTHON_SITELIBDIR%%/pyatspi/tablecell.py %%PYTHON_SITELIBDIR%%/pyatspi/text.py %%PYTHON_SITELIBDIR%%/pyatspi/utils.py %%PYTHON_SITELIBDIR%%/pyatspi/value.py Index: head/accessibility/py3-speech-dispatcher/pkg-plist =================================================================== --- head/accessibility/py3-speech-dispatcher/pkg-plist (revision 430838) +++ head/accessibility/py3-speech-dispatcher/pkg-plist (revision 430839) @@ -1,24 +1,24 @@ bin/spd-conf %%PYTHON_SITELIBDIR%%/speechd/__init__.py -%%PYTHON_SITELIBDIR%%/speechd/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/speechd/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/speechd/__pycache__/_test.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/speechd/__pycache__/_test.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/speechd/__pycache__/client.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/speechd/__pycache__/client.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/speechd/__pycache__/paths.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/speechd/__pycache__/paths.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/speechd/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/speechd/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/speechd/__pycache__/_test.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/speechd/__pycache__/_test.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/speechd/__pycache__/client.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/speechd/__pycache__/client.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/speechd/__pycache__/paths.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/speechd/__pycache__/paths.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/speechd/_test.py %%PYTHON_SITELIBDIR%%/speechd/client.py %%PYTHON_SITELIBDIR%%/speechd/paths.py %%PYTHON_SITELIBDIR%%/speechd_config/__init__.py -%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/config.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/config.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/paths.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/paths.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/config.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/config.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/paths.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/speechd_config/__pycache__/paths.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/speechd_config/config.py %%PYTHON_SITELIBDIR%%/speechd_config/paths.py share/sounds/speech-dispatcher/test.wav %%DATADIR%%/conf/desktop/speechd.desktop Index: head/accessibility/speech-dispatcher/Makefile =================================================================== --- head/accessibility/speech-dispatcher/Makefile (revision 430838) +++ head/accessibility/speech-dispatcher/Makefile (revision 430839) @@ -1,113 +1,100 @@ # $FreeBSD$ PORTNAME= speech-dispatcher PORTVERSION= 0.8.6 PORTREVISION?= 0 CATEGORIES?= accessibility audio MASTER_SITES= http://devel.freebsoft.org/pub/projects/speechd/ MAINTAINER= avilla@FreeBSD.org COMMENT?= Common interface to speech synthesis LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi LIB_DEPENDS= libdotconf.so:devel/dotconf \ libltdl.so:devel/libltdl \ libsndfile.so:audio/libsndfile USE_GNOME= glib20 intltool USES= alias gettext gmake pathfix pkgconfig libtool GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-espeak-ng CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes INSTALL_TARGET= install-strip .if !defined(SPEECH_SLAVE) CONFIGURE_ARGS+=--disable-python ETCFILES= clients/emacs.conf modules/pico-generic.conf \ modules/cicero.conf modules/dtk-generic.conf \ modules/epos-generic.conf modules/espeak-generic.conf \ modules/espeak-mbrola-generic.conf modules/espeak.conf \ modules/festival.conf modules/flite.conf modules/ibmtts.conf \ modules/ivona.conf modules/llia_phon-generic.conf \ modules/swift-generic.conf speechd.conf \ modules/espeak-ng.conf PORTDOCS= ANNOUNCE AUTHORS FAQ NEWS README TODO INFO= spd-say speech-dispatcher speech-dispatcher-cs ssip OPTIONS_DEFINE= ALSA AO DOCS ESPEAK FESTIVAL FLITE NAS PULSEAUDIO OPTIONS_DEFAULT=ESPEAK OPTIONS_SUB= yes ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CONFIGURE_WITH= alsa AO_LIB_DEPENDS= libao.so:audio/libao AO_CONFIGURE_WITH= libao ESPEAK_DESC= eSpeak speech synthesizer support ESPEAK_LIB_DEPENDS= libespeak.so:audio/espeak ESPEAK_CONFIGURE_WITH= espeak FESTIVAL_DESC= Festival Speech Synthesis System support FESTIVAL_RUN_DEPENDS= festival:audio/festival \ ${LOCALBASE}/share/festival/lib/${PORTNAME}.scm:audio/festival-freebsoft-utils FLITE_DESC= Flite speech synthesis engine support FLITE_LIB_DEPENDS= libflite.so:audio/flite FLITE_CONFIGURE_WITH= flite NAS_LIB_DEPENDS= libaudio.so:audio/nas NAS_CONFIGURE_WITH= nas PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_CONFIGURE_WITH=pulse -.include post-patch: @${REINPLACE_CMD} -e '/SUBDIRS/ s/tests//' \ ${WRKSRC}/src/Makefile.in ${REINPLACE_CMD} -e 's,/usr/share,${PREFIX}/share,g' \ ${WRKSRC}/src/modules/*.c \ ${WRKSRC}/config/modules/*.conf post-install: .for f in ${ETCFILES} @${MV} ${STAGEDIR}${ETCDIR}/${f} ${STAGEDIR}${ETCDIR}/${f}.sample .endfor @${RM} -r ${STAGEDIR}${DATADIR}/conf @${RMDIR} ${STAGEDIR}${DATADIR} || ${TRUE} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - .else PORTSCOUT= ignore:1 NO_ARCH= yes USES+= python:3.3+ LIB_DEPENDS+= libspeechd.so:accessibility/speech-dispatcher RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py3-xdg -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc .endif -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \ - PYVER=${PYTHON_VER:S/.//} - -.endif - -.include +.include Index: head/astro/weather/Makefile =================================================================== --- head/astro/weather/Makefile (revision 430838) +++ head/astro/weather/Makefile (revision 430839) @@ -1,65 +1,60 @@ # Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ PORTNAME= weather PORTVERSION= 2.3 CATEGORIES= astro python MASTER_SITES= http://fungi.yuggoth.org/weather/src/ \ LOCAL/sunpoet MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility to provide current weather conditions and forecasts LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE +NO_ARCH= yes USES= python shebangfix tar:xz PLIST_FILES= bin/${PORTNAME} \ %%PYTHON_SITELIBDIR%%/${PORTNAME}.py \ %%PYTHON_SITELIBDIR%%/${PYCACHE_DIR}${PYCACHE_FILE}.pyc \ %%PYTHON_SITELIBDIR%%/${PYCACHE_DIR}${PYCACHE_FILE}.${PYTHON_PYOEXTENSION} \ man/man1/${PORTNAME}.1.gz \ man/man5/${PORTNAME}rc.5.gz PORTDATA= airports places stations zctas zones SHEBANG_FILES= ${PORTNAME} .include .if ${PYTHON_REL} < 3200 PYCACHE_DIR= # empty PYCACHE_FILE= ${PORTNAME} .else PYCACHE_DIR= __pycache__/ PYCACHE_FILE= ${PORTNAME}.cpython-${PYTHON_SUFFIX} -.endif - -.if ${PYTHON_REL} < 3500 -PYTHON_PYOEXTENSION= pyo -.else -PYTHON_PYOEXTENSION= opt-1.pyc .endif do-build: @${PYTHON_CMD} -m compileall ${WRKSRC}/${PORTNAME}.py @${PYTHON_CMD} -O -m compileall ${WRKSRC}/${PORTNAME}.py do-install: ${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/ ${STAGEDIR}${PYTHON_SITELIBDIR}/${PYCACHE_DIR} ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.py ${STAGEDIR}${PYTHON_SITELIBDIR}/ ${INSTALL_DATA} ${WRKSRC}/${PYCACHE_DIR}${PYCACHE_FILE}.pyc ${STAGEDIR}${PYTHON_SITELIBDIR}/${PYCACHE_DIR} ${INSTALL_DATA} ${WRKSRC}/${PYCACHE_DIR}${PYCACHE_FILE}.${PYTHON_PYOEXTENSION} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PYCACHE_DIR} ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1/${PORTNAME}.1 ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}rc.5 ${STAGEDIR}${MANPREFIX}/man/man5/${PORTNAME}rc.5 ${MKDIR} ${STAGEDIR}${DATADIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDATA} ${STAGEDIR}${DATADIR}/ @${ECHO_MSG} "" @${ECHO_MSG} "Please add the following to your .weatherrc in order to use installed data files:" @${ECHO_MSG} "" @${ECHO_MSG} "[default]" @${ECHO_MSG} "setpath = ${DATADIR}" @${ECHO_MSG} "" .include Index: head/audio/gnome-music/Makefile =================================================================== --- head/audio/gnome-music/Makefile (revision 430838) +++ head/audio/gnome-music/Makefile (revision 430839) @@ -1,43 +1,32 @@ # Created by: Gustau Perez # $FreeBSD$ PORTNAME= gnome-music PORTVERSION= 3.18.2 CATEGORIES= audio gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= GNOME music playing application BUILD_DEPENDS= itstool:textproc/itstool LIB_DEPENDS= libgrilo-0.2.so:net/grilo \ libmediaart-2.0.so:multimedia/libmediaart PORTSCOUT= limitw:1,even USES= gettext gmake gnome libtool pathfix pkgconfig python:3 tar:xz USE_LDCONFIG= yes USE_GNOME= gnomedesktop3 gtk30 intltool introspection:build GNU_CONFIGURE= yes USE_GSTREAMER1= ogg mad INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib MAKE_ENV= XDG_CACHE_HOME=${WRKDIR} INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.Music.gschema.xml -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \ - PYVER=${PYTHON_VER:S/.//} - -.include +.include Index: head/audio/gnome-music/pkg-plist =================================================================== --- head/audio/gnome-music/pkg-plist (revision 430838) +++ head/audio/gnome-music/pkg-plist (revision 430839) @@ -1,260 +1,260 @@ bin/gnome-music lib/gnome-music/libgd.so lib/gnome-music/girepository-1.0/Gd-1.0.typelib %%PYTHON_SITELIBDIR%%/gnomemusic/__init__.py %%PYTHON_SITELIBDIR%%/gnomemusic/albumArtCache.py %%PYTHON_SITELIBDIR%%/gnomemusic/application.py %%PYTHON_SITELIBDIR%%/gnomemusic/grilo.py %%PYTHON_SITELIBDIR%%/gnomemusic/mpris.py %%PYTHON_SITELIBDIR%%/gnomemusic/notification.py %%PYTHON_SITELIBDIR%%/gnomemusic/player.py %%PYTHON_SITELIBDIR%%/gnomemusic/playlists.py %%PYTHON_SITELIBDIR%%/gnomemusic/query.py %%PYTHON_SITELIBDIR%%/gnomemusic/searchbar.py %%PYTHON_SITELIBDIR%%/gnomemusic/toolbar.py %%PYTHON_SITELIBDIR%%/gnomemusic/view.py %%PYTHON_SITELIBDIR%%/gnomemusic/widgets.py %%PYTHON_SITELIBDIR%%/gnomemusic/window.py -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/albumArtCache.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/albumArtCache.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/application.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/application.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/grilo.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/grilo.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/mpris.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/mpris.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/notification.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/notification.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/player.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/player.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/playlists.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/playlists.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/query.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/query.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/searchbar.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/searchbar.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/toolbar.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/toolbar.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/view.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/view.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/widgets.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/widgets.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/window.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/window.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/albumArtCache.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/albumArtCache.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/application.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/application.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/grilo.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/grilo.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/mpris.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/mpris.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/notification.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/notification.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/player.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/player.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/playlists.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/playlists.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/query.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/query.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/searchbar.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/searchbar.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/toolbar.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/toolbar.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/view.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/view.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/widgets.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/widgets.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/window.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gnomemusic/__pycache__/window.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% man/man1/gnome-music.1.gz share/appdata/gnome-music.appdata.xml share/applications/gnome-music.desktop %%DATADIR%%/gnome-music.gresource %%DATADIR%%/gir-1.0/Gd-1.0.gir share/help/C/gnome-music/figures/gnome-music-3.12.png share/help/C/gnome-music/index.page share/help/C/gnome-music/introduction.page share/help/C/gnome-music/legal.xml share/help/C/gnome-music/play-music.page share/help/C/gnome-music/playlist-create-albums.page share/help/C/gnome-music/playlist-create-artists.page share/help/C/gnome-music/playlist-create-songs.page share/help/C/gnome-music/playlist-delete.page share/help/C/gnome-music/playlist-remove-songs.page share/help/C/gnome-music/playlist-repeat.page share/help/C/gnome-music/playlist-shuffle.page share/help/C/gnome-music/search.page share/help/cs/gnome-music/figures/gnome-music-3.12.png share/help/cs/gnome-music/index.page share/help/cs/gnome-music/introduction.page share/help/cs/gnome-music/legal.xml share/help/cs/gnome-music/play-music.page share/help/cs/gnome-music/playlist-create-albums.page share/help/cs/gnome-music/playlist-create-artists.page share/help/cs/gnome-music/playlist-create-songs.page share/help/cs/gnome-music/playlist-delete.page share/help/cs/gnome-music/playlist-remove-songs.page share/help/cs/gnome-music/playlist-repeat.page share/help/cs/gnome-music/playlist-shuffle.page share/help/cs/gnome-music/search.page share/help/de/gnome-music/figures/gnome-music-3.12.png share/help/de/gnome-music/index.page share/help/de/gnome-music/introduction.page share/help/de/gnome-music/legal.xml share/help/de/gnome-music/play-music.page share/help/de/gnome-music/playlist-create-albums.page share/help/de/gnome-music/playlist-create-artists.page share/help/de/gnome-music/playlist-create-songs.page share/help/de/gnome-music/playlist-delete.page share/help/de/gnome-music/playlist-remove-songs.page share/help/de/gnome-music/playlist-repeat.page share/help/de/gnome-music/playlist-shuffle.page share/help/de/gnome-music/search.page share/help/el/gnome-music/figures/gnome-music-3.12.png share/help/el/gnome-music/index.page share/help/el/gnome-music/introduction.page share/help/el/gnome-music/legal.xml share/help/el/gnome-music/play-music.page share/help/el/gnome-music/playlist-create-albums.page share/help/el/gnome-music/playlist-create-artists.page share/help/el/gnome-music/playlist-create-songs.page share/help/el/gnome-music/playlist-delete.page share/help/el/gnome-music/playlist-remove-songs.page share/help/el/gnome-music/playlist-repeat.page share/help/el/gnome-music/playlist-shuffle.page share/help/el/gnome-music/search.page share/help/es/gnome-music/figures/gnome-music-3.12.png share/help/es/gnome-music/index.page share/help/es/gnome-music/introduction.page share/help/es/gnome-music/legal.xml share/help/es/gnome-music/play-music.page share/help/es/gnome-music/playlist-create-albums.page share/help/es/gnome-music/playlist-create-artists.page share/help/es/gnome-music/playlist-create-songs.page share/help/es/gnome-music/playlist-delete.page share/help/es/gnome-music/playlist-remove-songs.page share/help/es/gnome-music/playlist-repeat.page share/help/es/gnome-music/playlist-shuffle.page share/help/es/gnome-music/search.page share/help/fr/gnome-music/figures/gnome-music-3.12.png share/help/fr/gnome-music/index.page share/help/fr/gnome-music/introduction.page share/help/fr/gnome-music/legal.xml share/help/fr/gnome-music/play-music.page share/help/fr/gnome-music/playlist-create-albums.page share/help/fr/gnome-music/playlist-create-artists.page share/help/fr/gnome-music/playlist-create-songs.page share/help/fr/gnome-music/playlist-delete.page share/help/fr/gnome-music/playlist-remove-songs.page share/help/fr/gnome-music/playlist-repeat.page share/help/fr/gnome-music/playlist-shuffle.page share/help/fr/gnome-music/search.page share/help/gl/gnome-music/figures/gnome-music-3.12.png share/help/gl/gnome-music/index.page share/help/gl/gnome-music/introduction.page share/help/gl/gnome-music/legal.xml share/help/gl/gnome-music/play-music.page share/help/gl/gnome-music/playlist-create-albums.page share/help/gl/gnome-music/playlist-create-artists.page share/help/gl/gnome-music/playlist-create-songs.page share/help/gl/gnome-music/playlist-delete.page share/help/gl/gnome-music/playlist-remove-songs.page share/help/gl/gnome-music/playlist-repeat.page share/help/gl/gnome-music/playlist-shuffle.page share/help/gl/gnome-music/search.page share/help/hu/gnome-music/figures/gnome-music-3.12.png share/help/hu/gnome-music/index.page share/help/hu/gnome-music/introduction.page share/help/hu/gnome-music/legal.xml share/help/hu/gnome-music/play-music.page share/help/hu/gnome-music/playlist-create-albums.page share/help/hu/gnome-music/playlist-create-artists.page share/help/hu/gnome-music/playlist-create-songs.page share/help/hu/gnome-music/playlist-delete.page share/help/hu/gnome-music/playlist-remove-songs.page share/help/hu/gnome-music/playlist-repeat.page share/help/hu/gnome-music/playlist-shuffle.page share/help/hu/gnome-music/search.page share/help/ko/gnome-music/figures/gnome-music-3.12.png share/help/ko/gnome-music/index.page share/help/ko/gnome-music/introduction.page share/help/ko/gnome-music/legal.xml share/help/ko/gnome-music/play-music.page share/help/ko/gnome-music/playlist-create-albums.page share/help/ko/gnome-music/playlist-create-artists.page share/help/ko/gnome-music/playlist-create-songs.page share/help/ko/gnome-music/playlist-delete.page share/help/ko/gnome-music/playlist-remove-songs.page share/help/ko/gnome-music/playlist-repeat.page share/help/ko/gnome-music/playlist-shuffle.page share/help/ko/gnome-music/search.page share/help/pt_BR/gnome-music/figures/gnome-music-3.12.png share/help/pt_BR/gnome-music/index.page share/help/pt_BR/gnome-music/introduction.page share/help/pt_BR/gnome-music/legal.xml share/help/pt_BR/gnome-music/play-music.page share/help/pt_BR/gnome-music/playlist-create-albums.page share/help/pt_BR/gnome-music/playlist-create-artists.page share/help/pt_BR/gnome-music/playlist-create-songs.page share/help/pt_BR/gnome-music/playlist-delete.page share/help/pt_BR/gnome-music/playlist-remove-songs.page share/help/pt_BR/gnome-music/playlist-repeat.page share/help/pt_BR/gnome-music/playlist-shuffle.page share/help/pt_BR/gnome-music/search.page share/help/ro/gnome-music/figures/gnome-music-3.12.png share/help/ro/gnome-music/index.page share/help/ro/gnome-music/introduction.page share/help/ro/gnome-music/legal.xml share/help/ro/gnome-music/play-music.page share/help/ro/gnome-music/playlist-create-albums.page share/help/ro/gnome-music/playlist-create-artists.page share/help/ro/gnome-music/playlist-create-songs.page share/help/ro/gnome-music/playlist-delete.page share/help/ro/gnome-music/playlist-remove-songs.page share/help/ro/gnome-music/playlist-repeat.page share/help/ro/gnome-music/playlist-shuffle.page share/help/ro/gnome-music/search.page share/icons/HighContrast/16x16/apps/gnome-music.png share/icons/HighContrast/22x22/apps/gnome-music.png share/icons/HighContrast/256x256/apps/gnome-music.png share/icons/HighContrast/32x32/apps/gnome-music.png share/icons/HighContrast/48x48/apps/gnome-music.png share/icons/hicolor/16x16/apps/gnome-music.png share/icons/hicolor/22x22/apps/gnome-music.png share/icons/hicolor/256x256/apps/gnome-music.png share/icons/hicolor/32x32/apps/gnome-music.png share/icons/hicolor/48x48/apps/gnome-music.png share/locale/af/LC_MESSAGES/gnome-music.mo share/locale/an/LC_MESSAGES/gnome-music.mo share/locale/ar/LC_MESSAGES/gnome-music.mo share/locale/as/LC_MESSAGES/gnome-music.mo share/locale/be/LC_MESSAGES/gnome-music.mo share/locale/bs/LC_MESSAGES/gnome-music.mo share/locale/ca/LC_MESSAGES/gnome-music.mo share/locale/ca@valencia/LC_MESSAGES/gnome-music.mo share/locale/cs/LC_MESSAGES/gnome-music.mo share/locale/da/LC_MESSAGES/gnome-music.mo share/locale/de/LC_MESSAGES/gnome-music.mo share/locale/el/LC_MESSAGES/gnome-music.mo share/locale/en_GB/LC_MESSAGES/gnome-music.mo share/locale/eo/LC_MESSAGES/gnome-music.mo share/locale/es/LC_MESSAGES/gnome-music.mo share/locale/et/LC_MESSAGES/gnome-music.mo share/locale/eu/LC_MESSAGES/gnome-music.mo share/locale/fa/LC_MESSAGES/gnome-music.mo share/locale/fi/LC_MESSAGES/gnome-music.mo share/locale/fr/LC_MESSAGES/gnome-music.mo share/locale/fur/LC_MESSAGES/gnome-music.mo share/locale/ga/LC_MESSAGES/gnome-music.mo share/locale/gl/LC_MESSAGES/gnome-music.mo share/locale/he/LC_MESSAGES/gnome-music.mo share/locale/hu/LC_MESSAGES/gnome-music.mo share/locale/id/LC_MESSAGES/gnome-music.mo share/locale/is/LC_MESSAGES/gnome-music.mo share/locale/it/LC_MESSAGES/gnome-music.mo share/locale/ja/LC_MESSAGES/gnome-music.mo share/locale/kk/LC_MESSAGES/gnome-music.mo share/locale/kn/LC_MESSAGES/gnome-music.mo share/locale/ko/LC_MESSAGES/gnome-music.mo share/locale/lt/LC_MESSAGES/gnome-music.mo share/locale/lv/LC_MESSAGES/gnome-music.mo share/locale/ml/LC_MESSAGES/gnome-music.mo share/locale/nb/LC_MESSAGES/gnome-music.mo share/locale/ne/LC_MESSAGES/gnome-music.mo share/locale/nl/LC_MESSAGES/gnome-music.mo share/locale/oc/LC_MESSAGES/gnome-music.mo share/locale/pa/LC_MESSAGES/gnome-music.mo share/locale/pl/LC_MESSAGES/gnome-music.mo share/locale/pt/LC_MESSAGES/gnome-music.mo share/locale/pt_BR/LC_MESSAGES/gnome-music.mo share/locale/ro/LC_MESSAGES/gnome-music.mo share/locale/ru/LC_MESSAGES/gnome-music.mo share/locale/sk/LC_MESSAGES/gnome-music.mo share/locale/sl/LC_MESSAGES/gnome-music.mo share/locale/sr/LC_MESSAGES/gnome-music.mo share/locale/sr@latin/LC_MESSAGES/gnome-music.mo share/locale/sv/LC_MESSAGES/gnome-music.mo share/locale/te/LC_MESSAGES/gnome-music.mo share/locale/tg/LC_MESSAGES/gnome-music.mo share/locale/tr/LC_MESSAGES/gnome-music.mo share/locale/uk/LC_MESSAGES/gnome-music.mo share/locale/zh_CN/LC_MESSAGES/gnome-music.mo share/locale/zh_HK/LC_MESSAGES/gnome-music.mo share/locale/zh_TW/LC_MESSAGES/gnome-music.mo Index: head/audio/rhythmbox/Makefile =================================================================== --- head/audio/rhythmbox/Makefile (revision 430838) +++ head/audio/rhythmbox/Makefile (revision 430839) @@ -1,97 +1,90 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ PORTNAME= rhythmbox PORTVERSION= 3.2.1 PORTREVISION= 2 CATEGORIES= audio gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= marcus@FreeBSD.org COMMENT= Audio player for GNOME BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \ valac:lang/vala \ gtkdoc-check:textproc/gtk-doc \ itstool:textproc/itstool LIB_DEPENDS= libmusicbrainz5.so:audio/libmusicbrainz5 \ libtotem-plparser.so:multimedia/totem-pl-parser \ libdbus-glib-1.so:devel/dbus-glib \ libcheck.so:devel/libcheck \ libpeas-1.0.so:devel/libpeas \ libjson-glib-1.0.so:devel/json-glib \ libsoup-gnome-2.4.so:devel/libsoup-gnome \ libsecret-1.so:security/libsecret \ libtdb.so:databases/tdb USES= desktop-file-utils gettext gmake gnome libtool localbase \ pathfix pkgconfig tar:xz USE_GNOME= intlhack gnomeprefix gtk30 introspection:build \ py3gobject3 USE_XORG= ice xproto GNU_CONFIGURE= yes USE_GSTREAMER1= flac lame jpeg cdparanoia vorbis CONFIGURE_ARGS= --enable-vala \ --without-gudev \ --without-webkit \ --enable-visualizer=no \ --disable-browser-plugin \ --with-libsecret=yes INSTALLS_ICONS= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.rhythmbox.gschema.xml OPTIONS_SUB= yes OPTIONS_DEFINE= BRASERO DAAP GRILO IPOD NOTIFY PYTHON LIRC MTP OPTIONS_DEFAULT=BRASERO NOTIFY PYTHON BRASERO_DESC= Brasero disc burning support BRASERO_CONFIGURE_WITH=brasero BRASERO_LIB_DEPENDS= libbrasero-media3.so:sysutils/brasero DAAP_DESC= DAAP support DAAP_CONFIGURE_ENABLE= daap DAAP_LIB_DEPENDS= libdmapsharing-3.0.so:net/libdmapsharing IPOD_DESC= iPod support IPOD_CONFIGURE_WITH= ipod IPOD_LIB_DEPENDS= libgpod.so:audio/libgpod GRILO_DESC= Media discovery with Grilo GRILO_CONFIGURE_ENABLE= grilo GRILO_BUILD_DEPENDS= grilo-plugins>=0:net/grilo-plugins GRILO_RUN_DEPENDS= grilo-plugins>=0:net/grilo-plugins LIRC_CONFIGURE_ENABLE= lirc LIRC_LIB_DEPENDS= liblirc_client.so:comms/lirc NOTIFY_CONFIGURE_ENABLE= libnotify NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify MTP_CONFIGURE_WITH= mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp \ libhal.so:sysutils/hal PYTHON_CONFIGURE_ENABLE= python PYTHON_USES= python:3.3+ -PYTHON_PLIST_SUB+= PYTVER=${PYTHON_SUFFIX} PYOEXTENSION=${PYOEXTENSION} PYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libpeas>=0:devel/py3-libpeas # context plugin # webkit is for the context plugin, which is broken because # it needs textproc/py3-mako #WEBKIT_DESC= HTML view support #WEBKIT_CONFIGURE_WITH= webkit #WEBKIT_LIB_DEPENDS= libwebkitgtk-3.0.so:www/webkit-gtk3 .include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif post-patch: @${REINPLACE_CMD} -e 's|{MOZILLA_PLUGINDIR|{MOZILLA_PLUGINDIR}|g' \ ${WRKSRC}/configure # rbzeitgeist plugin needs py3-zeitgeist post-install: @${RM} -r ${STAGEDIR}${PREFIX}/lib/rhythmbox/plugins/rbzeitgeist .include Index: head/audio/rhythmbox/pkg-plist =================================================================== --- head/audio/rhythmbox/pkg-plist (revision 430838) +++ head/audio/rhythmbox/pkg-plist (revision 430839) @@ -1,828 +1,828 @@ bin/rhythmbox bin/rhythmbox-client include/rhythmbox/backends/rb-encoder.h include/rhythmbox/backends/rb-player-gst-data-tee.h include/rhythmbox/backends/rb-player-gst-filter.h include/rhythmbox/backends/rb-player-gst-tee.h include/rhythmbox/backends/rb-player.h include/rhythmbox/lib/libmediaplayerid/mediaplayerid.h include/rhythmbox/lib/rb-builder-helpers.h include/rhythmbox/lib/rb-debug.h include/rhythmbox/lib/rb-file-helpers.h include/rhythmbox/lib/rb-list-model.h include/rhythmbox/lib/rb-task-progress-simple.h include/rhythmbox/lib/rb-task-progress.h include/rhythmbox/lib/rb-stock-icons.h include/rhythmbox/lib/rb-string-value-map.h include/rhythmbox/lib/rb-util.h include/rhythmbox/metadata/rb-ext-db-key.h include/rhythmbox/metadata/rb-ext-db.h include/rhythmbox/metadata/rb-metadata.h include/rhythmbox/plugins/rb-plugin-macros.h include/rhythmbox/podcast/rb-podcast-entry-types.h include/rhythmbox/podcast/rb-podcast-manager.h include/rhythmbox/podcast/rb-podcast-parse.h include/rhythmbox/podcast/rb-podcast-search.h include/rhythmbox/rhythmdb/rb-refstring.h include/rhythmbox/rhythmdb/rhythmdb-entry-type.h include/rhythmbox/rhythmdb/rhythmdb-entry.h include/rhythmbox/rhythmdb/rhythmdb-import-job.h include/rhythmbox/rhythmdb/rhythmdb-property-model.h include/rhythmbox/rhythmdb/rhythmdb-query-model.h include/rhythmbox/rhythmdb/rhythmdb-query-result-list.h include/rhythmbox/rhythmdb/rhythmdb-query-results.h include/rhythmbox/rhythmdb/rhythmdb.h include/rhythmbox/shell/rb-history.h include/rhythmbox/shell/rb-play-order.h include/rhythmbox/shell/rb-playlist-manager.h include/rhythmbox/shell/rb-removable-media-manager.h include/rhythmbox/shell/rb-shell-player.h include/rhythmbox/shell/rb-shell-preferences.h include/rhythmbox/shell/rb-shell.h include/rhythmbox/shell/rb-track-transfer-batch.h include/rhythmbox/shell/rb-track-transfer-queue.h include/rhythmbox/sources/rb-auto-playlist-source.h include/rhythmbox/sources/rb-browser-source.h include/rhythmbox/sources/rb-device-source.h include/rhythmbox/sources/rb-display-page-group.h include/rhythmbox/sources/rb-display-page-menu.h include/rhythmbox/sources/rb-display-page-model.h include/rhythmbox/sources/rb-display-page-tree.h include/rhythmbox/sources/rb-display-page.h include/rhythmbox/sources/rb-media-player-source.h include/rhythmbox/sources/rb-playlist-source.h include/rhythmbox/sources/rb-playlist-xml.h include/rhythmbox/sources/rb-source-search-basic.h include/rhythmbox/sources/rb-source-search.h include/rhythmbox/sources/rb-source.h include/rhythmbox/sources/rb-static-playlist-source.h include/rhythmbox/sources/rb-streaming-source.h include/rhythmbox/sources/rb-transfer-target.h include/rhythmbox/widgets/rb-alert-dialog.h include/rhythmbox/widgets/rb-button-bar.h include/rhythmbox/widgets/rb-cell-renderer-pixbuf.h include/rhythmbox/widgets/rb-cell-renderer-rating.h include/rhythmbox/widgets/rb-dialog.h include/rhythmbox/widgets/rb-entry-view.h include/rhythmbox/widgets/rb-fading-image.h include/rhythmbox/widgets/rb-import-dialog.h include/rhythmbox/widgets/rb-library-browser.h include/rhythmbox/widgets/rb-object-property-editor.h include/rhythmbox/widgets/rb-property-view.h include/rhythmbox/widgets/rb-rating.h include/rhythmbox/widgets/rb-segmented-bar.h include/rhythmbox/widgets/rb-song-info.h include/rhythmbox/widgets/rb-source-toolbar.h include/rhythmbox/widgets/rb-task-list-display.h include/rhythmbox/widgets/rb-uri-dialog.h lib/girepository-1.0/MPID-3.0.typelib lib/girepository-1.0/RB-3.0.typelib lib/librhythmbox-core.so lib/librhythmbox-core.so.9 lib/librhythmbox-core.so.9.0.0 %%PYTHON%%lib/rhythmbox/plugins/artsearch/artsearch.plugin %%PYTHON%%lib/rhythmbox/plugins/artsearch/artsearch.py %%PYTHON%%lib/rhythmbox/plugins/artsearch/embedded.py %%PYTHON%%lib/rhythmbox/plugins/artsearch/lastfm.py %%PYTHON%%lib/rhythmbox/plugins/artsearch/local.py %%PYTHON%%lib/rhythmbox/plugins/artsearch/musicbrainz.py %%PYTHON%%lib/rhythmbox/plugins/artsearch/oldcache.py %%PYTHON%%lib/rhythmbox/plugins/artsearch/songinfo.py -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/artsearch.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/artsearch.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/embedded.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/embedded.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/lastfm.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/lastfm.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/local.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/local.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/musicbrainz.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/musicbrainz.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/oldcache.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/oldcache.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/songinfo.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/songinfo.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/artsearch.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/artsearch.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/embedded.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/embedded.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/lastfm.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/lastfm.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/local.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/local.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/musicbrainz.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/musicbrainz.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/oldcache.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/oldcache.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/songinfo.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/artsearch/__pycache__/songinfo.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/rhythmbox/plugins/audiocd/audiocd.plugin lib/rhythmbox/plugins/audiocd/libaudiocd.so lib/rhythmbox/plugins/audioscrobbler/audioscrobbler.plugin lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.so %%BRASERO%%lib/rhythmbox/plugins/cd-recorder/cd-recorder.plugin %%BRASERO%%lib/rhythmbox/plugins/cd-recorder/libcd-recorder.so %%DAAP%%lib/rhythmbox/plugins/daap/daap.plugin %%DAAP%%lib/rhythmbox/plugins/daap/libdaap.so lib/rhythmbox/plugins/dbus-media-server/dbus-media-server.plugin lib/rhythmbox/plugins/dbus-media-server/libdbus-media-server.so lib/rhythmbox/plugins/fmradio/fmradio.plugin lib/rhythmbox/plugins/fmradio/libfmradio.so lib/rhythmbox/plugins/generic-player/generic-player.plugin lib/rhythmbox/plugins/generic-player/libgeneric-player.so %%GRILO%%lib/rhythmbox/plugins/grilo/grilo.plugin %%GRILO%%lib/rhythmbox/plugins/grilo/libgrilo.so %%IPOD%%lib/rhythmbox/plugins/ipod/ipod.plugin %%IPOD%%lib/rhythmbox/plugins/ipod/libipod.so %%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.plugin %%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.py -%%PYTHON%%lib/rhythmbox/plugins/im-status/__pycache__/im-status.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/im-status/__pycache__/im-status.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/im-status/__pycache__/im-status.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/im-status/__pycache__/im-status.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/rhythmbox/plugins/iradio/iradio.plugin lib/rhythmbox/plugins/iradio/libiradio.so %%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/DarkLyricsParser.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/JetlyricsParser.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/JlyricParser.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsSites.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/TerraParser.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.py %%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.plugin %%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/AstrawebParser.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/AstrawebParser.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/DarkLyricsParser.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/DarkLyricsParser.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/JetlyricsParser.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/JetlyricsParser.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/JlyricParser.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/JlyricParser.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricWikiParser.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricWikiParser.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsConfigureDialog.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsConfigureDialog.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsParse.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsParse.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsSites.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsSites.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/TerraParser.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/TerraParser.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/WinampcnParser.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/WinampcnParser.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/lyrics.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/lyrics.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/AstrawebParser.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/AstrawebParser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/DarkLyricsParser.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/DarkLyricsParser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/JetlyricsParser.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/JetlyricsParser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/JlyricParser.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/JlyricParser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricWikiParser.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricWikiParser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsConfigureDialog.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsConfigureDialog.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsParse.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsParse.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsSites.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/LyricsSites.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/TerraParser.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/TerraParser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/WinampcnParser.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/WinampcnParser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/lyrics.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__pycache__/lyrics.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON%%lib/rhythmbox/plugins/magnatune/DownloadAlbumHandler.py %%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneAccount.py %%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.py %%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.py %%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune.plugin %%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune.py -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/DownloadAlbumHandler.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/DownloadAlbumHandler.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/MagnatuneAccount.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/MagnatuneAccount.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/MagnatuneSource.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/MagnatuneSource.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/TrackListHandler.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/TrackListHandler.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/magnatune.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/magnatune.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/DownloadAlbumHandler.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/DownloadAlbumHandler.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/MagnatuneAccount.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/MagnatuneAccount.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/MagnatuneSource.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/MagnatuneSource.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/TrackListHandler.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/TrackListHandler.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/magnatune.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__pycache__/magnatune.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/rhythmbox/plugins/mmkeys/libmmkeys.so lib/rhythmbox/plugins/mmkeys/mmkeys.plugin lib/rhythmbox/plugins/mpris/libmpris.so lib/rhythmbox/plugins/mpris/mpris.plugin %%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.so %%MTP%%lib/rhythmbox/plugins/mtpdevice/mtpdevice.plugin %%NOTIFY%%lib/rhythmbox/plugins/notification/libnotification.so %%NOTIFY%%lib/rhythmbox/plugins/notification/notification.plugin lib/rhythmbox/plugins/power-manager/libpower-manager.so lib/rhythmbox/plugins/power-manager/power-manager.plugin %%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.plugin %%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.py -%%PYTHON%%lib/rhythmbox/plugins/python-console/__pycache__/pythonconsole.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/python-console/__pycache__/pythonconsole.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/python-console/__pycache__/pythonconsole.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/python-console/__pycache__/pythonconsole.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.py %%PYTHON%%lib/rhythmbox/plugins/rb/Loader.py %%PYTHON%%lib/rhythmbox/plugins/rb/URLCache.py %%PYTHON%%lib/rhythmbox/plugins/rb/rb.plugin %%PYTHON%%lib/rhythmbox/plugins/rb/rb.py %%PYTHON%%lib/rhythmbox/plugins/rb/rbconfig.py %%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.py -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/Coroutine.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/Coroutine.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/Loader.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/Loader.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/URLCache.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/URLCache.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/rb.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/rb.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/rbconfig.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/rbconfig.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/stringmatch.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/stringmatch.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/Coroutine.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/Coroutine.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/Loader.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/Loader.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/URLCache.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/URLCache.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/rb.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/rb.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/rbconfig.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/rbconfig.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/stringmatch.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__pycache__/stringmatch.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.so %%LIRC%%lib/rhythmbox/plugins/rblirc/rblirc.plugin %%PYTHON%%lib/rhythmbox/plugins/replaygain/config.py %%PYTHON%%lib/rhythmbox/plugins/replaygain/player.py %%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.plugin %%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.py -%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/config.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/config.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/player.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/player.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/replaygain.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/replaygain.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/config.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/config.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/player.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/player.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/replaygain.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/replaygain/__pycache__/replaygain.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/rhythmbox/sample-plugins/sample/libsample.so lib/rhythmbox/sample-plugins/sample/sample.plugin lib/rhythmbox/sample-plugins/sample-vala/libsample-vala.so lib/rhythmbox/sample-plugins/sample-vala/sample-vala.plugin %%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.plugin %%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.py -%%PYTHON%%lib/rhythmbox/plugins/sendto/__pycache__/sendto.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/sendto/__pycache__/sendto.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/sendto/__pycache__/sendto.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/sendto/__pycache__/sendto.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON%%lib/rhythmbox/sample-plugins/sample-python/sample-python.plugin %%PYTHON%%lib/rhythmbox/sample-plugins/sample-python/sample-python.py -%%PYTHON%%lib/rhythmbox/sample-plugins/sample-python/__pycache__/sample-python.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/sample-plugins/sample-python/__pycache__/sample-python.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/rhythmbox/plugins/soundcloud/__pycache__/soundcloud.cpython-%%PYTVER%%.pyc -%%PYTHON%%lib/rhythmbox/plugins/soundcloud/__pycache__/soundcloud.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/sample-plugins/sample-python/__pycache__/sample-python.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/sample-plugins/sample-python/__pycache__/sample-python.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/rhythmbox/plugins/soundcloud/__pycache__/soundcloud.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/rhythmbox/plugins/soundcloud/__pycache__/soundcloud.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON%%lib/rhythmbox/plugins/soundcloud/soundcloud.plugin %%PYTHON%%lib/rhythmbox/plugins/soundcloud/soundcloud.py libdata/pkgconfig/rhythmbox.pc libexec/rhythmbox-metadata man/man1/rhythmbox-client.1.gz man/man1/rhythmbox.1.gz share/appdata/rhythmbox.appdata.xml share/applications/rhythmbox-device.desktop share/applications/rhythmbox.desktop share/dbus-1/services/org.gnome.Rhythmbox3.service %%DOCSDIR%%/RBApplication.html %%DOCSDIR%%/RBAutoPlaylistSource.html %%DOCSDIR%%/RBBrowserSource.html %%DOCSDIR%%/RBCellRendererPixbuf.html %%DOCSDIR%%/RBCellRendererRating.html %%DOCSDIR%%/RBDisplayPage.html %%DOCSDIR%%/RBDisplayPageGroup.html %%DOCSDIR%%/RBDisplayPageModel.html %%DOCSDIR%%/RBDisplayPageTree.html %%DOCSDIR%%/RBEntryView.html %%DOCSDIR%%/RBHeader.html %%DOCSDIR%%/RBHistory.html %%DOCSDIR%%/RBImportErrorsSource.html %%DOCSDIR%%/RBLibraryBrowser.html %%DOCSDIR%%/RBLibrarySource.html %%DOCSDIR%%/RBMediaPlayerSource.html %%DOCSDIR%%/RBMetaData.html %%DOCSDIR%%/RBMissingFilesSource.html %%DOCSDIR%%/RBPlayOrder.html %%DOCSDIR%%/RBPlayQueueSource.html %%DOCSDIR%%/RBPlayer.html %%DOCSDIR%%/RBPlayerGstDataTee.html %%DOCSDIR%%/RBPlayerGstFilter.html %%DOCSDIR%%/RBPlayerGstTee.html %%DOCSDIR%%/RBPlaylistManager.html %%DOCSDIR%%/RBPlaylistSource.html %%DOCSDIR%%/RBPropertyView.html %%DOCSDIR%%/RBQueryCreator.html %%DOCSDIR%%/RBRandomPlayOrder.html %%DOCSDIR%%/RBRating.html %%DOCSDIR%%/RBRemovableMediaManager.html %%DOCSDIR%%/RBSearchEntry.html %%DOCSDIR%%/RBShell.html %%DOCSDIR%%/RBShellClipboard.html %%DOCSDIR%%/RBShellPlayer.html %%DOCSDIR%%/RBShellPreferences.html %%DOCSDIR%%/RBSongInfo.html %%DOCSDIR%%/RBSource.html %%DOCSDIR%%/RBStaticPlaylistSource.html %%DOCSDIR%%/RBStatusbar.html %%DOCSDIR%%/RBStreamingSource.html %%DOCSDIR%%/RBStringValueMap.html %%DOCSDIR%%/RBTrackTransferBatch.html %%DOCSDIR%%/RBTrackTransferQueue.html %%DOCSDIR%%/RBURIDialog.html %%DOCSDIR%%/RhythmDB.html %%DOCSDIR%%/RhythmDBEntryType.html %%DOCSDIR%%/RhythmDBImportJob.html %%DOCSDIR%%/RhythmDBPropertyModel.html %%DOCSDIR%%/RhythmDBQueryModel.html %%DOCSDIR%%/RhythmDBQueryResults.html %%DOCSDIR%%/ch01.html %%DOCSDIR%%/ch02.html %%DOCSDIR%%/ch03.html %%DOCSDIR%%/ch04.html %%DOCSDIR%%/ch05.html %%DOCSDIR%%/ch06.html %%DOCSDIR%%/ch07.html %%DOCSDIR%%/home.png %%DOCSDIR%%/index.html %%DOCSDIR%%/index.sgml %%DOCSDIR%%/left-insensitive.png %%DOCSDIR%%/left.png %%DOCSDIR%%/rhythmbox-RBDeviceSource.html %%DOCSDIR%%/rhythmbox-RBEncoder.html %%DOCSDIR%%/rhythmbox-RBExtDB.html %%DOCSDIR%%/rhythmbox-RBTransferTarget.html %%DOCSDIR%%/rhythmbox-rb-async-queue-watch.html %%DOCSDIR%%/rhythmbox-rb-builder-helpers.html %%DOCSDIR%%/rhythmbox-rb-debug.html %%DOCSDIR%%/rhythmbox-rb-dialog.html %%DOCSDIR%%/rhythmbox-rb-ext-db-key.html %%DOCSDIR%%/rhythmbox-rb-file-helpers.html %%DOCSDIR%%/rhythmbox-rb-gst-media-types.html %%DOCSDIR%%/rhythmbox-rb-rating-helper.html %%DOCSDIR%%/rhythmbox-rb-text-helpers.html %%DOCSDIR%%/rhythmbox-rb-tree-dnd.html %%DOCSDIR%%/rhythmbox-rb-util.html %%DOCSDIR%%/rhythmbox.devhelp2 %%DOCSDIR%%/right-insensitive.png %%DOCSDIR%%/right.png %%DOCSDIR%%/style.css %%DOCSDIR%%/up-insensitive.png %%DOCSDIR%%/up.png share/gir-1.0/MPID-3.0.gir share/gir-1.0/RB-3.0.gir share/help/C/rhythmbox/fdl-appendix.xml share/help/C/rhythmbox/index.docbook share/help/C/rhythmbox/legal.xml share/help/C/rhythmbox/figures/rb-iradio-main.png share/help/C/rhythmbox/figures/rb-notification-area-menu.png share/help/C/rhythmbox/figures/rb-notification-window.png share/help/C/rhythmbox/figures/rb-notification-zone.png share/help/C/rhythmbox/figures/rb-podcast-main.png share/help/C/rhythmbox/figures/rb-statusbar.png share/help/C/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/C/rhythmbox/figures/rb-toolbar-repeat.png share/help/C/rhythmbox/figures/rb-toolbar-shuffle.png share/help/C/rhythmbox/figures/rb-toolbar.png share/help/C/rhythmbox/figures/rb-volume-changer.png share/help/C/rhythmbox/figures/rb-window-small.png share/help/C/rhythmbox/figures/rb-window.png share/help/ca/rhythmbox/fdl-appendix.xml share/help/ca/rhythmbox/index.docbook share/help/ca/rhythmbox/legal.xml share/help/ca/rhythmbox/figures/rb-iradio-main.png share/help/ca/rhythmbox/figures/rb-notification-area-menu.png share/help/ca/rhythmbox/figures/rb-notification-window.png share/help/ca/rhythmbox/figures/rb-notification-zone.png share/help/ca/rhythmbox/figures/rb-podcast-main.png share/help/ca/rhythmbox/figures/rb-statusbar.png share/help/ca/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/ca/rhythmbox/figures/rb-toolbar-repeat.png share/help/ca/rhythmbox/figures/rb-toolbar-shuffle.png share/help/ca/rhythmbox/figures/rb-toolbar.png share/help/ca/rhythmbox/figures/rb-volume-changer.png share/help/ca/rhythmbox/figures/rb-window-small.png share/help/ca/rhythmbox/figures/rb-window.png share/help/cs/rhythmbox/fdl-appendix.xml share/help/cs/rhythmbox/index.docbook share/help/cs/rhythmbox/legal.xml share/help/cs/rhythmbox/figures/rb-iradio-main.png share/help/cs/rhythmbox/figures/rb-notification-area-menu.png share/help/cs/rhythmbox/figures/rb-notification-window.png share/help/cs/rhythmbox/figures/rb-notification-zone.png share/help/cs/rhythmbox/figures/rb-podcast-main.png share/help/cs/rhythmbox/figures/rb-statusbar.png share/help/cs/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/cs/rhythmbox/figures/rb-toolbar-repeat.png share/help/cs/rhythmbox/figures/rb-toolbar-shuffle.png share/help/cs/rhythmbox/figures/rb-toolbar.png share/help/cs/rhythmbox/figures/rb-volume-changer.png share/help/cs/rhythmbox/figures/rb-window-small.png share/help/cs/rhythmbox/figures/rb-window.png share/help/da/rhythmbox/fdl-appendix.xml share/help/da/rhythmbox/index.docbook share/help/da/rhythmbox/legal.xml share/help/da/rhythmbox/figures/rb-iradio-main.png share/help/da/rhythmbox/figures/rb-notification-area-menu.png share/help/da/rhythmbox/figures/rb-notification-window.png share/help/da/rhythmbox/figures/rb-notification-zone.png share/help/da/rhythmbox/figures/rb-podcast-main.png share/help/da/rhythmbox/figures/rb-statusbar.png share/help/da/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/da/rhythmbox/figures/rb-toolbar-repeat.png share/help/da/rhythmbox/figures/rb-toolbar-shuffle.png share/help/da/rhythmbox/figures/rb-toolbar.png share/help/da/rhythmbox/figures/rb-volume-changer.png share/help/da/rhythmbox/figures/rb-window-small.png share/help/da/rhythmbox/figures/rb-window.png share/help/de/rhythmbox/fdl-appendix.xml share/help/de/rhythmbox/index.docbook share/help/de/rhythmbox/legal.xml share/help/de/rhythmbox/figures/rb-iradio-main.png share/help/de/rhythmbox/figures/rb-notification-area-menu.png share/help/de/rhythmbox/figures/rb-notification-window.png share/help/de/rhythmbox/figures/rb-notification-zone.png share/help/de/rhythmbox/figures/rb-podcast-main.png share/help/de/rhythmbox/figures/rb-statusbar.png share/help/de/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/de/rhythmbox/figures/rb-toolbar-repeat.png share/help/de/rhythmbox/figures/rb-toolbar-shuffle.png share/help/de/rhythmbox/figures/rb-toolbar.png share/help/de/rhythmbox/figures/rb-volume-changer.png share/help/de/rhythmbox/figures/rb-window-small.png share/help/de/rhythmbox/figures/rb-window.png share/help/el/rhythmbox/fdl-appendix.xml share/help/el/rhythmbox/index.docbook share/help/el/rhythmbox/legal.xml share/help/el/rhythmbox/figures/rb-iradio-main.png share/help/el/rhythmbox/figures/rb-notification-area-menu.png share/help/el/rhythmbox/figures/rb-notification-window.png share/help/el/rhythmbox/figures/rb-notification-zone.png share/help/el/rhythmbox/figures/rb-podcast-main.png share/help/el/rhythmbox/figures/rb-statusbar.png share/help/el/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/el/rhythmbox/figures/rb-toolbar-repeat.png share/help/el/rhythmbox/figures/rb-toolbar-shuffle.png share/help/el/rhythmbox/figures/rb-toolbar.png share/help/el/rhythmbox/figures/rb-volume-changer.png share/help/el/rhythmbox/figures/rb-window-small.png share/help/el/rhythmbox/figures/rb-window.png share/help/es/rhythmbox/fdl-appendix.xml share/help/es/rhythmbox/index.docbook share/help/es/rhythmbox/legal.xml share/help/es/rhythmbox/figures/rb-iradio-main.png share/help/es/rhythmbox/figures/rb-notification-area-menu.png share/help/es/rhythmbox/figures/rb-notification-window.png share/help/es/rhythmbox/figures/rb-notification-zone.png share/help/es/rhythmbox/figures/rb-podcast-main.png share/help/es/rhythmbox/figures/rb-statusbar.png share/help/es/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/es/rhythmbox/figures/rb-toolbar-repeat.png share/help/es/rhythmbox/figures/rb-toolbar-shuffle.png share/help/es/rhythmbox/figures/rb-toolbar.png share/help/es/rhythmbox/figures/rb-volume-changer.png share/help/es/rhythmbox/figures/rb-window-small.png share/help/es/rhythmbox/figures/rb-window.png share/help/eu/rhythmbox/fdl-appendix.xml share/help/eu/rhythmbox/index.docbook share/help/eu/rhythmbox/legal.xml share/help/eu/rhythmbox/figures/rb-iradio-main.png share/help/eu/rhythmbox/figures/rb-notification-area-menu.png share/help/eu/rhythmbox/figures/rb-notification-window.png share/help/eu/rhythmbox/figures/rb-notification-zone.png share/help/eu/rhythmbox/figures/rb-podcast-main.png share/help/eu/rhythmbox/figures/rb-statusbar.png share/help/eu/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/eu/rhythmbox/figures/rb-toolbar-repeat.png share/help/eu/rhythmbox/figures/rb-toolbar-shuffle.png share/help/eu/rhythmbox/figures/rb-toolbar.png share/help/eu/rhythmbox/figures/rb-volume-changer.png share/help/eu/rhythmbox/figures/rb-window-small.png share/help/eu/rhythmbox/figures/rb-window.png share/help/fr/rhythmbox/fdl-appendix.xml share/help/fr/rhythmbox/index.docbook share/help/fr/rhythmbox/legal.xml share/help/fr/rhythmbox/figures/rb-iradio-main.png share/help/fr/rhythmbox/figures/rb-notification-area-menu.png share/help/fr/rhythmbox/figures/rb-notification-window.png share/help/fr/rhythmbox/figures/rb-notification-zone.png share/help/fr/rhythmbox/figures/rb-podcast-main.png share/help/fr/rhythmbox/figures/rb-statusbar.png share/help/fr/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/fr/rhythmbox/figures/rb-toolbar-repeat.png share/help/fr/rhythmbox/figures/rb-toolbar-shuffle.png share/help/fr/rhythmbox/figures/rb-toolbar.png share/help/fr/rhythmbox/figures/rb-volume-changer.png share/help/fr/rhythmbox/figures/rb-window-small.png share/help/fr/rhythmbox/figures/rb-window.png share/help/gl/rhythmbox/fdl-appendix.xml share/help/gl/rhythmbox/index.docbook share/help/gl/rhythmbox/legal.xml share/help/gl/rhythmbox/figures/rb-iradio-main.png share/help/gl/rhythmbox/figures/rb-notification-area-menu.png share/help/gl/rhythmbox/figures/rb-notification-window.png share/help/gl/rhythmbox/figures/rb-notification-zone.png share/help/gl/rhythmbox/figures/rb-podcast-main.png share/help/gl/rhythmbox/figures/rb-statusbar.png share/help/gl/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/gl/rhythmbox/figures/rb-toolbar-repeat.png share/help/gl/rhythmbox/figures/rb-toolbar-shuffle.png share/help/gl/rhythmbox/figures/rb-toolbar.png share/help/gl/rhythmbox/figures/rb-volume-changer.png share/help/gl/rhythmbox/figures/rb-window-small.png share/help/gl/rhythmbox/figures/rb-window.png share/help/it/rhythmbox/fdl-appendix.xml share/help/it/rhythmbox/index.docbook share/help/it/rhythmbox/legal.xml share/help/it/rhythmbox/figures/rb-iradio-main.png share/help/it/rhythmbox/figures/rb-notification-area-menu.png share/help/it/rhythmbox/figures/rb-notification-window.png share/help/it/rhythmbox/figures/rb-notification-zone.png share/help/it/rhythmbox/figures/rb-podcast-main.png share/help/it/rhythmbox/figures/rb-statusbar.png share/help/it/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/it/rhythmbox/figures/rb-toolbar-repeat.png share/help/it/rhythmbox/figures/rb-toolbar-shuffle.png share/help/it/rhythmbox/figures/rb-toolbar.png share/help/it/rhythmbox/figures/rb-volume-changer.png share/help/it/rhythmbox/figures/rb-window-small.png share/help/it/rhythmbox/figures/rb-window.png share/help/ja/rhythmbox/fdl-appendix.xml share/help/ja/rhythmbox/index.docbook share/help/ja/rhythmbox/legal.xml share/help/ja/rhythmbox/figures/rb-iradio-main.png share/help/ja/rhythmbox/figures/rb-notification-area-menu.png share/help/ja/rhythmbox/figures/rb-notification-window.png share/help/ja/rhythmbox/figures/rb-notification-zone.png share/help/ja/rhythmbox/figures/rb-podcast-main.png share/help/ja/rhythmbox/figures/rb-statusbar.png share/help/ja/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/ja/rhythmbox/figures/rb-toolbar-repeat.png share/help/ja/rhythmbox/figures/rb-toolbar-shuffle.png share/help/ja/rhythmbox/figures/rb-toolbar.png share/help/ja/rhythmbox/figures/rb-volume-changer.png share/help/ja/rhythmbox/figures/rb-window-small.png share/help/ja/rhythmbox/figures/rb-window.png share/help/oc/rhythmbox/fdl-appendix.xml share/help/oc/rhythmbox/index.docbook share/help/oc/rhythmbox/legal.xml share/help/oc/rhythmbox/figures/rb-iradio-main.png share/help/oc/rhythmbox/figures/rb-notification-area-menu.png share/help/oc/rhythmbox/figures/rb-notification-window.png share/help/oc/rhythmbox/figures/rb-notification-zone.png share/help/oc/rhythmbox/figures/rb-podcast-main.png share/help/oc/rhythmbox/figures/rb-statusbar.png share/help/oc/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/oc/rhythmbox/figures/rb-toolbar-repeat.png share/help/oc/rhythmbox/figures/rb-toolbar-shuffle.png share/help/oc/rhythmbox/figures/rb-toolbar.png share/help/oc/rhythmbox/figures/rb-volume-changer.png share/help/oc/rhythmbox/figures/rb-window-small.png share/help/oc/rhythmbox/figures/rb-window.png share/help/pt/rhythmbox/fdl-appendix.xml share/help/pt/rhythmbox/index.docbook share/help/pt/rhythmbox/legal.xml share/help/pt/rhythmbox/figures/rb-iradio-main.png share/help/pt/rhythmbox/figures/rb-notification-area-menu.png share/help/pt/rhythmbox/figures/rb-notification-window.png share/help/pt/rhythmbox/figures/rb-notification-zone.png share/help/pt/rhythmbox/figures/rb-podcast-main.png share/help/pt/rhythmbox/figures/rb-statusbar.png share/help/pt/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/pt/rhythmbox/figures/rb-toolbar-repeat.png share/help/pt/rhythmbox/figures/rb-toolbar-shuffle.png share/help/pt/rhythmbox/figures/rb-toolbar.png share/help/pt/rhythmbox/figures/rb-volume-changer.png share/help/pt/rhythmbox/figures/rb-window-small.png share/help/pt/rhythmbox/figures/rb-window.png share/help/pt_BR/rhythmbox/fdl-appendix.xml share/help/pt_BR/rhythmbox/index.docbook share/help/pt_BR/rhythmbox/legal.xml share/help/pt_BR/rhythmbox/figures/rb-iradio-main.png share/help/pt_BR/rhythmbox/figures/rb-notification-area-menu.png share/help/pt_BR/rhythmbox/figures/rb-notification-window.png share/help/pt_BR/rhythmbox/figures/rb-notification-zone.png share/help/pt_BR/rhythmbox/figures/rb-podcast-main.png share/help/pt_BR/rhythmbox/figures/rb-statusbar.png share/help/pt_BR/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/pt_BR/rhythmbox/figures/rb-toolbar-repeat.png share/help/pt_BR/rhythmbox/figures/rb-toolbar-shuffle.png share/help/pt_BR/rhythmbox/figures/rb-toolbar.png share/help/pt_BR/rhythmbox/figures/rb-volume-changer.png share/help/pt_BR/rhythmbox/figures/rb-window-small.png share/help/pt_BR/rhythmbox/figures/rb-window.png share/help/ro/rhythmbox/fdl-appendix.xml share/help/ro/rhythmbox/index.docbook share/help/ro/rhythmbox/legal.xml share/help/ro/rhythmbox/figures/rb-iradio-main.png share/help/ro/rhythmbox/figures/rb-notification-area-menu.png share/help/ro/rhythmbox/figures/rb-notification-window.png share/help/ro/rhythmbox/figures/rb-notification-zone.png share/help/ro/rhythmbox/figures/rb-podcast-main.png share/help/ro/rhythmbox/figures/rb-statusbar.png share/help/ro/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/ro/rhythmbox/figures/rb-toolbar-repeat.png share/help/ro/rhythmbox/figures/rb-toolbar-shuffle.png share/help/ro/rhythmbox/figures/rb-toolbar.png share/help/ro/rhythmbox/figures/rb-volume-changer.png share/help/ro/rhythmbox/figures/rb-window-small.png share/help/ro/rhythmbox/figures/rb-window.png share/help/ru/rhythmbox/fdl-appendix.xml share/help/ru/rhythmbox/index.docbook share/help/ru/rhythmbox/legal.xml share/help/ru/rhythmbox/figures/rb-iradio-main.png share/help/ru/rhythmbox/figures/rb-notification-area-menu.png share/help/ru/rhythmbox/figures/rb-notification-window.png share/help/ru/rhythmbox/figures/rb-notification-zone.png share/help/ru/rhythmbox/figures/rb-podcast-main.png share/help/ru/rhythmbox/figures/rb-statusbar.png share/help/ru/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/ru/rhythmbox/figures/rb-toolbar-repeat.png share/help/ru/rhythmbox/figures/rb-toolbar-shuffle.png share/help/ru/rhythmbox/figures/rb-toolbar.png share/help/ru/rhythmbox/figures/rb-volume-changer.png share/help/ru/rhythmbox/figures/rb-window-small.png share/help/ru/rhythmbox/figures/rb-window.png share/help/sl/rhythmbox/fdl-appendix.xml share/help/sl/rhythmbox/index.docbook share/help/sl/rhythmbox/legal.xml share/help/sl/rhythmbox/figures/rb-iradio-main.png share/help/sl/rhythmbox/figures/rb-notification-area-menu.png share/help/sl/rhythmbox/figures/rb-notification-window.png share/help/sl/rhythmbox/figures/rb-notification-zone.png share/help/sl/rhythmbox/figures/rb-podcast-main.png share/help/sl/rhythmbox/figures/rb-statusbar.png share/help/sl/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/sl/rhythmbox/figures/rb-toolbar-repeat.png share/help/sl/rhythmbox/figures/rb-toolbar-shuffle.png share/help/sl/rhythmbox/figures/rb-toolbar.png share/help/sl/rhythmbox/figures/rb-volume-changer.png share/help/sl/rhythmbox/figures/rb-window-small.png share/help/sl/rhythmbox/figures/rb-window.png share/help/sv/rhythmbox/fdl-appendix.xml share/help/sv/rhythmbox/index.docbook share/help/sv/rhythmbox/legal.xml share/help/sv/rhythmbox/figures/rb-iradio-main.png share/help/sv/rhythmbox/figures/rb-notification-area-menu.png share/help/sv/rhythmbox/figures/rb-notification-window.png share/help/sv/rhythmbox/figures/rb-notification-zone.png share/help/sv/rhythmbox/figures/rb-podcast-main.png share/help/sv/rhythmbox/figures/rb-statusbar.png share/help/sv/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/sv/rhythmbox/figures/rb-toolbar-repeat.png share/help/sv/rhythmbox/figures/rb-toolbar-shuffle.png share/help/sv/rhythmbox/figures/rb-toolbar.png share/help/sv/rhythmbox/figures/rb-volume-changer.png share/help/sv/rhythmbox/figures/rb-window-small.png share/help/sv/rhythmbox/figures/rb-window.png share/help/uk/rhythmbox/fdl-appendix.xml share/help/uk/rhythmbox/index.docbook share/help/uk/rhythmbox/legal.xml share/help/uk/rhythmbox/figures/rb-iradio-main.png share/help/uk/rhythmbox/figures/rb-notification-area-menu.png share/help/uk/rhythmbox/figures/rb-notification-window.png share/help/uk/rhythmbox/figures/rb-notification-zone.png share/help/uk/rhythmbox/figures/rb-podcast-main.png share/help/uk/rhythmbox/figures/rb-statusbar.png share/help/uk/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/uk/rhythmbox/figures/rb-toolbar-repeat.png share/help/uk/rhythmbox/figures/rb-toolbar-shuffle.png share/help/uk/rhythmbox/figures/rb-toolbar.png share/help/uk/rhythmbox/figures/rb-volume-changer.png share/help/uk/rhythmbox/figures/rb-window-small.png share/help/uk/rhythmbox/figures/rb-window.png share/help/zh_CN/rhythmbox/fdl-appendix.xml share/help/zh_CN/rhythmbox/index.docbook share/help/zh_CN/rhythmbox/legal.xml share/help/zh_CN/rhythmbox/figures/rb-iradio-main.png share/help/zh_CN/rhythmbox/figures/rb-notification-area-menu.png share/help/zh_CN/rhythmbox/figures/rb-notification-window.png share/help/zh_CN/rhythmbox/figures/rb-notification-zone.png share/help/zh_CN/rhythmbox/figures/rb-podcast-main.png share/help/zh_CN/rhythmbox/figures/rb-statusbar.png share/help/zh_CN/rhythmbox/figures/rb-toolbar-prevplaynext.png share/help/zh_CN/rhythmbox/figures/rb-toolbar-repeat.png share/help/zh_CN/rhythmbox/figures/rb-toolbar-shuffle.png share/help/zh_CN/rhythmbox/figures/rb-toolbar.png share/help/zh_CN/rhythmbox/figures/rb-volume-changer.png share/help/zh_CN/rhythmbox/figures/rb-window-small.png share/help/zh_CN/rhythmbox/figures/rb-window.png share/icons/hicolor/16x16/apps/rhythmbox.png share/icons/hicolor/22x22/apps/rhythmbox.png share/icons/hicolor/24x24/apps/rhythmbox.png share/icons/hicolor/256x256/apps/rhythmbox.png share/icons/hicolor/32x32/apps/rhythmbox.png share/icons/hicolor/48x48/apps/rhythmbox.png share/icons/hicolor/48x48/status/rhythmbox-missing-artwork.png share/icons/hicolor/scalable/apps/rhythmbox-symbolic.svg share/locale/af/LC_MESSAGES/rhythmbox.mo share/locale/am/LC_MESSAGES/rhythmbox.mo share/locale/ar/LC_MESSAGES/rhythmbox.mo share/locale/as/LC_MESSAGES/rhythmbox.mo share/locale/az/LC_MESSAGES/rhythmbox.mo share/locale/be/LC_MESSAGES/rhythmbox.mo share/locale/be@latin/LC_MESSAGES/rhythmbox.mo share/locale/bg/LC_MESSAGES/rhythmbox.mo share/locale/bn_IN/LC_MESSAGES/rhythmbox.mo share/locale/br/LC_MESSAGES/rhythmbox.mo share/locale/bs/LC_MESSAGES/rhythmbox.mo share/locale/ca/LC_MESSAGES/rhythmbox.mo share/locale/ca@valencia/LC_MESSAGES/rhythmbox.mo share/locale/cs/LC_MESSAGES/rhythmbox.mo share/locale/cy/LC_MESSAGES/rhythmbox.mo share/locale/da/LC_MESSAGES/rhythmbox.mo share/locale/de/LC_MESSAGES/rhythmbox.mo share/locale/dz/LC_MESSAGES/rhythmbox.mo share/locale/el/LC_MESSAGES/rhythmbox.mo share/locale/en_CA/LC_MESSAGES/rhythmbox.mo share/locale/en_GB/LC_MESSAGES/rhythmbox.mo share/locale/eo/LC_MESSAGES/rhythmbox.mo share/locale/es/LC_MESSAGES/rhythmbox.mo share/locale/et/LC_MESSAGES/rhythmbox.mo share/locale/eu/LC_MESSAGES/rhythmbox.mo share/locale/fa/LC_MESSAGES/rhythmbox.mo share/locale/fi/LC_MESSAGES/rhythmbox.mo share/locale/fr/LC_MESSAGES/rhythmbox.mo share/locale/ga/LC_MESSAGES/rhythmbox.mo share/locale/gd/LC_MESSAGES/rhythmbox.mo share/locale/gl/LC_MESSAGES/rhythmbox.mo share/locale/gu/LC_MESSAGES/rhythmbox.mo share/locale/he/LC_MESSAGES/rhythmbox.mo share/locale/hi/LC_MESSAGES/rhythmbox.mo share/locale/hr/LC_MESSAGES/rhythmbox.mo share/locale/hu/LC_MESSAGES/rhythmbox.mo share/locale/id/LC_MESSAGES/rhythmbox.mo share/locale/is/LC_MESSAGES/rhythmbox.mo share/locale/it/LC_MESSAGES/rhythmbox.mo share/locale/ja/LC_MESSAGES/rhythmbox.mo share/locale/kk/LC_MESSAGES/rhythmbox.mo share/locale/kn/LC_MESSAGES/rhythmbox.mo share/locale/ko/LC_MESSAGES/rhythmbox.mo share/locale/lt/LC_MESSAGES/rhythmbox.mo share/locale/lv/LC_MESSAGES/rhythmbox.mo share/locale/mk/LC_MESSAGES/rhythmbox.mo share/locale/ml/LC_MESSAGES/rhythmbox.mo share/locale/mn/LC_MESSAGES/rhythmbox.mo share/locale/mr/LC_MESSAGES/rhythmbox.mo share/locale/ms/LC_MESSAGES/rhythmbox.mo share/locale/nb/LC_MESSAGES/rhythmbox.mo share/locale/nds/LC_MESSAGES/rhythmbox.mo share/locale/ne/LC_MESSAGES/rhythmbox.mo share/locale/nl/LC_MESSAGES/rhythmbox.mo share/locale/nn/LC_MESSAGES/rhythmbox.mo share/locale/oc/LC_MESSAGES/rhythmbox.mo share/locale/or/LC_MESSAGES/rhythmbox.mo share/locale/pa/LC_MESSAGES/rhythmbox.mo share/locale/pl/LC_MESSAGES/rhythmbox.mo share/locale/ps/LC_MESSAGES/rhythmbox.mo share/locale/pt/LC_MESSAGES/rhythmbox.mo share/locale/pt_BR/LC_MESSAGES/rhythmbox.mo share/locale/ro/LC_MESSAGES/rhythmbox.mo share/locale/ru/LC_MESSAGES/rhythmbox.mo share/locale/rw/LC_MESSAGES/rhythmbox.mo share/locale/si/LC_MESSAGES/rhythmbox.mo share/locale/sk/LC_MESSAGES/rhythmbox.mo share/locale/sl/LC_MESSAGES/rhythmbox.mo share/locale/sr/LC_MESSAGES/rhythmbox.mo share/locale/sr@latin/LC_MESSAGES/rhythmbox.mo share/locale/sv/LC_MESSAGES/rhythmbox.mo share/locale/ta/LC_MESSAGES/rhythmbox.mo share/locale/te/LC_MESSAGES/rhythmbox.mo share/locale/th/LC_MESSAGES/rhythmbox.mo share/locale/tr/LC_MESSAGES/rhythmbox.mo share/locale/uk/LC_MESSAGES/rhythmbox.mo share/locale/vi/LC_MESSAGES/rhythmbox.mo share/locale/zh_CN/LC_MESSAGES/rhythmbox.mo share/locale/zh_HK/LC_MESSAGES/rhythmbox.mo share/locale/zh_TW/LC_MESSAGES/rhythmbox.mo %%DATADIR%%/app-menu.ui %%DATADIR%%/browser-popup.ui %%DATADIR%%/create-playlist.ui %%DATADIR%%/display-page-add-menu.ui %%DATADIR%%/edit-menu.ui %%DATADIR%%/general-prefs.ui %%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-no-star.png %%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-set-star.png %%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-unset-star.png %%DATADIR%%/import-dialog.ui %%DATADIR%%/import-errors-popup.ui %%DATADIR%%/library-prefs.ui %%DATADIR%%/library-toolbar.ui %%PYTHON%%%%DATADIR%%/plugins/lyrics/lyrics-prefs.ui %%DATADIR%%/main-toolbar.ui %%DATADIR%%/media-player-properties.ui %%DATADIR%%/missing-files-popup.ui %%DATADIR%%/playback-prefs.ui %%DATADIR%%/playlist-menu.ui %%DATADIR%%/playlist-popup.ui %%DATADIR%%/playlist-save.ui %%DATADIR%%/playlist-toolbar.ui %%DATADIR%%/playlists.xml %%DATADIR%%/plugins/audiocd/album-info.ui %%DATADIR%%/plugins/audiocd/audiocd-toolbar.ui %%DATADIR%%/plugins/audioscrobbler/audioscrobbler-preferences.ui %%DATADIR%%/plugins/audioscrobbler/audioscrobbler-profile.ui %%DATADIR%%/plugins/audioscrobbler/icons/hicolor/scalable/places/Last.fm-symbolic.svg %%DAAP%%%%DATADIR%%/plugins/daap/daap-prefs.ui %%DAAP%%%%DATADIR%%/plugins/daap/daap-toolbar.ui %%DAAP%%%%DATADIR%%/plugins/daap/remote-icon.png %%DATADIR%%/plugins/fmradio/fmradio-popup.ui %%DATADIR%%/plugins/fmradio/fmradio-toolbar.ui %%DATADIR%%/plugins/generic-player/generic-player-info.ui %%DATADIR%%/plugins/generic-player/generic-player-toolbar.ui %%IPOD%%%%DATADIR%%/plugins/ipod/ipod-info.ui %%IPOD%%%%DATADIR%%/plugins/ipod/ipod-init.ui %%IPOD%%%%DATADIR%%/plugins/ipod/ipod-toolbar.ui %%DATADIR%%/plugins/iradio/iradio-initial.xspf %%DATADIR%%/plugins/iradio/iradio-popup.ui %%DATADIR%%/plugins/iradio/iradio-toolbar.ui %%LIRC%%%%DATADIR%%/plugins/rblirc/rhythmbox_lirc_default %%DATADIR%%/plugins/iradio/station-properties.ui %%PYTHON%%%%DATADIR%%/plugins/magnatune/icons/hicolor/scalable/places/magnatune-symbolic.svg %%PYTHON%%%%DATADIR%%/plugins/magnatune/magnatune-loading.ui %%PYTHON%%%%DATADIR%%/plugins/magnatune/magnatune-popup.ui %%PYTHON%%%%DATADIR%%/plugins/magnatune/magnatune-prefs.ui %%PYTHON%%%%DATADIR%%/plugins/magnatune/magnatune-toolbar.ui %%PYTHON%%%%DATADIR%%/plugins/magnatune/magnatune_logo_color_small.png %%PYTHON%%%%DATADIR%%/plugins/magnatune/magnatune_logo_color_tiny.png %%MTP%%%%DATADIR%%/plugins/mtpdevice/mtp-info.ui %%MTP%%%%DATADIR%%/plugins/mtpdevice/mtp-toolbar.ui %%PYTHON%%%%DATADIR%%/plugins/replaygain/replaygain-prefs.ui %%PYTHON%%%%DATADIR%%/plugins/soundcloud/icons/hicolor/scalable/places/soundcloud-symbolic.svg %%PYTHON%%%%DATADIR%%/plugins/soundcloud/powered-by-soundcloud.png %%PYTHON%%%%DATADIR%%/plugins/soundcloud/soundcloud.ui %%DATADIR%%/podcast-add-dialog.ui %%DATADIR%%/podcast-feed-properties.ui %%DATADIR%%/podcast-prefs.ui %%DATADIR%%/podcast-popups.ui %%DATADIR%%/podcast-properties.ui %%DATADIR%%/podcast-toolbar.ui %%DATADIR%%/queue-popups.ui %%DATADIR%%/queue-toolbar.ui %%DATADIR%%/rhythmbox.gep %%DATADIR%%/song-info-multiple.ui %%DATADIR%%/song-info.ui %%DATADIR%%/style.css %%DATADIR%%/sync-dialog.ui %%DATADIR%%/sync-state.ui %%DATADIR%%/uri-new.ui Index: head/databases/postgresql92-server/pkg-plist-plpython =================================================================== --- head/databases/postgresql92-server/pkg-plist-plpython (revision 430838) +++ head/databases/postgresql92-server/pkg-plist-plpython (revision 430839) @@ -1,12 +1,12 @@ %%DOCSDIR%%/README-plpython %%PYTHON2%%lib/postgresql/plpython2.so %%PYTHON3%%lib/postgresql/plpython3.so -%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql -%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql %%PYTHON3%%%%DATADIR%%/extension/plpython3u--unpackaged--1.0.sql +%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control Index: head/databases/postgresql93-server/pkg-plist-plpython =================================================================== --- head/databases/postgresql93-server/pkg-plist-plpython (revision 430838) +++ head/databases/postgresql93-server/pkg-plist-plpython (revision 430839) @@ -1,12 +1,12 @@ %%DOCSDIR%%/README-plpython %%PYTHON2%%lib/postgresql/plpython2.so %%PYTHON3%%lib/postgresql/plpython3.so -%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql -%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql %%PYTHON3%%%%DATADIR%%/extension/plpython3u--unpackaged--1.0.sql +%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control Index: head/databases/postgresql94-server/pkg-plist-plpython =================================================================== --- head/databases/postgresql94-server/pkg-plist-plpython (revision 430838) +++ head/databases/postgresql94-server/pkg-plist-plpython (revision 430839) @@ -1,12 +1,12 @@ %%DOCSDIR%%/README-plpython %%PYTHON2%%lib/postgresql/plpython2.so %%PYTHON3%%lib/postgresql/plpython3.so -%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql -%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql %%PYTHON3%%%%DATADIR%%/extension/plpython3u--unpackaged--1.0.sql +%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control Index: head/databases/postgresql95-plpython/Makefile =================================================================== --- head/databases/postgresql95-plpython/Makefile (revision 430838) +++ head/databases/postgresql95-plpython/Makefile (revision 430839) @@ -1,31 +1,25 @@ # $FreeBSD$ PORTNAME= postgresql CATEGORIES= databases python PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER= pgsql@FreeBSD.org COMMENT= Module for using Python to write SQL functions USES+= pgsql:${WANT_PGSQL_VER} ${WANT_PYTHON_USE} WANT_PGSQL= server MASTERDIR= ${.CURDIR}/../postgresql${WANT_PGSQL_VER:S/.//}-server WANT_PGSQL_VER?= 9.5 WANT_PYTHON_USE?= python CONFIGURE_ARGS= --with-python COMPONENT= -plpython -.if defined(PYTHON_VER) && ${PYTHON_VER:R} == 3 -PLIST_SUB+= PYTHON2="@comment " PYTHON3="" -.else -PLIST_SUB+= PYTHON2="" PYTHON3="@comment " -.endif - BUILD_DIRS= src/backend src/pl/plpython INSTALL_DIRS= src/pl/plpython SLAVE_ONLY= yes .include "${MASTERDIR}/Makefile" Index: head/databases/postgresql95-server/pkg-plist-plpython =================================================================== --- head/databases/postgresql95-server/pkg-plist-plpython (revision 430838) +++ head/databases/postgresql95-server/pkg-plist-plpython (revision 430839) @@ -1,14 +1,14 @@ include/postgresql/server/plpy_util.h include/postgresql/server/plpython.h %%DOCSDIR%%/README-plpython %%PYTHON2%%lib/postgresql/plpython2.so %%PYTHON3%%lib/postgresql/plpython3.so -%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql -%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql %%PYTHON3%%%%DATADIR%%/extension/plpython3u--unpackaged--1.0.sql +%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control Index: head/databases/postgresql96-server/pkg-plist-plpython =================================================================== --- head/databases/postgresql96-server/pkg-plist-plpython (revision 430838) +++ head/databases/postgresql96-server/pkg-plist-plpython (revision 430839) @@ -1,14 +1,14 @@ include/postgresql/server/plpy_util.h include/postgresql/server/plpython.h %%DOCSDIR%%/README-plpython %%PYTHON2%%lib/postgresql/plpython2.so %%PYTHON3%%lib/postgresql/plpython3.so -%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql -%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql -%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql %%PYTHON3%%%%DATADIR%%/extension/plpython3u--unpackaged--1.0.sql +%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql +%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control Index: head/devel/gitg/Makefile =================================================================== --- head/devel/gitg/Makefile (revision 430838) +++ head/devel/gitg/Makefile (revision 430839) @@ -1,68 +1,55 @@ # Created by: kipz # $FreeBSD$ PORTNAME= gitg PORTVERSION= 3.19.6 PORTREVISION= 1 CATEGORIES= devel deskutils gnome MASTER_SITES= GNOME MAINTAINER= kwm@FreeBSD.org COMMENT= GTK-based git repository viewer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \ libgee-0.8.so:devel/libgee \ libgit2-glib-1.0.so:devel/libgit2-glib \ libpeas-1.0.so:devel/libpeas \ libgtkspell3-3.so:textproc/gtkspell3 \ libsecret-1.so:security/libsecret BUILD_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas \ valac:lang/vala RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas CONFLICTS= gitg0-[0-9]* PORTSCOUT= limitw:1,even USES= compiler:c11 desktop-file-utils gmake libtool pathfix pkgconfig tar:xz GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-maintainer-mode \ --enable-compile-warnings=no USE_GNOME= glib20 gtk30 gtksourceview3 intlhack introspection INSTALL_TARGET= install-strip INSTALLS_ICONS= yes GLIB_SCHEMAS= org.gnome.gitg.gschema.xml CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= DEBUG NLS PYTHON OPTIONS_SUB= yes DEBUG_CONFIGURE_ENABLE= debug NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls PYTHON_USES= python:3 PYTHON_CONFIGURE_ENABLE= python PYTHON_USE= GNOME=py3gobject3 -PYTHON_PLIST_SUB= PYTHON_SUFFIX=${PYTHON_SUFFIX} -.include - -.if defined(PYTHON_REL) -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} - post-patch: @${REINPLACE_CMD} -e 's|0.24.0|0.25.0|g' \ ${WRKSRC}/configure -.include +.include Index: head/devel/gitg/pkg-plist =================================================================== --- head/devel/gitg/pkg-plist (revision 430838) +++ head/devel/gitg/pkg-plist (revision 430839) @@ -1,77 +1,77 @@ bin/gitg include/libgitg-1.0/libgitg/libgitg.h include/libgitg-ext-1.0/libgitg-ext/libgitg-ext.h lib/girepository-1.0/Gitg-1.0.typelib lib/girepository-1.0/GitgExt-1.0.typelib lib/gitg/plugins/diff.plugin lib/gitg/plugins/files.plugin lib/gitg/plugins/libdiff.so lib/gitg/plugins/libfiles.so lib/libgitg-1.0.so lib/libgitg-1.0.so.0 lib/libgitg-1.0.so.0.0.0 lib/libgitg-ext-1.0.so lib/libgitg-ext-1.0.so.0 lib/libgitg-ext-1.0.so.0.0.0 %%PYTHON%%%%PYTHON_SITELIBDIR%%/gi/overrides/GitgExt.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GitgExt.cpython-%%PYTHON_SUFFIX%%.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GitgExt.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON%%%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GitgExt.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% libdata/pkgconfig/libgitg-1.0.pc libdata/pkgconfig/libgitg-ext-1.0.pc man/man1/gitg.1.gz share/appdata/gitg.appdata.xml share/applications/gitg.desktop share/gir-1.0/Gitg-1.0.gir share/gir-1.0/GitgExt-1.0.gir %%DATADIR%%/icons/hicolor/scalable/actions/diff-symbolic.svg share/icons/hicolor/16x16/apps/gitg.png share/icons/hicolor/22x22/apps/gitg.png share/icons/hicolor/24x24/apps/gitg.png share/icons/hicolor/256x256/apps/gitg.png share/icons/hicolor/32x32/apps/gitg.png share/icons/hicolor/48x48/apps/gitg.png share/icons/hicolor/scalable/apps/gitg-symbolic.svg %%NLS%%share/locale/as/LC_MESSAGES/gitg.mo %%NLS%%share/locale/bs/LC_MESSAGES/gitg.mo %%NLS%%share/locale/ca/LC_MESSAGES/gitg.mo %%NLS%%share/locale/ca@valencia/LC_MESSAGES/gitg.mo %%NLS%%share/locale/cs/LC_MESSAGES/gitg.mo %%NLS%%share/locale/da/LC_MESSAGES/gitg.mo %%NLS%%share/locale/de/LC_MESSAGES/gitg.mo %%NLS%%share/locale/el/LC_MESSAGES/gitg.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/gitg.mo %%NLS%%share/locale/eo/LC_MESSAGES/gitg.mo %%NLS%%share/locale/es/LC_MESSAGES/gitg.mo %%NLS%%share/locale/eu/LC_MESSAGES/gitg.mo %%NLS%%share/locale/fi/LC_MESSAGES/gitg.mo %%NLS%%share/locale/fr/LC_MESSAGES/gitg.mo %%NLS%%share/locale/gl/LC_MESSAGES/gitg.mo %%NLS%%share/locale/he/LC_MESSAGES/gitg.mo %%NLS%%share/locale/hu/LC_MESSAGES/gitg.mo %%NLS%%share/locale/id/LC_MESSAGES/gitg.mo %%NLS%%share/locale/it/LC_MESSAGES/gitg.mo %%NLS%%share/locale/ja/LC_MESSAGES/gitg.mo %%NLS%%share/locale/ko/LC_MESSAGES/gitg.mo %%NLS%%share/locale/lt/LC_MESSAGES/gitg.mo %%NLS%%share/locale/lv/LC_MESSAGES/gitg.mo %%NLS%%share/locale/nb/LC_MESSAGES/gitg.mo %%NLS%%share/locale/nl/LC_MESSAGES/gitg.mo %%NLS%%share/locale/oc/LC_MESSAGES/gitg.mo %%NLS%%share/locale/pa/LC_MESSAGES/gitg.mo %%NLS%%share/locale/pl/LC_MESSAGES/gitg.mo %%NLS%%share/locale/pt/LC_MESSAGES/gitg.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/gitg.mo %%NLS%%share/locale/ro/LC_MESSAGES/gitg.mo %%NLS%%share/locale/ru/LC_MESSAGES/gitg.mo %%NLS%%share/locale/sk/LC_MESSAGES/gitg.mo %%NLS%%share/locale/sl/LC_MESSAGES/gitg.mo %%NLS%%share/locale/sr/LC_MESSAGES/gitg.mo %%NLS%%share/locale/sr@latin/LC_MESSAGES/gitg.mo %%NLS%%share/locale/sv/LC_MESSAGES/gitg.mo %%NLS%%share/locale/tr/LC_MESSAGES/gitg.mo %%NLS%%share/locale/uk/LC_MESSAGES/gitg.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/gitg.mo %%NLS%%share/locale/zh_HK/LC_MESSAGES/gitg.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/gitg.mo share/vala/vapi/libgitg-1.0.vapi share/vala/vapi/libgitg-ext-1.0.vapi Index: head/devel/py3-gobject3/pkg-plist =================================================================== --- head/devel/py3-gobject3/pkg-plist (revision 430838) +++ head/devel/py3-gobject3/pkg-plist (revision 430839) @@ -1,78 +1,78 @@ %%PYTHON_SITELIBDIR%%/gi/__init__.py -%%PYTHON_SITELIBDIR%%/gi/__pycache__/__init__.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/__init__.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_error.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_error.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_constants.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_constants.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_option.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_option.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_propertyhelper.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_propertyhelper.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_signalhelper.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/_signalhelper.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/docstring.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/docstring.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/importer.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/importer.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/module.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/module.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/pygtkcompat.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/pygtkcompat.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/__pycache__/types.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/__pycache__/types.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_error.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_error.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_constants.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_constants.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_option.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_option.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_propertyhelper.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_propertyhelper.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_signalhelper.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/_signalhelper.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/docstring.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/docstring.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/importer.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/importer.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/module.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/module.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/pygtkcompat.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/pygtkcompat.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/__pycache__/types.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/__pycache__/types.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gi/_constants.py %%PYTHON_SITELIBDIR%%/gi/_error.py %%PYTHON_SITELIBDIR%%/gi/_gi.so %%PYTHON_SITELIBDIR%%/gi/_gi_cairo.so %%PYTHON_SITELIBDIR%%/gi/_gobject/__init__.py -%%PYTHON_SITELIBDIR%%/gi/_gobject/__pycache__/__init__.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/_gobject/__pycache__/__init__.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/_gobject/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/_gobject/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gi/_option.py %%PYTHON_SITELIBDIR%%/gi/_propertyhelper.py %%PYTHON_SITELIBDIR%%/gi/_signalhelper.py %%PYTHON_SITELIBDIR%%/gi/docstring.py %%PYTHON_SITELIBDIR%%/gi/importer.py %%PYTHON_SITELIBDIR%%/gi/module.py %%PYTHON_SITELIBDIR%%/gi/overrides/GIMarshallingTests.py %%PYTHON_SITELIBDIR%%/gi/overrides/GLib.py %%PYTHON_SITELIBDIR%%/gi/overrides/GObject.py %%PYTHON_SITELIBDIR%%/gi/overrides/Gdk.py %%PYTHON_SITELIBDIR%%/gi/overrides/Gio.py %%PYTHON_SITELIBDIR%%/gi/overrides/Gtk.py %%PYTHON_SITELIBDIR%%/gi/overrides/Pango.py %%PYTHON_SITELIBDIR%%/gi/overrides/__init__.py -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GIMarshallingTests.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GIMarshallingTests.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GLib.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GLib.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GObject.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GObject.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gdk.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gdk.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gio.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gio.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gtk.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gtk.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Pango.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Pango.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/__init__.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/__init__.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/keysyms.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/keysyms.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GIMarshallingTests.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GIMarshallingTests.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GLib.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GLib.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GObject.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GObject.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gdk.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gdk.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gio.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gio.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gtk.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gtk.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Pango.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Pango.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/keysyms.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/keysyms.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gi/overrides/keysyms.py %%PYTHON_SITELIBDIR%%/gi/pygtkcompat.py %%PYTHON_SITELIBDIR%%/gi/repository/__init__.py -%%PYTHON_SITELIBDIR%%/gi/repository/__pycache__/__init__.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/repository/__pycache__/__init__.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/repository/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/repository/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gi/types.py %%PYTHON_SITELIBDIR%%/pygobject-%%VERSION%%-py%%PYTHON_VER%%-%%OPSYS%%-%%UNAME_R%%-%%UNAME_M%%.egg-info %%PYTHON_SITELIBDIR%%/pygtkcompat/__init__.py -%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/__init__.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/__init__.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/generictreemodel.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/generictreemodel.cpython-%%PYTVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/pygtkcompat.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/pygtkcompat.cpython-%%PYTVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/generictreemodel.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/generictreemodel.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/pygtkcompat.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/pygtkcompat/__pycache__/pygtkcompat.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/pygtkcompat/generictreemodel.py %%PYTHON_SITELIBDIR%%/pygtkcompat/pygtkcompat.py Index: head/devel/pygobject3-common/Makefile =================================================================== --- head/devel/pygobject3-common/Makefile (revision 430838) +++ head/devel/pygobject3-common/Makefile (revision 430839) @@ -1,88 +1,80 @@ # Created by: Gustau Perez i Querol # $FreeBSD$ PORTNAME= gobject PORTVERSION= 3.18.2 PORTREVISION= 0 CATEGORIES= devel python MASTER_SITES= GNOME/sources/pygobject/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMEPREFIX?= py PKGNAMESUFFIX?= 3-common DISTNAME= pygobject-${PORTVERSION} DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Common files for the Python bindings for GObject LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING SLAVE_PORT?= no USES= gmake libtool pathfix pkgconfig tar:xz GNU_CONFIGURE= yes INSTALL_TARGET= install-strip # this port doesn't work with py-gobject < 2.28.6_2, clungle below CONFLICTS= py*-gtk-0* py*-gobject-2.*.[0-6] py*-gobject-2.*.[7-9] \ py*-gobject-2.*.6_1 PLIST_SUB= ARCH=${ARCH} UNAME_R=${UNAME_R} VERSION=${PORTVERSION} \ OPSYS=${OPSYS:tl} UNAME_M=${UNAME_M} # Override PYTHON_VERSION from DEPENDS_ARGS MAKE_ARGS= PYTHON_VERSION=${PYTHON_VER} .if ${SLAVE_PORT} == no PORTSCOUT?= limitw:1,even BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/pycairo.pc:graphics/py-cairo USES+= gnome python:build USE_GNOME= glib20:build introspection:build NO_BUILD= yes do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/include/pygobject-3.0/ ${INSTALL_DATA} ${WRKSRC}/gi/pygobject.h \ ${STAGEDIR}${PREFIX}/include/pygobject-3.0/pygobject.h ${INSTALL_DATA} ${WRKSRC}/pygobject-3.0.pc \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/pygobject-3.0.pc .else PORTSCOUT= ignore:1 USES+= gnome USE_GNOME+= glib20 introspection LIB_DEPENDS+= libffi.so:devel/libffi RUN_DEPENDS+= pygobject3-common>=0:devel/pygobject3-common .if ${SLAVE_PORT} == python2 USES+= python:2 BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/pycairo.pc:graphics/py-cairo RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/pycairo.pc:graphics/py-cairo .endif .if ${SLAVE_PORT} == python3 USES+= python:3 BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/py3cairo.pc:graphics/py3-cairo RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/py3cairo.pc:graphics/py3-cairo -PLIST_SUB+= PYTVER=${PYTHON_VER:S/.//} .endif post-install: @${RM} -r ${STAGEDIR}${PREFIX}/include/pygobject-3.0 \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/pygobject-3.0.pc .endif .include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} UNAME_R!= ${UNAME} -r UNAME_M!= ${UNAME} -m .include Index: head/dns/bundy/Makefile =================================================================== --- head/dns/bundy/Makefile (revision 430838) +++ head/dns/bundy/Makefile (revision 430839) @@ -1,64 +1,52 @@ # Created by: Jeremy C. Reed # $FreeBSD$ PORTNAME= bundy PORTVERSION= 0.20160125 PORTREVISION= 7 CATEGORIES= dns MASTER_SITES= LOCAL/mat/bundy SF/boost/boost/1.55.0:boost DISTFILES+= boost_1_55_0.tar.bz2:boost MAINTAINER= mat@FreeBSD.org COMMENT= Bundy DNS server suite LICENSE= ISC LICENSE_GROUPS= FSF GPL OSI LICENSE_NAME= ISC License LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BUILD_DEPENDS= ${LOCALBASE}/include/log4cplus/logger.h:devel/log4cplus \ sqlite3>=3.3.9:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/${PYTHON_PKGNAMEPREFIX}sqlite3 LIB_DEPENDS= libbotan-1.10.so:security/botan110 \ liblog4cplus.so:devel/log4cplus \ libgmp.so:math/gmp \ libsqlite3.so:databases/sqlite3 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/${PYTHON_PKGNAMEPREFIX}sqlite3 USE_GITHUB= yes GH_ACCOUNT= bundy-dns GH_TAGNAME= d310c5d USE_OPENSSL= yes USES= compiler:c++11-lang pathfix pkgconfig libtool python:3 autoreconf USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ --without-werror \ --enable-install-configurations INSTALL_TARGET= install-strip CPPFLAGS+= -I${WRKDIR}/boost_1_55_0 OPTIONS_DEFINE= DOCS -PLIST_SUB= PYTHON_SUFFIX=cpython-${PYTHON_SUFFIX} - post-install: ${MV} ${STAGEDIR}${ETCDIR}/cmdctl-certfile.pem ${STAGEDIR}${ETCDIR}/cmdctl-certfile.pem.sample ${MV} ${STAGEDIR}${ETCDIR}/cmdctl-keyfile.pem ${STAGEDIR}${ETCDIR}/cmdctl-keyfile.pem.sample -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} - -.include +.include Index: head/dns/bundy/pkg-plist =================================================================== --- head/dns/bundy/pkg-plist (revision 430838) +++ head/dns/bundy/pkg-plist (revision 430839) @@ -1,825 +1,825 @@ bin/bundy-certgen bin/bundy-dbutil bin/bundy-loadzone bin/bundy-sysinfo bin/bundyctl bin/perfdhcp @sample %%ETCDIR%%/cmdctl-certfile.pem.sample @sample %%ETCDIR%%/cmdctl-keyfile.pem.sample include/bundy/asio/LICENSE_1_0.txt include/bundy/asio/README include/bundy/asio/basic_datagram_socket.hpp include/bundy/asio/basic_deadline_timer.hpp include/bundy/asio/basic_io_object.hpp include/bundy/asio/basic_raw_socket.hpp include/bundy/asio/basic_serial_port.hpp include/bundy/asio/basic_socket.hpp include/bundy/asio/basic_socket_acceptor.hpp include/bundy/asio/basic_socket_iostream.hpp include/bundy/asio/basic_socket_streambuf.hpp include/bundy/asio/basic_stream_socket.hpp include/bundy/asio/basic_streambuf.hpp include/bundy/asio/basic_streambuf_fwd.hpp include/bundy/asio/buffer.hpp include/bundy/asio/buffered_read_stream.hpp include/bundy/asio/buffered_read_stream_fwd.hpp include/bundy/asio/buffered_stream.hpp include/bundy/asio/buffered_stream_fwd.hpp include/bundy/asio/buffered_write_stream.hpp include/bundy/asio/buffered_write_stream_fwd.hpp include/bundy/asio/buffers_iterator.hpp include/bundy/asio/completion_condition.hpp include/bundy/asio/datagram_socket_service.hpp include/bundy/asio/deadline_timer.hpp include/bundy/asio/deadline_timer_service.hpp include/bundy/asio/detail/array_fwd.hpp include/bundy/asio/detail/base_from_completion_cond.hpp include/bundy/asio/detail/bind_handler.hpp include/bundy/asio/detail/buffer_resize_guard.hpp include/bundy/asio/detail/buffer_sequence_adapter.hpp include/bundy/asio/detail/buffered_stream_storage.hpp include/bundy/asio/detail/call_stack.hpp include/bundy/asio/detail/completion_handler.hpp include/bundy/asio/detail/config.hpp include/bundy/asio/detail/consuming_buffers.hpp include/bundy/asio/detail/deadline_timer_service.hpp include/bundy/asio/detail/descriptor_ops.hpp include/bundy/asio/detail/descriptor_read_op.hpp include/bundy/asio/detail/descriptor_write_op.hpp include/bundy/asio/detail/dev_poll_reactor.hpp include/bundy/asio/detail/dev_poll_reactor_fwd.hpp include/bundy/asio/detail/epoll_reactor.hpp include/bundy/asio/detail/epoll_reactor_fwd.hpp include/bundy/asio/detail/event.hpp include/bundy/asio/detail/eventfd_select_interrupter.hpp include/bundy/asio/detail/fd_set_adapter.hpp include/bundy/asio/detail/fenced_block.hpp include/bundy/asio/detail/gcc_arm_fenced_block.hpp include/bundy/asio/detail/gcc_fenced_block.hpp include/bundy/asio/detail/gcc_hppa_fenced_block.hpp include/bundy/asio/detail/gcc_sync_fenced_block.hpp include/bundy/asio/detail/gcc_x86_fenced_block.hpp include/bundy/asio/detail/handler_alloc_helpers.hpp include/bundy/asio/detail/handler_invoke_helpers.hpp include/bundy/asio/detail/hash_map.hpp include/bundy/asio/detail/impl/descriptor_ops.ipp include/bundy/asio/detail/impl/dev_poll_reactor.hpp include/bundy/asio/detail/impl/dev_poll_reactor.ipp include/bundy/asio/detail/impl/epoll_reactor.hpp include/bundy/asio/detail/impl/epoll_reactor.ipp include/bundy/asio/detail/impl/eventfd_select_interrupter.ipp include/bundy/asio/detail/impl/kqueue_reactor.hpp include/bundy/asio/detail/impl/kqueue_reactor.ipp include/bundy/asio/detail/impl/pipe_select_interrupter.ipp include/bundy/asio/detail/impl/posix_event.ipp include/bundy/asio/detail/impl/posix_mutex.ipp include/bundy/asio/detail/impl/posix_thread.ipp include/bundy/asio/detail/impl/posix_tss_ptr.ipp include/bundy/asio/detail/impl/reactive_descriptor_service.ipp include/bundy/asio/detail/impl/reactive_serial_port_service.ipp include/bundy/asio/detail/impl/reactive_socket_service_base.ipp include/bundy/asio/detail/impl/resolver_service_base.ipp include/bundy/asio/detail/impl/select_reactor.hpp include/bundy/asio/detail/impl/select_reactor.ipp include/bundy/asio/detail/impl/service_registry.hpp include/bundy/asio/detail/impl/service_registry.ipp include/bundy/asio/detail/impl/socket_ops.ipp include/bundy/asio/detail/impl/socket_select_interrupter.ipp include/bundy/asio/detail/impl/strand_service.hpp include/bundy/asio/detail/impl/strand_service.ipp include/bundy/asio/detail/impl/task_io_service.hpp include/bundy/asio/detail/impl/task_io_service.ipp include/bundy/asio/detail/impl/throw_error.ipp include/bundy/asio/detail/impl/timer_queue.ipp include/bundy/asio/detail/impl/timer_queue_set.ipp include/bundy/asio/detail/impl/win_event.ipp include/bundy/asio/detail/impl/win_iocp_handle_service.ipp include/bundy/asio/detail/impl/win_iocp_io_service.hpp include/bundy/asio/detail/impl/win_iocp_io_service.ipp include/bundy/asio/detail/impl/win_iocp_serial_port_service.ipp include/bundy/asio/detail/impl/win_iocp_socket_service_base.ipp include/bundy/asio/detail/impl/win_mutex.ipp include/bundy/asio/detail/impl/win_thread.ipp include/bundy/asio/detail/impl/win_tss_ptr.ipp include/bundy/asio/detail/impl/winsock_init.ipp include/bundy/asio/detail/io_control.hpp include/bundy/asio/detail/kqueue_reactor.hpp include/bundy/asio/detail/kqueue_reactor_fwd.hpp include/bundy/asio/detail/local_free_on_block_exit.hpp include/bundy/asio/detail/macos_fenced_block.hpp include/bundy/asio/detail/mutex.hpp include/bundy/asio/detail/noncopyable.hpp include/bundy/asio/detail/null_buffers_op.hpp include/bundy/asio/detail/null_event.hpp include/bundy/asio/detail/null_fenced_block.hpp include/bundy/asio/detail/null_mutex.hpp include/bundy/asio/detail/null_signal_blocker.hpp include/bundy/asio/detail/null_thread.hpp include/bundy/asio/detail/null_tss_ptr.hpp include/bundy/asio/detail/object_pool.hpp include/bundy/asio/detail/old_win_sdk_compat.hpp include/bundy/asio/detail/op_queue.hpp include/bundy/asio/detail/operation.hpp include/bundy/asio/detail/pipe_select_interrupter.hpp include/bundy/asio/detail/pop_options.hpp include/bundy/asio/detail/posix_event.hpp include/bundy/asio/detail/posix_fd_set_adapter.hpp include/bundy/asio/detail/posix_mutex.hpp include/bundy/asio/detail/posix_signal_blocker.hpp include/bundy/asio/detail/posix_thread.hpp include/bundy/asio/detail/posix_tss_ptr.hpp include/bundy/asio/detail/push_options.hpp include/bundy/asio/detail/reactive_descriptor_service.hpp include/bundy/asio/detail/reactive_null_buffers_op.hpp include/bundy/asio/detail/reactive_serial_port_service.hpp include/bundy/asio/detail/reactive_socket_accept_op.hpp include/bundy/asio/detail/reactive_socket_connect_op.hpp include/bundy/asio/detail/reactive_socket_recv_op.hpp include/bundy/asio/detail/reactive_socket_recvfrom_op.hpp include/bundy/asio/detail/reactive_socket_send_op.hpp include/bundy/asio/detail/reactive_socket_sendto_op.hpp include/bundy/asio/detail/reactive_socket_service.hpp include/bundy/asio/detail/reactive_socket_service_base.hpp include/bundy/asio/detail/reactor.hpp include/bundy/asio/detail/reactor_fwd.hpp include/bundy/asio/detail/reactor_op.hpp include/bundy/asio/detail/reactor_op_queue.hpp include/bundy/asio/detail/regex_fwd.hpp include/bundy/asio/detail/resolve_endpoint_op.hpp include/bundy/asio/detail/resolve_op.hpp include/bundy/asio/detail/resolver_service.hpp include/bundy/asio/detail/resolver_service_base.hpp include/bundy/asio/detail/scoped_lock.hpp include/bundy/asio/detail/select_interrupter.hpp include/bundy/asio/detail/select_reactor.hpp include/bundy/asio/detail/select_reactor_fwd.hpp include/bundy/asio/detail/service_base.hpp include/bundy/asio/detail/service_id.hpp include/bundy/asio/detail/service_registry.hpp include/bundy/asio/detail/service_registry_fwd.hpp include/bundy/asio/detail/shared_ptr.hpp include/bundy/asio/detail/signal_blocker.hpp include/bundy/asio/detail/signal_init.hpp include/bundy/asio/detail/socket_holder.hpp include/bundy/asio/detail/socket_ops.hpp include/bundy/asio/detail/socket_option.hpp include/bundy/asio/detail/socket_select_interrupter.hpp include/bundy/asio/detail/socket_types.hpp include/bundy/asio/detail/solaris_fenced_block.hpp include/bundy/asio/detail/strand_service.hpp include/bundy/asio/detail/task_io_service.hpp include/bundy/asio/detail/task_io_service_fwd.hpp include/bundy/asio/detail/task_io_service_operation.hpp include/bundy/asio/detail/thread.hpp include/bundy/asio/detail/throw_error.hpp include/bundy/asio/detail/timer_op.hpp include/bundy/asio/detail/timer_queue.hpp include/bundy/asio/detail/timer_queue_base.hpp include/bundy/asio/detail/timer_queue_fwd.hpp include/bundy/asio/detail/timer_queue_set.hpp include/bundy/asio/detail/timer_scheduler.hpp include/bundy/asio/detail/timer_scheduler_fwd.hpp include/bundy/asio/detail/tss_ptr.hpp include/bundy/asio/detail/wait_handler.hpp include/bundy/asio/detail/weak_ptr.hpp include/bundy/asio/detail/win_event.hpp include/bundy/asio/detail/win_fd_set_adapter.hpp include/bundy/asio/detail/win_fenced_block.hpp include/bundy/asio/detail/win_iocp_handle_read_op.hpp include/bundy/asio/detail/win_iocp_handle_service.hpp include/bundy/asio/detail/win_iocp_handle_write_op.hpp include/bundy/asio/detail/win_iocp_io_service.hpp include/bundy/asio/detail/win_iocp_io_service_fwd.hpp include/bundy/asio/detail/win_iocp_null_buffers_op.hpp include/bundy/asio/detail/win_iocp_operation.hpp include/bundy/asio/detail/win_iocp_overlapped_op.hpp include/bundy/asio/detail/win_iocp_overlapped_ptr.hpp include/bundy/asio/detail/win_iocp_serial_port_service.hpp include/bundy/asio/detail/win_iocp_socket_accept_op.hpp include/bundy/asio/detail/win_iocp_socket_recv_op.hpp include/bundy/asio/detail/win_iocp_socket_recvfrom_op.hpp include/bundy/asio/detail/win_iocp_socket_send_op.hpp include/bundy/asio/detail/win_iocp_socket_service.hpp include/bundy/asio/detail/win_iocp_socket_service_base.hpp include/bundy/asio/detail/win_mutex.hpp include/bundy/asio/detail/win_signal_blocker.hpp include/bundy/asio/detail/win_thread.hpp include/bundy/asio/detail/win_tss_ptr.hpp include/bundy/asio/detail/wince_thread.hpp include/bundy/asio/detail/winsock_init.hpp include/bundy/asio/detail/wrapped_handler.hpp include/bundy/asio/error.hpp include/bundy/asio/error_code.hpp include/bundy/asio/handler_alloc_hook.hpp include/bundy/asio/handler_invoke_hook.hpp include/bundy/asio/impl/error.ipp include/bundy/asio/impl/error_code.ipp include/bundy/asio/impl/io_service.hpp include/bundy/asio/impl/io_service.ipp include/bundy/asio/impl/read.hpp include/bundy/asio/impl/read.ipp include/bundy/asio/impl/read_at.hpp include/bundy/asio/impl/read_at.ipp include/bundy/asio/impl/read_until.hpp include/bundy/asio/impl/read_until.ipp include/bundy/asio/impl/serial_port_base.hpp include/bundy/asio/impl/serial_port_base.ipp include/bundy/asio/impl/src.cpp include/bundy/asio/impl/src.hpp include/bundy/asio/impl/write.hpp include/bundy/asio/impl/write.ipp include/bundy/asio/impl/write_at.hpp include/bundy/asio/impl/write_at.ipp include/bundy/asio/io_service.hpp include/bundy/asio/ip/address.hpp include/bundy/asio/ip/address_v4.hpp include/bundy/asio/ip/address_v6.hpp include/bundy/asio/ip/basic_endpoint.hpp include/bundy/asio/ip/basic_resolver.hpp include/bundy/asio/ip/basic_resolver_entry.hpp include/bundy/asio/ip/basic_resolver_iterator.hpp include/bundy/asio/ip/basic_resolver_query.hpp include/bundy/asio/ip/detail/endpoint.hpp include/bundy/asio/ip/detail/impl/endpoint.ipp include/bundy/asio/ip/detail/socket_option.hpp include/bundy/asio/ip/host_name.hpp include/bundy/asio/ip/icmp.hpp include/bundy/asio/ip/impl/address.hpp include/bundy/asio/ip/impl/address.ipp include/bundy/asio/ip/impl/address_v4.hpp include/bundy/asio/ip/impl/address_v4.ipp include/bundy/asio/ip/impl/address_v6.hpp include/bundy/asio/ip/impl/address_v6.ipp include/bundy/asio/ip/impl/basic_endpoint.hpp include/bundy/asio/ip/impl/host_name.ipp include/bundy/asio/ip/multicast.hpp include/bundy/asio/ip/resolver_query_base.hpp include/bundy/asio/ip/resolver_service.hpp include/bundy/asio/ip/tcp.hpp include/bundy/asio/ip/udp.hpp include/bundy/asio/ip/unicast.hpp include/bundy/asio/ip/v6_only.hpp include/bundy/asio/is_read_buffered.hpp include/bundy/asio/is_write_buffered.hpp include/bundy/asio/local/basic_endpoint.hpp include/bundy/asio/local/connect_pair.hpp include/bundy/asio/local/datagram_protocol.hpp include/bundy/asio/local/detail/endpoint.hpp include/bundy/asio/local/detail/impl/endpoint.ipp include/bundy/asio/local/stream_protocol.hpp include/bundy/asio/placeholders.hpp include/bundy/asio/posix/basic_descriptor.hpp include/bundy/asio/posix/basic_stream_descriptor.hpp include/bundy/asio/posix/descriptor_base.hpp include/bundy/asio/posix/stream_descriptor.hpp include/bundy/asio/posix/stream_descriptor_service.hpp include/bundy/asio/raw_socket_service.hpp include/bundy/asio/read.hpp include/bundy/asio/read_at.hpp include/bundy/asio/read_until.hpp include/bundy/asio/serial_port.hpp include/bundy/asio/serial_port_base.hpp include/bundy/asio/serial_port_service.hpp include/bundy/asio/socket_acceptor_service.hpp include/bundy/asio/socket_base.hpp include/bundy/asio/ssl.hpp include/bundy/asio/ssl/basic_context.hpp include/bundy/asio/ssl/context.hpp include/bundy/asio/ssl/context_base.hpp include/bundy/asio/ssl/context_service.hpp include/bundy/asio/ssl/detail/openssl_context_service.hpp include/bundy/asio/ssl/detail/openssl_init.hpp include/bundy/asio/ssl/detail/openssl_operation.hpp include/bundy/asio/ssl/detail/openssl_stream_service.hpp include/bundy/asio/ssl/detail/openssl_types.hpp include/bundy/asio/ssl/stream.hpp include/bundy/asio/ssl/stream_base.hpp include/bundy/asio/ssl/stream_service.hpp include/bundy/asio/strand.hpp include/bundy/asio/stream_socket_service.hpp include/bundy/asio/streambuf.hpp include/bundy/asio/system_error.hpp include/bundy/asio/thread.hpp include/bundy/asio/time_traits.hpp include/bundy/asio/version.hpp include/bundy/asio/windows/basic_handle.hpp include/bundy/asio/windows/basic_random_access_handle.hpp include/bundy/asio/windows/basic_stream_handle.hpp include/bundy/asio/windows/overlapped_ptr.hpp include/bundy/asio/windows/random_access_handle.hpp include/bundy/asio/windows/random_access_handle_service.hpp include/bundy/asio/windows/stream_handle.hpp include/bundy/asio/windows/stream_handle_service.hpp include/bundy/asio/write.hpp include/bundy/asio/write_at.hpp include/bundy/asiolink/io_address.h include/bundy/config.h include/bundy/dhcp/classify.h include/bundy/dhcp/dhcp4.h include/bundy/dhcp/dhcp6.h include/bundy/dhcp/duid.h include/bundy/dhcp/hwaddr.h include/bundy/dhcp/iface_mgr.h include/bundy/dhcp/libdhcp++.h include/bundy/dhcp/option.h include/bundy/dhcp/option4_addrlst.h include/bundy/dhcp/option6_addrlst.h include/bundy/dhcp/option6_ia.h include/bundy/dhcp/option6_iaaddr.h include/bundy/dhcp/option_custom.h include/bundy/dhcp/option_data_types.h include/bundy/dhcp/option_definition.h include/bundy/dhcp/option_int.h include/bundy/dhcp/option_int_array.h include/bundy/dhcp/option_space.h include/bundy/dhcp/option_string.h include/bundy/dhcp/pkt4.h include/bundy/dhcp/pkt6.h include/bundy/dhcp/pkt_filter.h include/bundy/dhcp/pkt_filter_inet.h include/bundy/dhcp/pkt_filter_lpf.h include/bundy/dhcp/protocol_util.h include/bundy/dhcp/std_option_defs.h include/bundy/dns/dns_fwd.h include/bundy/dns/edns.h include/bundy/dns/exceptions.h include/bundy/dns/labelsequence.h include/bundy/dns/master_lexer.h include/bundy/dns/master_loader.h include/bundy/dns/master_loader_callbacks.h include/bundy/dns/masterload.h include/bundy/dns/message.h include/bundy/dns/messagerenderer.h include/bundy/dns/name.h include/bundy/dns/opcode.h include/bundy/dns/question.h include/bundy/dns/rcode.h include/bundy/dns/rdata.h include/bundy/dns/rdataclass.h include/bundy/dns/rrclass.h include/bundy/dns/rrparamregistry.h include/bundy/dns/rrset.h include/bundy/dns/rrset_collection.h include/bundy/dns/rrset_collection_base.h include/bundy/dns/rrttl.h include/bundy/dns/rrtype.h include/bundy/dns/tsigkey.h include/bundy/dns/zone_checker.h include/bundy/exceptions/exceptions.h include/bundy/hooks/callout_handle.h include/bundy/hooks/hooks.h include/bundy/hooks/library_handle.h include/bundy/log/log_formatter.h include/bundy/log/logger.h include/bundy/log/logger_level.h include/bundy/log/macros.h include/bundy/log/message_types.h include/bundy/util/buffer.h include/bundy/util/io_utilities.h lib/libbundy-acl.a lib/libbundy-acl.so lib/libbundy-acl.so.0 lib/libbundy-acl.so.0.0.0 lib/libbundy-asiodns.a lib/libbundy-asiodns.so lib/libbundy-asiodns.so.0 lib/libbundy-asiodns.so.0.0.0 lib/libbundy-asiolink.a lib/libbundy-asiolink.so lib/libbundy-asiolink.so.0 lib/libbundy-asiolink.so.0.1.0 lib/libbundy-auth.a lib/libbundy-auth.so lib/libbundy-auth.so.0 lib/libbundy-auth.so.0.0.0 lib/libbundy-cc.a lib/libbundy-cc.so lib/libbundy-cc.so.0 lib/libbundy-cc.so.0.0.0 lib/libbundy-cfgclient.a lib/libbundy-cfgclient.so lib/libbundy-cfgclient.so.0 lib/libbundy-cfgclient.so.0.1.0 lib/libbundy-cryptolink.a lib/libbundy-cryptolink.so lib/libbundy-cryptolink.so.0 lib/libbundy-cryptolink.so.0.0.0 lib/libbundy-datasrc.a lib/libbundy-datasrc.so lib/libbundy-datasrc.so.0 lib/libbundy-datasrc.so.0.1.0 lib/libbundy-dhcp++.a lib/libbundy-dhcp++.so lib/libbundy-dhcp++.so.2 lib/libbundy-dhcp++.so.2.0.0 lib/libbundy-dhcp_ddns.a lib/libbundy-dhcp_ddns.so lib/libbundy-dhcp_ddns.so.0 lib/libbundy-dhcp_ddns.so.0.0.0 lib/libbundy-dhcpsrv.a lib/libbundy-dhcpsrv.so lib/libbundy-dhcpsrv.so.3 lib/libbundy-dhcpsrv.so.3.0.0 lib/libbundy-dns++.a lib/libbundy-dns++.so lib/libbundy-dns++.so.2 lib/libbundy-dns++.so.2.0.0 lib/libbundy-dnsacl.a lib/libbundy-dnsacl.so lib/libbundy-dnsacl.so.0 lib/libbundy-dnsacl.so.0.0.0 lib/libbundy-exceptions.a lib/libbundy-exceptions.so lib/libbundy-exceptions.so.0 lib/libbundy-exceptions.so.0.0.0 lib/libbundy-hooks.a lib/libbundy-hooks.so lib/libbundy-hooks.so.0 lib/libbundy-hooks.so.0.0.0 lib/libbundy-log.a lib/libbundy-log.so lib/libbundy-log.so.1 lib/libbundy-log.so.1.0.0 lib/libbundy-nsas.a lib/libbundy-nsas.so lib/libbundy-nsas.so.0 lib/libbundy-nsas.so.0.0.0 lib/libbundy-pydnspp.a lib/libbundy-pydnspp.so lib/libbundy-pydnspp.so.0 lib/libbundy-pydnspp.so.0.0.0 lib/libbundy-server-common.a lib/libbundy-server-common.so lib/libbundy-server-common.so.0 lib/libbundy-server-common.so.0.0.0 lib/libbundy-threads.a lib/libbundy-threads.so lib/libbundy-threads.so.0 lib/libbundy-threads.so.0.0.0 lib/libbundy-util-io.a lib/libbundy-util-io.so lib/libbundy-util-io.so.0 lib/libbundy-util-io.so.0.0.0 lib/libbundy-util.a lib/libbundy-util.so lib/libbundy-util.so.0 lib/libbundy-util.so.0.0.0 -%%PYTHON_SITELIBDIR%%/__pycache__/bundy_config.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/__pycache__/bundy_config.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/__pycache__/bundy_config.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/__pycache__/bundy_config.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/acl/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/acl/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/acl/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/acl/__pycache__/dns.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/acl/__pycache__/dns.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/acl/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/acl/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/acl/__pycache__/dns.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/acl/__pycache__/dns.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/acl/_dns.a %%PYTHON_SITELIBDIR%%/bundy/acl/_dns.so %%PYTHON_SITELIBDIR%%/bundy/acl/acl.a %%PYTHON_SITELIBDIR%%/bundy/acl/acl.so %%PYTHON_SITELIBDIR%%/bundy/acl/dns.py %%PYTHON_SITELIBDIR%%/bundy/bundy/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/component.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/component.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/sockcreator.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/sockcreator.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/socket_cache.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/socket_cache.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/special_component.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/special_component.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/component.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/component.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/sockcreator.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/sockcreator.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/socket_cache.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/socket_cache.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/special_component.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/bundy/__pycache__/special_component.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/bundy/component.py %%PYTHON_SITELIBDIR%%/bundy/bundy/sockcreator.py %%PYTHON_SITELIBDIR%%/bundy/bundy/socket_cache.py %%PYTHON_SITELIBDIR%%/bundy/bundy/special_component.py %%PYTHON_SITELIBDIR%%/bundy/cc/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/data.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/data.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/logger.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/logger.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/message.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/message.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/proto_defs.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/proto_defs.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/session.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/session.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/data.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/data.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/message.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/message.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/proto_defs.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/proto_defs.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/session.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/cc/__pycache__/session.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/cc/data.py %%PYTHON_SITELIBDIR%%/bundy/cc/logger.py %%PYTHON_SITELIBDIR%%/bundy/cc/message.py %%PYTHON_SITELIBDIR%%/bundy/cc/proto_defs.py %%PYTHON_SITELIBDIR%%/bundy/cc/session.py %%PYTHON_SITELIBDIR%%/bundy/config/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/ccsession.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/ccsession.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/cfgmgr.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/cfgmgr.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/config_data.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/config_data.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/module_spec.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/module_spec.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/ccsession.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/ccsession.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/cfgmgr.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/cfgmgr.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/config_data.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/config_data.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/module_spec.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/config/__pycache__/module_spec.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/config/ccsession.py %%PYTHON_SITELIBDIR%%/bundy/config/cfgmgr.py %%PYTHON_SITELIBDIR%%/bundy/config/config_data.py %%PYTHON_SITELIBDIR%%/bundy/config/module_spec.py %%PYTHON_SITELIBDIR%%/bundy/datasrc/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/datasrc/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/datasrc/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/datasrc/__pycache__/sqlite3_ds.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/datasrc/__pycache__/sqlite3_ds.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/datasrc/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/datasrc/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/datasrc/__pycache__/sqlite3_ds.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/datasrc/__pycache__/sqlite3_ds.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/datasrc/datasrc.a %%PYTHON_SITELIBDIR%%/bundy/datasrc/datasrc.so %%PYTHON_SITELIBDIR%%/bundy/datasrc/sqlite3_ds.py %%PYTHON_SITELIBDIR%%/bundy/ddns/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/logger.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/logger.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/session.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/session.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/zone_config.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/zone_config.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/session.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/session.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/zone_config.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/ddns/__pycache__/zone_config.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/ddns/logger.py %%PYTHON_SITELIBDIR%%/bundy/ddns/session.py %%PYTHON_SITELIBDIR%%/bundy/ddns/zone_config.py %%PYTHON_SITELIBDIR%%/bundy/dns/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/dns/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/dns/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/dns/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/dns/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/log.a %%PYTHON_SITELIBDIR%%/bundy/log.so %%PYTHON_SITELIBDIR%%/bundy/log_messages/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/cfgmgr_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/cfgmgr_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/cmdctl_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/cmdctl_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/config_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/config_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/dbutil_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/dbutil_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/ddns_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/ddns_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/init_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/init_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libddns_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libddns_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libmemmgr_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libmemmgr_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libxfrin_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libxfrin_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/loadzone_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/loadzone_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/memmgr_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/memmgr_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/msgq_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/msgq_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/notify_out_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/notify_out_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/pycc_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/pycc_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/server_common_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/server_common_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/stats_httpd_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/stats_httpd_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/stats_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/stats_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/util_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/util_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/xfrin_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/xfrin_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/xfrout_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/xfrout_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/zonemgr_messages.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/zonemgr_messages.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/cfgmgr_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/cfgmgr_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/cmdctl_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/cmdctl_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/config_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/config_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/dbutil_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/dbutil_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/ddns_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/ddns_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/init_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/init_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libddns_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libddns_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libmemmgr_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libmemmgr_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libxfrin_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/libxfrin_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/loadzone_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/loadzone_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/memmgr_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/memmgr_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/msgq_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/msgq_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/notify_out_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/notify_out_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/pycc_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/pycc_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/server_common_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/server_common_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/stats_httpd_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/stats_httpd_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/stats_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/stats_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/util_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/util_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/xfrin_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/xfrin_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/xfrout_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/xfrout_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/zonemgr_messages.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/log_messages/__pycache__/zonemgr_messages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/log_messages/cfgmgr_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/cmdctl_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/config_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/dbutil_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/ddns_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/init_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/libddns_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/libmemmgr_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/libxfrin_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/loadzone_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/memmgr_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/msgq_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/notify_out_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/pycc_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/server_common_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/stats_httpd_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/stats_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/util_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/xfrin_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/xfrout_messages.py %%PYTHON_SITELIBDIR%%/bundy/log_messages/zonemgr_messages.py %%PYTHON_SITELIBDIR%%/bundy/memmgr/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/builder.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/builder.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/datasrc_info.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/datasrc_info.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/logger.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/logger.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/builder.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/builder.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/datasrc_info.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/datasrc_info.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/memmgr/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/memmgr/builder.py %%PYTHON_SITELIBDIR%%/bundy/memmgr/datasrc_info.py %%PYTHON_SITELIBDIR%%/bundy/memmgr/logger.py %%PYTHON_SITELIBDIR%%/bundy/net/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/addr.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/addr.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/parse.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/parse.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/addr.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/addr.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/parse.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/net/__pycache__/parse.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/net/addr.py %%PYTHON_SITELIBDIR%%/bundy/net/parse.py %%PYTHON_SITELIBDIR%%/bundy/notify/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/notify/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/notify/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/notify/__pycache__/notify_out.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/notify/__pycache__/notify_out.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/notify/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/notify/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/notify/__pycache__/notify_out.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/notify/__pycache__/notify_out.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/notify/notify_out.py %%PYTHON_SITELIBDIR%%/bundy/server_common/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/auth_command.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/auth_command.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/bundy_server.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/bundy_server.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/datasrc_clients_mgr.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/datasrc_clients_mgr.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/dns_tcp.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/dns_tcp.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/logger.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/logger.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/tsig_keyring.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/tsig_keyring.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/auth_command.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/auth_command.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/bundy_server.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/bundy_server.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/datasrc_clients_mgr.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/datasrc_clients_mgr.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/dns_tcp.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/dns_tcp.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/logger.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/tsig_keyring.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/server_common/__pycache__/tsig_keyring.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/server_common/auth_command.py %%PYTHON_SITELIBDIR%%/bundy/server_common/bundy_server.py %%PYTHON_SITELIBDIR%%/bundy/server_common/datasrc_clients_mgr.py %%PYTHON_SITELIBDIR%%/bundy/server_common/dns_tcp.py %%PYTHON_SITELIBDIR%%/bundy/server_common/logger.py %%PYTHON_SITELIBDIR%%/bundy/server_common/tsig_keyring.py %%PYTHON_SITELIBDIR%%/bundy/statistics/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/counters.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/counters.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/dns.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/dns.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/counters.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/counters.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/dns.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/statistics/__pycache__/dns.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/statistics/counters.py %%PYTHON_SITELIBDIR%%/bundy/statistics/dns.py %%PYTHON_SITELIBDIR%%/bundy/sysinfo/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/sysinfo/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/sysinfo/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/sysinfo/__pycache__/sysinfo.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/sysinfo/__pycache__/sysinfo.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/sysinfo/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/sysinfo/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/sysinfo/__pycache__/sysinfo.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/sysinfo/__pycache__/sysinfo.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/sysinfo/sysinfo.py %%PYTHON_SITELIBDIR%%/bundy/util/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/address_formatter.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/address_formatter.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/file.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/file.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/process.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/process.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/socketserver_mixin.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/socketserver_mixin.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/traceback_handler.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/traceback_handler.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/address_formatter.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/address_formatter.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/file.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/file.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/process.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/process.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/socketserver_mixin.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/socketserver_mixin.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/traceback_handler.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/util/__pycache__/traceback_handler.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/util/address_formatter.py %%PYTHON_SITELIBDIR%%/bundy/util/cio/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/util/cio/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/util/cio/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/util/cio/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/util/cio/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/util/cio/socketsession.a %%PYTHON_SITELIBDIR%%/bundy/util/cio/socketsession.so %%PYTHON_SITELIBDIR%%/bundy/util/file.py %%PYTHON_SITELIBDIR%%/bundy/util/process.py %%PYTHON_SITELIBDIR%%/bundy/util/socketserver_mixin.py %%PYTHON_SITELIBDIR%%/bundy/util/traceback_handler.py %%PYTHON_SITELIBDIR%%/bundy/xfrin/__init__.py -%%PYTHON_SITELIBDIR%%/bundy/xfrin/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/xfrin/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundy/xfrin/__pycache__/diff.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundy/xfrin/__pycache__/diff.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/xfrin/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/xfrin/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundy/xfrin/__pycache__/diff.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundy/xfrin/__pycache__/diff.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundy/xfrin/diff.py %%PYTHON_SITELIBDIR%%/bundy_config.py %%PYTHON_SITELIBDIR%%/bundyctl/__init__.py -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/__init__.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/__init__.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/bindcmd.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/bindcmd.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/cmdparse.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/cmdparse.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/command_sets.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/command_sets.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/exception.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/exception.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/moduleinfo.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/moduleinfo.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/mycollections.%%PYTHON_SUFFIX%%.pyc -%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/mycollections.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/bindcmd.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/bindcmd.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/cmdparse.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/cmdparse.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/command_sets.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/command_sets.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/exception.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/exception.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/moduleinfo.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/moduleinfo.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/mycollections.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/bundyctl/__pycache__/mycollections.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/bundyctl/bindcmd.py %%PYTHON_SITELIBDIR%%/bundyctl/cmdparse.py %%PYTHON_SITELIBDIR%%/bundyctl/command_sets.py %%PYTHON_SITELIBDIR%%/bundyctl/exception.py %%PYTHON_SITELIBDIR%%/bundyctl/moduleinfo.py %%PYTHON_SITELIBDIR%%/bundyctl/mycollections.py %%PYTHON_SITELIBDIR%%/libutil_io_python.a %%PYTHON_SITELIBDIR%%/libutil_io_python.so %%PYTHON_SITELIBDIR%%/pydnspp.a %%PYTHON_SITELIBDIR%%/pydnspp.so libdata/pkgconfig/dns++.pc libexec/bundy/backends/sqlite3_ds.a libexec/bundy/backends/sqlite3_ds.so libexec/bundy/bundy-auth libexec/bundy/bundy-cfgmgr libexec/bundy/bundy-cmdctl libexec/bundy/bundy-ddns libexec/bundy/bundy-dhcp-ddns libexec/bundy/bundy-dhcp4 libexec/bundy/bundy-dhcp6 libexec/bundy/bundy-init libexec/bundy/bundy-memmgr libexec/bundy/bundy-msgq libexec/bundy/bundy-sockcreator libexec/bundy/bundy-stats libexec/bundy/bundy-stats-httpd libexec/bundy/bundy-xfrin libexec/bundy/bundy-xfrout libexec/bundy/bundy-zonemgr man/man1/bundy-certgen.1.gz man/man1/bundy-sysinfo.1.gz man/man1/bundyctl.1.gz man/man1/perfdhcp.1.gz man/man8/bundy-auth.8.gz man/man8/bundy-cfgmgr.8.gz man/man8/bundy-cmdctl-usermgr.8.gz man/man8/bundy-cmdctl.8.gz man/man8/bundy-dbutil.8.gz man/man8/bundy-ddns.8.gz man/man8/bundy-dhcp-ddns.8.gz man/man8/bundy-dhcp4.8.gz man/man8/bundy-dhcp6.8.gz man/man8/bundy-init.8.gz man/man8/bundy-loadzone.8.gz man/man8/bundy-memmgr.8.gz man/man8/bundy-msgq.8.gz man/man8/bundy-sockcreator.8.gz man/man8/bundy-stats-httpd.8.gz man/man8/bundy-stats.8.gz man/man8/bundy-xfrin.8.gz man/man8/bundy-xfrout.8.gz man/man8/bundy-zonemgr.8.gz man/man8/bundy.8.gz sbin/bundy sbin/bundy-cmdctl-usermgr %%DATADIR%%/auth.spec %%DATADIR%%/cmdctl.spec -%%DATADIR%%/config_plugins/__pycache__/bundylogging.%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/config_plugins/__pycache__/bundylogging.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%DATADIR%%/config_plugins/__pycache__/datasrc_config_plugin.%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/config_plugins/__pycache__/datasrc_config_plugin.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% -%%DATADIR%%/config_plugins/__pycache__/tsig_keys.%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/config_plugins/__pycache__/tsig_keys.%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/config_plugins/__pycache__/bundylogging.cpython-%%PYTHON_SUFFIX%%.pyc +%%DATADIR%%/config_plugins/__pycache__/bundylogging.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%DATADIR%%/config_plugins/__pycache__/datasrc_config_plugin.cpython-%%PYTHON_SUFFIX%%.pyc +%%DATADIR%%/config_plugins/__pycache__/datasrc_config_plugin.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%DATADIR%%/config_plugins/__pycache__/tsig_keys.cpython-%%PYTHON_SUFFIX%%.pyc +%%DATADIR%%/config_plugins/__pycache__/tsig_keys.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/config_plugins/bundylogging.py %%DATADIR%%/config_plugins/datasrc.spec %%DATADIR%%/config_plugins/datasrc_config_plugin.py %%DATADIR%%/config_plugins/logging.spec %%DATADIR%%/config_plugins/tsig_keys.py %%DATADIR%%/config_plugins/tsig_keys.spec %%DATADIR%%/ddns.spec %%DATADIR%%/dhcp-ddns.spec %%DATADIR%%/dhcp4.spec %%DATADIR%%/dhcp6.spec %%DATADIR%%/dhcpdb_create.mysql %%DATADIR%%/dhcpdb_create.pgsql %%DATADIR%%/init.spec %%DATADIR%%/memmgr.spec %%DATADIR%%/msgq.spec %%DATADIR%%/static.zone %%DATADIR%%/stats-httpd-xml.tpl %%DATADIR%%/stats-httpd-xsd.tpl %%DATADIR%%/stats-httpd-xsl.tpl %%DATADIR%%/stats-httpd.spec %%DATADIR%%/stats.spec %%DATADIR%%/xfrin.spec %%DATADIR%%/xfrout.spec %%DATADIR%%/zonemgr.spec %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/bundy-guide.css %%PORTDOCS%%%%DOCSDIR%%/bundy-guide.html %%PORTDOCS%%%%DOCSDIR%%/bundy-guide.txt %%PORTDOCS%%%%DOCSDIR%%/bundy-messages.html @dir /var/bundy/mapped_files @dir /var/bundy Index: head/editors/gedit/Makefile =================================================================== --- head/editors/gedit/Makefile (revision 430838) +++ head/editors/gedit/Makefile (revision 430839) @@ -1,65 +1,54 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ PORTNAME= gedit PORTVERSION= 3.18.3 CATEGORIES= editors gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Small but powerful text editor for GNOME 3 Desktop Environment BUILD_DEPENDS= iso-codes>=0:misc/iso-codes \ vala:lang/vala \ gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas \ itstool:textproc/itstool LIB_DEPENDS= libenchant.so:textproc/enchant \ libpeas-gtk-1.0.so:devel/libpeas \ libsoup-2.4.so:devel/libsoup RUN_DEPENDS= iso-codes>=0:misc/iso-codes \ gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas \ ${PYTHON_PKGNAMEPREFIX}libpeas>=0:devel/py3-libpeas PORTSCOUT= limitw:1,even USES= desktop-file-utils gettext gmake gnome libtool \ pathfix pkgconfig python:3 tar:xz USE_GNOME= gtksourceview3 intlhack introspection:build \ libxml2 py3gobject3 USE_XORG= sm GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-updater \ --enable-python CPPFLAGS+= -I${LOCALBASE}/include -Wno-error=format-nonliteral CFLAGS+= -I${LOCALBASE}/include -Wno-error=format-nonliteral LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes PLIST_SUB= VERSION="3.14" INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.gedit.enums.xml \ org.gnome.gedit.plugins.externaltools.gschema.xml \ org.gnome.gedit.gschema.xml \ org.gnome.gedit.plugins.filebrowser.enums.xml \ org.gnome.gedit.plugins.filebrowser.gschema.xml \ org.gnome.gedit.plugins.pythonconsole.gschema.xml \ org.gnome.gedit.plugins.time.enums.xml \ org.gnome.gedit.plugins.time.gschema.xml -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \ - PYVER=${PYTHON_VER:S/.//} - post-patch: @${REINPLACE_CMD} -e 's|=python|=${PYTHON_CMD}|g' \ ${WRKSRC}/py-compile -.include +.include Index: head/editors/gedit/pkg-plist =================================================================== --- head/editors/gedit/pkg-plist (revision 430838) +++ head/editors/gedit/pkg-plist (revision 430839) @@ -1,1779 +1,1779 @@ bin/gedit bin/gnome-text-editor include/gedit-%%VERSION%%/gedit/gedit-app-activatable.h include/gedit-%%VERSION%%/gedit/gedit-app.h include/gedit-%%VERSION%%/gedit/gedit-commands.h include/gedit-%%VERSION%%/gedit/gedit-debug.h include/gedit-%%VERSION%%/gedit/gedit-document.h include/gedit-%%VERSION%%/gedit/gedit-encodings-combo-box.h include/gedit-%%VERSION%%/gedit/gedit-menu-extension.h include/gedit-%%VERSION%%/gedit/gedit-message-bus.h include/gedit-%%VERSION%%/gedit/gedit-message.h include/gedit-%%VERSION%%/gedit/gedit-progress-info-bar.h include/gedit-%%VERSION%%/gedit/gedit-statusbar.h include/gedit-%%VERSION%%/gedit/gedit-tab.h include/gedit-%%VERSION%%/gedit/gedit-utils.h include/gedit-%%VERSION%%/gedit/gedit-view-activatable.h include/gedit-%%VERSION%%/gedit/gedit-view.h include/gedit-%%VERSION%%/gedit/gedit-window-activatable.h include/gedit-%%VERSION%%/gedit/gedit-window.h lib/gedit/girepository-1.0/Gedit-3.0.typelib lib/gedit/libgedit.so lib/gedit/plugins/docinfo.plugin lib/gedit/plugins/externaltools.plugin lib/gedit/plugins/externaltools/__init__.py -lib/gedit/plugins/externaltools/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/appactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/appactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/capture.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/capture.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/filelookup.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/filelookup.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/functions.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/functions.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/library.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/library.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/linkparsing.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/linkparsing.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/manager.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/manager.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/outputpanel.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/outputpanel.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/externaltools/__pycache__/windowactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/externaltools/__pycache__/windowactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/capture.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/capture.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/filelookup.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/filelookup.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/functions.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/functions.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/library.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/library.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/linkparsing.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/linkparsing.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/manager.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/manager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/outputpanel.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/outputpanel.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/externaltools/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/externaltools/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/externaltools/appactivatable.py lib/gedit/plugins/externaltools/capture.py lib/gedit/plugins/externaltools/filelookup.py lib/gedit/plugins/externaltools/functions.py lib/gedit/plugins/externaltools/library.py lib/gedit/plugins/externaltools/linkparsing.py lib/gedit/plugins/externaltools/manager.py lib/gedit/plugins/externaltools/outputpanel.py lib/gedit/plugins/externaltools/windowactivatable.py lib/gedit/plugins/filebrowser.plugin lib/gedit/plugins/libdocinfo.so lib/gedit/plugins/libfilebrowser.so lib/gedit/plugins/libmodelines.so lib/gedit/plugins/libsort.so lib/gedit/plugins/libspell.so lib/gedit/plugins/libtime.so lib/gedit/plugins/modelines.plugin lib/gedit/plugins/pythonconsole.plugin lib/gedit/plugins/pythonconsole/__init__.py -lib/gedit/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/pythonconsole/__pycache__/config.cpython-%%PYVER%%.pyc -lib/gedit/plugins/pythonconsole/__pycache__/config.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/pythonconsole/__pycache__/console.cpython-%%PYVER%%.pyc -lib/gedit/plugins/pythonconsole/__pycache__/console.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/pythonconsole/__pycache__/config.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/pythonconsole/__pycache__/config.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/pythonconsole/__pycache__/console.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/pythonconsole/__pycache__/console.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/pythonconsole/config.py lib/gedit/plugins/pythonconsole/console.py lib/gedit/plugins/quickopen.plugin lib/gedit/plugins/quickopen/__init__.py -lib/gedit/plugins/quickopen/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/quickopen/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/quickopen/__pycache__/popup.cpython-%%PYVER%%.pyc -lib/gedit/plugins/quickopen/__pycache__/popup.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/quickopen/__pycache__/virtualdirs.cpython-%%PYVER%%.pyc -lib/gedit/plugins/quickopen/__pycache__/virtualdirs.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/quickopen/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/quickopen/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/quickopen/__pycache__/popup.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/quickopen/__pycache__/popup.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/quickopen/__pycache__/virtualdirs.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/quickopen/__pycache__/virtualdirs.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/quickopen/popup.py lib/gedit/plugins/quickopen/virtualdirs.py lib/gedit/plugins/snippets.plugin lib/gedit/plugins/snippets/__init__.py -lib/gedit/plugins/snippets/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/appactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/appactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/completion.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/completion.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/document.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/document.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/exporter.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/exporter.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/helper.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/helper.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/importer.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/importer.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/languagemanager.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/languagemanager.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/library.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/library.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/manager.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/manager.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/parser.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/parser.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/placeholder.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/placeholder.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/shareddata.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/shareddata.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/signals.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/signals.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/singleton.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/singleton.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/snippet.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/snippet.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/substitutionparser.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/substitutionparser.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/snippets/__pycache__/windowactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/snippets/__pycache__/windowactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/completion.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/completion.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/document.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/document.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/exporter.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/exporter.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/helper.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/helper.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/importer.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/importer.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/languagemanager.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/languagemanager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/library.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/library.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/manager.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/manager.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/parser.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/parser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/placeholder.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/placeholder.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/shareddata.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/shareddata.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/signals.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/signals.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/singleton.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/singleton.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/snippet.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/snippet.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/substitutionparser.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/substitutionparser.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/snippets/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/snippets/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/snippets/appactivatable.py lib/gedit/plugins/snippets/completion.py lib/gedit/plugins/snippets/document.py lib/gedit/plugins/snippets/exporter.py lib/gedit/plugins/snippets/helper.py lib/gedit/plugins/snippets/importer.py lib/gedit/plugins/snippets/languagemanager.py lib/gedit/plugins/snippets/library.py lib/gedit/plugins/snippets/manager.py lib/gedit/plugins/snippets/parser.py lib/gedit/plugins/snippets/placeholder.py lib/gedit/plugins/snippets/shareddata.py lib/gedit/plugins/snippets/signals.py lib/gedit/plugins/snippets/singleton.py lib/gedit/plugins/snippets/snippet.py lib/gedit/plugins/snippets/substitutionparser.py lib/gedit/plugins/snippets/windowactivatable.py lib/gedit/plugins/sort.plugin lib/gedit/plugins/spell.plugin lib/gedit/plugins/time.plugin %%PYTHON_SITELIBDIR%%/gi/overrides/Gedit.py -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gedit.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gedit.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gedit.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gedit.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% libdata/pkgconfig/gedit.pc libexec/gedit/gedit-bugreport.sh man/man1/gedit.1.gz share/GConf/gsettings/gedit.convert share/appdata/org.gnome.gedit.appdata.xml share/applications/org.gnome.gedit.desktop share/dbus-1/services/org.gnome.gedit.service %%DATADIR%%/gir-1.0/Gedit-3.0.gir %%DATADIR%%/logo/gedit-logo.png %%DATADIR%%/plugins/externaltools/tools/build %%DATADIR%%/plugins/externaltools/tools/open-terminal-here %%DATADIR%%/plugins/externaltools/tools/remove-trailing-spaces %%DATADIR%%/plugins/externaltools/tools/run-command %%DATADIR%%/plugins/externaltools/tools/send-to-fpaste %%DATADIR%%/plugins/externaltools/ui/outputpanel.ui %%DATADIR%%/plugins/externaltools/ui/tools.ui %%DATADIR%%/plugins/modelines/language-mappings %%DATADIR%%/plugins/pythonconsole/ui/config.ui %%DATADIR%%/plugins/snippets/c.xml %%DATADIR%%/plugins/snippets/chdr.xml %%DATADIR%%/plugins/snippets/cpp.xml %%DATADIR%%/plugins/snippets/css.xml %%DATADIR%%/plugins/snippets/docbook.xml %%DATADIR%%/plugins/snippets/fortran.xml %%DATADIR%%/plugins/snippets/global.xml %%DATADIR%%/plugins/snippets/haskell.xml %%DATADIR%%/plugins/snippets/html.xml %%DATADIR%%/plugins/snippets/idl.xml %%DATADIR%%/plugins/snippets/java.xml %%DATADIR%%/plugins/snippets/javascript.xml %%DATADIR%%/plugins/snippets/lang/snippets.lang %%DATADIR%%/plugins/snippets/latex.xml %%DATADIR%%/plugins/snippets/mallard.xml %%DATADIR%%/plugins/snippets/markdown.xml %%DATADIR%%/plugins/snippets/perl.xml %%DATADIR%%/plugins/snippets/php.xml %%DATADIR%%/plugins/snippets/python.xml %%DATADIR%%/plugins/snippets/rpmspec.xml %%DATADIR%%/plugins/snippets/ruby.xml %%DATADIR%%/plugins/snippets/sh.xml %%DATADIR%%/plugins/snippets/snippets.xml %%DATADIR%%/plugins/snippets/tcl.xml %%DATADIR%%/plugins/snippets/ui/snippets.ui %%DATADIR%%/plugins/snippets/xml.xml %%DATADIR%%/plugins/snippets/xslt.xml share/gtk-doc/html/gedit/GeditApp.html share/gtk-doc/html/gedit/GeditAppActivatable.html share/gtk-doc/html/gedit/GeditDocument.html share/gtk-doc/html/gedit/GeditEncodingsComboBox.html share/gtk-doc/html/gedit/GeditMessage.html share/gtk-doc/html/gedit/GeditMessageBus.html share/gtk-doc/html/gedit/GeditStatusbar.html share/gtk-doc/html/gedit/GeditViewActivatable.html share/gtk-doc/html/gedit/GeditWindowActivatable.html share/gtk-doc/html/gedit/annotation-glossary.html share/gtk-doc/html/gedit/api-index-3-14.html share/gtk-doc/html/gedit/api-index-deprecated.html share/gtk-doc/html/gedit/api-index-full.html share/gtk-doc/html/gedit/ch01.html share/gtk-doc/html/gedit/gedit-GeditCommands.html share/gtk-doc/html/gedit/gedit-gedit-debug.html share/gtk-doc/html/gedit/gedit-gedit-menu-extension.html share/gtk-doc/html/gedit/gedit-gedit-progress-info-bar.html share/gtk-doc/html/gedit/gedit-gedit-tab.html share/gtk-doc/html/gedit/gedit-gedit-utils.html share/gtk-doc/html/gedit/gedit-gedit-view.html share/gtk-doc/html/gedit/gedit-gedit-window.html share/gtk-doc/html/gedit/gedit.devhelp2 share/gtk-doc/html/gedit/home.png share/gtk-doc/html/gedit/index.html share/gtk-doc/html/gedit/left-insensitive.png share/gtk-doc/html/gedit/left.png share/gtk-doc/html/gedit/object-tree.html share/gtk-doc/html/gedit/right-insensitive.png share/gtk-doc/html/gedit/right.png share/gtk-doc/html/gedit/style.css share/gtk-doc/html/gedit/up-insensitive.png share/gtk-doc/html/gedit/up.png share/help/C/gedit/figures/gedit-html-snippet.png share/help/C/gedit/figures/gedit-icon.png share/help/C/gedit/figures/gedit-new-external-tool.png share/help/C/gedit/figures/gedit-open-location.png share/help/C/gedit/figures/gedit-side-pane1.png share/help/C/gedit/figures/gedit-side-pane2.png share/help/C/gedit/figures/gedit-side-pane3.png share/help/C/gedit/figures/gedit3-screenshot.png share/help/C/gedit/gedit-change-color-scheme.page share/help/C/gedit/gedit-change-default-font.page share/help/C/gedit/gedit-close-file.page share/help/C/gedit/gedit-create-new-file.page share/help/C/gedit/gedit-edit-as-root.page share/help/C/gedit/gedit-files-basic.page share/help/C/gedit/gedit-full-screen.page share/help/C/gedit/gedit-open-files-from-sidepane.page share/help/C/gedit/gedit-open-files.page share/help/C/gedit/gedit-open-on-server.page share/help/C/gedit/gedit-open-recent.page share/help/C/gedit/gedit-plugin-guide.page share/help/C/gedit/gedit-plugins-change-case.page share/help/C/gedit/gedit-plugins-doc-stats.page share/help/C/gedit/gedit-plugins-external-tools.page share/help/C/gedit/gedit-plugins-file-browser.page share/help/C/gedit/gedit-plugins-insert-date-time.page share/help/C/gedit/gedit-plugins-install.page share/help/C/gedit/gedit-plugins-modelines.page share/help/C/gedit/gedit-plugins-pyconsole.page share/help/C/gedit/gedit-plugins-quick-open.page share/help/C/gedit/gedit-plugins-snippets.page share/help/C/gedit/gedit-plugins-sort.page share/help/C/gedit/gedit-printing-order.page share/help/C/gedit/gedit-printing-select.page share/help/C/gedit/gedit-printing.page share/help/C/gedit/gedit-quickstart.page share/help/C/gedit/gedit-replace.page share/help/C/gedit/gedit-save-file.page share/help/C/gedit/gedit-search.page share/help/C/gedit/gedit-shortcut-keys.page share/help/C/gedit/gedit-spellcheck.page share/help/C/gedit/gedit-syntax-highlighting.page share/help/C/gedit/gedit-tab-groups.page share/help/C/gedit/gedit-tabs-moving.page share/help/C/gedit/gedit-tabs.page share/help/C/gedit/gedit-undo-recent-action.page share/help/C/gedit/index.page share/help/C/gedit/legal.xml share/help/ar/gedit/figures/gedit-html-snippet.png share/help/ar/gedit/figures/gedit-icon.png share/help/ar/gedit/figures/gedit-new-external-tool.png share/help/ar/gedit/figures/gedit-open-location.png share/help/ar/gedit/figures/gedit-side-pane1.png share/help/ar/gedit/figures/gedit-side-pane2.png share/help/ar/gedit/figures/gedit-side-pane3.png share/help/ar/gedit/figures/gedit3-screenshot.png share/help/ar/gedit/gedit-change-color-scheme.page share/help/ar/gedit/gedit-change-default-font.page share/help/ar/gedit/gedit-close-file.page share/help/ar/gedit/gedit-create-new-file.page share/help/ar/gedit/gedit-edit-as-root.page share/help/ar/gedit/gedit-files-basic.page share/help/ar/gedit/gedit-full-screen.page share/help/ar/gedit/gedit-open-files-from-sidepane.page share/help/ar/gedit/gedit-open-files.page share/help/ar/gedit/gedit-open-on-server.page share/help/ar/gedit/gedit-open-recent.page share/help/ar/gedit/gedit-plugin-guide.page share/help/ar/gedit/gedit-plugins-change-case.page share/help/ar/gedit/gedit-plugins-doc-stats.page share/help/ar/gedit/gedit-plugins-external-tools.page share/help/ar/gedit/gedit-plugins-file-browser.page share/help/ar/gedit/gedit-plugins-insert-date-time.page share/help/ar/gedit/gedit-plugins-install.page share/help/ar/gedit/gedit-plugins-modelines.page share/help/ar/gedit/gedit-plugins-pyconsole.page share/help/ar/gedit/gedit-plugins-quick-open.page share/help/ar/gedit/gedit-plugins-snippets.page share/help/ar/gedit/gedit-plugins-sort.page share/help/ar/gedit/gedit-printing-order.page share/help/ar/gedit/gedit-printing-select.page share/help/ar/gedit/gedit-printing.page share/help/ar/gedit/gedit-quickstart.page share/help/ar/gedit/gedit-replace.page share/help/ar/gedit/gedit-save-file.page share/help/ar/gedit/gedit-search.page share/help/ar/gedit/gedit-shortcut-keys.page share/help/ar/gedit/gedit-spellcheck.page share/help/ar/gedit/gedit-syntax-highlighting.page share/help/ar/gedit/gedit-tab-groups.page share/help/ar/gedit/gedit-tabs-moving.page share/help/ar/gedit/gedit-tabs.page share/help/ar/gedit/gedit-undo-recent-action.page share/help/ar/gedit/index.page share/help/ar/gedit/legal.xml share/help/bg/gedit/figures/gedit-html-snippet.png share/help/bg/gedit/figures/gedit-icon.png share/help/bg/gedit/figures/gedit-new-external-tool.png share/help/bg/gedit/figures/gedit-open-location.png share/help/bg/gedit/figures/gedit-side-pane1.png share/help/bg/gedit/figures/gedit-side-pane2.png share/help/bg/gedit/figures/gedit-side-pane3.png share/help/bg/gedit/figures/gedit3-screenshot.png share/help/bg/gedit/gedit-change-color-scheme.page share/help/bg/gedit/gedit-change-default-font.page share/help/bg/gedit/gedit-close-file.page share/help/bg/gedit/gedit-create-new-file.page share/help/bg/gedit/gedit-edit-as-root.page share/help/bg/gedit/gedit-files-basic.page share/help/bg/gedit/gedit-full-screen.page share/help/bg/gedit/gedit-open-files-from-sidepane.page share/help/bg/gedit/gedit-open-files.page share/help/bg/gedit/gedit-open-on-server.page share/help/bg/gedit/gedit-open-recent.page share/help/bg/gedit/gedit-plugin-guide.page share/help/bg/gedit/gedit-plugins-change-case.page share/help/bg/gedit/gedit-plugins-doc-stats.page share/help/bg/gedit/gedit-plugins-external-tools.page share/help/bg/gedit/gedit-plugins-file-browser.page share/help/bg/gedit/gedit-plugins-insert-date-time.page share/help/bg/gedit/gedit-plugins-install.page share/help/bg/gedit/gedit-plugins-modelines.page share/help/bg/gedit/gedit-plugins-pyconsole.page share/help/bg/gedit/gedit-plugins-quick-open.page share/help/bg/gedit/gedit-plugins-snippets.page share/help/bg/gedit/gedit-plugins-sort.page share/help/bg/gedit/gedit-printing-order.page share/help/bg/gedit/gedit-printing-select.page share/help/bg/gedit/gedit-printing.page share/help/bg/gedit/gedit-quickstart.page share/help/bg/gedit/gedit-replace.page share/help/bg/gedit/gedit-save-file.page share/help/bg/gedit/gedit-search.page share/help/bg/gedit/gedit-shortcut-keys.page share/help/bg/gedit/gedit-spellcheck.page share/help/bg/gedit/gedit-syntax-highlighting.page share/help/bg/gedit/gedit-tab-groups.page share/help/bg/gedit/gedit-tabs-moving.page share/help/bg/gedit/gedit-tabs.page share/help/bg/gedit/gedit-undo-recent-action.page share/help/bg/gedit/index.page share/help/bg/gedit/legal.xml share/help/ca/gedit/figures/gedit-html-snippet.png share/help/ca/gedit/figures/gedit-icon.png share/help/ca/gedit/figures/gedit-new-external-tool.png share/help/ca/gedit/figures/gedit-open-location.png share/help/ca/gedit/figures/gedit-side-pane1.png share/help/ca/gedit/figures/gedit-side-pane2.png share/help/ca/gedit/figures/gedit-side-pane3.png share/help/ca/gedit/figures/gedit3-screenshot.png share/help/ca/gedit/gedit-change-color-scheme.page share/help/ca/gedit/gedit-change-default-font.page share/help/ca/gedit/gedit-close-file.page share/help/ca/gedit/gedit-create-new-file.page share/help/ca/gedit/gedit-edit-as-root.page share/help/ca/gedit/gedit-files-basic.page share/help/ca/gedit/gedit-full-screen.page share/help/ca/gedit/gedit-open-files-from-sidepane.page share/help/ca/gedit/gedit-open-files.page share/help/ca/gedit/gedit-open-on-server.page share/help/ca/gedit/gedit-open-recent.page share/help/ca/gedit/gedit-plugin-guide.page share/help/ca/gedit/gedit-plugins-change-case.page share/help/ca/gedit/gedit-plugins-doc-stats.page share/help/ca/gedit/gedit-plugins-external-tools.page share/help/ca/gedit/gedit-plugins-file-browser.page share/help/ca/gedit/gedit-plugins-insert-date-time.page share/help/ca/gedit/gedit-plugins-install.page share/help/ca/gedit/gedit-plugins-modelines.page share/help/ca/gedit/gedit-plugins-pyconsole.page share/help/ca/gedit/gedit-plugins-quick-open.page share/help/ca/gedit/gedit-plugins-snippets.page share/help/ca/gedit/gedit-plugins-sort.page share/help/ca/gedit/gedit-printing-order.page share/help/ca/gedit/gedit-printing-select.page share/help/ca/gedit/gedit-printing.page share/help/ca/gedit/gedit-quickstart.page share/help/ca/gedit/gedit-replace.page share/help/ca/gedit/gedit-save-file.page share/help/ca/gedit/gedit-search.page share/help/ca/gedit/gedit-shortcut-keys.page share/help/ca/gedit/gedit-spellcheck.page share/help/ca/gedit/gedit-syntax-highlighting.page share/help/ca/gedit/gedit-tab-groups.page share/help/ca/gedit/gedit-tabs-moving.page share/help/ca/gedit/gedit-tabs.page share/help/ca/gedit/gedit-undo-recent-action.page share/help/ca/gedit/index.page share/help/ca/gedit/legal.xml share/help/cs/gedit/figures/gedit-html-snippet.png share/help/cs/gedit/figures/gedit-icon.png share/help/cs/gedit/figures/gedit-new-external-tool.png share/help/cs/gedit/figures/gedit-open-location.png share/help/cs/gedit/figures/gedit-side-pane1.png share/help/cs/gedit/figures/gedit-side-pane2.png share/help/cs/gedit/figures/gedit-side-pane3.png share/help/cs/gedit/figures/gedit3-screenshot.png share/help/cs/gedit/gedit-change-color-scheme.page share/help/cs/gedit/gedit-change-default-font.page share/help/cs/gedit/gedit-close-file.page share/help/cs/gedit/gedit-create-new-file.page share/help/cs/gedit/gedit-edit-as-root.page share/help/cs/gedit/gedit-files-basic.page share/help/cs/gedit/gedit-full-screen.page share/help/cs/gedit/gedit-open-files-from-sidepane.page share/help/cs/gedit/gedit-open-files.page share/help/cs/gedit/gedit-open-on-server.page share/help/cs/gedit/gedit-open-recent.page share/help/cs/gedit/gedit-plugin-guide.page share/help/cs/gedit/gedit-plugins-change-case.page share/help/cs/gedit/gedit-plugins-doc-stats.page share/help/cs/gedit/gedit-plugins-external-tools.page share/help/cs/gedit/gedit-plugins-file-browser.page share/help/cs/gedit/gedit-plugins-insert-date-time.page share/help/cs/gedit/gedit-plugins-install.page share/help/cs/gedit/gedit-plugins-modelines.page share/help/cs/gedit/gedit-plugins-pyconsole.page share/help/cs/gedit/gedit-plugins-quick-open.page share/help/cs/gedit/gedit-plugins-snippets.page share/help/cs/gedit/gedit-plugins-sort.page share/help/cs/gedit/gedit-printing-order.page share/help/cs/gedit/gedit-printing-select.page share/help/cs/gedit/gedit-printing.page share/help/cs/gedit/gedit-quickstart.page share/help/cs/gedit/gedit-replace.page share/help/cs/gedit/gedit-save-file.page share/help/cs/gedit/gedit-search.page share/help/cs/gedit/gedit-shortcut-keys.page share/help/cs/gedit/gedit-spellcheck.page share/help/cs/gedit/gedit-syntax-highlighting.page share/help/cs/gedit/gedit-tab-groups.page share/help/cs/gedit/gedit-tabs-moving.page share/help/cs/gedit/gedit-tabs.page share/help/cs/gedit/gedit-undo-recent-action.page share/help/cs/gedit/index.page share/help/cs/gedit/legal.xml share/help/da/gedit/figures/gedit-html-snippet.png share/help/da/gedit/figures/gedit-icon.png share/help/da/gedit/figures/gedit-new-external-tool.png share/help/da/gedit/figures/gedit-open-location.png share/help/da/gedit/figures/gedit-side-pane1.png share/help/da/gedit/figures/gedit-side-pane2.png share/help/da/gedit/figures/gedit-side-pane3.png share/help/da/gedit/figures/gedit3-screenshot.png share/help/da/gedit/gedit-change-color-scheme.page share/help/da/gedit/gedit-change-default-font.page share/help/da/gedit/gedit-close-file.page share/help/da/gedit/gedit-create-new-file.page share/help/da/gedit/gedit-edit-as-root.page share/help/da/gedit/gedit-files-basic.page share/help/da/gedit/gedit-full-screen.page share/help/da/gedit/gedit-open-files-from-sidepane.page share/help/da/gedit/gedit-open-files.page share/help/da/gedit/gedit-open-on-server.page share/help/da/gedit/gedit-open-recent.page share/help/da/gedit/gedit-plugin-guide.page share/help/da/gedit/gedit-plugins-change-case.page share/help/da/gedit/gedit-plugins-doc-stats.page share/help/da/gedit/gedit-plugins-external-tools.page share/help/da/gedit/gedit-plugins-file-browser.page share/help/da/gedit/gedit-plugins-insert-date-time.page share/help/da/gedit/gedit-plugins-install.page share/help/da/gedit/gedit-plugins-modelines.page share/help/da/gedit/gedit-plugins-pyconsole.page share/help/da/gedit/gedit-plugins-quick-open.page share/help/da/gedit/gedit-plugins-snippets.page share/help/da/gedit/gedit-plugins-sort.page share/help/da/gedit/gedit-printing-order.page share/help/da/gedit/gedit-printing-select.page share/help/da/gedit/gedit-printing.page share/help/da/gedit/gedit-quickstart.page share/help/da/gedit/gedit-replace.page share/help/da/gedit/gedit-save-file.page share/help/da/gedit/gedit-search.page share/help/da/gedit/gedit-shortcut-keys.page share/help/da/gedit/gedit-spellcheck.page share/help/da/gedit/gedit-syntax-highlighting.page share/help/da/gedit/gedit-tab-groups.page share/help/da/gedit/gedit-tabs-moving.page share/help/da/gedit/gedit-tabs.page share/help/da/gedit/gedit-undo-recent-action.page share/help/da/gedit/index.page share/help/da/gedit/legal.xml share/help/de/gedit/figures/gedit-html-snippet.png share/help/de/gedit/figures/gedit-icon.png share/help/de/gedit/figures/gedit-new-external-tool.png share/help/de/gedit/figures/gedit-open-location.png share/help/de/gedit/figures/gedit-side-pane1.png share/help/de/gedit/figures/gedit-side-pane2.png share/help/de/gedit/figures/gedit-side-pane3.png share/help/de/gedit/figures/gedit3-screenshot.png share/help/de/gedit/gedit-change-color-scheme.page share/help/de/gedit/gedit-change-default-font.page share/help/de/gedit/gedit-close-file.page share/help/de/gedit/gedit-create-new-file.page share/help/de/gedit/gedit-edit-as-root.page share/help/de/gedit/gedit-files-basic.page share/help/de/gedit/gedit-full-screen.page share/help/de/gedit/gedit-open-files-from-sidepane.page share/help/de/gedit/gedit-open-files.page share/help/de/gedit/gedit-open-on-server.page share/help/de/gedit/gedit-open-recent.page share/help/de/gedit/gedit-plugin-guide.page share/help/de/gedit/gedit-plugins-change-case.page share/help/de/gedit/gedit-plugins-doc-stats.page share/help/de/gedit/gedit-plugins-external-tools.page share/help/de/gedit/gedit-plugins-file-browser.page share/help/de/gedit/gedit-plugins-insert-date-time.page share/help/de/gedit/gedit-plugins-install.page share/help/de/gedit/gedit-plugins-modelines.page share/help/de/gedit/gedit-plugins-pyconsole.page share/help/de/gedit/gedit-plugins-quick-open.page share/help/de/gedit/gedit-plugins-snippets.page share/help/de/gedit/gedit-plugins-sort.page share/help/de/gedit/gedit-printing-order.page share/help/de/gedit/gedit-printing-select.page share/help/de/gedit/gedit-printing.page share/help/de/gedit/gedit-quickstart.page share/help/de/gedit/gedit-replace.page share/help/de/gedit/gedit-save-file.page share/help/de/gedit/gedit-search.page share/help/de/gedit/gedit-shortcut-keys.page share/help/de/gedit/gedit-spellcheck.page share/help/de/gedit/gedit-syntax-highlighting.page share/help/de/gedit/gedit-tab-groups.page share/help/de/gedit/gedit-tabs-moving.page share/help/de/gedit/gedit-tabs.page share/help/de/gedit/gedit-undo-recent-action.page share/help/de/gedit/index.page share/help/de/gedit/legal.xml share/help/el/gedit/figures/gedit-html-snippet.png share/help/el/gedit/figures/gedit-icon.png share/help/el/gedit/figures/gedit-new-external-tool.png share/help/el/gedit/figures/gedit-open-location.png share/help/el/gedit/figures/gedit-side-pane1.png share/help/el/gedit/figures/gedit-side-pane2.png share/help/el/gedit/figures/gedit-side-pane3.png share/help/el/gedit/figures/gedit3-screenshot.png share/help/el/gedit/gedit-change-color-scheme.page share/help/el/gedit/gedit-change-default-font.page share/help/el/gedit/gedit-close-file.page share/help/el/gedit/gedit-create-new-file.page share/help/el/gedit/gedit-edit-as-root.page share/help/el/gedit/gedit-files-basic.page share/help/el/gedit/gedit-full-screen.page share/help/el/gedit/gedit-open-files-from-sidepane.page share/help/el/gedit/gedit-open-files.page share/help/el/gedit/gedit-open-on-server.page share/help/el/gedit/gedit-open-recent.page share/help/el/gedit/gedit-plugin-guide.page share/help/el/gedit/gedit-plugins-change-case.page share/help/el/gedit/gedit-plugins-doc-stats.page share/help/el/gedit/gedit-plugins-external-tools.page share/help/el/gedit/gedit-plugins-file-browser.page share/help/el/gedit/gedit-plugins-insert-date-time.page share/help/el/gedit/gedit-plugins-install.page share/help/el/gedit/gedit-plugins-modelines.page share/help/el/gedit/gedit-plugins-pyconsole.page share/help/el/gedit/gedit-plugins-quick-open.page share/help/el/gedit/gedit-plugins-snippets.page share/help/el/gedit/gedit-plugins-sort.page share/help/el/gedit/gedit-printing-order.page share/help/el/gedit/gedit-printing-select.page share/help/el/gedit/gedit-printing.page share/help/el/gedit/gedit-quickstart.page share/help/el/gedit/gedit-replace.page share/help/el/gedit/gedit-save-file.page share/help/el/gedit/gedit-search.page share/help/el/gedit/gedit-shortcut-keys.page share/help/el/gedit/gedit-spellcheck.page share/help/el/gedit/gedit-syntax-highlighting.page share/help/el/gedit/gedit-tab-groups.page share/help/el/gedit/gedit-tabs-moving.page share/help/el/gedit/gedit-tabs.page share/help/el/gedit/gedit-undo-recent-action.page share/help/el/gedit/index.page share/help/el/gedit/legal.xml share/help/es/gedit/figures/gedit-html-snippet.png share/help/es/gedit/figures/gedit-icon.png share/help/es/gedit/figures/gedit-new-external-tool.png share/help/es/gedit/figures/gedit-open-location.png share/help/es/gedit/figures/gedit-side-pane1.png share/help/es/gedit/figures/gedit-side-pane2.png share/help/es/gedit/figures/gedit-side-pane3.png share/help/es/gedit/figures/gedit3-screenshot.png share/help/es/gedit/gedit-change-color-scheme.page share/help/es/gedit/gedit-change-default-font.page share/help/es/gedit/gedit-close-file.page share/help/es/gedit/gedit-create-new-file.page share/help/es/gedit/gedit-edit-as-root.page share/help/es/gedit/gedit-files-basic.page share/help/es/gedit/gedit-full-screen.page share/help/es/gedit/gedit-open-files-from-sidepane.page share/help/es/gedit/gedit-open-files.page share/help/es/gedit/gedit-open-on-server.page share/help/es/gedit/gedit-open-recent.page share/help/es/gedit/gedit-plugin-guide.page share/help/es/gedit/gedit-plugins-change-case.page share/help/es/gedit/gedit-plugins-doc-stats.page share/help/es/gedit/gedit-plugins-external-tools.page share/help/es/gedit/gedit-plugins-file-browser.page share/help/es/gedit/gedit-plugins-insert-date-time.page share/help/es/gedit/gedit-plugins-install.page share/help/es/gedit/gedit-plugins-modelines.page share/help/es/gedit/gedit-plugins-pyconsole.page share/help/es/gedit/gedit-plugins-quick-open.page share/help/es/gedit/gedit-plugins-snippets.page share/help/es/gedit/gedit-plugins-sort.page share/help/es/gedit/gedit-printing-order.page share/help/es/gedit/gedit-printing-select.page share/help/es/gedit/gedit-printing.page share/help/es/gedit/gedit-quickstart.page share/help/es/gedit/gedit-replace.page share/help/es/gedit/gedit-save-file.page share/help/es/gedit/gedit-search.page share/help/es/gedit/gedit-shortcut-keys.page share/help/es/gedit/gedit-spellcheck.page share/help/es/gedit/gedit-syntax-highlighting.page share/help/es/gedit/gedit-tab-groups.page share/help/es/gedit/gedit-tabs-moving.page share/help/es/gedit/gedit-tabs.page share/help/es/gedit/gedit-undo-recent-action.page share/help/es/gedit/index.page share/help/es/gedit/legal.xml share/help/eu/gedit/figures/gedit-html-snippet.png share/help/eu/gedit/figures/gedit-icon.png share/help/eu/gedit/figures/gedit-new-external-tool.png share/help/eu/gedit/figures/gedit-open-location.png share/help/eu/gedit/figures/gedit-side-pane1.png share/help/eu/gedit/figures/gedit-side-pane2.png share/help/eu/gedit/figures/gedit-side-pane3.png share/help/eu/gedit/figures/gedit3-screenshot.png share/help/eu/gedit/gedit-change-color-scheme.page share/help/eu/gedit/gedit-change-default-font.page share/help/eu/gedit/gedit-close-file.page share/help/eu/gedit/gedit-create-new-file.page share/help/eu/gedit/gedit-edit-as-root.page share/help/eu/gedit/gedit-files-basic.page share/help/eu/gedit/gedit-full-screen.page share/help/eu/gedit/gedit-open-files-from-sidepane.page share/help/eu/gedit/gedit-open-files.page share/help/eu/gedit/gedit-open-on-server.page share/help/eu/gedit/gedit-open-recent.page share/help/eu/gedit/gedit-plugin-guide.page share/help/eu/gedit/gedit-plugins-change-case.page share/help/eu/gedit/gedit-plugins-doc-stats.page share/help/eu/gedit/gedit-plugins-external-tools.page share/help/eu/gedit/gedit-plugins-file-browser.page share/help/eu/gedit/gedit-plugins-insert-date-time.page share/help/eu/gedit/gedit-plugins-install.page share/help/eu/gedit/gedit-plugins-modelines.page share/help/eu/gedit/gedit-plugins-pyconsole.page share/help/eu/gedit/gedit-plugins-quick-open.page share/help/eu/gedit/gedit-plugins-snippets.page share/help/eu/gedit/gedit-plugins-sort.page share/help/eu/gedit/gedit-printing-order.page share/help/eu/gedit/gedit-printing-select.page share/help/eu/gedit/gedit-printing.page share/help/eu/gedit/gedit-quickstart.page share/help/eu/gedit/gedit-replace.page share/help/eu/gedit/gedit-save-file.page share/help/eu/gedit/gedit-search.page share/help/eu/gedit/gedit-shortcut-keys.page share/help/eu/gedit/gedit-spellcheck.page share/help/eu/gedit/gedit-syntax-highlighting.page share/help/eu/gedit/gedit-tab-groups.page share/help/eu/gedit/gedit-tabs-moving.page share/help/eu/gedit/gedit-tabs.page share/help/eu/gedit/gedit-undo-recent-action.page share/help/eu/gedit/index.page share/help/eu/gedit/legal.xml share/help/fi/gedit/figures/gedit-html-snippet.png share/help/fi/gedit/figures/gedit-icon.png share/help/fi/gedit/figures/gedit-new-external-tool.png share/help/fi/gedit/figures/gedit-open-location.png share/help/fi/gedit/figures/gedit-side-pane1.png share/help/fi/gedit/figures/gedit-side-pane2.png share/help/fi/gedit/figures/gedit-side-pane3.png share/help/fi/gedit/figures/gedit3-screenshot.png share/help/fi/gedit/gedit-change-color-scheme.page share/help/fi/gedit/gedit-change-default-font.page share/help/fi/gedit/gedit-close-file.page share/help/fi/gedit/gedit-create-new-file.page share/help/fi/gedit/gedit-edit-as-root.page share/help/fi/gedit/gedit-files-basic.page share/help/fi/gedit/gedit-full-screen.page share/help/fi/gedit/gedit-open-files-from-sidepane.page share/help/fi/gedit/gedit-open-files.page share/help/fi/gedit/gedit-open-on-server.page share/help/fi/gedit/gedit-open-recent.page share/help/fi/gedit/gedit-plugin-guide.page share/help/fi/gedit/gedit-plugins-change-case.page share/help/fi/gedit/gedit-plugins-doc-stats.page share/help/fi/gedit/gedit-plugins-external-tools.page share/help/fi/gedit/gedit-plugins-file-browser.page share/help/fi/gedit/gedit-plugins-insert-date-time.page share/help/fi/gedit/gedit-plugins-install.page share/help/fi/gedit/gedit-plugins-modelines.page share/help/fi/gedit/gedit-plugins-pyconsole.page share/help/fi/gedit/gedit-plugins-quick-open.page share/help/fi/gedit/gedit-plugins-snippets.page share/help/fi/gedit/gedit-plugins-sort.page share/help/fi/gedit/gedit-printing-order.page share/help/fi/gedit/gedit-printing-select.page share/help/fi/gedit/gedit-printing.page share/help/fi/gedit/gedit-quickstart.page share/help/fi/gedit/gedit-replace.page share/help/fi/gedit/gedit-save-file.page share/help/fi/gedit/gedit-search.page share/help/fi/gedit/gedit-shortcut-keys.page share/help/fi/gedit/gedit-spellcheck.page share/help/fi/gedit/gedit-syntax-highlighting.page share/help/fi/gedit/gedit-tab-groups.page share/help/fi/gedit/gedit-tabs-moving.page share/help/fi/gedit/gedit-tabs.page share/help/fi/gedit/gedit-undo-recent-action.page share/help/fi/gedit/index.page share/help/fi/gedit/legal.xml share/help/fr/gedit/figures/gedit-html-snippet.png share/help/fr/gedit/figures/gedit-icon.png share/help/fr/gedit/figures/gedit-new-external-tool.png share/help/fr/gedit/figures/gedit-open-location.png share/help/fr/gedit/figures/gedit-side-pane1.png share/help/fr/gedit/figures/gedit-side-pane2.png share/help/fr/gedit/figures/gedit-side-pane3.png share/help/fr/gedit/figures/gedit3-screenshot.png share/help/fr/gedit/gedit-change-color-scheme.page share/help/fr/gedit/gedit-change-default-font.page share/help/fr/gedit/gedit-close-file.page share/help/fr/gedit/gedit-create-new-file.page share/help/fr/gedit/gedit-edit-as-root.page share/help/fr/gedit/gedit-files-basic.page share/help/fr/gedit/gedit-full-screen.page share/help/fr/gedit/gedit-open-files-from-sidepane.page share/help/fr/gedit/gedit-open-files.page share/help/fr/gedit/gedit-open-on-server.page share/help/fr/gedit/gedit-open-recent.page share/help/fr/gedit/gedit-plugin-guide.page share/help/fr/gedit/gedit-plugins-change-case.page share/help/fr/gedit/gedit-plugins-doc-stats.page share/help/fr/gedit/gedit-plugins-external-tools.page share/help/fr/gedit/gedit-plugins-file-browser.page share/help/fr/gedit/gedit-plugins-insert-date-time.page share/help/fr/gedit/gedit-plugins-install.page share/help/fr/gedit/gedit-plugins-modelines.page share/help/fr/gedit/gedit-plugins-pyconsole.page share/help/fr/gedit/gedit-plugins-quick-open.page share/help/fr/gedit/gedit-plugins-snippets.page share/help/fr/gedit/gedit-plugins-sort.page share/help/fr/gedit/gedit-printing-order.page share/help/fr/gedit/gedit-printing-select.page share/help/fr/gedit/gedit-printing.page share/help/fr/gedit/gedit-quickstart.page share/help/fr/gedit/gedit-replace.page share/help/fr/gedit/gedit-save-file.page share/help/fr/gedit/gedit-search.page share/help/fr/gedit/gedit-shortcut-keys.page share/help/fr/gedit/gedit-spellcheck.page share/help/fr/gedit/gedit-syntax-highlighting.page share/help/fr/gedit/gedit-tab-groups.page share/help/fr/gedit/gedit-tabs-moving.page share/help/fr/gedit/gedit-tabs.page share/help/fr/gedit/gedit-undo-recent-action.page share/help/fr/gedit/index.page share/help/fr/gedit/legal.xml share/help/gl/gedit/figures/gedit-html-snippet.png share/help/gl/gedit/figures/gedit-icon.png share/help/gl/gedit/figures/gedit-new-external-tool.png share/help/gl/gedit/figures/gedit-open-location.png share/help/gl/gedit/figures/gedit-side-pane1.png share/help/gl/gedit/figures/gedit-side-pane2.png share/help/gl/gedit/figures/gedit-side-pane3.png share/help/gl/gedit/figures/gedit3-screenshot.png share/help/gl/gedit/gedit-change-color-scheme.page share/help/gl/gedit/gedit-change-default-font.page share/help/gl/gedit/gedit-close-file.page share/help/gl/gedit/gedit-create-new-file.page share/help/gl/gedit/gedit-edit-as-root.page share/help/gl/gedit/gedit-files-basic.page share/help/gl/gedit/gedit-full-screen.page share/help/gl/gedit/gedit-open-files-from-sidepane.page share/help/gl/gedit/gedit-open-files.page share/help/gl/gedit/gedit-open-on-server.page share/help/gl/gedit/gedit-open-recent.page share/help/gl/gedit/gedit-plugin-guide.page share/help/gl/gedit/gedit-plugins-change-case.page share/help/gl/gedit/gedit-plugins-doc-stats.page share/help/gl/gedit/gedit-plugins-external-tools.page share/help/gl/gedit/gedit-plugins-file-browser.page share/help/gl/gedit/gedit-plugins-insert-date-time.page share/help/gl/gedit/gedit-plugins-install.page share/help/gl/gedit/gedit-plugins-modelines.page share/help/gl/gedit/gedit-plugins-pyconsole.page share/help/gl/gedit/gedit-plugins-quick-open.page share/help/gl/gedit/gedit-plugins-snippets.page share/help/gl/gedit/gedit-plugins-sort.page share/help/gl/gedit/gedit-printing-order.page share/help/gl/gedit/gedit-printing-select.page share/help/gl/gedit/gedit-printing.page share/help/gl/gedit/gedit-quickstart.page share/help/gl/gedit/gedit-replace.page share/help/gl/gedit/gedit-save-file.page share/help/gl/gedit/gedit-search.page share/help/gl/gedit/gedit-shortcut-keys.page share/help/gl/gedit/gedit-spellcheck.page share/help/gl/gedit/gedit-syntax-highlighting.page share/help/gl/gedit/gedit-tab-groups.page share/help/gl/gedit/gedit-tabs-moving.page share/help/gl/gedit/gedit-tabs.page share/help/gl/gedit/gedit-undo-recent-action.page share/help/gl/gedit/index.page share/help/gl/gedit/legal.xml share/help/hu/gedit/figures/gedit-html-snippet.png share/help/hu/gedit/figures/gedit-icon.png share/help/hu/gedit/figures/gedit-new-external-tool.png share/help/hu/gedit/figures/gedit-open-location.png share/help/hu/gedit/figures/gedit-side-pane1.png share/help/hu/gedit/figures/gedit-side-pane2.png share/help/hu/gedit/figures/gedit-side-pane3.png share/help/hu/gedit/figures/gedit3-screenshot.png share/help/hu/gedit/gedit-change-color-scheme.page share/help/hu/gedit/gedit-change-default-font.page share/help/hu/gedit/gedit-close-file.page share/help/hu/gedit/gedit-create-new-file.page share/help/hu/gedit/gedit-edit-as-root.page share/help/hu/gedit/gedit-files-basic.page share/help/hu/gedit/gedit-full-screen.page share/help/hu/gedit/gedit-open-files-from-sidepane.page share/help/hu/gedit/gedit-open-files.page share/help/hu/gedit/gedit-open-on-server.page share/help/hu/gedit/gedit-open-recent.page share/help/hu/gedit/gedit-plugin-guide.page share/help/hu/gedit/gedit-plugins-change-case.page share/help/hu/gedit/gedit-plugins-doc-stats.page share/help/hu/gedit/gedit-plugins-external-tools.page share/help/hu/gedit/gedit-plugins-file-browser.page share/help/hu/gedit/gedit-plugins-insert-date-time.page share/help/hu/gedit/gedit-plugins-install.page share/help/hu/gedit/gedit-plugins-modelines.page share/help/hu/gedit/gedit-plugins-pyconsole.page share/help/hu/gedit/gedit-plugins-quick-open.page share/help/hu/gedit/gedit-plugins-snippets.page share/help/hu/gedit/gedit-plugins-sort.page share/help/hu/gedit/gedit-printing-order.page share/help/hu/gedit/gedit-printing-select.page share/help/hu/gedit/gedit-printing.page share/help/hu/gedit/gedit-quickstart.page share/help/hu/gedit/gedit-replace.page share/help/hu/gedit/gedit-save-file.page share/help/hu/gedit/gedit-search.page share/help/hu/gedit/gedit-shortcut-keys.page share/help/hu/gedit/gedit-spellcheck.page share/help/hu/gedit/gedit-syntax-highlighting.page share/help/hu/gedit/gedit-tab-groups.page share/help/hu/gedit/gedit-tabs-moving.page share/help/hu/gedit/gedit-tabs.page share/help/hu/gedit/gedit-undo-recent-action.page share/help/hu/gedit/index.page share/help/hu/gedit/legal.xml share/help/id/gedit/figures/gedit-html-snippet.png share/help/id/gedit/figures/gedit-icon.png share/help/id/gedit/figures/gedit-new-external-tool.png share/help/id/gedit/figures/gedit-open-location.png share/help/id/gedit/figures/gedit-side-pane1.png share/help/id/gedit/figures/gedit-side-pane2.png share/help/id/gedit/figures/gedit-side-pane3.png share/help/id/gedit/figures/gedit3-screenshot.png share/help/id/gedit/gedit-change-color-scheme.page share/help/id/gedit/gedit-change-default-font.page share/help/id/gedit/gedit-close-file.page share/help/id/gedit/gedit-create-new-file.page share/help/id/gedit/gedit-edit-as-root.page share/help/id/gedit/gedit-files-basic.page share/help/id/gedit/gedit-full-screen.page share/help/id/gedit/gedit-open-files-from-sidepane.page share/help/id/gedit/gedit-open-files.page share/help/id/gedit/gedit-open-on-server.page share/help/id/gedit/gedit-open-recent.page share/help/id/gedit/gedit-plugin-guide.page share/help/id/gedit/gedit-plugins-change-case.page share/help/id/gedit/gedit-plugins-doc-stats.page share/help/id/gedit/gedit-plugins-external-tools.page share/help/id/gedit/gedit-plugins-file-browser.page share/help/id/gedit/gedit-plugins-insert-date-time.page share/help/id/gedit/gedit-plugins-install.page share/help/id/gedit/gedit-plugins-modelines.page share/help/id/gedit/gedit-plugins-pyconsole.page share/help/id/gedit/gedit-plugins-quick-open.page share/help/id/gedit/gedit-plugins-snippets.page share/help/id/gedit/gedit-plugins-sort.page share/help/id/gedit/gedit-printing-order.page share/help/id/gedit/gedit-printing-select.page share/help/id/gedit/gedit-printing.page share/help/id/gedit/gedit-quickstart.page share/help/id/gedit/gedit-replace.page share/help/id/gedit/gedit-save-file.page share/help/id/gedit/gedit-search.page share/help/id/gedit/gedit-shortcut-keys.page share/help/id/gedit/gedit-spellcheck.page share/help/id/gedit/gedit-syntax-highlighting.page share/help/id/gedit/gedit-tab-groups.page share/help/id/gedit/gedit-tabs-moving.page share/help/id/gedit/gedit-tabs.page share/help/id/gedit/gedit-undo-recent-action.page share/help/id/gedit/index.page share/help/id/gedit/legal.xml share/help/it/gedit/figures/gedit-html-snippet.png share/help/it/gedit/figures/gedit-icon.png share/help/it/gedit/figures/gedit-new-external-tool.png share/help/it/gedit/figures/gedit-open-location.png share/help/it/gedit/figures/gedit-side-pane1.png share/help/it/gedit/figures/gedit-side-pane2.png share/help/it/gedit/figures/gedit-side-pane3.png share/help/it/gedit/figures/gedit3-screenshot.png share/help/it/gedit/gedit-change-color-scheme.page share/help/it/gedit/gedit-change-default-font.page share/help/it/gedit/gedit-close-file.page share/help/it/gedit/gedit-create-new-file.page share/help/it/gedit/gedit-edit-as-root.page share/help/it/gedit/gedit-files-basic.page share/help/it/gedit/gedit-full-screen.page share/help/it/gedit/gedit-open-files-from-sidepane.page share/help/it/gedit/gedit-open-files.page share/help/it/gedit/gedit-open-on-server.page share/help/it/gedit/gedit-open-recent.page share/help/it/gedit/gedit-plugin-guide.page share/help/it/gedit/gedit-plugins-change-case.page share/help/it/gedit/gedit-plugins-doc-stats.page share/help/it/gedit/gedit-plugins-external-tools.page share/help/it/gedit/gedit-plugins-file-browser.page share/help/it/gedit/gedit-plugins-insert-date-time.page share/help/it/gedit/gedit-plugins-install.page share/help/it/gedit/gedit-plugins-modelines.page share/help/it/gedit/gedit-plugins-pyconsole.page share/help/it/gedit/gedit-plugins-quick-open.page share/help/it/gedit/gedit-plugins-snippets.page share/help/it/gedit/gedit-plugins-sort.page share/help/it/gedit/gedit-printing-order.page share/help/it/gedit/gedit-printing-select.page share/help/it/gedit/gedit-printing.page share/help/it/gedit/gedit-quickstart.page share/help/it/gedit/gedit-replace.page share/help/it/gedit/gedit-save-file.page share/help/it/gedit/gedit-search.page share/help/it/gedit/gedit-shortcut-keys.page share/help/it/gedit/gedit-spellcheck.page share/help/it/gedit/gedit-syntax-highlighting.page share/help/it/gedit/gedit-tab-groups.page share/help/it/gedit/gedit-tabs-moving.page share/help/it/gedit/gedit-tabs.page share/help/it/gedit/gedit-undo-recent-action.page share/help/it/gedit/index.page share/help/it/gedit/legal.xml share/help/ja/gedit/figures/gedit-html-snippet.png share/help/ja/gedit/figures/gedit-icon.png share/help/ja/gedit/figures/gedit-new-external-tool.png share/help/ja/gedit/figures/gedit-open-location.png share/help/ja/gedit/figures/gedit-side-pane1.png share/help/ja/gedit/figures/gedit-side-pane2.png share/help/ja/gedit/figures/gedit-side-pane3.png share/help/ja/gedit/figures/gedit3-screenshot.png share/help/ja/gedit/gedit-change-color-scheme.page share/help/ja/gedit/gedit-change-default-font.page share/help/ja/gedit/gedit-close-file.page share/help/ja/gedit/gedit-create-new-file.page share/help/ja/gedit/gedit-edit-as-root.page share/help/ja/gedit/gedit-files-basic.page share/help/ja/gedit/gedit-full-screen.page share/help/ja/gedit/gedit-open-files-from-sidepane.page share/help/ja/gedit/gedit-open-files.page share/help/ja/gedit/gedit-open-on-server.page share/help/ja/gedit/gedit-open-recent.page share/help/ja/gedit/gedit-plugin-guide.page share/help/ja/gedit/gedit-plugins-change-case.page share/help/ja/gedit/gedit-plugins-doc-stats.page share/help/ja/gedit/gedit-plugins-external-tools.page share/help/ja/gedit/gedit-plugins-file-browser.page share/help/ja/gedit/gedit-plugins-insert-date-time.page share/help/ja/gedit/gedit-plugins-install.page share/help/ja/gedit/gedit-plugins-modelines.page share/help/ja/gedit/gedit-plugins-pyconsole.page share/help/ja/gedit/gedit-plugins-quick-open.page share/help/ja/gedit/gedit-plugins-snippets.page share/help/ja/gedit/gedit-plugins-sort.page share/help/ja/gedit/gedit-printing-order.page share/help/ja/gedit/gedit-printing-select.page share/help/ja/gedit/gedit-printing.page share/help/ja/gedit/gedit-quickstart.page share/help/ja/gedit/gedit-replace.page share/help/ja/gedit/gedit-save-file.page share/help/ja/gedit/gedit-search.page share/help/ja/gedit/gedit-shortcut-keys.page share/help/ja/gedit/gedit-spellcheck.page share/help/ja/gedit/gedit-syntax-highlighting.page share/help/ja/gedit/gedit-tab-groups.page share/help/ja/gedit/gedit-tabs-moving.page share/help/ja/gedit/gedit-tabs.page share/help/ja/gedit/gedit-undo-recent-action.page share/help/ja/gedit/index.page share/help/ja/gedit/legal.xml share/help/ko/gedit/figures/gedit-html-snippet.png share/help/ko/gedit/figures/gedit-icon.png share/help/ko/gedit/figures/gedit-new-external-tool.png share/help/ko/gedit/figures/gedit-open-location.png share/help/ko/gedit/figures/gedit-side-pane1.png share/help/ko/gedit/figures/gedit-side-pane2.png share/help/ko/gedit/figures/gedit-side-pane3.png share/help/ko/gedit/figures/gedit3-screenshot.png share/help/ko/gedit/gedit-change-color-scheme.page share/help/ko/gedit/gedit-change-default-font.page share/help/ko/gedit/gedit-close-file.page share/help/ko/gedit/gedit-create-new-file.page share/help/ko/gedit/gedit-edit-as-root.page share/help/ko/gedit/gedit-files-basic.page share/help/ko/gedit/gedit-full-screen.page share/help/ko/gedit/gedit-open-files-from-sidepane.page share/help/ko/gedit/gedit-open-files.page share/help/ko/gedit/gedit-open-on-server.page share/help/ko/gedit/gedit-open-recent.page share/help/ko/gedit/gedit-plugin-guide.page share/help/ko/gedit/gedit-plugins-change-case.page share/help/ko/gedit/gedit-plugins-doc-stats.page share/help/ko/gedit/gedit-plugins-external-tools.page share/help/ko/gedit/gedit-plugins-file-browser.page share/help/ko/gedit/gedit-plugins-insert-date-time.page share/help/ko/gedit/gedit-plugins-install.page share/help/ko/gedit/gedit-plugins-modelines.page share/help/ko/gedit/gedit-plugins-pyconsole.page share/help/ko/gedit/gedit-plugins-quick-open.page share/help/ko/gedit/gedit-plugins-snippets.page share/help/ko/gedit/gedit-plugins-sort.page share/help/ko/gedit/gedit-printing-order.page share/help/ko/gedit/gedit-printing-select.page share/help/ko/gedit/gedit-printing.page share/help/ko/gedit/gedit-quickstart.page share/help/ko/gedit/gedit-replace.page share/help/ko/gedit/gedit-save-file.page share/help/ko/gedit/gedit-search.page share/help/ko/gedit/gedit-shortcut-keys.page share/help/ko/gedit/gedit-spellcheck.page share/help/ko/gedit/gedit-syntax-highlighting.page share/help/ko/gedit/gedit-tab-groups.page share/help/ko/gedit/gedit-tabs-moving.page share/help/ko/gedit/gedit-tabs.page share/help/ko/gedit/gedit-undo-recent-action.page share/help/ko/gedit/index.page share/help/ko/gedit/legal.xml share/help/lv/gedit/figures/gedit-html-snippet.png share/help/lv/gedit/figures/gedit-icon.png share/help/lv/gedit/figures/gedit-new-external-tool.png share/help/lv/gedit/figures/gedit-open-location.png share/help/lv/gedit/figures/gedit-side-pane1.png share/help/lv/gedit/figures/gedit-side-pane2.png share/help/lv/gedit/figures/gedit-side-pane3.png share/help/lv/gedit/figures/gedit3-screenshot.png share/help/lv/gedit/gedit-change-color-scheme.page share/help/lv/gedit/gedit-change-default-font.page share/help/lv/gedit/gedit-close-file.page share/help/lv/gedit/gedit-create-new-file.page share/help/lv/gedit/gedit-edit-as-root.page share/help/lv/gedit/gedit-files-basic.page share/help/lv/gedit/gedit-full-screen.page share/help/lv/gedit/gedit-open-files-from-sidepane.page share/help/lv/gedit/gedit-open-files.page share/help/lv/gedit/gedit-open-on-server.page share/help/lv/gedit/gedit-open-recent.page share/help/lv/gedit/gedit-plugin-guide.page share/help/lv/gedit/gedit-plugins-change-case.page share/help/lv/gedit/gedit-plugins-doc-stats.page share/help/lv/gedit/gedit-plugins-external-tools.page share/help/lv/gedit/gedit-plugins-file-browser.page share/help/lv/gedit/gedit-plugins-insert-date-time.page share/help/lv/gedit/gedit-plugins-install.page share/help/lv/gedit/gedit-plugins-modelines.page share/help/lv/gedit/gedit-plugins-pyconsole.page share/help/lv/gedit/gedit-plugins-quick-open.page share/help/lv/gedit/gedit-plugins-snippets.page share/help/lv/gedit/gedit-plugins-sort.page share/help/lv/gedit/gedit-printing-order.page share/help/lv/gedit/gedit-printing-select.page share/help/lv/gedit/gedit-printing.page share/help/lv/gedit/gedit-quickstart.page share/help/lv/gedit/gedit-replace.page share/help/lv/gedit/gedit-save-file.page share/help/lv/gedit/gedit-search.page share/help/lv/gedit/gedit-shortcut-keys.page share/help/lv/gedit/gedit-spellcheck.page share/help/lv/gedit/gedit-syntax-highlighting.page share/help/lv/gedit/gedit-tab-groups.page share/help/lv/gedit/gedit-tabs-moving.page share/help/lv/gedit/gedit-tabs.page share/help/lv/gedit/gedit-undo-recent-action.page share/help/lv/gedit/index.page share/help/lv/gedit/legal.xml share/help/oc/gedit/figures/gedit-html-snippet.png share/help/oc/gedit/figures/gedit-icon.png share/help/oc/gedit/figures/gedit-new-external-tool.png share/help/oc/gedit/figures/gedit-open-location.png share/help/oc/gedit/figures/gedit-side-pane1.png share/help/oc/gedit/figures/gedit-side-pane2.png share/help/oc/gedit/figures/gedit-side-pane3.png share/help/oc/gedit/figures/gedit3-screenshot.png share/help/oc/gedit/gedit-change-color-scheme.page share/help/oc/gedit/gedit-change-default-font.page share/help/oc/gedit/gedit-close-file.page share/help/oc/gedit/gedit-create-new-file.page share/help/oc/gedit/gedit-edit-as-root.page share/help/oc/gedit/gedit-files-basic.page share/help/oc/gedit/gedit-full-screen.page share/help/oc/gedit/gedit-open-files-from-sidepane.page share/help/oc/gedit/gedit-open-files.page share/help/oc/gedit/gedit-open-on-server.page share/help/oc/gedit/gedit-open-recent.page share/help/oc/gedit/gedit-plugin-guide.page share/help/oc/gedit/gedit-plugins-change-case.page share/help/oc/gedit/gedit-plugins-doc-stats.page share/help/oc/gedit/gedit-plugins-external-tools.page share/help/oc/gedit/gedit-plugins-file-browser.page share/help/oc/gedit/gedit-plugins-insert-date-time.page share/help/oc/gedit/gedit-plugins-install.page share/help/oc/gedit/gedit-plugins-modelines.page share/help/oc/gedit/gedit-plugins-pyconsole.page share/help/oc/gedit/gedit-plugins-quick-open.page share/help/oc/gedit/gedit-plugins-snippets.page share/help/oc/gedit/gedit-plugins-sort.page share/help/oc/gedit/gedit-printing-order.page share/help/oc/gedit/gedit-printing-select.page share/help/oc/gedit/gedit-printing.page share/help/oc/gedit/gedit-quickstart.page share/help/oc/gedit/gedit-replace.page share/help/oc/gedit/gedit-save-file.page share/help/oc/gedit/gedit-search.page share/help/oc/gedit/gedit-shortcut-keys.page share/help/oc/gedit/gedit-spellcheck.page share/help/oc/gedit/gedit-syntax-highlighting.page share/help/oc/gedit/gedit-tab-groups.page share/help/oc/gedit/gedit-tabs-moving.page share/help/oc/gedit/gedit-tabs.page share/help/oc/gedit/gedit-undo-recent-action.page share/help/oc/gedit/index.page share/help/oc/gedit/legal.xml share/help/pt_BR/gedit/figures/gedit-html-snippet.png share/help/pt_BR/gedit/figures/gedit-icon.png share/help/pt_BR/gedit/figures/gedit-new-external-tool.png share/help/pt_BR/gedit/figures/gedit-open-location.png share/help/pt_BR/gedit/figures/gedit-side-pane1.png share/help/pt_BR/gedit/figures/gedit-side-pane2.png share/help/pt_BR/gedit/figures/gedit-side-pane3.png share/help/pt_BR/gedit/figures/gedit3-screenshot.png share/help/pt_BR/gedit/gedit-change-color-scheme.page share/help/pt_BR/gedit/gedit-change-default-font.page share/help/pt_BR/gedit/gedit-close-file.page share/help/pt_BR/gedit/gedit-create-new-file.page share/help/pt_BR/gedit/gedit-edit-as-root.page share/help/pt_BR/gedit/gedit-files-basic.page share/help/pt_BR/gedit/gedit-full-screen.page share/help/pt_BR/gedit/gedit-open-files-from-sidepane.page share/help/pt_BR/gedit/gedit-open-files.page share/help/pt_BR/gedit/gedit-open-on-server.page share/help/pt_BR/gedit/gedit-open-recent.page share/help/pt_BR/gedit/gedit-plugin-guide.page share/help/pt_BR/gedit/gedit-plugins-change-case.page share/help/pt_BR/gedit/gedit-plugins-doc-stats.page share/help/pt_BR/gedit/gedit-plugins-external-tools.page share/help/pt_BR/gedit/gedit-plugins-file-browser.page share/help/pt_BR/gedit/gedit-plugins-insert-date-time.page share/help/pt_BR/gedit/gedit-plugins-install.page share/help/pt_BR/gedit/gedit-plugins-modelines.page share/help/pt_BR/gedit/gedit-plugins-pyconsole.page share/help/pt_BR/gedit/gedit-plugins-quick-open.page share/help/pt_BR/gedit/gedit-plugins-snippets.page share/help/pt_BR/gedit/gedit-plugins-sort.page share/help/pt_BR/gedit/gedit-printing-order.page share/help/pt_BR/gedit/gedit-printing-select.page share/help/pt_BR/gedit/gedit-printing.page share/help/pt_BR/gedit/gedit-quickstart.page share/help/pt_BR/gedit/gedit-replace.page share/help/pt_BR/gedit/gedit-save-file.page share/help/pt_BR/gedit/gedit-search.page share/help/pt_BR/gedit/gedit-shortcut-keys.page share/help/pt_BR/gedit/gedit-spellcheck.page share/help/pt_BR/gedit/gedit-syntax-highlighting.page share/help/pt_BR/gedit/gedit-tab-groups.page share/help/pt_BR/gedit/gedit-tabs-moving.page share/help/pt_BR/gedit/gedit-tabs.page share/help/pt_BR/gedit/gedit-undo-recent-action.page share/help/pt_BR/gedit/index.page share/help/pt_BR/gedit/legal.xml share/help/ro/gedit/figures/gedit-html-snippet.png share/help/ro/gedit/figures/gedit-icon.png share/help/ro/gedit/figures/gedit-new-external-tool.png share/help/ro/gedit/figures/gedit-open-location.png share/help/ro/gedit/figures/gedit-side-pane1.png share/help/ro/gedit/figures/gedit-side-pane2.png share/help/ro/gedit/figures/gedit-side-pane3.png share/help/ro/gedit/figures/gedit3-screenshot.png share/help/ro/gedit/gedit-change-color-scheme.page share/help/ro/gedit/gedit-change-default-font.page share/help/ro/gedit/gedit-close-file.page share/help/ro/gedit/gedit-create-new-file.page share/help/ro/gedit/gedit-edit-as-root.page share/help/ro/gedit/gedit-files-basic.page share/help/ro/gedit/gedit-full-screen.page share/help/ro/gedit/gedit-open-files-from-sidepane.page share/help/ro/gedit/gedit-open-files.page share/help/ro/gedit/gedit-open-on-server.page share/help/ro/gedit/gedit-open-recent.page share/help/ro/gedit/gedit-plugin-guide.page share/help/ro/gedit/gedit-plugins-change-case.page share/help/ro/gedit/gedit-plugins-doc-stats.page share/help/ro/gedit/gedit-plugins-external-tools.page share/help/ro/gedit/gedit-plugins-file-browser.page share/help/ro/gedit/gedit-plugins-insert-date-time.page share/help/ro/gedit/gedit-plugins-install.page share/help/ro/gedit/gedit-plugins-modelines.page share/help/ro/gedit/gedit-plugins-pyconsole.page share/help/ro/gedit/gedit-plugins-quick-open.page share/help/ro/gedit/gedit-plugins-snippets.page share/help/ro/gedit/gedit-plugins-sort.page share/help/ro/gedit/gedit-printing-order.page share/help/ro/gedit/gedit-printing-select.page share/help/ro/gedit/gedit-printing.page share/help/ro/gedit/gedit-quickstart.page share/help/ro/gedit/gedit-replace.page share/help/ro/gedit/gedit-save-file.page share/help/ro/gedit/gedit-search.page share/help/ro/gedit/gedit-shortcut-keys.page share/help/ro/gedit/gedit-spellcheck.page share/help/ro/gedit/gedit-syntax-highlighting.page share/help/ro/gedit/gedit-tab-groups.page share/help/ro/gedit/gedit-tabs-moving.page share/help/ro/gedit/gedit-tabs.page share/help/ro/gedit/gedit-undo-recent-action.page share/help/ro/gedit/index.page share/help/ro/gedit/legal.xml share/help/ru/gedit/figures/gedit-html-snippet.png share/help/ru/gedit/figures/gedit-icon.png share/help/ru/gedit/figures/gedit-new-external-tool.png share/help/ru/gedit/figures/gedit-open-location.png share/help/ru/gedit/figures/gedit-side-pane1.png share/help/ru/gedit/figures/gedit-side-pane2.png share/help/ru/gedit/figures/gedit-side-pane3.png share/help/ru/gedit/figures/gedit3-screenshot.png share/help/ru/gedit/gedit-change-color-scheme.page share/help/ru/gedit/gedit-change-default-font.page share/help/ru/gedit/gedit-close-file.page share/help/ru/gedit/gedit-create-new-file.page share/help/ru/gedit/gedit-edit-as-root.page share/help/ru/gedit/gedit-files-basic.page share/help/ru/gedit/gedit-full-screen.page share/help/ru/gedit/gedit-open-files-from-sidepane.page share/help/ru/gedit/gedit-open-files.page share/help/ru/gedit/gedit-open-on-server.page share/help/ru/gedit/gedit-open-recent.page share/help/ru/gedit/gedit-plugin-guide.page share/help/ru/gedit/gedit-plugins-change-case.page share/help/ru/gedit/gedit-plugins-doc-stats.page share/help/ru/gedit/gedit-plugins-external-tools.page share/help/ru/gedit/gedit-plugins-file-browser.page share/help/ru/gedit/gedit-plugins-insert-date-time.page share/help/ru/gedit/gedit-plugins-install.page share/help/ru/gedit/gedit-plugins-modelines.page share/help/ru/gedit/gedit-plugins-pyconsole.page share/help/ru/gedit/gedit-plugins-quick-open.page share/help/ru/gedit/gedit-plugins-snippets.page share/help/ru/gedit/gedit-plugins-sort.page share/help/ru/gedit/gedit-printing-order.page share/help/ru/gedit/gedit-printing-select.page share/help/ru/gedit/gedit-printing.page share/help/ru/gedit/gedit-quickstart.page share/help/ru/gedit/gedit-replace.page share/help/ru/gedit/gedit-save-file.page share/help/ru/gedit/gedit-search.page share/help/ru/gedit/gedit-shortcut-keys.page share/help/ru/gedit/gedit-spellcheck.page share/help/ru/gedit/gedit-syntax-highlighting.page share/help/ru/gedit/gedit-tab-groups.page share/help/ru/gedit/gedit-tabs-moving.page share/help/ru/gedit/gedit-tabs.page share/help/ru/gedit/gedit-undo-recent-action.page share/help/ru/gedit/index.page share/help/ru/gedit/legal.xml share/help/sl/gedit/figures/gedit-html-snippet.png share/help/sl/gedit/figures/gedit-icon.png share/help/sl/gedit/figures/gedit-new-external-tool.png share/help/sl/gedit/figures/gedit-open-location.png share/help/sl/gedit/figures/gedit-side-pane1.png share/help/sl/gedit/figures/gedit-side-pane2.png share/help/sl/gedit/figures/gedit-side-pane3.png share/help/sl/gedit/figures/gedit3-screenshot.png share/help/sl/gedit/gedit-change-color-scheme.page share/help/sl/gedit/gedit-change-default-font.page share/help/sl/gedit/gedit-close-file.page share/help/sl/gedit/gedit-create-new-file.page share/help/sl/gedit/gedit-edit-as-root.page share/help/sl/gedit/gedit-files-basic.page share/help/sl/gedit/gedit-full-screen.page share/help/sl/gedit/gedit-open-files-from-sidepane.page share/help/sl/gedit/gedit-open-files.page share/help/sl/gedit/gedit-open-on-server.page share/help/sl/gedit/gedit-open-recent.page share/help/sl/gedit/gedit-plugin-guide.page share/help/sl/gedit/gedit-plugins-change-case.page share/help/sl/gedit/gedit-plugins-doc-stats.page share/help/sl/gedit/gedit-plugins-external-tools.page share/help/sl/gedit/gedit-plugins-file-browser.page share/help/sl/gedit/gedit-plugins-insert-date-time.page share/help/sl/gedit/gedit-plugins-install.page share/help/sl/gedit/gedit-plugins-modelines.page share/help/sl/gedit/gedit-plugins-pyconsole.page share/help/sl/gedit/gedit-plugins-quick-open.page share/help/sl/gedit/gedit-plugins-snippets.page share/help/sl/gedit/gedit-plugins-sort.page share/help/sl/gedit/gedit-printing-order.page share/help/sl/gedit/gedit-printing-select.page share/help/sl/gedit/gedit-printing.page share/help/sl/gedit/gedit-quickstart.page share/help/sl/gedit/gedit-replace.page share/help/sl/gedit/gedit-save-file.page share/help/sl/gedit/gedit-search.page share/help/sl/gedit/gedit-shortcut-keys.page share/help/sl/gedit/gedit-spellcheck.page share/help/sl/gedit/gedit-syntax-highlighting.page share/help/sl/gedit/gedit-tab-groups.page share/help/sl/gedit/gedit-tabs-moving.page share/help/sl/gedit/gedit-tabs.page share/help/sl/gedit/gedit-undo-recent-action.page share/help/sl/gedit/index.page share/help/sl/gedit/legal.xml share/help/sv/gedit/figures/gedit-html-snippet.png share/help/sv/gedit/figures/gedit-icon.png share/help/sv/gedit/figures/gedit-new-external-tool.png share/help/sv/gedit/figures/gedit-open-location.png share/help/sv/gedit/figures/gedit-side-pane1.png share/help/sv/gedit/figures/gedit-side-pane2.png share/help/sv/gedit/figures/gedit-side-pane3.png share/help/sv/gedit/figures/gedit3-screenshot.png share/help/sv/gedit/gedit-change-color-scheme.page share/help/sv/gedit/gedit-change-default-font.page share/help/sv/gedit/gedit-close-file.page share/help/sv/gedit/gedit-create-new-file.page share/help/sv/gedit/gedit-edit-as-root.page share/help/sv/gedit/gedit-files-basic.page share/help/sv/gedit/gedit-full-screen.page share/help/sv/gedit/gedit-open-files-from-sidepane.page share/help/sv/gedit/gedit-open-files.page share/help/sv/gedit/gedit-open-on-server.page share/help/sv/gedit/gedit-open-recent.page share/help/sv/gedit/gedit-plugin-guide.page share/help/sv/gedit/gedit-plugins-change-case.page share/help/sv/gedit/gedit-plugins-doc-stats.page share/help/sv/gedit/gedit-plugins-external-tools.page share/help/sv/gedit/gedit-plugins-file-browser.page share/help/sv/gedit/gedit-plugins-insert-date-time.page share/help/sv/gedit/gedit-plugins-install.page share/help/sv/gedit/gedit-plugins-modelines.page share/help/sv/gedit/gedit-plugins-pyconsole.page share/help/sv/gedit/gedit-plugins-quick-open.page share/help/sv/gedit/gedit-plugins-snippets.page share/help/sv/gedit/gedit-plugins-sort.page share/help/sv/gedit/gedit-printing-order.page share/help/sv/gedit/gedit-printing-select.page share/help/sv/gedit/gedit-printing.page share/help/sv/gedit/gedit-quickstart.page share/help/sv/gedit/gedit-replace.page share/help/sv/gedit/gedit-save-file.page share/help/sv/gedit/gedit-search.page share/help/sv/gedit/gedit-shortcut-keys.page share/help/sv/gedit/gedit-spellcheck.page share/help/sv/gedit/gedit-syntax-highlighting.page share/help/sv/gedit/gedit-tab-groups.page share/help/sv/gedit/gedit-tabs-moving.page share/help/sv/gedit/gedit-tabs.page share/help/sv/gedit/gedit-undo-recent-action.page share/help/sv/gedit/index.page share/help/sv/gedit/legal.xml share/help/te/gedit/figures/gedit-html-snippet.png share/help/te/gedit/figures/gedit-icon.png share/help/te/gedit/figures/gedit-new-external-tool.png share/help/te/gedit/figures/gedit-open-location.png share/help/te/gedit/figures/gedit-side-pane1.png share/help/te/gedit/figures/gedit-side-pane2.png share/help/te/gedit/figures/gedit-side-pane3.png share/help/te/gedit/figures/gedit3-screenshot.png share/help/te/gedit/gedit-change-color-scheme.page share/help/te/gedit/gedit-change-default-font.page share/help/te/gedit/gedit-close-file.page share/help/te/gedit/gedit-create-new-file.page share/help/te/gedit/gedit-edit-as-root.page share/help/te/gedit/gedit-files-basic.page share/help/te/gedit/gedit-full-screen.page share/help/te/gedit/gedit-open-files-from-sidepane.page share/help/te/gedit/gedit-open-files.page share/help/te/gedit/gedit-open-on-server.page share/help/te/gedit/gedit-open-recent.page share/help/te/gedit/gedit-plugin-guide.page share/help/te/gedit/gedit-plugins-change-case.page share/help/te/gedit/gedit-plugins-doc-stats.page share/help/te/gedit/gedit-plugins-external-tools.page share/help/te/gedit/gedit-plugins-file-browser.page share/help/te/gedit/gedit-plugins-insert-date-time.page share/help/te/gedit/gedit-plugins-install.page share/help/te/gedit/gedit-plugins-modelines.page share/help/te/gedit/gedit-plugins-pyconsole.page share/help/te/gedit/gedit-plugins-quick-open.page share/help/te/gedit/gedit-plugins-snippets.page share/help/te/gedit/gedit-plugins-sort.page share/help/te/gedit/gedit-printing-order.page share/help/te/gedit/gedit-printing-select.page share/help/te/gedit/gedit-printing.page share/help/te/gedit/gedit-quickstart.page share/help/te/gedit/gedit-replace.page share/help/te/gedit/gedit-save-file.page share/help/te/gedit/gedit-search.page share/help/te/gedit/gedit-shortcut-keys.page share/help/te/gedit/gedit-spellcheck.page share/help/te/gedit/gedit-syntax-highlighting.page share/help/te/gedit/gedit-tab-groups.page share/help/te/gedit/gedit-tabs-moving.page share/help/te/gedit/gedit-tabs.page share/help/te/gedit/gedit-undo-recent-action.page share/help/te/gedit/index.page share/help/te/gedit/legal.xml share/help/th/gedit/figures/gedit-html-snippet.png share/help/th/gedit/figures/gedit-icon.png share/help/th/gedit/figures/gedit-new-external-tool.png share/help/th/gedit/figures/gedit-open-location.png share/help/th/gedit/figures/gedit-side-pane1.png share/help/th/gedit/figures/gedit-side-pane2.png share/help/th/gedit/figures/gedit-side-pane3.png share/help/th/gedit/figures/gedit3-screenshot.png share/help/th/gedit/gedit-change-color-scheme.page share/help/th/gedit/gedit-change-default-font.page share/help/th/gedit/gedit-close-file.page share/help/th/gedit/gedit-create-new-file.page share/help/th/gedit/gedit-edit-as-root.page share/help/th/gedit/gedit-files-basic.page share/help/th/gedit/gedit-full-screen.page share/help/th/gedit/gedit-open-files-from-sidepane.page share/help/th/gedit/gedit-open-files.page share/help/th/gedit/gedit-open-on-server.page share/help/th/gedit/gedit-open-recent.page share/help/th/gedit/gedit-plugin-guide.page share/help/th/gedit/gedit-plugins-change-case.page share/help/th/gedit/gedit-plugins-doc-stats.page share/help/th/gedit/gedit-plugins-external-tools.page share/help/th/gedit/gedit-plugins-file-browser.page share/help/th/gedit/gedit-plugins-insert-date-time.page share/help/th/gedit/gedit-plugins-install.page share/help/th/gedit/gedit-plugins-modelines.page share/help/th/gedit/gedit-plugins-pyconsole.page share/help/th/gedit/gedit-plugins-quick-open.page share/help/th/gedit/gedit-plugins-snippets.page share/help/th/gedit/gedit-plugins-sort.page share/help/th/gedit/gedit-printing-order.page share/help/th/gedit/gedit-printing-select.page share/help/th/gedit/gedit-printing.page share/help/th/gedit/gedit-quickstart.page share/help/th/gedit/gedit-replace.page share/help/th/gedit/gedit-save-file.page share/help/th/gedit/gedit-search.page share/help/th/gedit/gedit-shortcut-keys.page share/help/th/gedit/gedit-spellcheck.page share/help/th/gedit/gedit-syntax-highlighting.page share/help/th/gedit/gedit-tab-groups.page share/help/th/gedit/gedit-tabs-moving.page share/help/th/gedit/gedit-tabs.page share/help/th/gedit/gedit-undo-recent-action.page share/help/th/gedit/index.page share/help/th/gedit/legal.xml share/help/uk/gedit/figures/gedit-html-snippet.png share/help/uk/gedit/figures/gedit-icon.png share/help/uk/gedit/figures/gedit-new-external-tool.png share/help/uk/gedit/figures/gedit-open-location.png share/help/uk/gedit/figures/gedit-side-pane1.png share/help/uk/gedit/figures/gedit-side-pane2.png share/help/uk/gedit/figures/gedit-side-pane3.png share/help/uk/gedit/figures/gedit3-screenshot.png share/help/uk/gedit/gedit-change-color-scheme.page share/help/uk/gedit/gedit-change-default-font.page share/help/uk/gedit/gedit-close-file.page share/help/uk/gedit/gedit-create-new-file.page share/help/uk/gedit/gedit-edit-as-root.page share/help/uk/gedit/gedit-files-basic.page share/help/uk/gedit/gedit-full-screen.page share/help/uk/gedit/gedit-open-files-from-sidepane.page share/help/uk/gedit/gedit-open-files.page share/help/uk/gedit/gedit-open-on-server.page share/help/uk/gedit/gedit-open-recent.page share/help/uk/gedit/gedit-plugin-guide.page share/help/uk/gedit/gedit-plugins-change-case.page share/help/uk/gedit/gedit-plugins-doc-stats.page share/help/uk/gedit/gedit-plugins-external-tools.page share/help/uk/gedit/gedit-plugins-file-browser.page share/help/uk/gedit/gedit-plugins-insert-date-time.page share/help/uk/gedit/gedit-plugins-install.page share/help/uk/gedit/gedit-plugins-modelines.page share/help/uk/gedit/gedit-plugins-pyconsole.page share/help/uk/gedit/gedit-plugins-quick-open.page share/help/uk/gedit/gedit-plugins-snippets.page share/help/uk/gedit/gedit-plugins-sort.page share/help/uk/gedit/gedit-printing-order.page share/help/uk/gedit/gedit-printing-select.page share/help/uk/gedit/gedit-printing.page share/help/uk/gedit/gedit-quickstart.page share/help/uk/gedit/gedit-replace.page share/help/uk/gedit/gedit-save-file.page share/help/uk/gedit/gedit-search.page share/help/uk/gedit/gedit-shortcut-keys.page share/help/uk/gedit/gedit-spellcheck.page share/help/uk/gedit/gedit-syntax-highlighting.page share/help/uk/gedit/gedit-tab-groups.page share/help/uk/gedit/gedit-tabs-moving.page share/help/uk/gedit/gedit-tabs.page share/help/uk/gedit/gedit-undo-recent-action.page share/help/uk/gedit/index.page share/help/uk/gedit/legal.xml share/help/zh_CN/gedit/figures/gedit-html-snippet.png share/help/zh_CN/gedit/figures/gedit-icon.png share/help/zh_CN/gedit/figures/gedit-new-external-tool.png share/help/zh_CN/gedit/figures/gedit-open-location.png share/help/zh_CN/gedit/figures/gedit-side-pane1.png share/help/zh_CN/gedit/figures/gedit-side-pane2.png share/help/zh_CN/gedit/figures/gedit-side-pane3.png share/help/zh_CN/gedit/figures/gedit3-screenshot.png share/help/zh_CN/gedit/gedit-change-color-scheme.page share/help/zh_CN/gedit/gedit-change-default-font.page share/help/zh_CN/gedit/gedit-close-file.page share/help/zh_CN/gedit/gedit-create-new-file.page share/help/zh_CN/gedit/gedit-edit-as-root.page share/help/zh_CN/gedit/gedit-files-basic.page share/help/zh_CN/gedit/gedit-full-screen.page share/help/zh_CN/gedit/gedit-open-files-from-sidepane.page share/help/zh_CN/gedit/gedit-open-files.page share/help/zh_CN/gedit/gedit-open-on-server.page share/help/zh_CN/gedit/gedit-open-recent.page share/help/zh_CN/gedit/gedit-plugin-guide.page share/help/zh_CN/gedit/gedit-plugins-change-case.page share/help/zh_CN/gedit/gedit-plugins-doc-stats.page share/help/zh_CN/gedit/gedit-plugins-external-tools.page share/help/zh_CN/gedit/gedit-plugins-file-browser.page share/help/zh_CN/gedit/gedit-plugins-insert-date-time.page share/help/zh_CN/gedit/gedit-plugins-install.page share/help/zh_CN/gedit/gedit-plugins-modelines.page share/help/zh_CN/gedit/gedit-plugins-pyconsole.page share/help/zh_CN/gedit/gedit-plugins-quick-open.page share/help/zh_CN/gedit/gedit-plugins-snippets.page share/help/zh_CN/gedit/gedit-plugins-sort.page share/help/zh_CN/gedit/gedit-printing-order.page share/help/zh_CN/gedit/gedit-printing-select.page share/help/zh_CN/gedit/gedit-printing.page share/help/zh_CN/gedit/gedit-quickstart.page share/help/zh_CN/gedit/gedit-replace.page share/help/zh_CN/gedit/gedit-save-file.page share/help/zh_CN/gedit/gedit-search.page share/help/zh_CN/gedit/gedit-shortcut-keys.page share/help/zh_CN/gedit/gedit-spellcheck.page share/help/zh_CN/gedit/gedit-syntax-highlighting.page share/help/zh_CN/gedit/gedit-tab-groups.page share/help/zh_CN/gedit/gedit-tabs-moving.page share/help/zh_CN/gedit/gedit-tabs.page share/help/zh_CN/gedit/gedit-undo-recent-action.page share/help/zh_CN/gedit/index.page share/help/zh_CN/gedit/legal.xml share/help/zh_HK/gedit/figures/gedit-html-snippet.png share/help/zh_HK/gedit/figures/gedit-icon.png share/help/zh_HK/gedit/figures/gedit-new-external-tool.png share/help/zh_HK/gedit/figures/gedit-open-location.png share/help/zh_HK/gedit/figures/gedit-side-pane1.png share/help/zh_HK/gedit/figures/gedit-side-pane2.png share/help/zh_HK/gedit/figures/gedit-side-pane3.png share/help/zh_HK/gedit/figures/gedit3-screenshot.png share/help/zh_HK/gedit/gedit-change-color-scheme.page share/help/zh_HK/gedit/gedit-change-default-font.page share/help/zh_HK/gedit/gedit-close-file.page share/help/zh_HK/gedit/gedit-create-new-file.page share/help/zh_HK/gedit/gedit-edit-as-root.page share/help/zh_HK/gedit/gedit-files-basic.page share/help/zh_HK/gedit/gedit-full-screen.page share/help/zh_HK/gedit/gedit-open-files-from-sidepane.page share/help/zh_HK/gedit/gedit-open-files.page share/help/zh_HK/gedit/gedit-open-on-server.page share/help/zh_HK/gedit/gedit-open-recent.page share/help/zh_HK/gedit/gedit-plugin-guide.page share/help/zh_HK/gedit/gedit-plugins-change-case.page share/help/zh_HK/gedit/gedit-plugins-doc-stats.page share/help/zh_HK/gedit/gedit-plugins-external-tools.page share/help/zh_HK/gedit/gedit-plugins-file-browser.page share/help/zh_HK/gedit/gedit-plugins-insert-date-time.page share/help/zh_HK/gedit/gedit-plugins-install.page share/help/zh_HK/gedit/gedit-plugins-modelines.page share/help/zh_HK/gedit/gedit-plugins-pyconsole.page share/help/zh_HK/gedit/gedit-plugins-quick-open.page share/help/zh_HK/gedit/gedit-plugins-snippets.page share/help/zh_HK/gedit/gedit-plugins-sort.page share/help/zh_HK/gedit/gedit-printing-order.page share/help/zh_HK/gedit/gedit-printing-select.page share/help/zh_HK/gedit/gedit-printing.page share/help/zh_HK/gedit/gedit-quickstart.page share/help/zh_HK/gedit/gedit-replace.page share/help/zh_HK/gedit/gedit-save-file.page share/help/zh_HK/gedit/gedit-search.page share/help/zh_HK/gedit/gedit-shortcut-keys.page share/help/zh_HK/gedit/gedit-spellcheck.page share/help/zh_HK/gedit/gedit-syntax-highlighting.page share/help/zh_HK/gedit/gedit-tab-groups.page share/help/zh_HK/gedit/gedit-tabs-moving.page share/help/zh_HK/gedit/gedit-tabs.page share/help/zh_HK/gedit/gedit-undo-recent-action.page share/help/zh_HK/gedit/index.page share/help/zh_HK/gedit/legal.xml share/help/zh_TW/gedit/figures/gedit-html-snippet.png share/help/zh_TW/gedit/figures/gedit-icon.png share/help/zh_TW/gedit/figures/gedit-new-external-tool.png share/help/zh_TW/gedit/figures/gedit-open-location.png share/help/zh_TW/gedit/figures/gedit-side-pane1.png share/help/zh_TW/gedit/figures/gedit-side-pane2.png share/help/zh_TW/gedit/figures/gedit-side-pane3.png share/help/zh_TW/gedit/figures/gedit3-screenshot.png share/help/zh_TW/gedit/gedit-change-color-scheme.page share/help/zh_TW/gedit/gedit-change-default-font.page share/help/zh_TW/gedit/gedit-close-file.page share/help/zh_TW/gedit/gedit-create-new-file.page share/help/zh_TW/gedit/gedit-edit-as-root.page share/help/zh_TW/gedit/gedit-files-basic.page share/help/zh_TW/gedit/gedit-full-screen.page share/help/zh_TW/gedit/gedit-open-files-from-sidepane.page share/help/zh_TW/gedit/gedit-open-files.page share/help/zh_TW/gedit/gedit-open-on-server.page share/help/zh_TW/gedit/gedit-open-recent.page share/help/zh_TW/gedit/gedit-plugin-guide.page share/help/zh_TW/gedit/gedit-plugins-change-case.page share/help/zh_TW/gedit/gedit-plugins-doc-stats.page share/help/zh_TW/gedit/gedit-plugins-external-tools.page share/help/zh_TW/gedit/gedit-plugins-file-browser.page share/help/zh_TW/gedit/gedit-plugins-insert-date-time.page share/help/zh_TW/gedit/gedit-plugins-install.page share/help/zh_TW/gedit/gedit-plugins-modelines.page share/help/zh_TW/gedit/gedit-plugins-pyconsole.page share/help/zh_TW/gedit/gedit-plugins-quick-open.page share/help/zh_TW/gedit/gedit-plugins-snippets.page share/help/zh_TW/gedit/gedit-plugins-sort.page share/help/zh_TW/gedit/gedit-printing-order.page share/help/zh_TW/gedit/gedit-printing-select.page share/help/zh_TW/gedit/gedit-printing.page share/help/zh_TW/gedit/gedit-quickstart.page share/help/zh_TW/gedit/gedit-replace.page share/help/zh_TW/gedit/gedit-save-file.page share/help/zh_TW/gedit/gedit-search.page share/help/zh_TW/gedit/gedit-shortcut-keys.page share/help/zh_TW/gedit/gedit-spellcheck.page share/help/zh_TW/gedit/gedit-syntax-highlighting.page share/help/zh_TW/gedit/gedit-tab-groups.page share/help/zh_TW/gedit/gedit-tabs-moving.page share/help/zh_TW/gedit/gedit-tabs.page share/help/zh_TW/gedit/gedit-undo-recent-action.page share/help/zh_TW/gedit/index.page share/help/zh_TW/gedit/legal.xml share/locale/af/LC_MESSAGES/gedit.mo share/locale/am/LC_MESSAGES/gedit.mo share/locale/an/LC_MESSAGES/gedit.mo share/locale/ar/LC_MESSAGES/gedit.mo share/locale/as/LC_MESSAGES/gedit.mo share/locale/ast/LC_MESSAGES/gedit.mo share/locale/az/LC_MESSAGES/gedit.mo share/locale/be/LC_MESSAGES/gedit.mo share/locale/be@latin/LC_MESSAGES/gedit.mo share/locale/bg/LC_MESSAGES/gedit.mo share/locale/bn/LC_MESSAGES/gedit.mo share/locale/bn_IN/LC_MESSAGES/gedit.mo share/locale/br/LC_MESSAGES/gedit.mo share/locale/bs/LC_MESSAGES/gedit.mo share/locale/ca/LC_MESSAGES/gedit.mo share/locale/ca@valencia/LC_MESSAGES/gedit.mo share/locale/crh/LC_MESSAGES/gedit.mo share/locale/cs/LC_MESSAGES/gedit.mo share/locale/cy/LC_MESSAGES/gedit.mo share/locale/da/LC_MESSAGES/gedit.mo share/locale/de/LC_MESSAGES/gedit.mo share/locale/dz/LC_MESSAGES/gedit.mo share/locale/el/LC_MESSAGES/gedit.mo share/locale/en@shaw/LC_MESSAGES/gedit.mo share/locale/en_CA/LC_MESSAGES/gedit.mo share/locale/en_GB/LC_MESSAGES/gedit.mo share/locale/eo/LC_MESSAGES/gedit.mo share/locale/es/LC_MESSAGES/gedit.mo share/locale/et/LC_MESSAGES/gedit.mo share/locale/eu/LC_MESSAGES/gedit.mo share/locale/fa/LC_MESSAGES/gedit.mo share/locale/fi/LC_MESSAGES/gedit.mo share/locale/fr/LC_MESSAGES/gedit.mo share/locale/ga/LC_MESSAGES/gedit.mo share/locale/gd/LC_MESSAGES/gedit.mo share/locale/gl/LC_MESSAGES/gedit.mo share/locale/gu/LC_MESSAGES/gedit.mo share/locale/he/LC_MESSAGES/gedit.mo share/locale/hi/LC_MESSAGES/gedit.mo share/locale/hr/LC_MESSAGES/gedit.mo share/locale/hu/LC_MESSAGES/gedit.mo share/locale/hy/LC_MESSAGES/gedit.mo share/locale/id/LC_MESSAGES/gedit.mo share/locale/is/LC_MESSAGES/gedit.mo share/locale/it/LC_MESSAGES/gedit.mo share/locale/ja/LC_MESSAGES/gedit.mo share/locale/ka/LC_MESSAGES/gedit.mo share/locale/kk/LC_MESSAGES/gedit.mo share/locale/km/LC_MESSAGES/gedit.mo share/locale/kn/LC_MESSAGES/gedit.mo share/locale/ko/LC_MESSAGES/gedit.mo share/locale/ku/LC_MESSAGES/gedit.mo share/locale/la/LC_MESSAGES/gedit.mo share/locale/lt/LC_MESSAGES/gedit.mo share/locale/lv/LC_MESSAGES/gedit.mo share/locale/mai/LC_MESSAGES/gedit.mo share/locale/mg/LC_MESSAGES/gedit.mo share/locale/mi/LC_MESSAGES/gedit.mo share/locale/mk/LC_MESSAGES/gedit.mo share/locale/ml/LC_MESSAGES/gedit.mo share/locale/mn/LC_MESSAGES/gedit.mo share/locale/mr/LC_MESSAGES/gedit.mo share/locale/ms/LC_MESSAGES/gedit.mo share/locale/my/LC_MESSAGES/gedit.mo share/locale/nb/LC_MESSAGES/gedit.mo share/locale/nds/LC_MESSAGES/gedit.mo share/locale/ne/LC_MESSAGES/gedit.mo share/locale/nl/LC_MESSAGES/gedit.mo share/locale/nn/LC_MESSAGES/gedit.mo share/locale/oc/LC_MESSAGES/gedit.mo share/locale/or/LC_MESSAGES/gedit.mo share/locale/pa/LC_MESSAGES/gedit.mo share/locale/pl/LC_MESSAGES/gedit.mo share/locale/ps/LC_MESSAGES/gedit.mo share/locale/pt/LC_MESSAGES/gedit.mo share/locale/pt_BR/LC_MESSAGES/gedit.mo share/locale/ro/LC_MESSAGES/gedit.mo share/locale/ru/LC_MESSAGES/gedit.mo share/locale/rw/LC_MESSAGES/gedit.mo share/locale/si/LC_MESSAGES/gedit.mo share/locale/sk/LC_MESSAGES/gedit.mo share/locale/sl/LC_MESSAGES/gedit.mo share/locale/sq/LC_MESSAGES/gedit.mo share/locale/sr/LC_MESSAGES/gedit.mo share/locale/sr@latin/LC_MESSAGES/gedit.mo share/locale/sv/LC_MESSAGES/gedit.mo share/locale/ta/LC_MESSAGES/gedit.mo share/locale/te/LC_MESSAGES/gedit.mo share/locale/tg/LC_MESSAGES/gedit.mo share/locale/th/LC_MESSAGES/gedit.mo share/locale/tk/LC_MESSAGES/gedit.mo share/locale/tr/LC_MESSAGES/gedit.mo share/locale/ug/LC_MESSAGES/gedit.mo share/locale/uk/LC_MESSAGES/gedit.mo share/locale/vi/LC_MESSAGES/gedit.mo share/locale/wa/LC_MESSAGES/gedit.mo share/locale/xh/LC_MESSAGES/gedit.mo share/locale/zh_CN/LC_MESSAGES/gedit.mo share/locale/zh_HK/LC_MESSAGES/gedit.mo share/locale/zh_TW/LC_MESSAGES/gedit.mo share/vala/vapi/gedit.deps share/vala/vapi/gedit.vapi Index: head/editors/gedit-plugins/Makefile =================================================================== --- head/editors/gedit-plugins/Makefile (revision 430838) +++ head/editors/gedit-plugins/Makefile (revision 430839) @@ -1,59 +1,48 @@ # Created by: Adam Weinberger # $FreeBSD$ PORTNAME= gedit-plugins PORTVERSION= 3.18.0 CATEGORIES= editors gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Plugins for GEdit 3 BUILD_DEPENDS= gedit>=0:editors/gedit \ valac:lang/vala \ itstool:textproc/itstool LIB_DEPENDS= libpeas-1.0.so:devel/libpeas \ libzeitgeist-2.0.so:sysutils/zeitgeist \ libgit2-glib-1.0.so:devel/libgit2-glib RUN_DEPENDS= gedit>=0:editors/gedit PORTSCOUT= limitw:1,even USES= gettext gmake gnome libtool pathfix pkgconfig \ python:3 tar:xz USE_GNOME= gtk30 gtksourceview3 intlhack USE_LDCONFIG= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.gedit.plugins.drawspaces.gschema.xml \ org.gnome.gedit.plugins.wordcompletion.gschema.xml USES+= python BUILD_DEPENDS+= py3?-dbus>=0:devel/py3-dbus LIB_DEPENDS+= libgucharmap_2_90.so:deskutils/gucharmap RUN_DEPENDS+= py3?-dbus>=0:devel/py3-dbus \ ${PYTHON_PKGNAMEPREFIX}libpeas>=0:devel/py3-libpeas USE_GNOME+= vte3 CONFIGURE_ARGS+=--enable-python GLIB_SCHEMAS+= org.gnome.gedit.plugins.terminal.gschema.xml post-patch: @${REINPLACE_CMD} -e 's| \\t\\r\\n\\f|[:space:]|g' \ ${WRKSRC}/configure -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \ - PYVER=${PYTHON_VER:S/.//} - -.include +.include Index: head/editors/gedit-plugins/pkg-plist =================================================================== --- head/editors/gedit-plugins/pkg-plist (revision 430838) +++ head/editors/gedit-plugins/pkg-plist (revision 430839) @@ -1,855 +1,855 @@ -lib/gedit/plugins/__pycache__/bracketcompletion.cpython-%%PYVER%%.pyc -lib/gedit/plugins/__pycache__/bracketcompletion.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/__pycache__/codecomment.cpython-%%PYVER%%.pyc -lib/gedit/plugins/__pycache__/codecomment.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/__pycache__/colorpicker.cpython-%%PYVER%%.pyc -lib/gedit/plugins/__pycache__/colorpicker.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/__pycache__/gpdefs.cpython-%%PYVER%%.pyc -lib/gedit/plugins/__pycache__/gpdefs.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/__pycache__/joinlines.cpython-%%PYVER%%.pyc -lib/gedit/plugins/__pycache__/joinlines.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/__pycache__/smartspaces.cpython-%%PYVER%%.pyc -lib/gedit/plugins/__pycache__/smartspaces.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/__pycache__/terminal.cpython-%%PYVER%%.pyc -lib/gedit/plugins/__pycache__/terminal.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/__pycache__/bracketcompletion.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/__pycache__/bracketcompletion.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/__pycache__/codecomment.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/__pycache__/codecomment.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/__pycache__/colorpicker.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/__pycache__/colorpicker.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/__pycache__/gpdefs.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/__pycache__/gpdefs.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/__pycache__/joinlines.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/__pycache__/joinlines.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/__pycache__/smartspaces.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/__pycache__/smartspaces.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/__pycache__/terminal.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/__pycache__/terminal.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/bookmarks.plugin lib/gedit/plugins/bracketcompletion.plugin lib/gedit/plugins/bracketcompletion.py lib/gedit/plugins/charmap.plugin lib/gedit/plugins/charmap/__init__.py -lib/gedit/plugins/charmap/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/charmap/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/charmap/__pycache__/panel.cpython-%%PYVER%%.pyc -lib/gedit/plugins/charmap/__pycache__/panel.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/charmap/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/charmap/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/charmap/__pycache__/panel.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/charmap/__pycache__/panel.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/charmap/panel.py lib/gedit/plugins/codecomment.plugin lib/gedit/plugins/codecomment.py lib/gedit/plugins/colorpicker.plugin lib/gedit/plugins/colorpicker.py lib/gedit/plugins/colorschemer.plugin lib/gedit/plugins/colorschemer/__init__.py -lib/gedit/plugins/colorschemer/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/colorschemer/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/colorschemer/__pycache__/languages.cpython-%%PYVER%%.pyc -lib/gedit/plugins/colorschemer/__pycache__/languages.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/colorschemer/__pycache__/schemer.cpython-%%PYVER%%.pyc -lib/gedit/plugins/colorschemer/__pycache__/schemer.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/colorschemer/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/colorschemer/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/colorschemer/__pycache__/languages.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/colorschemer/__pycache__/languages.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/colorschemer/__pycache__/schemer.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/colorschemer/__pycache__/schemer.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/colorschemer/languages.py lib/gedit/plugins/colorschemer/schemer.py lib/gedit/plugins/commander.plugin lib/gedit/plugins/commander/__init__.py -lib/gedit/plugins/commander/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/__pycache__/appactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/__pycache__/appactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/__pycache__/entry.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/__pycache__/entry.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/__pycache__/history.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/__pycache__/history.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/__pycache__/info.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/__pycache__/info.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/__pycache__/modules.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/__pycache__/modules.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/__pycache__/utils.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/__pycache__/utils.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/__pycache__/windowactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/__pycache__/windowactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/commander/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/__pycache__/entry.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/__pycache__/entry.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/__pycache__/history.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/__pycache__/history.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/__pycache__/info.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/__pycache__/info.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/__pycache__/modules.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/__pycache__/modules.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/__pycache__/utils.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/__pycache__/utils.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/commander/appactivatable.py lib/gedit/plugins/commander/commands/__init__.py -lib/gedit/plugins/commander/commands/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/commands/__pycache__/accel_group.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/accel_group.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/commands/__pycache__/completion.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/completion.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/commands/__pycache__/exceptions.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/exceptions.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/commands/__pycache__/metamodule.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/metamodule.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/commands/__pycache__/method.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/method.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/commands/__pycache__/module.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/module.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/commands/__pycache__/result.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/result.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/commander/commands/__pycache__/rollbackimporter.cpython-%%PYVER%%.pyc -lib/gedit/plugins/commander/commands/__pycache__/rollbackimporter.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/accel_group.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/accel_group.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/completion.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/completion.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/exceptions.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/exceptions.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/metamodule.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/metamodule.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/method.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/method.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/module.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/module.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/result.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/result.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/commander/commands/__pycache__/rollbackimporter.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/commander/commands/__pycache__/rollbackimporter.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/commander/commands/accel_group.py lib/gedit/plugins/commander/commands/completion.py lib/gedit/plugins/commander/commands/exceptions.py lib/gedit/plugins/commander/commands/metamodule.py lib/gedit/plugins/commander/commands/method.py lib/gedit/plugins/commander/commands/module.py lib/gedit/plugins/commander/commands/result.py lib/gedit/plugins/commander/commands/rollbackimporter.py lib/gedit/plugins/commander/entry.py lib/gedit/plugins/commander/history.py lib/gedit/plugins/commander/info.py lib/gedit/plugins/commander/modules.py lib/gedit/plugins/commander/utils.py lib/gedit/plugins/commander/windowactivatable.py lib/gedit/plugins/dashboard.plugin lib/gedit/plugins/dashboard/__init__.py -lib/gedit/plugins/dashboard/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/dashboard/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/dashboard/__pycache__/dashboard.cpython-%%PYVER%%.pyc -lib/gedit/plugins/dashboard/__pycache__/dashboard.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/dashboard/__pycache__/utils.cpython-%%PYVER%%.pyc -lib/gedit/plugins/dashboard/__pycache__/utils.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/dashboard/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/dashboard/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/dashboard/__pycache__/dashboard.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/dashboard/__pycache__/dashboard.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/dashboard/__pycache__/utils.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/dashboard/__pycache__/utils.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/dashboard/dashboard.py lib/gedit/plugins/dashboard/utils.py lib/gedit/plugins/drawspaces.plugin lib/gedit/plugins/findinfiles.plugin lib/gedit/plugins/git.plugin lib/gedit/plugins/git/__init__.py -lib/gedit/plugins/git/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/git/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/git/__pycache__/appactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/git/__pycache__/appactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/git/__pycache__/debug.cpython-%%PYVER%%.pyc -lib/gedit/plugins/git/__pycache__/debug.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/git/__pycache__/diffrenderer.cpython-%%PYVER%%.pyc -lib/gedit/plugins/git/__pycache__/diffrenderer.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/git/__pycache__/viewactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/git/__pycache__/viewactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/git/__pycache__/windowactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/git/__pycache__/windowactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/git/__pycache__/workerthread.cpython-%%PYVER%%.pyc -lib/gedit/plugins/git/__pycache__/workerthread.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/git/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/git/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/git/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/git/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/git/__pycache__/debug.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/git/__pycache__/debug.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/git/__pycache__/diffrenderer.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/git/__pycache__/diffrenderer.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/git/__pycache__/viewactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/git/__pycache__/viewactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/git/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/git/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/git/__pycache__/workerthread.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/git/__pycache__/workerthread.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/git/appactivatable.py lib/gedit/plugins/git/debug.py lib/gedit/plugins/git/diffrenderer.py lib/gedit/plugins/git/viewactivatable.py lib/gedit/plugins/git/windowactivatable.py lib/gedit/plugins/git/workerthread.py lib/gedit/plugins/gpdefs.py lib/gedit/plugins/joinlines.plugin lib/gedit/plugins/joinlines.py lib/gedit/plugins/libbookmarks.so lib/gedit/plugins/libdrawspaces.so lib/gedit/plugins/libfindinfiles.so lib/gedit/plugins/libwordcompletion.so lib/gedit/plugins/libzeitgeist.so lib/gedit/plugins/multiedit.plugin lib/gedit/plugins/multiedit/__init__.py -lib/gedit/plugins/multiedit/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/multiedit/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/multiedit/__pycache__/appactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/multiedit/__pycache__/appactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/multiedit/__pycache__/signals.cpython-%%PYVER%%.pyc -lib/gedit/plugins/multiedit/__pycache__/signals.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/multiedit/__pycache__/viewactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/multiedit/__pycache__/viewactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/multiedit/__pycache__/windowactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/multiedit/__pycache__/windowactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/multiedit/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/multiedit/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/multiedit/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/multiedit/__pycache__/appactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/multiedit/__pycache__/signals.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/multiedit/__pycache__/signals.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/multiedit/__pycache__/viewactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/multiedit/__pycache__/viewactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/multiedit/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/multiedit/__pycache__/windowactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/multiedit/appactivatable.py lib/gedit/plugins/multiedit/signals.py lib/gedit/plugins/multiedit/viewactivatable.py lib/gedit/plugins/multiedit/windowactivatable.py lib/gedit/plugins/smartspaces.plugin lib/gedit/plugins/smartspaces.py lib/gedit/plugins/synctex.plugin lib/gedit/plugins/synctex/__init__.py -lib/gedit/plugins/synctex/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/synctex/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/synctex/__pycache__/evince_dbus.cpython-%%PYVER%%.pyc -lib/gedit/plugins/synctex/__pycache__/evince_dbus.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/synctex/__pycache__/synctex.cpython-%%PYVER%%.pyc -lib/gedit/plugins/synctex/__pycache__/synctex.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/synctex/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/synctex/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/synctex/__pycache__/evince_dbus.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/synctex/__pycache__/evince_dbus.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/synctex/__pycache__/synctex.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/synctex/__pycache__/synctex.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/synctex/evince_dbus.py lib/gedit/plugins/synctex/synctex.py lib/gedit/plugins/terminal.plugin lib/gedit/plugins/terminal.py lib/gedit/plugins/textsize.plugin lib/gedit/plugins/textsize/__init__.py -lib/gedit/plugins/textsize/__pycache__/__init__.cpython-%%PYVER%%.pyc -lib/gedit/plugins/textsize/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/textsize/__pycache__/signals.cpython-%%PYVER%%.pyc -lib/gedit/plugins/textsize/__pycache__/signals.cpython-%%PYVER%%.%%PYOEXTENSION%% -lib/gedit/plugins/textsize/__pycache__/viewactivatable.cpython-%%PYVER%%.pyc -lib/gedit/plugins/textsize/__pycache__/viewactivatable.cpython-%%PYVER%%.%%PYOEXTENSION%% +lib/gedit/plugins/textsize/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/textsize/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/textsize/__pycache__/signals.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/textsize/__pycache__/signals.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +lib/gedit/plugins/textsize/__pycache__/viewactivatable.cpython-%%PYTHON_SUFFIX%%.pyc +lib/gedit/plugins/textsize/__pycache__/viewactivatable.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/gedit/plugins/textsize/signals.py lib/gedit/plugins/textsize/viewactivatable.py lib/gedit/plugins/wordcompletion.plugin lib/gedit/plugins/zeitgeist.plugin share/appdata/gedit-bookmarks.metainfo.xml share/appdata/gedit-bracketcompletion.metainfo.xml share/appdata/gedit-charmap.metainfo.xml share/appdata/gedit-codecomment.metainfo.xml share/appdata/gedit-colorpicker.metainfo.xml share/appdata/gedit-colorschemer.metainfo.xml share/appdata/gedit-commander.metainfo.xml share/appdata/gedit-dashboard.metainfo.xml share/appdata/gedit-drawspaces.metainfo.xml share/appdata/gedit-findinfiles.metainfo.xml share/appdata/gedit-git.metainfo.xml share/appdata/gedit-joinlines.metainfo.xml share/appdata/gedit-multiedit.metainfo.xml share/appdata/gedit-smartspaces.metainfo.xml share/appdata/gedit-synctex.metainfo.xml share/appdata/gedit-terminal.metainfo.xml share/appdata/gedit-textsize.metainfo.xml share/appdata/gedit-wordcompletion.metainfo.xml share/appdata/gedit-zeitgeist.metainfo.xml share/gedit/plugins/colorschemer/ui/schemer.ui -share/gedit/plugins/commander/modules/__pycache__/align.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/align.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/bookmark.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/bookmark.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/doc.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/doc.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/edit.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/edit.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/format.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/format.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/goto.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/goto.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/grep.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/grep.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/help.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/help.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/move.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/move.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/reload.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/reload.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/set.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/set.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/__pycache__/shell.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/__pycache__/shell.cpython-%%PYVER%%.%%PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/align.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/align.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/bookmark.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/bookmark.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/doc.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/doc.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/edit.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/edit.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/format.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/format.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/goto.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/goto.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/grep.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/grep.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/help.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/help.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/move.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/move.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/reload.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/reload.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/set.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/set.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/__pycache__/shell.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/__pycache__/shell.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% share/gedit/plugins/commander/modules/align.py share/gedit/plugins/commander/modules/bookmark.py share/gedit/plugins/commander/modules/doc.py share/gedit/plugins/commander/modules/edit.py share/gedit/plugins/commander/modules/find/__init__.py -share/gedit/plugins/commander/modules/find/__pycache__/__init__.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/find/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/find/__pycache__/finder.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/find/__pycache__/finder.cpython-%%PYVER%%.%%PYOEXTENSION%% -share/gedit/plugins/commander/modules/find/__pycache__/regex.cpython-%%PYVER%%.pyc -share/gedit/plugins/commander/modules/find/__pycache__/regex.cpython-%%PYVER%%.%%PYOEXTENSION%% +share/gedit/plugins/commander/modules/find/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/find/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/find/__pycache__/finder.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/find/__pycache__/finder.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +share/gedit/plugins/commander/modules/find/__pycache__/regex.cpython-%%PYTHON_SUFFIX%%.pyc +share/gedit/plugins/commander/modules/find/__pycache__/regex.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% share/gedit/plugins/commander/modules/find/finder.py share/gedit/plugins/commander/modules/find/regex.py share/gedit/plugins/commander/modules/format.py share/gedit/plugins/commander/modules/goto.py share/gedit/plugins/commander/modules/grep.py share/gedit/plugins/commander/modules/help.py share/gedit/plugins/commander/modules/move.py share/gedit/plugins/commander/modules/reload.py share/gedit/plugins/commander/modules/set.py share/gedit/plugins/commander/modules/shell.py share/help/C/gedit/bookmarks.page share/help/C/gedit/bracket-comp.page share/help/C/gedit/character-map.page share/help/C/gedit/code-assistance.page share/help/C/gedit/code-comment.page share/help/C/gedit/color-picker.page share/help/C/gedit/commander.page share/help/C/gedit/dashboard.page share/help/C/gedit/draw-spaces.page share/help/C/gedit/git.page share/help/C/gedit/join-split-lines.page share/help/C/gedit/legal-plugins.xml share/help/C/gedit/multi-edit.page share/help/C/gedit/session-saver.page share/help/C/gedit/terminal.page share/help/C/gedit/text-size.page share/help/C/gedit/word-completion.page share/help/C/gedit/zeitgeist-dataprovider.page share/help/ar/gedit/bookmarks.page share/help/ar/gedit/bracket-comp.page share/help/ar/gedit/character-map.page share/help/ar/gedit/code-assistance.page share/help/ar/gedit/code-comment.page share/help/ar/gedit/color-picker.page share/help/ar/gedit/commander.page share/help/ar/gedit/dashboard.page share/help/ar/gedit/draw-spaces.page share/help/ar/gedit/git.page share/help/ar/gedit/join-split-lines.page share/help/ar/gedit/legal-plugins.xml share/help/ar/gedit/multi-edit.page share/help/ar/gedit/session-saver.page share/help/ar/gedit/terminal.page share/help/ar/gedit/text-size.page share/help/ar/gedit/word-completion.page share/help/ar/gedit/zeitgeist-dataprovider.page share/help/bg/gedit/bookmarks.page share/help/bg/gedit/bracket-comp.page share/help/bg/gedit/character-map.page share/help/bg/gedit/code-assistance.page share/help/bg/gedit/code-comment.page share/help/bg/gedit/color-picker.page share/help/bg/gedit/commander.page share/help/bg/gedit/dashboard.page share/help/bg/gedit/draw-spaces.page share/help/bg/gedit/git.page share/help/bg/gedit/join-split-lines.page share/help/bg/gedit/legal-plugins.xml share/help/bg/gedit/multi-edit.page share/help/bg/gedit/session-saver.page share/help/bg/gedit/terminal.page share/help/bg/gedit/text-size.page share/help/bg/gedit/word-completion.page share/help/bg/gedit/zeitgeist-dataprovider.page share/help/ca/gedit/bookmarks.page share/help/ca/gedit/bracket-comp.page share/help/ca/gedit/character-map.page share/help/ca/gedit/code-assistance.page share/help/ca/gedit/code-comment.page share/help/ca/gedit/color-picker.page share/help/ca/gedit/commander.page share/help/ca/gedit/dashboard.page share/help/ca/gedit/draw-spaces.page share/help/ca/gedit/git.page share/help/ca/gedit/join-split-lines.page share/help/ca/gedit/legal-plugins.xml share/help/ca/gedit/multi-edit.page share/help/ca/gedit/session-saver.page share/help/ca/gedit/terminal.page share/help/ca/gedit/text-size.page share/help/ca/gedit/word-completion.page share/help/ca/gedit/zeitgeist-dataprovider.page share/help/cs/gedit/bookmarks.page share/help/cs/gedit/bracket-comp.page share/help/cs/gedit/character-map.page share/help/cs/gedit/code-assistance.page share/help/cs/gedit/code-comment.page share/help/cs/gedit/color-picker.page share/help/cs/gedit/commander.page share/help/cs/gedit/dashboard.page share/help/cs/gedit/draw-spaces.page share/help/cs/gedit/git.page share/help/cs/gedit/join-split-lines.page share/help/cs/gedit/legal-plugins.xml share/help/cs/gedit/multi-edit.page share/help/cs/gedit/session-saver.page share/help/cs/gedit/terminal.page share/help/cs/gedit/text-size.page share/help/cs/gedit/word-completion.page share/help/cs/gedit/zeitgeist-dataprovider.page share/help/da/gedit/bookmarks.page share/help/da/gedit/bracket-comp.page share/help/da/gedit/character-map.page share/help/da/gedit/code-assistance.page share/help/da/gedit/code-comment.page share/help/da/gedit/color-picker.page share/help/da/gedit/commander.page share/help/da/gedit/dashboard.page share/help/da/gedit/draw-spaces.page share/help/da/gedit/git.page share/help/da/gedit/join-split-lines.page share/help/da/gedit/legal-plugins.xml share/help/da/gedit/multi-edit.page share/help/da/gedit/session-saver.page share/help/da/gedit/terminal.page share/help/da/gedit/text-size.page share/help/da/gedit/word-completion.page share/help/da/gedit/zeitgeist-dataprovider.page share/help/de/gedit/bookmarks.page share/help/de/gedit/bracket-comp.page share/help/de/gedit/character-map.page share/help/de/gedit/code-assistance.page share/help/de/gedit/code-comment.page share/help/de/gedit/color-picker.page share/help/de/gedit/commander.page share/help/de/gedit/dashboard.page share/help/de/gedit/draw-spaces.page share/help/de/gedit/git.page share/help/de/gedit/join-split-lines.page share/help/de/gedit/legal-plugins.xml share/help/de/gedit/multi-edit.page share/help/de/gedit/session-saver.page share/help/de/gedit/terminal.page share/help/de/gedit/text-size.page share/help/de/gedit/word-completion.page share/help/de/gedit/zeitgeist-dataprovider.page share/help/el/gedit/bookmarks.page share/help/el/gedit/bracket-comp.page share/help/el/gedit/character-map.page share/help/el/gedit/code-assistance.page share/help/el/gedit/code-comment.page share/help/el/gedit/color-picker.page share/help/el/gedit/commander.page share/help/el/gedit/dashboard.page share/help/el/gedit/draw-spaces.page share/help/el/gedit/git.page share/help/el/gedit/join-split-lines.page share/help/el/gedit/legal-plugins.xml share/help/el/gedit/multi-edit.page share/help/el/gedit/session-saver.page share/help/el/gedit/terminal.page share/help/el/gedit/text-size.page share/help/el/gedit/word-completion.page share/help/el/gedit/zeitgeist-dataprovider.page share/help/es/gedit/bookmarks.page share/help/es/gedit/bracket-comp.page share/help/es/gedit/character-map.page share/help/es/gedit/code-assistance.page share/help/es/gedit/code-comment.page share/help/es/gedit/color-picker.page share/help/es/gedit/commander.page share/help/es/gedit/dashboard.page share/help/es/gedit/draw-spaces.page share/help/es/gedit/git.page share/help/es/gedit/join-split-lines.page share/help/es/gedit/legal-plugins.xml share/help/es/gedit/multi-edit.page share/help/es/gedit/session-saver.page share/help/es/gedit/terminal.page share/help/es/gedit/text-size.page share/help/es/gedit/word-completion.page share/help/es/gedit/zeitgeist-dataprovider.page share/help/eu/gedit/bookmarks.page share/help/eu/gedit/bracket-comp.page share/help/eu/gedit/character-map.page share/help/eu/gedit/code-assistance.page share/help/eu/gedit/code-comment.page share/help/eu/gedit/color-picker.page share/help/eu/gedit/commander.page share/help/eu/gedit/dashboard.page share/help/eu/gedit/draw-spaces.page share/help/eu/gedit/git.page share/help/eu/gedit/join-split-lines.page share/help/eu/gedit/legal-plugins.xml share/help/eu/gedit/multi-edit.page share/help/eu/gedit/session-saver.page share/help/eu/gedit/terminal.page share/help/eu/gedit/text-size.page share/help/eu/gedit/word-completion.page share/help/eu/gedit/zeitgeist-dataprovider.page share/help/fi/gedit/bookmarks.page share/help/fi/gedit/bracket-comp.page share/help/fi/gedit/character-map.page share/help/fi/gedit/code-assistance.page share/help/fi/gedit/code-comment.page share/help/fi/gedit/color-picker.page share/help/fi/gedit/commander.page share/help/fi/gedit/dashboard.page share/help/fi/gedit/draw-spaces.page share/help/fi/gedit/git.page share/help/fi/gedit/join-split-lines.page share/help/fi/gedit/legal-plugins.xml share/help/fi/gedit/multi-edit.page share/help/fi/gedit/session-saver.page share/help/fi/gedit/terminal.page share/help/fi/gedit/text-size.page share/help/fi/gedit/word-completion.page share/help/fi/gedit/zeitgeist-dataprovider.page share/help/fr/gedit/bookmarks.page share/help/fr/gedit/bracket-comp.page share/help/fr/gedit/character-map.page share/help/fr/gedit/code-assistance.page share/help/fr/gedit/code-comment.page share/help/fr/gedit/color-picker.page share/help/fr/gedit/commander.page share/help/fr/gedit/dashboard.page share/help/fr/gedit/draw-spaces.page share/help/fr/gedit/git.page share/help/fr/gedit/join-split-lines.page share/help/fr/gedit/legal-plugins.xml share/help/fr/gedit/multi-edit.page share/help/fr/gedit/session-saver.page share/help/fr/gedit/terminal.page share/help/fr/gedit/text-size.page share/help/fr/gedit/word-completion.page share/help/fr/gedit/zeitgeist-dataprovider.page share/help/gl/gedit/bookmarks.page share/help/gl/gedit/bracket-comp.page share/help/gl/gedit/character-map.page share/help/gl/gedit/code-assistance.page share/help/gl/gedit/code-comment.page share/help/gl/gedit/color-picker.page share/help/gl/gedit/commander.page share/help/gl/gedit/dashboard.page share/help/gl/gedit/draw-spaces.page share/help/gl/gedit/git.page share/help/gl/gedit/join-split-lines.page share/help/gl/gedit/legal-plugins.xml share/help/gl/gedit/multi-edit.page share/help/gl/gedit/session-saver.page share/help/gl/gedit/terminal.page share/help/gl/gedit/text-size.page share/help/gl/gedit/word-completion.page share/help/gl/gedit/zeitgeist-dataprovider.page share/help/hu/gedit/bookmarks.page share/help/hu/gedit/bracket-comp.page share/help/hu/gedit/character-map.page share/help/hu/gedit/code-assistance.page share/help/hu/gedit/code-comment.page share/help/hu/gedit/color-picker.page share/help/hu/gedit/commander.page share/help/hu/gedit/dashboard.page share/help/hu/gedit/draw-spaces.page share/help/hu/gedit/git.page share/help/hu/gedit/join-split-lines.page share/help/hu/gedit/legal-plugins.xml share/help/hu/gedit/multi-edit.page share/help/hu/gedit/session-saver.page share/help/hu/gedit/terminal.page share/help/hu/gedit/text-size.page share/help/hu/gedit/word-completion.page share/help/hu/gedit/zeitgeist-dataprovider.page share/help/it/gedit/bookmarks.page share/help/it/gedit/bracket-comp.page share/help/it/gedit/character-map.page share/help/it/gedit/code-assistance.page share/help/it/gedit/code-comment.page share/help/it/gedit/color-picker.page share/help/it/gedit/commander.page share/help/it/gedit/dashboard.page share/help/it/gedit/draw-spaces.page share/help/it/gedit/git.page share/help/it/gedit/join-split-lines.page share/help/it/gedit/legal-plugins.xml share/help/it/gedit/multi-edit.page share/help/it/gedit/session-saver.page share/help/it/gedit/terminal.page share/help/it/gedit/text-size.page share/help/it/gedit/word-completion.page share/help/it/gedit/zeitgeist-dataprovider.page share/help/ja/gedit/bookmarks.page share/help/ja/gedit/bracket-comp.page share/help/ja/gedit/character-map.page share/help/ja/gedit/code-assistance.page share/help/ja/gedit/code-comment.page share/help/ja/gedit/color-picker.page share/help/ja/gedit/commander.page share/help/ja/gedit/dashboard.page share/help/ja/gedit/draw-spaces.page share/help/ja/gedit/git.page share/help/ja/gedit/join-split-lines.page share/help/ja/gedit/legal-plugins.xml share/help/ja/gedit/multi-edit.page share/help/ja/gedit/session-saver.page share/help/ja/gedit/terminal.page share/help/ja/gedit/text-size.page share/help/ja/gedit/word-completion.page share/help/ja/gedit/zeitgeist-dataprovider.page share/help/ko/gedit/bookmarks.page share/help/ko/gedit/bracket-comp.page share/help/ko/gedit/character-map.page share/help/ko/gedit/code-assistance.page share/help/ko/gedit/code-comment.page share/help/ko/gedit/color-picker.page share/help/ko/gedit/commander.page share/help/ko/gedit/dashboard.page share/help/ko/gedit/draw-spaces.page share/help/ko/gedit/git.page share/help/ko/gedit/join-split-lines.page share/help/ko/gedit/legal-plugins.xml share/help/ko/gedit/multi-edit.page share/help/ko/gedit/session-saver.page share/help/ko/gedit/terminal.page share/help/ko/gedit/text-size.page share/help/ko/gedit/word-completion.page share/help/ko/gedit/zeitgeist-dataprovider.page share/help/lv/gedit/bookmarks.page share/help/lv/gedit/bracket-comp.page share/help/lv/gedit/character-map.page share/help/lv/gedit/code-assistance.page share/help/lv/gedit/code-comment.page share/help/lv/gedit/color-picker.page share/help/lv/gedit/commander.page share/help/lv/gedit/dashboard.page share/help/lv/gedit/draw-spaces.page share/help/lv/gedit/git.page share/help/lv/gedit/join-split-lines.page share/help/lv/gedit/legal-plugins.xml share/help/lv/gedit/multi-edit.page share/help/lv/gedit/session-saver.page share/help/lv/gedit/terminal.page share/help/lv/gedit/text-size.page share/help/lv/gedit/word-completion.page share/help/lv/gedit/zeitgeist-dataprovider.page share/help/oc/gedit/bookmarks.page share/help/oc/gedit/bracket-comp.page share/help/oc/gedit/character-map.page share/help/oc/gedit/code-assistance.page share/help/oc/gedit/code-comment.page share/help/oc/gedit/color-picker.page share/help/oc/gedit/commander.page share/help/oc/gedit/dashboard.page share/help/oc/gedit/draw-spaces.page share/help/oc/gedit/git.page share/help/oc/gedit/join-split-lines.page share/help/oc/gedit/legal-plugins.xml share/help/oc/gedit/multi-edit.page share/help/oc/gedit/session-saver.page share/help/oc/gedit/terminal.page share/help/oc/gedit/text-size.page share/help/oc/gedit/word-completion.page share/help/oc/gedit/zeitgeist-dataprovider.page share/help/pt_BR/gedit/bookmarks.page share/help/pt_BR/gedit/bracket-comp.page share/help/pt_BR/gedit/character-map.page share/help/pt_BR/gedit/code-assistance.page share/help/pt_BR/gedit/code-comment.page share/help/pt_BR/gedit/color-picker.page share/help/pt_BR/gedit/commander.page share/help/pt_BR/gedit/dashboard.page share/help/pt_BR/gedit/draw-spaces.page share/help/pt_BR/gedit/git.page share/help/pt_BR/gedit/join-split-lines.page share/help/pt_BR/gedit/legal-plugins.xml share/help/pt_BR/gedit/multi-edit.page share/help/pt_BR/gedit/session-saver.page share/help/pt_BR/gedit/terminal.page share/help/pt_BR/gedit/text-size.page share/help/pt_BR/gedit/word-completion.page share/help/pt_BR/gedit/zeitgeist-dataprovider.page share/help/ru/gedit/bookmarks.page share/help/ru/gedit/bracket-comp.page share/help/ru/gedit/character-map.page share/help/ru/gedit/code-assistance.page share/help/ru/gedit/code-comment.page share/help/ru/gedit/color-picker.page share/help/ru/gedit/commander.page share/help/ru/gedit/dashboard.page share/help/ru/gedit/draw-spaces.page share/help/ru/gedit/git.page share/help/ru/gedit/join-split-lines.page share/help/ru/gedit/legal-plugins.xml share/help/ru/gedit/multi-edit.page share/help/ru/gedit/session-saver.page share/help/ru/gedit/terminal.page share/help/ru/gedit/text-size.page share/help/ru/gedit/word-completion.page share/help/ru/gedit/zeitgeist-dataprovider.page share/help/sl/gedit/bookmarks.page share/help/sl/gedit/bracket-comp.page share/help/sl/gedit/character-map.page share/help/sl/gedit/code-assistance.page share/help/sl/gedit/code-comment.page share/help/sl/gedit/color-picker.page share/help/sl/gedit/commander.page share/help/sl/gedit/dashboard.page share/help/sl/gedit/draw-spaces.page share/help/sl/gedit/git.page share/help/sl/gedit/join-split-lines.page share/help/sl/gedit/legal-plugins.xml share/help/sl/gedit/multi-edit.page share/help/sl/gedit/session-saver.page share/help/sl/gedit/terminal.page share/help/sl/gedit/text-size.page share/help/sl/gedit/word-completion.page share/help/sl/gedit/zeitgeist-dataprovider.page share/help/sv/gedit/bookmarks.page share/help/sv/gedit/bracket-comp.page share/help/sv/gedit/character-map.page share/help/sv/gedit/code-assistance.page share/help/sv/gedit/code-comment.page share/help/sv/gedit/color-picker.page share/help/sv/gedit/commander.page share/help/sv/gedit/dashboard.page share/help/sv/gedit/draw-spaces.page share/help/sv/gedit/git.page share/help/sv/gedit/join-split-lines.page share/help/sv/gedit/legal-plugins.xml share/help/sv/gedit/multi-edit.page share/help/sv/gedit/session-saver.page share/help/sv/gedit/terminal.page share/help/sv/gedit/text-size.page share/help/sv/gedit/word-completion.page share/help/sv/gedit/zeitgeist-dataprovider.page share/help/te/gedit/bookmarks.page share/help/te/gedit/bracket-comp.page share/help/te/gedit/character-map.page share/help/te/gedit/code-assistance.page share/help/te/gedit/code-comment.page share/help/te/gedit/color-picker.page share/help/te/gedit/commander.page share/help/te/gedit/dashboard.page share/help/te/gedit/draw-spaces.page share/help/te/gedit/git.page share/help/te/gedit/join-split-lines.page share/help/te/gedit/legal-plugins.xml share/help/te/gedit/multi-edit.page share/help/te/gedit/session-saver.page share/help/te/gedit/terminal.page share/help/te/gedit/text-size.page share/help/te/gedit/word-completion.page share/help/te/gedit/zeitgeist-dataprovider.page share/help/th/gedit/bookmarks.page share/help/th/gedit/bracket-comp.page share/help/th/gedit/character-map.page share/help/th/gedit/code-assistance.page share/help/th/gedit/code-comment.page share/help/th/gedit/color-picker.page share/help/th/gedit/commander.page share/help/th/gedit/dashboard.page share/help/th/gedit/draw-spaces.page share/help/th/gedit/git.page share/help/th/gedit/join-split-lines.page share/help/th/gedit/legal-plugins.xml share/help/th/gedit/multi-edit.page share/help/th/gedit/session-saver.page share/help/th/gedit/terminal.page share/help/th/gedit/text-size.page share/help/th/gedit/word-completion.page share/help/th/gedit/zeitgeist-dataprovider.page share/help/uk/gedit/bookmarks.page share/help/uk/gedit/bracket-comp.page share/help/uk/gedit/character-map.page share/help/uk/gedit/code-assistance.page share/help/uk/gedit/code-comment.page share/help/uk/gedit/color-picker.page share/help/uk/gedit/commander.page share/help/uk/gedit/dashboard.page share/help/uk/gedit/draw-spaces.page share/help/uk/gedit/git.page share/help/uk/gedit/join-split-lines.page share/help/uk/gedit/legal-plugins.xml share/help/uk/gedit/multi-edit.page share/help/uk/gedit/session-saver.page share/help/uk/gedit/terminal.page share/help/uk/gedit/text-size.page share/help/uk/gedit/word-completion.page share/help/uk/gedit/zeitgeist-dataprovider.page share/help/zh_CN/gedit/bookmarks.page share/help/zh_CN/gedit/bracket-comp.page share/help/zh_CN/gedit/character-map.page share/help/zh_CN/gedit/code-assistance.page share/help/zh_CN/gedit/code-comment.page share/help/zh_CN/gedit/color-picker.page share/help/zh_CN/gedit/commander.page share/help/zh_CN/gedit/dashboard.page share/help/zh_CN/gedit/draw-spaces.page share/help/zh_CN/gedit/git.page share/help/zh_CN/gedit/join-split-lines.page share/help/zh_CN/gedit/legal-plugins.xml share/help/zh_CN/gedit/multi-edit.page share/help/zh_CN/gedit/session-saver.page share/help/zh_CN/gedit/terminal.page share/help/zh_CN/gedit/text-size.page share/help/zh_CN/gedit/word-completion.page share/help/zh_CN/gedit/zeitgeist-dataprovider.page share/help/zh_HK/gedit/bookmarks.page share/help/zh_HK/gedit/bracket-comp.page share/help/zh_HK/gedit/character-map.page share/help/zh_HK/gedit/code-assistance.page share/help/zh_HK/gedit/code-comment.page share/help/zh_HK/gedit/color-picker.page share/help/zh_HK/gedit/commander.page share/help/zh_HK/gedit/dashboard.page share/help/zh_HK/gedit/draw-spaces.page share/help/zh_HK/gedit/git.page share/help/zh_HK/gedit/join-split-lines.page share/help/zh_HK/gedit/legal-plugins.xml share/help/zh_HK/gedit/multi-edit.page share/help/zh_HK/gedit/session-saver.page share/help/zh_HK/gedit/terminal.page share/help/zh_HK/gedit/text-size.page share/help/zh_HK/gedit/word-completion.page share/help/zh_HK/gedit/zeitgeist-dataprovider.page share/help/zh_TW/gedit/bookmarks.page share/help/zh_TW/gedit/bracket-comp.page share/help/zh_TW/gedit/character-map.page share/help/zh_TW/gedit/code-assistance.page share/help/zh_TW/gedit/code-comment.page share/help/zh_TW/gedit/color-picker.page share/help/zh_TW/gedit/commander.page share/help/zh_TW/gedit/dashboard.page share/help/zh_TW/gedit/draw-spaces.page share/help/zh_TW/gedit/git.page share/help/zh_TW/gedit/join-split-lines.page share/help/zh_TW/gedit/legal-plugins.xml share/help/zh_TW/gedit/multi-edit.page share/help/zh_TW/gedit/session-saver.page share/help/zh_TW/gedit/terminal.page share/help/zh_TW/gedit/text-size.page share/help/zh_TW/gedit/word-completion.page share/help/zh_TW/gedit/zeitgeist-dataprovider.page share/locale/af/LC_MESSAGES/gedit-plugins.mo share/locale/am/LC_MESSAGES/gedit-plugins.mo share/locale/ar/LC_MESSAGES/gedit-plugins.mo share/locale/as/LC_MESSAGES/gedit-plugins.mo share/locale/ast/LC_MESSAGES/gedit-plugins.mo share/locale/az/LC_MESSAGES/gedit-plugins.mo share/locale/be/LC_MESSAGES/gedit-plugins.mo share/locale/be@latin/LC_MESSAGES/gedit-plugins.mo share/locale/bg/LC_MESSAGES/gedit-plugins.mo share/locale/bn/LC_MESSAGES/gedit-plugins.mo share/locale/bn_IN/LC_MESSAGES/gedit-plugins.mo share/locale/br/LC_MESSAGES/gedit-plugins.mo share/locale/bs/LC_MESSAGES/gedit-plugins.mo share/locale/ca/LC_MESSAGES/gedit-plugins.mo share/locale/ca@valencia/LC_MESSAGES/gedit-plugins.mo share/locale/crh/LC_MESSAGES/gedit-plugins.mo share/locale/cs/LC_MESSAGES/gedit-plugins.mo share/locale/cy/LC_MESSAGES/gedit-plugins.mo share/locale/da/LC_MESSAGES/gedit-plugins.mo share/locale/de/LC_MESSAGES/gedit-plugins.mo share/locale/dz/LC_MESSAGES/gedit-plugins.mo share/locale/el/LC_MESSAGES/gedit-plugins.mo share/locale/en@shaw/LC_MESSAGES/gedit-plugins.mo share/locale/en_CA/LC_MESSAGES/gedit-plugins.mo share/locale/en_GB/LC_MESSAGES/gedit-plugins.mo share/locale/eo/LC_MESSAGES/gedit-plugins.mo share/locale/es/LC_MESSAGES/gedit-plugins.mo share/locale/et/LC_MESSAGES/gedit-plugins.mo share/locale/eu/LC_MESSAGES/gedit-plugins.mo share/locale/fa/LC_MESSAGES/gedit-plugins.mo share/locale/fi/LC_MESSAGES/gedit-plugins.mo share/locale/fr/LC_MESSAGES/gedit-plugins.mo share/locale/ga/LC_MESSAGES/gedit-plugins.mo share/locale/gl/LC_MESSAGES/gedit-plugins.mo share/locale/gu/LC_MESSAGES/gedit-plugins.mo share/locale/he/LC_MESSAGES/gedit-plugins.mo share/locale/hi/LC_MESSAGES/gedit-plugins.mo share/locale/hr/LC_MESSAGES/gedit-plugins.mo share/locale/hu/LC_MESSAGES/gedit-plugins.mo share/locale/hy/LC_MESSAGES/gedit-plugins.mo share/locale/id/LC_MESSAGES/gedit-plugins.mo share/locale/is/LC_MESSAGES/gedit-plugins.mo share/locale/it/LC_MESSAGES/gedit-plugins.mo share/locale/ja/LC_MESSAGES/gedit-plugins.mo share/locale/ka/LC_MESSAGES/gedit-plugins.mo share/locale/kk/LC_MESSAGES/gedit-plugins.mo share/locale/kn/LC_MESSAGES/gedit-plugins.mo share/locale/ko/LC_MESSAGES/gedit-plugins.mo share/locale/ku/LC_MESSAGES/gedit-plugins.mo share/locale/la/LC_MESSAGES/gedit-plugins.mo share/locale/lt/LC_MESSAGES/gedit-plugins.mo share/locale/lv/LC_MESSAGES/gedit-plugins.mo share/locale/mai/LC_MESSAGES/gedit-plugins.mo share/locale/mg/LC_MESSAGES/gedit-plugins.mo share/locale/mi/LC_MESSAGES/gedit-plugins.mo share/locale/mk/LC_MESSAGES/gedit-plugins.mo share/locale/ml/LC_MESSAGES/gedit-plugins.mo share/locale/mn/LC_MESSAGES/gedit-plugins.mo share/locale/mr/LC_MESSAGES/gedit-plugins.mo share/locale/ms/LC_MESSAGES/gedit-plugins.mo share/locale/nb/LC_MESSAGES/gedit-plugins.mo share/locale/nds/LC_MESSAGES/gedit-plugins.mo share/locale/ne/LC_MESSAGES/gedit-plugins.mo share/locale/nl/LC_MESSAGES/gedit-plugins.mo share/locale/nn/LC_MESSAGES/gedit-plugins.mo share/locale/oc/LC_MESSAGES/gedit-plugins.mo share/locale/or/LC_MESSAGES/gedit-plugins.mo share/locale/pa/LC_MESSAGES/gedit-plugins.mo share/locale/pl/LC_MESSAGES/gedit-plugins.mo share/locale/ps/LC_MESSAGES/gedit-plugins.mo share/locale/pt/LC_MESSAGES/gedit-plugins.mo share/locale/pt_BR/LC_MESSAGES/gedit-plugins.mo share/locale/ro/LC_MESSAGES/gedit-plugins.mo share/locale/ru/LC_MESSAGES/gedit-plugins.mo share/locale/rw/LC_MESSAGES/gedit-plugins.mo share/locale/si/LC_MESSAGES/gedit-plugins.mo share/locale/sk/LC_MESSAGES/gedit-plugins.mo share/locale/sl/LC_MESSAGES/gedit-plugins.mo share/locale/sq/LC_MESSAGES/gedit-plugins.mo share/locale/sr/LC_MESSAGES/gedit-plugins.mo share/locale/sr@latin/LC_MESSAGES/gedit-plugins.mo share/locale/sv/LC_MESSAGES/gedit-plugins.mo share/locale/ta/LC_MESSAGES/gedit-plugins.mo share/locale/te/LC_MESSAGES/gedit-plugins.mo share/locale/th/LC_MESSAGES/gedit-plugins.mo share/locale/tk/LC_MESSAGES/gedit-plugins.mo share/locale/tr/LC_MESSAGES/gedit-plugins.mo share/locale/uk/LC_MESSAGES/gedit-plugins.mo share/locale/vi/LC_MESSAGES/gedit-plugins.mo share/locale/wa/LC_MESSAGES/gedit-plugins.mo share/locale/xh/LC_MESSAGES/gedit-plugins.mo share/locale/zh_CN/LC_MESSAGES/gedit-plugins.mo share/locale/zh_HK/LC_MESSAGES/gedit-plugins.mo share/locale/zh_TW/LC_MESSAGES/gedit-plugins.mo Index: head/graphics/eog-plugins/Makefile =================================================================== --- head/graphics/eog-plugins/Makefile (revision 430838) +++ head/graphics/eog-plugins/Makefile (revision 430839) @@ -1,76 +1,48 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ PORTNAME= eog-plugins PORTVERSION= 3.16.3 CATEGORIES= graphics gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Plug-ins for the Eye of GNOME image viewer application BUILD_DEPENDS= eog:graphics/eog LIB_DEPENDS= libgdata.so:devel/libgdata \ libexif.so:graphics/libexif \ libpeas-1.0.so:devel/libpeas RUN_DEPENDS= eog:graphics/eog PORTSCOUT= limitw:1,even USE_GNOME= intltool gtk30 USES= gettext gmake libtool pathfix pkgconfig tar:xz GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.eog.plugins.exif-display.gschema.xml OPTIONS_DEFINE= CHAMPLAIN PYTHON OPTIONS_DEFAULT=CHAMPLAIN PYTHON +OPTIONS_SUB= yes CHAMPLAIN_DESC= Champlain map plugin -.include +CHAMPLAIN_LIB_DEPENDS= libchamplain-0.12.so:graphics/libchamplain +CHAMPLAIN_USE= GL=gl +PYTHON_CONFIGURE_ENABLE=python +PYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libpeas>=0:devel/py3-libpeas +PYTHON_USES= python:3 +PYTHON_VARS= GLIB_SCHEMAS+="org.gnome.eog.plugins.export-to-folder.gschema.xml org.gnome.eog.plugins.fullscreenbg.gschema.xml org.gnome.eog.plugins.pythonconsole.gschema.xml" -.if ${PORT_OPTIONS:MCHAMPLAIN} -USE_GL= gl -LIB_DEPENDS+= libchamplain-0.12.so:graphics/libchamplain -PLIST_SUB+= CHAMPLAIN="" -.else -PLIST_SUB+= CHAMPLAIN="@comment " -.endif - -PLIST_SUB+= PYVER=${PYTHON_VER:S|.||} -.if ${PORT_OPTIONS:MPYTHON} -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}libpeas>=0:devel/py3-libpeas -CONFIGURE_ARGS+=--enable-python -USES+= python:3 -PLIST_SUB+= PYTHON="" -GLIB_SCHEMAS+= org.gnome.eog.plugins.export-to-folder.gschema.xml \ - org.gnome.eog.plugins.fullscreenbg.gschema.xml \ - org.gnome.eog.plugins.pythonconsole.gschema.xml -.else -CONFIGURE_ARGS+=--disable-python -PLIST_SUB+= PYTHON="@comment " -.endif - -.if ! ${PORT_OPTIONS:MCHAMPLAIN} -post-patch: +post-patch-CHAMPLAIN-off: @${REINPLACE_CMD} -e 's|champlain-gtk|disabled-champlain-gtk|g' \ ${WRKSRC}/configure @${REINPLACE_CMD} '/^DEFAULT_PLUGINS=/,/^$$/ s/map//' \ ${WRKSRC}/configure -.endif -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} - -.include +.include Index: head/graphics/eog-plugins/pkg-plist =================================================================== --- head/graphics/eog-plugins/pkg-plist (revision 430838) +++ head/graphics/eog-plugins/pkg-plist (revision 430839) @@ -1,108 +1,108 @@ lib/eog/plugins/exif-display.plugin %%PYTHON%%lib/eog/plugins/export-to-folder.plugin %%PYTHON%%lib/eog/plugins/export-to-folder.py -%%PYTHON%%lib/eog/plugins/__pycache__/export-to-folder.cpython-%%PYVER%%.pyc -%%PYTHON%%lib/eog/plugins/__pycache__/export-to-folder.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/eog/plugins/__pycache__/maximize-windows.cpython-%%PYVER%%.pyc -%%PYTHON%%lib/eog/plugins/__pycache__/maximize-windows.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/eog/plugins/__pycache__/export-to-folder.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/eog/plugins/__pycache__/export-to-folder.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/eog/plugins/__pycache__/maximize-windows.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/eog/plugins/__pycache__/maximize-windows.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/eog/plugins/fit-to-width.plugin %%PYTHON%%lib/eog/plugins/fullscreenbg.plugin %%PYTHON%%lib/eog/plugins/fullscreenbg.py -%%PYTHON%%lib/eog/plugins/__pycache__/fullscreenbg.cpython-%%PYVER%%.pyc -%%PYTHON%%lib/eog/plugins/__pycache__/fullscreenbg.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/eog/plugins/__pycache__/fullscreenbg.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/eog/plugins/__pycache__/fullscreenbg.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% lib/eog/plugins/hide-titlebar.plugin lib/eog/plugins/libexif-display.so lib/eog/plugins/libfit-to-width.so lib/eog/plugins/libhide-titlebar.so lib/eog/plugins/liblight-theme.so %%CHAMPLAIN%%lib/eog/plugins/libmap.so lib/eog/plugins/libpostasa.so lib/eog/plugins/libsend-by-mail.so lib/eog/plugins/light-theme.plugin %%CHAMPLAIN%%lib/eog/plugins/map.plugin %%PYTHON%%lib/eog/plugins/maximize-windows.plugin %%PYTHON%%lib/eog/plugins/maximize-windows.py lib/eog/plugins/postasa.plugin %%PYTHON%%lib/eog/plugins/pythonconsole.plugin %%PYTHON%%lib/eog/plugins/pythonconsole/__init__.py -%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYVER%%.pyc -%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/config.cpython-%%PYVER%%.pyc -%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/config.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/console.cpython-%%PYVER%%.pyc -%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/console.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/config.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/config.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/console.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/eog/plugins/pythonconsole/__pycache__/console.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON%%lib/eog/plugins/pythonconsole/config.py %%PYTHON%%lib/eog/plugins/pythonconsole/console.py lib/eog/plugins/send-by-mail.plugin %%PYTHON%%lib/eog/plugins/slideshowshuffle.plugin %%PYTHON%%lib/eog/plugins/slideshowshuffle.py -%%PYTHON%%lib/eog/plugins/__pycache__/slideshowshuffle.cpython-%%PYVER%%.pyc -%%PYTHON%%lib/eog/plugins/__pycache__/slideshowshuffle.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON%%lib/eog/plugins/__pycache__/slideshowshuffle.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON%%lib/eog/plugins/__pycache__/slideshowshuffle.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% share/appdata/eog-exif-display.metainfo.xml %%PYTHON%%share/appdata/eog-export-to-folder.metainfo.xml share/appdata/eog-fit-to-width.metainfo.xml %%PYTHON%%share/appdata/eog-fullscreenbg.metainfo.xml share/appdata/eog-hide-titlebar.metainfo.xml share/appdata/eog-light-theme.metainfo.xml %%PYTHON%%share/appdata/eog-map.metainfo.xml %%PYTHON%%share/appdata/eog-maximize-windows.metainfo.xml share/appdata/eog-postasa.metainfo.xml %%PYTHON%%share/appdata/eog-pythonconsole.metainfo.xml share/appdata/eog-send-by-mail.metainfo.xml %%PYTHON%%share/appdata/eog-slideshowshuffle.metainfo.xml %%PYTHON%%share/eog/plugins/export-to-folder/preferences_dialog.ui %%PYTHON%%share/eog/plugins/fullscreenbg/preferences_dialog.ui %%PYTHON%%share/eog/plugins/pythonconsole/config.ui share/locale/ar/LC_MESSAGES/eog-plugins.mo share/locale/as/LC_MESSAGES/eog-plugins.mo share/locale/be@latin/LC_MESSAGES/eog-plugins.mo share/locale/bg/LC_MESSAGES/eog-plugins.mo share/locale/bn_IN/LC_MESSAGES/eog-plugins.mo share/locale/bs/LC_MESSAGES/eog-plugins.mo share/locale/ca/LC_MESSAGES/eog-plugins.mo share/locale/ca@valencia/LC_MESSAGES/eog-plugins.mo share/locale/cs/LC_MESSAGES/eog-plugins.mo share/locale/da/LC_MESSAGES/eog-plugins.mo share/locale/de/LC_MESSAGES/eog-plugins.mo share/locale/el/LC_MESSAGES/eog-plugins.mo share/locale/en_GB/LC_MESSAGES/eog-plugins.mo share/locale/es/LC_MESSAGES/eog-plugins.mo share/locale/eu/LC_MESSAGES/eog-plugins.mo share/locale/fi/LC_MESSAGES/eog-plugins.mo share/locale/fr/LC_MESSAGES/eog-plugins.mo share/locale/gl/LC_MESSAGES/eog-plugins.mo share/locale/gu/LC_MESSAGES/eog-plugins.mo share/locale/he/LC_MESSAGES/eog-plugins.mo share/locale/hu/LC_MESSAGES/eog-plugins.mo share/locale/id/LC_MESSAGES/eog-plugins.mo share/locale/it/LC_MESSAGES/eog-plugins.mo share/locale/ja/LC_MESSAGES/eog-plugins.mo share/locale/kn/LC_MESSAGES/eog-plugins.mo share/locale/ko/LC_MESSAGES/eog-plugins.mo share/locale/lt/LC_MESSAGES/eog-plugins.mo share/locale/lv/LC_MESSAGES/eog-plugins.mo share/locale/mk/LC_MESSAGES/eog-plugins.mo share/locale/ml/LC_MESSAGES/eog-plugins.mo share/locale/mr/LC_MESSAGES/eog-plugins.mo share/locale/nb/LC_MESSAGES/eog-plugins.mo share/locale/or/LC_MESSAGES/eog-plugins.mo share/locale/pa/LC_MESSAGES/eog-plugins.mo share/locale/pl/LC_MESSAGES/eog-plugins.mo share/locale/pt/LC_MESSAGES/eog-plugins.mo share/locale/pt_BR/LC_MESSAGES/eog-plugins.mo share/locale/ro/LC_MESSAGES/eog-plugins.mo share/locale/ru/LC_MESSAGES/eog-plugins.mo share/locale/sk/LC_MESSAGES/eog-plugins.mo share/locale/sl/LC_MESSAGES/eog-plugins.mo share/locale/sq/LC_MESSAGES/eog-plugins.mo share/locale/sr/LC_MESSAGES/eog-plugins.mo share/locale/sr@latin/LC_MESSAGES/eog-plugins.mo share/locale/sv/LC_MESSAGES/eog-plugins.mo share/locale/ta/LC_MESSAGES/eog-plugins.mo share/locale/te/LC_MESSAGES/eog-plugins.mo share/locale/tr/LC_MESSAGES/eog-plugins.mo share/locale/uk/LC_MESSAGES/eog-plugins.mo share/locale/vi/LC_MESSAGES/eog-plugins.mo share/locale/zh_CN/LC_MESSAGES/eog-plugins.mo share/locale/zh_HK/LC_MESSAGES/eog-plugins.mo share/locale/zh_TW/LC_MESSAGES/eog-plugins.mo Index: head/graphics/py3-cairo/Makefile =================================================================== --- head/graphics/py3-cairo/Makefile (revision 430838) +++ head/graphics/py3-cairo/Makefile (revision 430839) @@ -1,53 +1,42 @@ # Created by: Michael Johnson # $FreeBSD$ # $MCom: ports/graphics/py-cairo/Makefile,v 1.28 2010/11/15 14:12:13 kwm Exp $ PORTNAME= cairo PORTVERSION= 1.10.0 PORTREVISION= 3 CATEGORIES= graphics python MASTER_SITES= http://cairographics.org/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= py${PORTNAME}-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org COMMENT= Python 3 bindings for Cairo USES= pkgconfig python:3 shebangfix tar:bzip2 waf USE_GNOME= cairo CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib SHEBANG_FILES= examples/*.py examples/*/*.py test/*.py -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYTVER=${PYTHON_VER:S/.//} \ - PYOEXTENSION=${PYOEXTENSION} - post-patch: @${REINPLACE_CMD} -e 's|python %s|${PYTHON_CMD} %s|g' \ ${WRKSRC}/test/examples_test.py pre-configure: # Run waf configure twice, once to extract waflib and patch and then actual configure @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} || : @cd ${WRKSRC}/.waf3-1.6.4-e3c1e08604b18a10567cfcd2d02eb6e6/ && \ ${PATCH} -p1 < ${FILESDIR}/pycairo-1.10.0-waf-py3_4.patch && \ ${PATCH} -p1 < ${FILESDIR}/pycairo-1.10.0-waf-py3_5.patch post-install: @${RM} ${STAGEDIR}${PYTHON_SITELIBDIR}/cairo/__init__.py[co] @cd ${STAGEDIR}${PREFIX} && ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -d ${PYTHONPREFIX_SITELIBDIR} -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} @cd ${STAGEDIR}${PREFIX} && ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -d ${PYTHONPREFIX_SITELIBDIR} -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/cairo/_cairo.so -.include +.include Index: head/graphics/py3-cairo/pkg-plist =================================================================== --- head/graphics/py3-cairo/pkg-plist (revision 430838) +++ head/graphics/py3-cairo/pkg-plist (revision 430839) @@ -1,6 +1,6 @@ include/pycairo/py3cairo.h -%%PYTHON_SITELIBDIR%%/cairo/__pycache__/__init__.cpython-%%PYTVER%%.pyc -%%PYTHON_SITELIBDIR%%/cairo/__pycache__/__init__.cpython-%%PYTVER%%.%%PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/cairo/__init__.py +%%PYTHON_SITELIBDIR%%/cairo/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/cairo/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc %%PYTHON_SITELIBDIR%%/cairo/_cairo.so libdata/pkgconfig/py3cairo.pc Index: head/math/convertall/Makefile =================================================================== --- head/math/convertall/Makefile (revision 430838) +++ head/math/convertall/Makefile (revision 430839) @@ -1,57 +1,48 @@ # Created by: Michael Johnson # $FreeBSD$ PORTNAME= convertall PORTVERSION= 0.6.1 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} MAINTAINER= jhale@FreeBSD.org COMMENT= Another unit converter LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/doc/LICENSE USES= pyqt:4 python:3.3+ USE_PYQT= core gui CONFIGURE_ARGS= -p ${PREFIX} -d ${DOCSDIR} -i ${DATADIR}/icons -b ${STAGEDIR} NO_ARCH= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/ConvertAll DESKTOP_ENTRIES="ConvertAll" \ "Unit Converter" \ "${DATADIR}/icons/${PORTNAME}.svg" \ "${PORTNAME}" \ "Qt;Utility;Calculator;" \ false OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_CONFIGURE_OFF= -s do-install: (cd ${WRKSRC} && ${PYTHON_CMD} install.py ${CONFIGURE_ARGS}) (cd ${STAGEDIR}${PREFIX} && \ ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -d ${DATADIR} -f ${DATADIR_REL}) (cd ${STAGEDIR}${DOCSDIR} && ${RM} INSTALL LICENSE) .include -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYTHON_SUFFIX="${PYTHON_SUFFIX}" \ - PYOEXTENSION="${PYOEXTENSION}" - .if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif .include Index: head/math/convertall/pkg-plist =================================================================== --- head/math/convertall/pkg-plist (revision 430838) +++ head/math/convertall/pkg-plist (revision 430839) @@ -1,90 +1,90 @@ bin/convertall %%DATADIR%%/__pycache__/cmdline.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/cmdline.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/cmdline.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/convertall.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/convertall.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/convertall.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/convertdlg.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/convertdlg.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/convertdlg.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/finddlg.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/finddlg.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/finddlg.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/helpview.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/helpview.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/helpview.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/icondict.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/icondict.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/icondict.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/modbutton.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/modbutton.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/modbutton.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/numedit.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/numedit.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/numedit.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/option.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/option.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/option.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/optiondefaults.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/optiondefaults.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/optiondefaults.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/optiondlg.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/optiondlg.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/optiondlg.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/recentunits.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/recentunits.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/recentunits.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/setup.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/setup.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/setup.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/unitatom.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/unitatom.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/unitatom.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/unitdata.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/unitdata.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/unitdata.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/unitedit.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/unitedit.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/unitedit.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/unitgroup.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/unitgroup.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/unitgroup.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/unitlistview.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/unitlistview.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/unitlistview.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/cmdline.py %%DATADIR%%/convertall.pro %%DATADIR%%/convertall.py %%DATADIR%%/convertdlg.py %%DATADIR%%/data/units.dat %%NLS%%%%DATADIR%%/data/units_de.dat %%NLS%%%%DATADIR%%/data/units_es.dat %%NLS%%%%DATADIR%%/data/units_fr.dat %%NLS%%%%DATADIR%%/data/units_ru.dat %%DATADIR%%/finddlg.py %%DATADIR%%/helpview.py %%DATADIR%%/icondict.py %%DATADIR%%/icons/convertall.svg %%DATADIR%%/icons/convertall_lg.png %%DATADIR%%/icons/convertall_med.png %%DATADIR%%/icons/convertall_sm.png %%DATADIR%%/icons/helpback.png %%DATADIR%%/icons/helpforward.png %%DATADIR%%/icons/helphome.png %%DATADIR%%/icons/helpnext.png %%DATADIR%%/icons/helpprevious.png %%DATADIR%%/modbutton.py %%DATADIR%%/numedit.py %%DATADIR%%/option.py %%DATADIR%%/optiondefaults.py %%DATADIR%%/optiondlg.py %%DATADIR%%/recentunits.py %%DATADIR%%/setup.py %%NLS%%%%DATADIR%%/translations/convertall_de.qm %%NLS%%%%DATADIR%%/translations/convertall_de.ts %%NLS%%%%DATADIR%%/translations/convertall_es.qm %%NLS%%%%DATADIR%%/translations/convertall_es.ts %%NLS%%%%DATADIR%%/translations/convertall_fr.qm %%NLS%%%%DATADIR%%/translations/convertall_fr.ts %%NLS%%%%DATADIR%%/translations/convertall_ru.qm %%NLS%%%%DATADIR%%/translations/convertall_ru.ts %%NLS%%%%DATADIR%%/translations/qt_de.qm %%NLS%%%%DATADIR%%/translations/qt_de.ts %%NLS%%%%DATADIR%%/translations/qt_es.qm %%NLS%%%%DATADIR%%/translations/qt_es.ts %%NLS%%%%DATADIR%%/translations/qt_fr.qm %%NLS%%%%DATADIR%%/translations/qt_fr.ts %%NLS%%%%DATADIR%%/translations/qt_ru.qm %%DATADIR%%/unitatom.py %%DATADIR%%/unitdata.py %%DATADIR%%/unitedit.py %%DATADIR%%/unitgroup.py %%DATADIR%%/unitlistview.py %%DOCSDIR%%/README.html %%NLS%%%%DOCSDIR%%/README_de.html %%NLS%%%%DOCSDIR%%/README_es.html %%NLS%%%%DOCSDIR%%/README_fr.html %%NLS%%%%DOCSDIR%%/README_ru.html Index: head/math/rpcalc/Makefile =================================================================== --- head/math/rpcalc/Makefile (revision 430838) +++ head/math/rpcalc/Makefile (revision 430839) @@ -1,52 +1,43 @@ # Created by: Edwin Groothuis # $FreeBSD$ PORTNAME= rpcalc PORTVERSION= 0.7.1 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} MAINTAINER= jhale@FreeBSD.org COMMENT= Simple RPN calculator LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/doc/LICENSE USES= pyqt:4 python:3.3+ USE_PYQT= core gui CONFIGURE_ARGS= -p ${PREFIX} -d ${DOCSDIR} -i ${DATADIR}/icons -b ${STAGEDIR} NO_ARCH= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/rpCalc DESKTOP_ENTRIES="rpCalc" \ "RPN Calculator" \ "${DATADIR}/icons/calc_lg.png" \ "${PORTNAME}" \ "Qt;Utility;Calculator;" \ false do-install: (cd ${WRKSRC} && ${PYTHON_CMD} install.py ${CONFIGURE_ARGS}) (cd ${STAGEDIR}${PREFIX} && \ ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -d ${DATADIR} -f ${DATADIR_REL}) (cd ${STAGEDIR}${DOCSDIR} && ${RM} INSTALL LICENSE) .include -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYTHON_SUFFIX="${PYTHON_SUFFIX}" \ - PYOEXTENSION="${PYOEXTENSION}" - .if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif .include Index: head/math/rpcalc/pkg-plist =================================================================== --- head/math/rpcalc/pkg-plist (revision 430838) +++ head/math/rpcalc/pkg-plist (revision 430839) @@ -1,51 +1,51 @@ bin/rpcalc %%DATADIR%%/__pycache__/altbasedialog.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/altbasedialog.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/altbasedialog.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/calcbutton.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/calcbutton.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/calcbutton.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/calccore.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/calccore.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/calccore.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/calcdlg.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/calcdlg.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/calcdlg.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/calclcd.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/calclcd.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/calclcd.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/calcstack.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/calcstack.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/calcstack.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/extradisplay.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/extradisplay.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/extradisplay.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/helpview.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/helpview.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/helpview.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/icondict.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/icondict.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/icondict.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/option.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/option.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/option.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/optiondefaults.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/optiondefaults.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/optiondefaults.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/optiondlg.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/optiondlg.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/optiondlg.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/rpcalc.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/rpcalc.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/rpcalc.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/__pycache__/setup.cpython-%%PYTHON_SUFFIX%%.pyc -%%DATADIR%%/__pycache__/setup.cpython-%%PYTHON_SUFFIX%%.%%PYOEXTENSION%% +%%DATADIR%%/__pycache__/setup.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%DATADIR%%/altbasedialog.py %%DATADIR%%/calcbutton.py %%DATADIR%%/calccore.py %%DATADIR%%/calcdlg.py %%DATADIR%%/calclcd.py %%DATADIR%%/calcstack.py %%DATADIR%%/extradisplay.py %%DATADIR%%/helpview.py %%DATADIR%%/icondict.py %%DATADIR%%/icons/calc_lg.png %%DATADIR%%/icons/calc_sm.png %%DATADIR%%/icons/helpback.png %%DATADIR%%/icons/helpforward.png %%DATADIR%%/icons/helphome.png %%DATADIR%%/icons/helpnext.png %%DATADIR%%/icons/helpprevious.png %%DATADIR%%/option.py %%DATADIR%%/optiondefaults.py %%DATADIR%%/optiondlg.py %%DATADIR%%/rpcalc.py %%DATADIR%%/setup.py %%DOCSDIR%%/README.html Index: head/multimedia/py3-gstreamer1/Makefile =================================================================== --- head/multimedia/py3-gstreamer1/Makefile (revision 430838) +++ head/multimedia/py3-gstreamer1/Makefile (revision 430839) @@ -1,40 +1,29 @@ # Created by: Koop Mast # $FreeBSD$ PORTNAME= gstreamer PORTVERSION= 1.8.0 CATEGORIES= multimedia python MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-python/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= 1 DISTNAME= gst-python-${PORTVERSION} MAINTAINER= multimedia@FreeBSD.org COMMENT= GStreamer python 3 bindings LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING PORTSCOUT= limitw:1,even USES= gmake libtool pathfix pkgconfig python:3 tar:xz USE_GNOME= py3gobject3 USE_GSTREAMER1= yes GNU_CONFIGURE= yes PLIST_SUB= VERSION="${GST_VERSION}" CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip -.include - -.if ${PYTHON_REL} < 3500 -PYOEXTENSION= pyo -.else -PYOEXTENSION= opt-1.pyc -.endif - -PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \ - PYVER=${PYTHON_VER:S/.//} - -.include +.include Index: head/multimedia/py3-gstreamer1/pkg-plist =================================================================== --- head/multimedia/py3-gstreamer1/pkg-plist (revision 430838) +++ head/multimedia/py3-gstreamer1/pkg-plist (revision 430839) @@ -1,8 +1,8 @@ lib/gstreamer-1.0/libgstpythonplugin.so -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gst.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gst.cpython-%%PYVER%%.%%PYOEXTENSION%% -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GstPbutils.cpython-%%PYVER%%.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GstPbutils.cpython-%%PYVER%%.%%PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gst.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gst.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GstPbutils.cpython-%%PYTHON_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/GstPbutils.cpython-%%PYTHON_SUFFIX%%.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gi/overrides/Gst.py %%PYTHON_SITELIBDIR%%/gi/overrides/GstPbutils.py %%PYTHON_SITELIBDIR%%/gi/overrides/_gi_gst.so