diff --git a/app-admin/bcfg2/metadata.xml b/app-admin/bcfg2/metadata.xml index 2bae55a94626..f46d2d0d99a9 100644 --- a/app-admin/bcfg2/metadata.xml +++ b/app-admin/bcfg2/metadata.xml @@ -1,22 +1,13 @@ - - mjinks@uchicago.edu - Michael Jinks - xmw@gentoo.org Michael Weber - Proxy Maintainer - - - proxy-maint@gentoo.org - Proxy Maintainers Project - Include dev-python/cheetah support - Include dev-python/genshi support - Installs scripts to be used on the server-side of this app + Include dev-python/cheetah support + Include dev-python/genshi support + Installs scripts to be used on the server-side of this app diff --git a/app-admin/ranpwd/metadata.xml b/app-admin/ranpwd/metadata.xml index 8b153cb93d0f..f1c3d59fb213 100644 --- a/app-admin/ranpwd/metadata.xml +++ b/app-admin/ranpwd/metadata.xml @@ -5,5 +5,4 @@ crypto@gentoo.org Crypto - diff --git a/app-backup/burp/Manifest b/app-backup/burp/Manifest index 6c0cd7d10c9e..f04242a70fba 100644 --- a/app-backup/burp/Manifest +++ b/app-backup/burp/Manifest @@ -2,3 +2,4 @@ DIST burp-1.4.40.tar.bz2 712937 SHA256 4108eb45e14740de990d918a2adbb661d88f90de4 DIST burp-2.0.54.tar.gz 558845 SHA256 26130da9791c57b1e194973ef1ea292dec57468bf4291a4d0eae880d192c1fd1 SHA512 dccc4d3679dd759028cd6b71d09ae4e49a511e5d94b4df2f112ad974abb507bbc8fffaf63ef85c847b0f9363b20a9e817179ab556c5a788acacb7a25e7600fa4 WHIRLPOOL 60e9bec56c08bc7ebc4700824eab34cf8cefdc5871140471eec5e05dbff4f4b83c2f7c6d5554d33dbb918f46e2c60159ba99a5da599938acd40b9d5b7b582978 DIST burp-2.1.10.tar.gz 574716 SHA256 857492493fe8ba21c54dc77e36bdedd5009edb7be66e19c533c6c0d437927d99 SHA512 ebb9901c4f5b281f05fe96499067a3e85edb7dab3132a7e00b14f10a5bb2ce51ccb32ce466176ca9b2ffcba70c7bc168b258df2494bbc6e984391f1c3fd8803a WHIRLPOOL ffc01c898033cc112bf2a01bfc2b2871152f13cbeac4a8f8b96f4432476e75ccb170f36e8af7ecee7bce05601e87959803a8b1c96cfb7e717c7648d5399ff5e4 DIST burp-2.1.12.tar.gz 576544 SHA256 78ebd3f9a37daf935f474b1e297f716172e44db45f6641966eca2b0fa3aafce1 SHA512 85715593178bc77640b246ed5d10278a16ff4151274391c88981366d284c5a4315c542912a0d590162418e7556450ebe523b97ff2f5123413d1ce01c5b140a45 WHIRLPOOL bed5f0fb92b42cd8de1425395dc7f774747061d7ef873eb2d59b2e31815c978c91eb9e25fd8ac7c5bdaa167377760f101fea24d16cb0c3c5ba569481b5e111fe +DIST burp-2.1.20.tar.gz 579488 SHA256 225f8ac0ad80ef4fa19c77c2d397d6829086a29dd8ab3d762820b9862d8b8f5c SHA512 5937187e0c93e21b4e3f4ab92f05589f8da56c774cf86644f095a0bff93c127911b2d513c04e380188956c2a97fb01ce471bb746d630baa5d30e6a70b53a0389 WHIRLPOOL b1253df69e20c9448249e14c898cdabc40ba5cbe5e5da5e20c8c4d7e161bf498b9f8a7ead80175d1bf00ad4b0bc893436abde27e37b61b1fad1792de04f16e99 diff --git a/app-backup/burp/burp-2.1.20.ebuild b/app-backup/burp/burp-2.1.20.ebuild new file mode 100644 index 000000000000..ca210f89c0ff --- /dev/null +++ b/app-backup/burp/burp-2.1.20.ebuild @@ -0,0 +1,113 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools systemd tmpfiles user versionator + +DESCRIPTION="Network backup and restore client and server for Unix and Windows" +HOMEPAGE="http://burp.grke.org/" +SRC_URI="https://github.com/grke/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="acl ipv6 libressl test xattr" + +CDEPEND="dev-libs/uthash + net-libs/librsync + sys-libs/ncurses:0= + sys-libs/zlib + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + acl? ( sys-apps/acl ) + xattr? ( sys-apps/attr )" +DEPEND="${CDEPEND} + virtual/pkgconfig + test? ( dev-libs/check )" +RDEPEND="${CDEPEND} + virtual/logger" + +PATCHES=( + "${FILESDIR}"/${PN}-2.1.20-no_mkdir_run.patch + "${FILESDIR}"/${PN}-2.1.20-protocol1_by_default.patch + "${FILESDIR}"/${PN}-2.0.54-server_user.patch +) + +pkg_setup() { + enewgroup "${PN}" + enewuser "${PN}" -1 "" "" "${PN}" +} + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + local myeconfargs=( + --localstatedir=/var + --sysconfdir=/etc/burp + --enable-largefile + $(use_enable acl) + $(use_enable ipv6) + $(use_enable xattr) + ) + # --runstatedir option will only work from autoconf-2.70 onwards + runstatedir='/run/burp' \ + econf "${myeconfargs[@]}" +} + +src_install() { + default + fowners -R root:${PN} /var/spool/burp + fperms 0770 /var/spool/burp + + emake DESTDIR="${D}" install-configs + fowners -R root:${PN} /etc/burp + fperms 0775 /etc/burp + fperms 0640 /etc/burp/burp-server.conf + fperms 0750 /etc/burp/clientconfdir + + newinitd "${FILESDIR}"/${PN}2.initd ${PN} + systemd_dounit "${FILESDIR}"/${PN}.service + + newtmpfiles "${FILESDIR}"/${PN}.tmpfiles ${PN}.conf +} + +pkg_postinst() { + tmpfiles_process ${PN}.conf + + elog "Burp ebuilds now support the autoupgrade mechanism in both" + elog "client and server mode. In both cases it is disabled by" + elog "default. You almost certainly do NOT want to enable it in" + elog "client mode because upgrades obtained this way will not be" + elog "managed by Portage." + + if [[ ! -e /etc/burp/CA/index.txt ]]; then + elog "" + elog "At first run burp server will generate DH parameters and SSL" + elog "certificates. You should adjust configuration before." + elog "Server configuration is located at" + elog "" + elog " /etc/burp/burp-server.conf" + elog "" + fi + + # According to PMS this can be a space-separated list of version + # numbers, even though in practice it is typically just one. + local oldver + for oldver in ${REPLACING_VERSIONS}; do + if [[ $(get_major_version ${oldver}) -lt 2 ]]; then + ewarn "Starting with version 2.0.54 we no longer patch bedup to use" + ewarn "the server config file by default. If you use bedup, please" + ewarn "update your scripts to invoke it as" + ewarn "" + ewarn " bedup -c /etc/burp/burp-server.conf" + ewarn "" + ewarn "Otherwise deduplication will not work!" + break + fi + done +} diff --git a/app-backup/burp/files/burp-2.1.20-no_mkdir_run.patch b/app-backup/burp/files/burp-2.1.20-no_mkdir_run.patch new file mode 100644 index 000000000000..5dbdcf9e7c4c --- /dev/null +++ b/app-backup/burp/files/burp-2.1.20-no_mkdir_run.patch @@ -0,0 +1,10 @@ +--- a/Makefile.am ++++ b/Makefile.am +@@ -417,7 +417,6 @@ + + install-data-local: + $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(localstatedir)/spool/$(PACKAGE_TARNAME) +- $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(runstatedir) + + clean-local: clean-local-check + diff --git a/app-backup/burp/files/burp-2.1.20-protocol1_by_default.patch b/app-backup/burp/files/burp-2.1.20-protocol1_by_default.patch new file mode 100644 index 000000000000..db9e9b6a9de5 --- /dev/null +++ b/app-backup/burp/files/burp-2.1.20-protocol1_by_default.patch @@ -0,0 +1,24 @@ +--- a/configs/client/burp.conf.in ++++ b/configs/client/burp.conf.in +@@ -10,7 +10,8 @@ + # 0 to decide automatically, 1 to force protocol1 mode (file level granularity + # with a pseudo mirrored storage on the server and optional rsync). 2 forces + # protocol2 mode (inline deduplication with variable length blocks). +-# protocol = 0 ++# WARNING: as of September 2017 protocol2 is still considered experimental. ++protocol = 1 + pidfile = @runstatedir@/@name@.client.pid + syslog = 0 + stdout = 1 +--- a/configs/server/burp.conf.in ++++ b/configs/server/burp.conf.in +@@ -21,7 +21,8 @@ + # protocol2 mode (inline deduplication with variable length blocks). + # Like many other settings, this can be set per client in the clientconfdir + # files. +-# protocol = 0 ++# WARNING: as of September 2017 protocol2 is still considered experimental. ++protocol = 1 + pidfile = @runstatedir@/@name@.server.pid + hardlinked_archive = 0 + working_dir_recovery_method = delete diff --git a/app-benchmarks/iozone/metadata.xml b/app-benchmarks/iozone/metadata.xml index 60218d00dfe0..ae3cf8b035be 100644 --- a/app-benchmarks/iozone/metadata.xml +++ b/app-benchmarks/iozone/metadata.xml @@ -6,5 +6,4 @@ Patrick Lauer A Filesystem benchmark tool - diff --git a/app-benchmarks/sysbench/Manifest b/app-benchmarks/sysbench/Manifest index b3aa864a9ce4..8fd79c629084 100644 --- a/app-benchmarks/sysbench/Manifest +++ b/app-benchmarks/sysbench/Manifest @@ -1,3 +1,4 @@ DIST sysbench-1.0.6.tar.gz 1493941 SHA256 cd23c622da3d3267885ed126540dc04c578ee16c3d31307e21b5acd8e4036eda SHA512 d17a8a8b2387458b467b3e5034b37cb075ffc444c5576013fe7ac3d390c110e0fb4bc6a39f9b350f7ce9b40f3f039e0af9eb84ffafe9ab05a8be5b36ac5b56ac WHIRLPOOL 8d1073a720fd8220769a509677e3d638d93d6aca247a5d2c9017eae3e05391a63e28fade0d306e56a82c5835db58926178e66f1ef94859e2f65497cbe89a172e DIST sysbench-1.0.7.tar.gz 1494571 SHA256 db91521e70b0d1a6fccc60a8d4acadacb3f9328e8ab6802ae82f93393a688d43 SHA512 0b32ad27180ab02df9c2e5e85a8b9bec231338cfb20d7337dd80f1e0628b48bae480fde9d69cd21730aa0ab7c65fecbede9c10cd4b96d0dcf44cd012afa10d65 WHIRLPOOL f33c7d328ce1bec01321656b65123a6b790647f36db7351f6cae5340ee8678c66dc3a4d05a36babe8bec51b42ee0fff937b9c28fa2697408fca5842af50072e1 DIST sysbench-1.0.8.tar.gz 1494988 SHA256 2dad131a99578999c8159eccd2f7ec1b9da4eca9e646dfeb838cf72c00862d69 SHA512 1baba00dc116a97295e4be26488598d160b7688739b08551d0cf2089bcd0f89a0c8edba6faa3634ea98955aecc04966e8328e79978352647ed764dcbe170566f WHIRLPOOL e1b13661adbe00b86bc5533962974c6eb3869e71392e7815a50543fbd50bae3f843a932c02f8a17decd5ac4fac644f52b564b1c1073292e6778dafe1d7b9eeac +DIST sysbench-1.0.9.tar.gz 1495628 SHA256 3e472d5b175dcc5a8b0ebdf102dbe64bdcc712f6c41812849490e739bf8ce483 SHA512 498b267585e8186f9db4a0f6c6147d1051dab049dae71ddee27f2fedc50ce5ccd75a9ea91819f1fcd15a4d680c4111f5014c60e5a0a69b0a6f217b1a04e61538 WHIRLPOOL 8163bf6f6e5ce85067746036f5cd5f08f2b2d2634f99b5a4e62656ad5091a5f01117672163fc23482fa00e67b1d96d60af7996994965f580b11ccff96e69dc24 diff --git a/app-benchmarks/sysbench/files/sysbench-fix-mariadb-include.patch b/app-benchmarks/sysbench/files/sysbench-fix-mariadb-include.patch new file mode 100644 index 000000000000..7c3ac31dc9df --- /dev/null +++ b/app-benchmarks/sysbench/files/sysbench-fix-mariadb-include.patch @@ -0,0 +1,21 @@ +--- a/src/drivers/mysql/drv_mysql.c.orig 2017-10-06 06:24:37.930414458 +0000 ++++ b/src/drivers/mysql/drv_mysql.c 2017-10-06 06:25:19.647414458 +0000 +@@ -35,7 +35,6 @@ + #include + + #include +-#include + #include + #include + +@@ -50,8 +49,8 @@ + + #define SAFESTR(s) ((s != NULL) ? (s) : "(null)") + +-#if !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 80001 && \ +- MYSQL_VERSION_ID != 80002 /* see https://bugs.mysql.com/?id=87337 */ ++#if !defined(MARIADB_BASE_VERSION) && !defined(MARIADB_VERSION_ID) && \ ++ MYSQL_VERSION_ID >= 80001 && MYSQL_VERSION_ID != 80002 /* see https://bugs.mysql.com/?id=87337 */ + typedef bool my_bool; + #endif + diff --git a/app-benchmarks/sysbench/sysbench-1.0.9.ebuild b/app-benchmarks/sysbench/sysbench-1.0.9.ebuild new file mode 100644 index 000000000000..4a7face7bc13 --- /dev/null +++ b/app-benchmarks/sysbench/sysbench-1.0.9.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit pax-utils + +DESCRIPTION="System performance benchmark" +HOMEPAGE="https://github.com/akopytov/sysbench" +SRC_URI="https://github.com/akopytov/sysbench/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="aio mysql postgres test" + +RDEPEND="aio? ( dev-libs/libaio ) + mysql? ( virtual/libmysqlclient ) + postgres? ( dev-db/postgresql:= )" +DEPEND="${RDEPEND} + app-editors/vim-core + dev-lang/luajit:= + dev-libs/concurrencykit + dev-libs/libxslt + sys-devel/libtool:= + virtual/pkgconfig + test? ( dev-util/cram )" + +# https://github.com/akopytov/sysbench/commit/f5fa7800cbbdd3920290e04e597d90a26cde7608 +PATCHES=( "${FILESDIR}/${PN}-fix-mariadb-include.patch" ) + +src_prepare() { + default + + sed -i -e "/^htmldir =/s:=.*:=/usr/share/doc/${PF}/html:" doc/Makefile.am || die + + # remove bundled libs + rm -r third_party/luajit/luajit third_party/concurrency_kit/ck third_party/cram || die + + ./autogen.sh || die +} + +src_configure() { + local myeconfargs=( + $(use_enable aio aio) + $(use_with mysql mysql) + $(use_with postgres pgsql) + --without-attachsql + --without-drizzle + --without-oracle + --with-system-luajit + --with-system-ck + ) + + econf "${myeconfargs[@]}" +} + +src_compile() { + default + + pax-mark m "${S}/src/${PN}" +} + +src_test() { + emake check test +} diff --git a/app-crypt/pdfcrack/Manifest b/app-crypt/pdfcrack/Manifest index 9464aea2491a..c570ba91c284 100644 --- a/app-crypt/pdfcrack/Manifest +++ b/app-crypt/pdfcrack/Manifest @@ -1 +1,2 @@ DIST pdfcrack-0.15.tar.gz 34269 SHA256 791043693f9fc261fa326dbcb5e4de3801d6ae552dbea39293f9b2674c250d3e SHA512 9eef648fcb8c9cd4fb70af3ad4ce1b8da892edc98919104bbee70947d7f93262f44cb6e8854ff10b0e4680fcf0c3abfc258d0d14428d261744ed4b28c792a966 WHIRLPOOL 69ed8f15a1ed80843a1bfb4108a35464d237d803d24630b047df7a18a027d5d73fe48c52dbfa71174de520701b015abbb550873a724473291a50d226d19cbc6e +DIST pdfcrack-0.16.tar.gz 34467 SHA256 7865b203074ccfd5c612c8ce00c46ffcb4fabaa26154ce9304dfc668c7cb73ef SHA512 460113f28249d1ea1cefc6dac8ff22b33849ccff50f61830144e41eeec47c4b9113845bb955d26757adb0552d8c0dfa43b3f5666c1419afe4063037a1e1c933d WHIRLPOOL 4ac66029156d59265de2639ab8ffc63bfa66353c6c1efeabe7f1c6213db3e73e243fe5d4b612a6f7d94704b225452aef61d41235cd67bb3e1f8fd0fca45192b0 diff --git a/app-crypt/pdfcrack/pdfcrack-0.16.ebuild b/app-crypt/pdfcrack/pdfcrack-0.16.ebuild new file mode 100644 index 000000000000..206b6b4510de --- /dev/null +++ b/app-crypt/pdfcrack/pdfcrack-0.16.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="Tool for recovering passwords and content from PDF-files" +HOMEPAGE="http://pdfcrack.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +PATCHES=( + "${FILESDIR}/${PN}-0.14-cflags.patch" +) + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + dobin pdfcrack + dodoc changelog README +} diff --git a/app-editors/juffed/Manifest b/app-editors/juffed/Manifest index 7a99c7f300e1..17ac4b5aa2a7 100644 --- a/app-editors/juffed/Manifest +++ b/app-editors/juffed/Manifest @@ -1 +1,2 @@ DIST juffed-0.10-1054.tar.bz2 1657118 SHA256 ac58d32acaf9d60e4758e9ae05b1a6b7fc0cb7ecd3b207db769dbb9c747be16c SHA512 023e9fca1f02fdb39645bd41700c7481fe8d6ae08ec62b0bf5ba58f627eb6872f96d27f05eae4bc92d90fd204dd0c30f868c858de873ab6511ac21748254b47c WHIRLPOOL ceb9e0dc9100dd5f2578abc14fff336adf664726d8e347f9832ffc4942c36e6e28aaff931fd528e6f572bcb29e4027ee486a82ee93d216d0751b5d8aa4233f6c +DIST juffed-0.10_p20160323.tar.gz 1617451 SHA256 15d84bbda71cc8f44f7e0f2c114609859ca90602e86e40f00394d372ab87b5cf SHA512 a49837b199db35c5e7a7580aa4025a2c056b55cef6e98e22f239fc9e455cde3a451d6a0971fb02697c63f3f156d85aaf8021ea13ea3a9e6867ae419f772484b5 WHIRLPOOL 1aac9f820fd842890784979436a7e5afe706af62bcbaf6d5d837749ab26bae79ed5b4d10bc833351f8b2eafd1760f86e3f7f1ca51774a282ffdd85482152c68b diff --git a/app-editors/juffed/files/FindQtSingleApplication.cmake b/app-editors/juffed/files/FindQtSingleApplication.cmake new file mode 100644 index 000000000000..eb56607e9480 --- /dev/null +++ b/app-editors/juffed/files/FindQtSingleApplication.cmake @@ -0,0 +1,94 @@ +# - Try to find the QtSingleApplication includes and library +# which defines +# +# QTSINGLEAPPLICATION_FOUND - system has QtSingleApplication +# QTSINGLEAPPLICATION_INCLUDE_DIR - where to find header QtSingleApplication +# QTSINGLEAPPLICATION_LIBRARIES - the libraries to link against to use QtSingleApplication +# QTSINGLEAPPLICATION_LIBRARY - where to find the QtSingleApplication library (not for general use) + +# copyright (c) 2013 TI_Eugene ti.eugene@gmail.com +# +# Redistribution and use is allowed according to the terms of the FreeBSD license. + +SET(QTSINGLEAPPLICATION_FOUND FALSE) + +IF(QT4_FOUND) + message(STATUS "Looking for Qt4 single application library") + FIND_PATH(QTSINGLEAPPLICATION_INCLUDE_DIR QtSingleApplication + # standard locations + /usr/include + /usr/include/QtSolutions + # qt4 location except mac's frameworks + "${QT_INCLUDE_DIR}/QtSolutions" + # mac's frameworks + ${FRAMEWORK_INCLUDE_DIR}/QtSolutions + ) + + SET(QTSINGLEAPPLICATION_NAMES ${QTSINGLEAPPLICATION_NAMES} + QtSolutions_SingleApplication-2.6 libQtSolutions_SingleApplication-2.6) + FIND_LIBRARY(QTSINGLEAPPLICATION_LIBRARY + NAMES ${QTSINGLEAPPLICATION_NAMES} + PATHS ${QT_LIBRARY_DIR} + ) +ELSEIF(Qt5Widgets_FOUND) + message(STATUS "Looking for Qt5 single application library") + FOREACH(TOP_INCLUDE_PATH in ${Qt5Widgets_INCLUDE_DIRS} ${FRAMEWORK_INCLUDE_DIR}) + FIND_PATH(QTSINGLEAPPLICATION_INCLUDE_DIR QtSingleApplication ${TOP_INCLUDE_PATH}/QtSolutions) + + IF(QTSINGLEAPPLICATION_INCLUDE_DIR) + BREAK() + ENDIF() + ENDFOREACH() + + SET(QTSINGLEAPPLICATION_NAMES ${QTSINGLEAPPLICATION_NAMES} + Qt5Solutions_SingleApplication-2.6 libQt5Solutions_SingleApplication-2.6 + QtSolutions_SingleApplication-2.6 libQtSolutions_SingleApplication-2.6) + GET_TARGET_PROPERTY(QT5_WIDGETSLIBRARY Qt5::Widgets LOCATION) + GET_FILENAME_COMPONENT(QT5_WIDGETSLIBRARYPATH ${QT5_WIDGETSLIBRARY} PATH) + + FIND_LIBRARY(QTSINGLEAPPLICATION_LIBRARY + NAMES ${QTSINGLEAPPLICATION_NAMES} + PATHS ${QT5_WIDGETSLIBRARYPATH} + ) +ENDIF() + +IF (QTSINGLEAPPLICATION_LIBRARY AND QTSINGLEAPPLICATION_INCLUDE_DIR) + + SET(QTSINGLEAPPLICATION_LIBRARIES ${QTSINGLEAPPLICATION_LIBRARY}) + SET(QTSINGLEAPPLICATION_FOUND TRUE) + + IF (CYGWIN) + IF(BUILD_SHARED_LIBS) + # No need to define QTSINGLEAPPLICATION_USE_DLL here, because it's default for Cygwin. + ELSE(BUILD_SHARED_LIBS) + SET (QTSINGLEAPPLICATION_DEFINITIONS -DQTSINGLEAPPLICATION_STATIC) + ENDIF(BUILD_SHARED_LIBS) + ENDIF (CYGWIN) + +ENDIF (QTSINGLEAPPLICATION_LIBRARY AND QTSINGLEAPPLICATION_INCLUDE_DIR) + +IF (QTSINGLEAPPLICATION_FOUND) + IF (NOT QtSingleApplication_FIND_QUIETLY) + MESSAGE(STATUS "Found QtSingleApplication: ${QTSINGLEAPPLICATION_LIBRARY}") + MESSAGE(STATUS " includes: ${QTSINGLEAPPLICATION_INCLUDE_DIR}") + ENDIF (NOT QtSingleApplication_FIND_QUIETLY) +ELSE (QTSINGLEAPPLICATION_FOUND) + IF (QtSingleApplication_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could not find QtSingleApplication library") + ENDIF (QtSingleApplication_FIND_REQUIRED) +ENDIF (QTSINGLEAPPLICATION_FOUND) + +MARK_AS_ADVANCED(QTSINGLEAPPLICATION_INCLUDE_DIR QTSINGLEAPPLICATION_LIBRARY) + +if(NOT TARGET QtSingleApplication::QtSingleApplication) + add_library(QtSingleApplication::QtSingleApplication UNKNOWN IMPORTED) + set_target_properties(QtSingleApplication::QtSingleApplication PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${QTSINGLEAPPLICATION_INCLUDE_DIR}" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${QTSINGLEAPPLICATION_INCLUDE_DIR}" + ) + if(EXISTS "${QTSINGLEAPPLICATION_LIBRARY}") + set_target_properties(QtSingleApplication::QtSingleApplication PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES "CXX" + IMPORTED_LOCATION "${QTSINGLEAPPLICATION_LIBRARY}") + endif() +endif(NOT TARGET QtSingleApplication::QtSingleApplication) diff --git a/app-editors/juffed/files/juffed-0.10_p20160323-qscintilla-2.10.patch b/app-editors/juffed/files/juffed-0.10_p20160323-qscintilla-2.10.patch new file mode 100644 index 000000000000..fcfab7f4072f --- /dev/null +++ b/app-editors/juffed/files/juffed-0.10_p20160323-qscintilla-2.10.patch @@ -0,0 +1,11 @@ +--- a/cmake/FindQScintilla2.cmake 2016-03-23 20:43:22.000000000 +0100 ++++ b/cmake/FindQScintilla2.cmake 2017-10-08 17:25:06.984464985 +0200 +@@ -52,7 +52,7 @@ + ENDIF() + ENDFOREACH() + +- SET(QSCINTILLA_NAMES ${QSCINTILLA_NAMES} qt5scintilla2 libqt5scintilla2 libqscintilla2-qt5 qscintilla2-qt5) ++ SET(QSCINTILLA_NAMES ${QSCINTILLA_NAMES} qscintilla2 libqscintilla2 libqscintilla2_qt5 qscintilla2_qt5) + GET_TARGET_PROPERTY(QT5_WIDGETSLIBRARY Qt5::Widgets LOCATION) + GET_FILENAME_COMPONENT(QT5_WIDGETSLIBRARYPATH ${QT5_WIDGETSLIBRARY} PATH) + diff --git a/app-editors/juffed/juffed-0.10-r1.ebuild b/app-editors/juffed/juffed-0.10-r1.ebuild index fdfcff670cd9..66870bccf3c3 100644 --- a/app-editors/juffed/juffed-0.10-r1.ebuild +++ b/app-editors/juffed/juffed-0.10-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 diff --git a/app-editors/juffed/juffed-0.10_p20160323.ebuild b/app-editors/juffed/juffed-0.10_p20160323.ebuild new file mode 100644 index 000000000000..15de97ca1b1d --- /dev/null +++ b/app-editors/juffed/juffed-0.10_p20160323.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +COMMIT=5ba17f90ec173e773470bc80ea26bca9a3f093fd +inherit cmake-utils vcs-snapshot xdg-utils + +DESCRIPTION="QScintilla-based tabbed text editor with syntax highlighting" +HOMEPAGE="http://juffed.com/en/" +SRC_URI="https://github.com/Mezomish/${PN}/tarball/${COMMIT} -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="debug" + +RDEPEND=" + app-i18n/enca + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtprintsupport:5 + dev-qt/qtsingleapplication[qt5,X] + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + >=x11-libs/qscintilla-2.9.4:=[qt5(+)] +" +DEPEND="${RDEPEND}" + +DOCS=( ChangeLog README ) + +PATCHES=( "${FILESDIR}/${P}-qscintilla-2.10.patch" ) + +src_prepare() { + # Upstream version outdated/dysfunctional and CRLF terminated + cp "${FILESDIR}"/FindQtSingleApplication.cmake cmake/ || die + + cmake-utils_src_prepare + + sed -i -e '/set(CMAKE_CXX_FLAGS/d' CMakeLists.txt || die +} + +src_configure() { + local libdir=$(get_libdir) + local mycmakeargs=( + -DUSE_ENCA=ON + -DUSE_QT5=ON + -DUSE_SYSTEM_QTSINGLEAPPLICATION=ON + -DLIB_SUFFIX=${libdir/lib/} + ) + cmake-utils_src_configure +} + +pkg_postinst() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +} diff --git a/app-editors/xemacs/metadata.xml b/app-editors/xemacs/metadata.xml index efbc10c69bb0..eb55cb7dabc8 100644 --- a/app-editors/xemacs/metadata.xml +++ b/app-editors/xemacs/metadata.xml @@ -5,7 +5,6 @@ xemacs@gentoo.org Primary Maintainer - Chooses the MIT Athena widget set Enables support for the x11-libs/dnd diff --git a/app-i18n/uchardet/uchardet-0.0.6.ebuild b/app-i18n/uchardet/uchardet-0.0.6.ebuild index 9222edb2b56a..fc32c0008b49 100644 --- a/app-i18n/uchardet/uchardet-0.0.6.ebuild +++ b/app-i18n/uchardet/uchardet-0.0.6.ebuild @@ -17,6 +17,10 @@ IUSE="static-libs test" src_prepare() { cmake-utils_src_prepare use test || cmake_comment_add_subdirectory test + + # Remove flaky test. See Gentoo bug 631852. + # Track https://bugs.freedesktop.org/show_bug.cgi?id=101033 + rm test/th/tis-620.txt || die } src_configure() { diff --git a/app-misc/byobu/Manifest b/app-misc/byobu/Manifest index a57b0c6c83b2..fb9e4d61e1fd 100644 --- a/app-misc/byobu/Manifest +++ b/app-misc/byobu/Manifest @@ -1,2 +1,2 @@ -DIST byobu_5.119.orig.tar.gz 664949 SHA256 4b092ca12d3a33e89d84cc90c4a41af2ba8697d48e26080a45d64d6b7800ca77 SHA512 498ea4f0e67bbef45d964bb157541bb115498f85f69c470ab8107b07886264d3bee03a108d37316fc580c4cd2231da3195f5e4dd9e8f819d309e13a06c83344a WHIRLPOOL 35d69107e8566bd1af7d598e8380ad99fcf3ab0e3930f5aaa298a49e4da623676141e9efcfb4b491b2621ac9f0af764383ff939bca2d9f4c882df22eeea92618 DIST byobu_5.122.orig.tar.gz 581198 SHA256 0e5f14db8340712cf5b1049002c5b7f2a116ca28e6df418cb7500d3c4fa43234 SHA512 df090d964dfc9b9667fa357f828e021788e0c43ed6849c9f0d4f0a95e8cc431e3cb74ce4569e96187a78f640a5fb91d5eda8cc1f2619d83cf2ad79c82a8c1f10 WHIRLPOOL bf58f3b3784ba8587242f4bebefb0a4c0adc66a604d452c2f37d5f8479a8e21867ae79b32c2ea9203aca1e7c1bd0a8e92d28d4c864fc43a9a0a8dcb5d10d790c +DIST byobu_5.123.orig.tar.gz 581421 SHA256 2e5a5425368d2f74c0b8649ce88fc653420c248f6c7945b4b718f382adc5a67d SHA512 915ad330e85a4405ad808a6f03205c468800c0942507fc0183a883bb0b33be4023b5ef9d7a63b3fce328f771ac1a4952735ee6119a26d6a5f2b01afec7a04059 WHIRLPOOL a3c35f42828e3fc492d2873f67f9094d8b6a73db594acb7b50616bed5a1638415ea1526345ef12b0b79e65e461900fdd6caaded597f8ccfcb400b082ad7a3ac3 diff --git a/app-misc/byobu/byobu-5.122.ebuild b/app-misc/byobu/byobu-5.122.ebuild index f67cbf99d559..33c36ce0cdc5 100644 --- a/app-misc/byobu/byobu-5.122.ebuild +++ b/app-misc/byobu/byobu-5.122.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P/-/_}.orig.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="screen" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/app-misc/byobu/byobu-5.119.ebuild b/app-misc/byobu/byobu-5.123.ebuild similarity index 97% rename from app-misc/byobu/byobu-5.119.ebuild rename to app-misc/byobu/byobu-5.123.ebuild index 33c36ce0cdc5..f67cbf99d559 100644 --- a/app-misc/byobu/byobu-5.119.ebuild +++ b/app-misc/byobu/byobu-5.123.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P/-/_}.orig.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" IUSE="screen" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/app-office/libreoffice-l10n/Manifest b/app-office/libreoffice-l10n/Manifest index ecb97055b55b..7ad10a7d7d6f 100644 --- a/app-office/libreoffice-l10n/Manifest +++ b/app-office/libreoffice-l10n/Manifest @@ -166,339 +166,171 @@ DIST LibreOffice_5.2.7.2_Linux_x86_rpm_langpack_xh.tar.gz 490260 SHA256 460662a7 DIST LibreOffice_5.2.7.2_Linux_x86_rpm_langpack_zh-CN.tar.gz 563489 SHA256 50cbfd8d360a6df05f64f2fd25c3810e430462bda890ee8c0268487d7a138127 SHA512 52829509117dd787b92b0cc3b3b95812f53f9ef10d1023d97f4fbe98b0bf417a669de229aa2e7c4d182254cef61e75e57c7bcd98bfd80534b719785fb59a939d WHIRLPOOL 0012c4393f321051962238f481f8eb54dc910b8785519f94ba055ceae3417437b78998dc6a5341e464f67bff37089b326d8e38ece7e8bd3928dd09066ad910a2 DIST LibreOffice_5.2.7.2_Linux_x86_rpm_langpack_zh-TW.tar.gz 559074 SHA256 550ac6477bfa89da3bac444b68f4d2316dfb432745ca2af9c3e37633f6d85a53 SHA512 067ece6461d05f98083cf858c42ab510a2c9222772fea2ac43555746cd4763c753cabaf43566eb7b1f021f33e85b96516709202fd9ef7299a23d39abe9e6970e WHIRLPOOL 0c4a413a58dbf748e4a4cbbd04a64e6261b01a4bbade05b30fecb71e7d44267607dda34442183e71dbd891221999980a84d2eb9da20a680f0198d58eb0f2a135 DIST LibreOffice_5.2.7.2_Linux_x86_rpm_langpack_zu.tar.gz 492668 SHA256 e4205b283b79f1082c3eb622c2a970b157b80fb1d866927e0fd5f83737289111 SHA512 57c9720aec8b901055f5a858369600ef05c4c66ae17582c55e089819eee4be5aa3151b57550d09a8c9219c768cdb65172fe2739ede26f5d9992e768052cb36b9 WHIRLPOOL 210c19d3d902ef5a5305ca2e63a214bf6bf61fceed03904fa660d32510eeaaff56673514469a700c5c877318412521435e5acb1bd862f223f1622ec656165271 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_am.tar.gz 7963502 SHA256 d5fd4cb41de6f599c9e244e3a78be070d2bedf46806b318b75cbd40d0729ace3 SHA512 b8c9236d291ed8f7435170e37bc21f88f29957ff5451f92e75d195931bfc62315851c2aaf5171da44ad1179e4c7c426be51025bcfb08ab1473e2033357cac5cd WHIRLPOOL 99a15831ed9615cdf7f90cca6355b0c89d05455fcade111b21e0921c1df34f6825be46a2927e57f031f7fe752b970b84fe7a6adb27225775ed18647d9940376c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ast.tar.gz 7893522 SHA256 9ddf0157eb799548f4fa295aa9ada8b1369d2a34995f72a82c9f14a30870c62d SHA512 69cdee4c3426227784704a7b68a7562d890ddd834f6b73b6358601f152756efad742347768aa04a1653dd0a54d2e6c12cd5a6f6704409f8a533fac2fee11980b WHIRLPOOL ecb8745d9f51fa92a294b9fa2339ddfffe70561cbb83fd44d441e1e8b5ba423fb6eba9a79c94ad7b2160898fb667e72e71df07d1d88ef565e2f34779c3b963bb -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bg.tar.gz 8437787 SHA256 ca9b0a951aca2ee31aca0190f3187ea73b6d213532d76f7097f2ea3bac72f091 SHA512 4c1a8133fb91977e9d2f578bf823e642e5a97d1913bbcac0b5192d23f595392edd1a793eaa7188cf15020e98c8c9d5d3c7edf36e558daa8453281889200511a2 WHIRLPOOL 5382c0b1ffd600ac527c1e3c25a696aa87c8a17628e8e3ea83d1577afc7ba5c7eca73513421e55f5552147c35498d60280e14139814df4254e79420b27fb1b6c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 9166351 SHA256 63a0a5baa9d2e52a4b00866d5a8b72ca8617d7d1792ec46bbd6921adc4ad18a5 SHA512 600f76faabc27269ac69987c0cc208cce05210a8d05d1a918cce8975be09165f9861b40e3c2e5e8210c64992965294aa6534060586a73ed23e39209d3822ac52 WHIRLPOOL 56917801e4d89ec98a7b30555535ded5feab0fe38f6d1a70e351b143506dcdef395685f06b284f9f5870318cb43c3fc5ec7847b7531c7a154efac752e009e25b -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bn.tar.gz 9166314 SHA256 df9ecd8c52c186af605d5cf945f423895560cf96577e7079ee80ab622a4ef3e6 SHA512 47eed0ffc10aa57fd114d3b53c93eba5cc261b90a5c8f481eddbf1f055b81b5b8edd868eb085961b99c803bb7307a5cf24d847c1bb7f0eb784297cd48835d55d WHIRLPOOL 8bd733efa5746ab9e0e4fed0e733dcfcce4afc34af6156e40e6016dc0c023018bb2ddd05884e2dcaa598d47cf576b2b8ed8de62c9ba30e20b0f28441301f6258 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bo.tar.gz 8914719 SHA256 62776b74681d393ca4749b49870ad344134fb8c29754a85158a242e792299b58 SHA512 67f48b466dbc2458896af0a7aa60df15dd86840baeb19cba3bcb15e107d414724d85e92bb1947cbc1fb1f5c78fdb325266ea4b05f344c2dfc27cc7cc7f928372 WHIRLPOOL a0433734db3aa6a69d748ed9406086592f28d35b4493beec376e89f4f44fd7b7bd7fd1d5563378b16340eadf5a1fba66d0de4a101de22926c922c8039cbf9f94 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bs.tar.gz 7185970 SHA256 c27b2fac84b081a710dee98303310a6bb6e4fe6a0a73fa6ecb879a8185476470 SHA512 8c027dfffd3fdd561333425429867b4f352e2d42d61a895fea5b3b612a13810b2d12263d5af433b79c3ff99f9fa7d7b790df6c1201f2354c7982badd54104738 WHIRLPOOL 98d8336b75e4b2257c25148da127412fba8a10ac03c28d712320a4a75a54f97aaf911505d9eaae72b06b436f8ecf2010e76aaca6f8fff238f10c651cc73ecca4 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz 8033609 SHA256 65fd85b23859d9ff49a2b697e07bfc3b829388364dc4f02aeaf3bcd648d64304 SHA512 6da90a88e149eec83cefdc657ecb741a36432ae2f8a1767822dd9f4c175ddb3ed35df64629c59146570397d676fe7adf898360d1d0f5fd827e6253bc159b301e WHIRLPOOL 63d288c55293926115b52de09e049884749555bf5e44b2d1c5592995ee0471880f8e07338a9cfc7465b23b00d82488f007278d0d0cef6b7c0ac883276e576053 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ca.tar.gz 8060590 SHA256 ccba92493cb8295a7f0bc8b231ff982d789fa6bd073e21fd555be5facb62325a SHA512 1c288792985a85b6f76296131cf68cd689702a3681d47cb911700b853169173a0951b7776806691cd3bc7eb216f2b32f2e33d1c430526370effb11d9f9ffee85 WHIRLPOOL d2afbe2c37a9704d758c9a5b06c35ae8433300e00492b77db698e428b76bba06bb2a609f51bc8ef1940439a9b33f5cbb13a78cec3d64c61d64465cb4758c4456 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_cs.tar.gz 7710847 SHA256 35cef5c7b2f16b0e99d76ea32bdaf9f2fc75bd943819fdef8a95d8b0eb45c314 SHA512 b9723f295231549ab340f644040f65aeb9e38c730ede023fa29b1b9a8f5f87f6e2a82c3bd2354f5e39e49f1fd839f9193bf49e9ba69be19b78a45b7a584baaa5 WHIRLPOOL b65397341f2effa9d25d8da6e01528e5f1880c59a461befef0c059843a542d410634ac666fb4a2ca94a3246ad2c07eedca07f277277c881803c7ffdd8907b0ae -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_da.tar.gz 7679756 SHA256 b58cf6270fe1aa28965f5d06156f34c382ca7b371392699f652f7ebc926e8028 SHA512 5e42e2232db516c9d360f7f8f4783f3f556a762af95067796a623f366bf5741e89a7fc3144697dfb0d4eb0a98e10cb3719f6223e7717e01e76c198d34424bc9c WHIRLPOOL 1e2cc9711ce9606ca2f5fd7dbf338465ae8e41930c7c8c944325b006cec2b93de795e27f86d25901580893de07c3f92814224069d3c797a3891ead802536fddb -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_de.tar.gz 8201711 SHA256 58f2e9ebf5809f67e7d27e1dcea3f36101a50b3ae3bee15f4d2fe28095f71f45 SHA512 bf03502872c48f3b237daf56877e48c1217f85125327c02c54a38cf9a9939c8555cb6fd1aa68eed33ea4d283f6f2950a745b7368c29e14fcd995a3524628d934 WHIRLPOOL 9f7ddfb2120ac59e946296d0c94cc42c2e1be3409dca08840b12f3db7e4c074f31100efb964a008ae347e83d306d3cfd3a1593aeb1f8d01d049aecf1966c640a -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_dz.tar.gz 10294592 SHA256 bf3189420dd0626ec7bbf5a18f96a4c140a5f154268de045a3b4b508f7ee2e80 SHA512 4c8c520b8192540d58e6bcf2b5a354fe6637d603ccf2128bc4118cd67ba8aa7e73ad93c2f2e5ea0bcb69b9e6cf45b066c48d2c5b40988943eb26a9f9ae59a742 WHIRLPOOL cd61089e785ecce91de9f5cb7bb949bb47f231203df6a995abc450f17b2976f7ed29f9443fcd80827dbb9be3329e85bac13ff9f9f05b81f5bab731c34a7e301b -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_el.tar.gz 9074502 SHA256 70c59ead93485a9f752d144d6d3470ea439d5e524658cdbea78819cc56cd2b85 SHA512 04a65f5a90a2362cb7ebabf11ea95ea22d49e2f1bae82a8afd78c0b2eda5f6b079cc1fa18f208fb39da5e19313e2b6922e420a43d8d5b982392eecd0bdbeea02 WHIRLPOOL 5c25e2b8c0eb985ce06abdd93b24fe3c1d16e61762a0bc52455d8d41b31885317bc6ca3ee90c1f202f78c8d062d06f76e19a0fd09b6edb094c84d6e4537db02a -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-GB.tar.gz 6521747 SHA256 91bbe80362ffbabf3ed43b55745d969dc99643ecad3770f1ca5994223406bad9 SHA512 cb4dbb1790effbfe8e8cc8a75fc10e546195e29198774f2dbdf0103911a4c1903ef115240407e55859dd525cf0e35e2ec2a4294a009d4c109f97dd5a729b6b34 WHIRLPOOL 3125af4ba897ba5df7e2b77aabffa9239ff039e67f07c8bc0dba8ed706a427dd731bab8808c0e418325441ba3985bb4c3270dcafeb8efd471792c0f0dd29c69d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-US.tar.gz 6558479 SHA256 e682b0a26ba99b87128e9025f8bdf9701f972ea7f5035fbec258ad2bb229f15c SHA512 59cbaab10e7a19aa2abb87f0ea3c2982445b671908fca9d52b2f261a6d17c2cee57480ee7e32502fbe2fa6adea182ae7714274cb11670a1e99af73625f39fc08 WHIRLPOOL b6cca11ed2c518b5a623ef3a3d0cdec79177220e6748a1f8c1b8ac4b0f82b1d5dde28a5a486476051d14a6a86ad1fe1f8075d3299ea152bded88a46a7bc5596f -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-ZA.tar.gz 6505178 SHA256 ad5fde5df7cc992b2c801139e2dc7139a464680eb6700851d6a2f34e15a4f169 SHA512 718cb48226d9166c621accaeec14ad156472bc7c6acba6d24d0bf9e014bd048c140a1263d0b80f673af81f2b7e792c26bc9ff4dfb12165f74b02d049d8e3f955 WHIRLPOOL 8a6e0ab3ccd47945b51dbfc4f8dc970609f747a181c6a6e18a7059ac9e52536181a027bf6b7a54aeacf91e5f09ade887cd17e181b77e42c2593e7594852fc282 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_eo.tar.gz 7080985 SHA256 3e80208eddeb64a5869e549e3316e437515f7e73510444e02955069b31214fdc SHA512 68b59dfb9e025ae0f810a2f21d1c69fc2bb0da766c296c57fd6b7399cee7e1e0479fd30afa39f8412f5b820aa41c3b95d7bc7ca3e2e6080cd685471a7bf05c00 WHIRLPOOL 991d3fb4ff10ef468cbac76770a3fbcfdbb1b40466d7ceff8740d713f180fbc7469d0fcda8ffed8a94f979b21b344b196224da8445ea537b874d3dc57195431d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_es.tar.gz 8111130 SHA256 60a793803ac22863d33f494d51ba1f1cf30233cab35c481a3ba40d1503870754 SHA512 827565c394052fa327ad6650668471b8f0ebcfa8aae4e1a6066a8c44cdc054bbe247510d4ed3c2b955981b66a6734d54ffefacf0009d4ff5cdd7b0d779a6c7e6 WHIRLPOOL 0eb49a40f6aa41c7c6409b470f46ad35af49fe175f23247d75db678609e0cda3b3d9e342f24a26f6e6a3bd4d2515a8565339a6c4bd758e59fe4d08017c41881b -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_et.tar.gz 7586186 SHA256 e628541cedc2f2d74aac4d841b3faf5a983cb4ed946fa96e5621660ab7b32481 SHA512 fb8093c78e0a9cd262fb25070d7f724d255155e92473ed79b81ce94659a4f99f61c0663590dd85d5ba3926776f14f7d0731b84153d34d301e4151d7477adf5ff WHIRLPOOL dabe538ac1d210c8eef0934012ccdd1bf6d4b3acfe17ce4a0520c733b9f0cfba4b259bac2fe2cfeea67d440126acd7915d85474aa64f9651371a353c6f19b33d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_eu.tar.gz 7620765 SHA256 21afdfc651f92da7710b588546547e9dac1d5fd8d60d9b8094fe4a48654007da SHA512 8312ce9d03793b81c8fc3b967655c9eb5fa004259638c0ff1f2be1268901fb2b74d90232f683976aa55a275a95da3019f9c5aacb928c52c66f57440e9712acf3 WHIRLPOOL b058efddcdc383b914ef2653ae4705a1c62f6bf02113fa883e4b0200e282bde8fee01d5c9c59f40c0fc8f38720542a07ff6a90d5917fa2fe880bcb2fb291b492 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_fi.tar.gz 7853466 SHA256 e2e7bb34dc4d66f540c1b4a900c04b0902de0a916fe26f8687fc7bd53e01d6c5 SHA512 cca301a9cb38bf0636a073c9c4c7956138c4852e2b9f353ddd1620f9dfa290e42779444daece475f96b11192eb4111ac889511b08f0f52f667ace6ceb3c3f974 WHIRLPOOL 5e64ef074916cdd5515a9233460755443d17432570350f4dd38fdce0d89b690ead8898f4df2eeb7dcf33784ba83bf257c5d144078c46ba4c8484ac10dfdebdd7 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_fr.tar.gz 8288402 SHA256 a62fe19fd3fec6c6eb24d42e341eaac80a14ce7b8409bfba958f0093856487cc SHA512 488332ca2393aade0683c1bf4dcfb8349cda929386fc1c7792bb488e989be78a31a0744ed431629c2c64c44294eb359a4766a0cc864bbd96c8ae7c18088b8220 WHIRLPOOL 6a0ec5498f2e10f9b9a4f9afdf2d78d8569376f2633e8406fec565061896270158ac13e7a9bbe68d401ec90f676cfcaa1b673923d192cae49ccda0d9a5a3149d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_gl.tar.gz 7763401 SHA256 fd0b0d9a7263f44e3c540921d9e78c1021bacf8d2c03d18838e8df8be70f9cee SHA512 b201af782c07074fe2b3ebc11d7404058ff4623f64ab3d2e10e1b50c2dda870fabe2338be9f6160eeb5de4fe950df35abb57f972efbbd52fd1f71a15080e4654 WHIRLPOOL a700ca2a473701dd52d1f5afcc64d3ce8047c189af073db24041a1e4fb973716befd74bf2032b0ec7377dade2b6261ef8a68032f167c1cb847fad47148e8d324 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_gu.tar.gz 6723901 SHA256 3380a58b7004f8b3ee00e713a4dc80e68ad5cc852df1a63f7e8c85a10a124032 SHA512 0a8e71e6d87b41fbcb41ab6870e8840d7c745431e5c0f7fdde15ff75272f6ad29d08e5cc3234abbbc465e42a853785d6da3aea19f5d12f739dcc12347c334a97 WHIRLPOOL 47e55bb1e6a0ed409773b9806a04f22e6a6c38f545e23e2eb7587ac9225bf1dd79c546513ef1f78b4d2a8944b6352b738d305d9b037b713224dee0420215831b -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_he.tar.gz 6347880 SHA256 f67f50a586dcd1eea54601ab4c559ae9affc6f9d95a26f65848540ce465b314b SHA512 ae17d658777ba959cbfb0b342e383cb2bdcd8b1f3a144b3862c4d55e9118fa7879e3a69ae9b698ec731ef4dda8591916724b1f1c3904cb072ec5965197446709 WHIRLPOOL a684df62ab7e13c18b2e9de6a3fe55babef1b3a24b8e68ad3c6c38a4621c3a65871db1688b53cff6049eb95a4d21ea38159c7111153da80f0cb186609172c775 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hi.tar.gz 7375172 SHA256 9f6afee76710330ba466adef8206249c2407ba626dffa5528c7a8e21fa00ebea SHA512 b05b85177f4f8f1cf3d4548f64f7b048444b824a0851261d8321d3acacab2ec66886c9f8c6f5c5e6ee7676a829db03edc100e52c5b077fafc642561a7c967783 WHIRLPOOL 920f3c5d5ef25b1ae4a73c5892023b3bec5c0b6e28c5fd255944e86527368645ea98a53b65216bb1179382822bd9259a5b15b2125a5bc9fbbce4337e831c4cd9 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hr.tar.gz 6881165 SHA256 bf168751d037056b7e18a78fe178d6ae8c48271f4a05ebfad9b1a27289611b10 SHA512 01862babfae2711385d3f2c233d1e6db2e169b0f57ebd6e9a2ff7fb3f07068ca2aded27a828ee1b8a32d67a08679d3784c053c1cee9915c52ed782184299ca2a WHIRLPOOL 5297b397a5204e9265c5e36636dfe8f1a1c88cb74f6906ab2de5df79e0f7d1a542f5e034cf951d6181287883d6b6cd439078850b626eb80fa31265c2dbcae446 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hu.tar.gz 8130633 SHA256 3ba563ef58928f98a970f72e3ca1a9725653ed2536a1accda7f68cea5eb725e6 SHA512 0af062f8d5e4ae20cfdfc1bb9c4755e5d40da84825c3f1f2c3fc17d6c7ff03195a99554b8023cb6cba5eac908ce7e9404df5bc410fb535994d527e2a68b22433 WHIRLPOOL be934bcb9ea6a956795271eb1e1bc6f347cb4af21f151f0392593b8900403d4630b3c6cd3a617b8fd0388677683ebcd0dfa429a9bc633e3312677ea301375c70 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_id.tar.gz 6927321 SHA256 b5de4e58a75f6a2d04e0cd81f19281ea0166eec73a2fe6fe696ea8a8ef79fd8a SHA512 46732f919e9de5633dee9c813509ba525428dd7bc3c79a21b6201d4e2a1bca1b4585936fc51ba31ad12387bdc154c12fbeecee6bd1ca4fe866eaff97f79288c4 WHIRLPOOL f6d01ca5f568bdc37eae8b7a09e6c8307d5f96b8c05dbe37f5d79d8bed9cb4b1c6886ae0b732fe4aea80ab4c74e2c2d545ddd954c2690e43dbd60058250d89e3 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_is.tar.gz 6987925 SHA256 bd6d4f222c175396a7ab33be135dae9c3d3179e8e111ca8710029f32acdf1718 SHA512 e39e7993fc1431b97cea3e6f45993ef6c1fb4c73c10a6bb32e52cd5b61c33e5a045af7d7d75763b52171d93760f80b751d5d322af6d03af7612e62a8bf04c2f8 WHIRLPOOL b8a4c9f47bb5ed140f61ce5869f5448bc9e96e2118913530ee990ff6c8bb727fbb5bd0b2e7a2569ea0a015f3b75e4ed89814b19791a2cbc2dc9033db4eec8c51 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_it.tar.gz 8037949 SHA256 83bd486d44e6c38db88f21f875b4ed0ed0b8b4442eed92c3b322bfd4944c801b SHA512 e180c837ce97538c5ca5d48415267850cf2fb732269dbbb063a4ccef18c69b2472514f163c896ff7f4db99685a846f90a7efeaf656555b7597059b3346fcd127 WHIRLPOOL fa6d5c3ad72614e7d00e5cab18420a929a2fe682a45e3e62ba2ab080e2aa051d669a672d6bf9a8c6f44f2970163d107a54843d395fae0640d2498455b0fe8518 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ja.tar.gz 13220654 SHA256 a4cb86ab0abd165398736f91f86d87e93b415ea17e322ef12c92a7180ada2024 SHA512 ec50368f5ca13cb0abc800e378c02a3f38d0a4af823c6ca1e591389c47cda40c605f21055a69cd89cdfeebaeb4bad7e3603d937568def061e0f23ea8ba1aa93c WHIRLPOOL cfb25eb409f0f94b675bb9da84d94a53de5cc2fc167e3c6467f906bb6ac08b6880cd8493b3c8024e76ace10742e8352bc2adce91c1d8a6e68e05954049d884b8 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ka.tar.gz 7178858 SHA256 44afc55e1888cc6461fd50b5fea9be07c8dbc9da375cec76c9a6deaa0f5b991e SHA512 bd5cbca5e5d78cae3bcfb68bbae4e67d263a073de69ad16871c9de8c1bfa4cce29c7fa06e3f6c9e7d1fd5775d76603e52d28443b4be503777f69186aecfcb986 WHIRLPOOL 7b6c29e9216a55f71429a76cdd31992a0c1a429f4341657e93587e5c8f68b551bb3b133110d73a3215a6fcf1e5b60e77fc40971b9092d3c97e10614113d0a8d2 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_km.tar.gz 10348038 SHA256 4677c2b6278744d873917f3aeed1803fafd07eaad4685b134e7e5452762af4e4 SHA512 715cc9ad6413c30188832d34f607364b5f2a1425bb2d271b2cedd1f16cf5c562b74a8e44e65e6f0380dd47914046d6f06079133324c4f815394e9566b54248a8 WHIRLPOOL 89c1f249f32fa9ea021651b8513509ce73697aca30f8dac82891b3ffab605ed9dc8b07195def4a98a4d50917d249c51c083921becf68ffbf79da4a206676d4af -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ko.tar.gz 9423402 SHA256 93359f34dbc73d9151000461c4251c244ab02827917db1156b5a046550718f55 SHA512 d14e5b08d48e00844b6400305d23ba556926ce0b1cae722ef2cb2bfd00dd0ad38f8348530fa187e7501abcb5936947b2cc154c57e0c542f80fd83c2eb3906f74 WHIRLPOOL a0868c2dd4f76bf281c1c72820c7ef532494b492130cc7ea583b9d321a898f6e47852781a75a53528ef96e7e43bee4296034f72cdb246ee2cc7ad2fca7bd1afa -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_mk.tar.gz 7394642 SHA256 db7e3de8da79be0fc3d9e58d9a37da9f0c082003dee9ccd6eb44b4174b5af26d SHA512 3d44e81cbd4618bbcef77ffa8cf8e9e95880668451a5984f894d67329e2c7d6da16e81b65a11bd97dda22b211a40581074598c9ffe8e30b4634df5f3e777cc57 WHIRLPOOL 7415be9329cb41ebfae271b6587d7bab5302c8cdc505807b958ae96c564f75708017d4ec1f9b88a1ee87ac99946c616a435cad219c8c7e44b44066507cd83968 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nb.tar.gz 7734167 SHA256 7f126370d693aa64b2fbd68108ff396a8af6d077726d28567e7b3ce7261b79af SHA512 2af2bcaec76879f45ed283c960a3088d232d0a389e07115183bc601bd7acdd9b5e1ab1c4a8c11c93232df3cdc0d1105fbf470d93ba515b5b777f3ea8ce6a7dbd WHIRLPOOL 6f728d676444ced99e6f355392000c127c9430bd444290816f173f6270e96ad41dd3280e0a78421a07389fe65926a8f21523bd17ab151124046494123763da4e -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ne.tar.gz 9763962 SHA256 817c72f3694d87dfd502d514507345da9e56f32354d0f1261361560378c9cc42 SHA512 f1de561a6165873b2413998a874716446c34b3f8da9cbdbb683b7418e432fc445267be63a53216d152a136b183655b7d7137d93cf21c18db542f7a2f20c68499 WHIRLPOOL 191718a91bcb98d6ccef3e8273169905c08f320ae61623b4234eff9cf21e7b3d2481faaf0a4385aa0e5b0b221ae1d401dd48f8205463e6e71e264f1209b2ef5b -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nl.tar.gz 7844198 SHA256 2f4d763c12d66e272710e7362f12539ec7842ff8d48dc6512b954e133dfec5a0 SHA512 9244c6c79903275cdbcc72c4f8cf84bdab07828446a7dc5e16259b79cf073297a96bb8489eaeb852ccb014752ff8ee9258f0ba1b343ec2c80e37c26417abca77 WHIRLPOOL 969c72930ed894b9d8becb3bda068394e73d6c5f94967b64c9205c5030e09aee55275d7d3672b85c6d3b7485243db0761b627d06576b2a063a2c9f018e402ce2 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nn.tar.gz 7715257 SHA256 4908954ef8e29f11ef73b8be28f2ffb2cdf936997e909b8eda5705630c85519b SHA512 4ba85ee9e02a645ef75e8814e8bff0eb14d17cd402f991ca2a40da93fbe56c0a5a655505bbaa9fbb614b71fcb8bad0872365ac1d5048867518d4b3309f96bf15 WHIRLPOOL 892bbd30f2b9cf8cae818a968ad70421a3ee50312373e3e7420b285e600fcb7f6d0ee5440532678f656b77b798c98064d9a7bed889b1d56afddbec8d43726753 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_om.tar.gz 8045466 SHA256 0600f665d3bf31b4df2071bc6cabe3897ffa0c48aa808f2b573d39b66a0a5a4f SHA512 6934da64af912e237a821b8b28aec7fffb70239a64e9724f732c2e4bc91cba59ee04fc1f042038c068aaa4cb6c42db1081a7d83f29766c3eb7e88049ac493c17 WHIRLPOOL 10fd8797ba251c517b4a7384a878040fa3a6b780d259835a5e998b8d92e6aab26268ddc6ec2cff4f8498e8fc09ba4e350d1a8cab222e2e055e63540c433da1ae -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pl.tar.gz 8126175 SHA256 f3778aeabe73c589b18a500e7c2fdcfeaafa57db7f2901d4775756f056a62079 SHA512 a1ea561967fad9655d8af141fe42377a557d08d4e27092fdc5ff48e5b01be576ac02ca996a2b7de70efe0cc2c81020b732635882f71162ce00243dc11dd9ee8c WHIRLPOOL 46bb055d38a620d80650ff6f38852e54514203ceffac17b6610e7d49de6c1cd1eb6019e6fda2ead418d169620539c09787148697881851c6d7fa188f1d6ed829 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pt-BR.tar.gz 7855124 SHA256 3095e48b817634db9f51a249589621466a9d1dfcedba782ad1c1401825ef26fe SHA512 f133e91b3c0d6afd328190991920017d8b692256e1241a42099c10937fde30fc4530554ab12a46018d835cbd2c2068ee900e93f5d6b1f8c9853c970d10af1c2f WHIRLPOOL 89a0ec7ec09bff58daf57bc07a8065f1c8581b733ebeff730fac4b085b888c24123d25697234592b7560b9d7585939e671013f95ac8860dde092aabb47db7697 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pt.tar.gz 7803867 SHA256 0ea7f0fd080642395388dedcff399b443ce3096366caf8bede83e9896a8d27b5 SHA512 14afc59c5164dcdac0f57fea114262499093fb675754929b4373a28d64e72207120c21f97e0e49512da9274871f32c67c335357c2aa57b721cb4ce8ed5b071f6 WHIRLPOOL a917d71a85506e71497932f14d1b1f35a8a82e42a9ef112defc9a7881559feca3eb20c785e7860d381989cdb7f1a37af385fac48ffbec78604b37dcb4cc481e3 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ru.tar.gz 8474083 SHA256 6cc08af2fab2bb0613416c46c96c0c7ce1bcbcb7ef7f5c040b46a52668b39f89 SHA512 d8cb275ac37c1baf5f1c138a2f9b470cfa27c55ea716b1c2ddbc9e5b574a242f5e288e01633d4265e18c476bfc5aec139132dac185c60bd01ae7163f6d1057da WHIRLPOOL 1f1160f1f5554f575e09cb6c91c682bd50da6d079278b66247e9004c6d3915da4d58309443221a8d9a973e93b97f2b10557e450bf78012541445e3e30848bda8 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_si.tar.gz 7253509 SHA256 71934232a6f585598bcbe2c4848ec7ff6c428953fe3c9c8240b10933b7e3e9ce SHA512 5893c95593aaeafe0df8cc1a9997fef1e86d394e1215c2a2e1ddc2458149bd51deaf23276fd267be7f1b87bb4c2e0197a3633f9c00f6114c445de94bc42bb40d WHIRLPOOL 7172447c58c60e521dbd93ac1baa5c323656237c643d6fea2822a40d3d19d79507b8d9500639b9cb6689dcc0444cf4968050734e62283581ac2e64a045c5fc0e -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sk.tar.gz 7578797 SHA256 91f1aa8f85f83df3d6771a6b4112e2803da9d83ece207d6c2d75036f2b9869c6 SHA512 8725dc8b756c46bec72d8a9e5a6269c878a07028c60b6029ae2413f7e1c010e8b384e20592a6cb7d0bce795e15c3c48160cb2a836013d97a4fd494aa4520acaf WHIRLPOOL 2f57001211d21016322f120808786dd3366f05ecc5beeea180bbeb23752c70ef9b168552e257f883609515ade118e1ce623caa437e4db4f4b6f33029166deded -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sl.tar.gz 7852342 SHA256 ce9d9bd915ffc43db2771bd608272e705190136489a50459931ccc6bfe9fae57 SHA512 c657e79d4a48915044654f266f20059936caa5cdb082fd8cc064d1159477ae1eb4a5fc8d8c8be40b5041c07027aeb513d7a9a7d9018f2b3a4f8eabdb8ff40a8f WHIRLPOOL a4025403c4fb07bbcf315ae48ce1890fb260c762899fd19042216e36eccea1958541965efdd781cf9bb98dfd459c3262313126d5f5e87d48ba5f2a22770521d9 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sq.tar.gz 6923533 SHA256 f66f043ec5b9d616cc39521cf99ce26998317db5bce619135530ab2a5331d7b5 SHA512 3487d0462b11dd4760d39ccc4f7ce23ae69b9fbe0dad1f73b20f422e946e52b872beb73ea5bf8b3b77cd79233455f80a6c0fb38908fc74dd0f3167eb3398d501 WHIRLPOOL 5dedcee35b225989c5149a31b73dd287cb39d7a5277165df6ae391669ecf12fdfbb282b3d819fbb282db2917f688dbce2b066fe273826fa3ec413c683b5e0f88 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sv.tar.gz 7791624 SHA256 6b2072ce14119892286b7653bf5ccb4807e5b6847458469bb6b277167f432277 SHA512 c802c7e3dc52eec47875669b97e005ab7f75e945efb1a8321f25968782809937a10b1d4d1d5fead463883fae57bca2a4743082ee1b8802b24a3aa9321e9e540d WHIRLPOOL ad6d7d2a1e132b8853996d0035c634703785908302f929c8d5b7e3d13ead62eeff533aaa8659aaac8bc997419e0a3c427c7bdf233a7bc16488a8dcfa7791cbf7 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_tg.tar.gz 7241271 SHA256 5472b367063a1cea5b11c51cb5913ab76585f23fad0c03c6ab483d42e4983621 SHA512 3c88d9607e651a53e7732107481348c2ca30d32213ce8ade2e9f0b748e784f64f742997085736edacc08af4f6390a8cb2816185ebfd1b6dca45a6d0e13999b7d WHIRLPOOL 03c89afa418797570c31a8e71649f4e4239e0575c34978953124b564f9042dddfdae986d40296f5b4406d77c3fd981897ab149b8163c1be1d3aafa3259e4ddb9 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_tr.tar.gz 8023521 SHA256 b10646ec7b3178d6af0a664dd2bdbea5cf3408a72706c4cf84bfefd4117171bb SHA512 ae9ee403a20b0a7f1072543ec5d419a24fffd7d32aa278ef4e2f9429497dbd43781324ef44399aac41f3dcff84773782731e1ba4b5c98ea27e1f42ec096b1f91 WHIRLPOOL 411ee094984566be70cf32fbaa9a89de01dda53fefa22acc24655e12a869cba371b8e97888819b1bce67163d98780ae9b2289f05cb80aba8fc6667e7a3d0ada8 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ug.tar.gz 6911347 SHA256 4156ea875d051d7dfae63958c1c4584c4ea606d5b1dc72df013e054a30069f52 SHA512 9523fb0bd142eefa6db3d40fd1161a687bfcde483a54a9c459577be9f5f810b1fc2a8b3e163e1241509aba112637dbfb0a74440815c2299fda63b43b92e232bd WHIRLPOOL 4200f9e95e1f692c249ba1565516069be542c8baab491ea9a4d04e4dd15a90a54fd7e3c765c7e0a2e5d2501a4fd17ce383df9d247eb1e11612b5a529eea66ed1 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_uk.tar.gz 7829186 SHA256 a8436d0cb3e66f3d760f3fac12a01fc46b6c1a013aa6a0bcdae20a7a6f08fab9 SHA512 7ce86fb63e135cad8ce0d217c53611997daa0fdf0eb957911be7fbf2bd2d4f2b878b92a84722402389dcd8f9ab677d0fb6a9236102c9ecdd9c3cfa9cfeb12d78 WHIRLPOOL 83a55847cbe7d25b7462d6164429955e33fe54289a1e4ea543f76f2e16cdfa2fc1da6c9c58774035ed7da61a279ec549266d4b89ee0dbbd24ec8ec68e7aaf121 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_vi.tar.gz 8184979 SHA256 ed1fc80f25bcd75f48eeae81228515d7c0a60549bb59d64ec9a7d493df8ca26c SHA512 a0966b12ccd10c91621e8f2d4d7c751961f8a3ea2827e4d2e30702b530366624c1f73a680472f14159896f4f1159f6bcad90fd2400a407dc8cd5659d20191da3 WHIRLPOOL fa36b1be96b0c14019e5cdbcda87753023d85fa713ca066fb4d7e6bdc368deea46203490283bc1ab0a917d5b54271d039631e3c4b97c2b67bdb74fe464158c09 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_zh-CN.tar.gz 10746366 SHA256 b06c367ab69fd2278765d36d77ac664b0809e5a8c39c9e6ae695d25a68759b39 SHA512 992933e35358fc8ef85f68cdb311a141f685d8c6f436dcd73e3194f32c947be67254c8767dfec48082e5206ff2b656efb50df43ccff34ed1fa6b19a053baf25b WHIRLPOOL bdd4c73b6494a2cc6e62075bd4fbe29d906c48523ecccac94235040457b703bb368c35d4c88557a8e2896dbae36c7f3ab33c94991503b69a2e6ac8e3f30fd7bf -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_zh-TW.tar.gz 10737471 SHA256 0f75b73528288986b6ac34440625e17021b12a435fccf88316bfb5fee9ea1505 SHA512 c6eb57a7a944f0c389418731c60a332db457a43f1c1b3e7a4279e125d5c61260a0c5aeeab877c48ba33f9434fd98ca90111718d2a446279ebffa5dcee04212c1 WHIRLPOOL 93a1f83681434ca7043fece55d7c07cbf1e70cb8460f0b71cf75e4db9d71a451a647ebdb951a7fd6990e8a79c4a572d35f6067fe7928e3064be1c2247f8a4eb1 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_af.tar.gz 1106676 SHA256 21e861c757a77ec9be157b597c79eb48e879012be48fb0ed6253a4ac8ee9351a SHA512 8432cd82d0a2bc3e65bc853f3ec7f52cf1791e745d877b520245604c3a1f108ac2a7d2c4cad44871cb9685b7e86eee302e76f599b1765dac4cb7ea221bf27964 WHIRLPOOL 4d4fd770d0164ed5d5bf8f203f94de7f9c179e5d674033b51ab937470ac260401f487db3c1314fb0d3d8393b5aa48ce17aeb9dbfbf931fc8348fb559c8edbe87 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_am.tar.gz 514503 SHA256 ab4cd684c73afc5bf26c3b8cace321558576e88b73c884ccb655f322adb1b02c SHA512 e81f37d5df370061dc7d75f089087d3051ddccd48cdf073d510bfc7edc6b0d63cb55a09a7155ec714ae53a226b1341d5da693358103d4176abf321e349932873 WHIRLPOOL 219277dd9c032de7d349727c332d870e997ffca441d57dfeb33d6c3cddf21234abc4c1e82765a9041040e93da0825ccc55d84f363acf1c8b84f715625c9bd7b4 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ar.tar.gz 2255950 SHA256 39d4b92aa53fea1445f0c720d95c24168f5929f99c56a44f069bd971eb748fa5 SHA512 7e52356169cde0f683d6a9f4976b58222764523728806bd09c01bcea9ce2ed2c631add07277ebfa4bb38e308d4b15c74471f25b154f1e36f18c1c7a686c7133a WHIRLPOOL 5b112e3b73227fdddf640c689bb897aceeae18de97461c4344b93bf61f07bfe8c08f7b2149f717f63d42b76a402d67a4b0c6d341a5d010f7712ced9db32fdcc1 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_as.tar.gz 535797 SHA256 e50407e2120c2d5b694bbd4d1e01473c847b6c98c1475c66f8e4ff939d697b14 SHA512 1b377b868cb9603440014d3d2afdf5e95181ba586094fe19eb0f1f31c7128e61271bfeff4b80e07aff9e1cc1a5d1bf26030e61a28a1a1066be50785bbdafd90c WHIRLPOOL 9fbcd5f39bdbaf80446a9b30503e74403307d86736cdc3c71a271e81da541f246aad4cbe0d02244cfbc02cb33382708966b5fa7911501b1205464f03e0812d92 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ast.tar.gz 495043 SHA256 747041ad7a48123ef2caa980848aee903b3e9dd70a3d6b521a57278b3e29a1a8 SHA512 df8ca9a8d16ad783b138d6269ff64d8a4fd99b0b3931b2185d253e801ff074e6096f3be79b0e22ae7cf5237c3d04a11f83fa81bb946300e20e3b7ef387b1f62c WHIRLPOOL 9c3d4a26d534927510282d1916bf9604c8b45111dbf9001cfa8939a38148a76e640e48e9cc9dc266e723ffa50ede3b2819b4be4ad21beb938a9780b8cb8f3d0d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_be.tar.gz 875828 SHA256 a37327e77ab2496413d1810ca8b88e21eea0b89c74509c471e23b1e0deccf246 SHA512 6497c56d6f78b73409d195f60571b9a347f995efe6dfb6279aa17ac727f2bcd1b71041993974bdb1a890d5bafac8d6a4f5f46137569215e3a2a4dc53b356b6d4 WHIRLPOOL a513832a1fcb058ab3e8403aaa2e53e452dbb4fe6758e096cc8c4effecb1c450363deb3ddaaa26132caa230ce3853b03ce140c9e337bbfc73b4cc3e0a2d2e036 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bg.tar.gz 1954874 SHA256 5515bb852170a5594dccc9e9447e67e4e1f7a350d61192bd619ae9218aeaadf7 SHA512 35d91be4f01a096a1da913c3e17c3945b9f5571c19a5b02afed473d060b48bc5c6e2d3ed88987d8cfe1a75677c6d2728d0d4077681f06d95e1565b2ecc6e06d3 WHIRLPOOL 2830e8298cc5aff8d6c65101ff006bf264679bf28251b9a54f4a595e1ee9c3ce748a6208c53ac86556cf63c016bf590ffd1459c456b2978381ecce80eedfa4d1 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bn-IN.tar.gz 542234 SHA256 bf819c2b673f5867fbb397bf92431ff158c0613fb7d79ddc15448c0e23aadda0 SHA512 a67928036a11c26001f71e8e2452ff514fb62fe90c3807a7cc177b2afbc299febbaff6f22587da07622e6dbbc505b87c6aa5dff46449acc2acea1d644b18350a WHIRLPOOL 9b5d3a06e46bdb46151c990dd235dfc718af8c76119b2a03fd38ef37c440a99e08d809244be2994dcd25c593cb44da356d9ff02a55be202bb57eef09bf8868d3 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bn.tar.gz 889932 SHA256 94afa79e3aab07d1d596b9bbf7073c567167d6188776cd923326dd303816c661 SHA512 2e0d245431f0b751f754ae3a87a6bdc0f4468075f8cd8a64a7d8caea59bb6e3cbf81164871bd5a0ae41b1932e254261d449cd1c3b174bc6afc33007365963d0d WHIRLPOOL d7a863edc1e878c2f2e572481e99b2a2c977461fa1862ec9ff65a994dafd0f31c662a9f90f94c3ad94b34e882f496956d1cc9626b30c5600f851540bbd5612bb -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bo.tar.gz 526617 SHA256 46f01e55da5854f90b8ebb39dbb306d4003c88f1971ff2cce87d8b6700bc3c88 SHA512 d81d74db85271b26c0dd67b115b656b384edb3315208738a9daafd5d1349883fd25499af406d4e083e73fd0e799d47be5a44db24bf2cb922f043ca1ba0af0a06 WHIRLPOOL cce615550b9967954e8b8ef4082c713616f49deba36ca60f1e6fb42e8c0340fc23bd030eced22b12077b8162286a89dedf7bdff726614cab5ecfbbf583c01df3 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_br.tar.gz 1712361 SHA256 e2f23d907b1d54201bac3139c55b12e71e7a247d6a4017c94aa056e4ed1b4d41 SHA512 608dd6abec2d5154307c6380144d8c9a0ee1e13e69524ab90531416ff8864f274cc5a9fc76d78ceb38d4674a58dced120e39bbe377344caa14108b1d66222efe WHIRLPOOL ad19f04ed4c95d4086b6a514a13a923bf7dba574cde685cd2265cae77a0e7619e7dcd48444bf7c1f59ac2ac6e8c58ecfab8b815da2a8d91df1f6ba21617379f6 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_brx.tar.gz 504428 SHA256 e7beb31c154fe7e2afaccf91cbf79bca5507a8c3af8fbc27bd74efc2bca8ba5b SHA512 a4d23cd4754969f73c17788f8338f38e79d9a015299bee4ff24bb461900cd240ec6a03764850f9a0013a21f126005cc0e35c1c5eb5fb4e4f11b4fbfc9244bede WHIRLPOOL ff857ed6dd1637168ea150e3bb942a95e328dff30eaea24283c7809015513fa94527231623ae41d814595e971ad800ebd8b95b4b6dcd27612c3b177c9a6f03cf -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bs.tar.gz 609317 SHA256 5620e476777fc3323aaa822545c39e21a76f0d31301fa690e539950f31df053d SHA512 f0f7a4dfcb43188a45e550a79e453aa7a248f0a9a9ba2f6b1274e4306919dee1cfc5ea65ab6de391013b090f853275f9480595a2995dbdff15ac0fd76f0e1eca WHIRLPOOL abb90b6630c393f6556563ded9621a3c89fe2e560b90b26a25545fde98ae507ab3134225aa459df92ed66cc8956f2e35dd96321a6624b6a763b31dc5d80cbaf0 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz 1764055 SHA256 78a04005e54e3ff5dc43ef55d5fc565da617b996563b56a3e505699b520a1a76 SHA512 e18e56c37013b35a927991081d53ea68baaac2e67598587b3640e37abfa7d072e56f36a9962186abdd2ea66585440d13b936211572b982bb1a9fdc1c2d7f980f WHIRLPOOL 41c8b3a663181790e20afb822ec73a85b7e18b6ff197c036e00472491ad313b16d565b802f19fe8457a93a64fcc18e9e4f9f264fce83c6b9673a5c56ab68ed5d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ca.tar.gz 1766247 SHA256 ff95b956fe5d24f9d9ff0332e7fa72a00f6ee5ae9034cf9576d32db7fe9e2ec5 SHA512 5f7af308fdcd06a4bf78b2e221f9a7c5e46e8835035b03aa69ca65094eb5375ff817a2e202997fe8a9b7fcb3c87aa8f43fa01383d816294b991f16e2dcfd4860 WHIRLPOOL d7a62b3c75138e9d9a155a55d3592246cdf58a7a9600f12230df5ae1dc6b1368d4128da48deca6cf4fa5beebe449c818e987091c35f259d9a0d1676c65b5a21c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_cs.tar.gz 2933931 SHA256 b81dcfe3fd2eee6fd233deaa306e149435758d18892a6c424ea48b81a64affc5 SHA512 0404f585296c9f579dc7b8a865a5ce4b977d20aa46a964ea50c08a37131de77a4ac41a71827892035185c8ef17348d64d77d8c73e5387262458f00a0e1e28a48 WHIRLPOOL cba76df0df9462bdc28fc49b4fa3dda8b0415ac464c07b0d323d1875e70b00496b19d765f9db4e007e75049007855fe18e591216e5769d4c92c47c383f21c414 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_cy.tar.gz 475119 SHA256 de1047281d509e0095045fcb0031c68da12cbe6ea1e24eaec4feb443ef45af1b SHA512 c3b0fa3401e174bf9b9a829d18c4864973c4e7ec18025ba15fcfddf18ff140490cc3971133cb44c4447834252da9c09723d2cd9efe0f59baf3b9380fd5190eb7 WHIRLPOOL 347f3a65fe93888aad4d0e121ac6ee129ef563f2ef06bdb7dbbda372e552a1d7189228aba0d3e5409447ae5096fb3c11f41432e21098f8b9f6c77d2d476f0843 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_da.tar.gz 2379637 SHA256 4453896f59d21bfc28759809fbc2ab19c5d6cb5a89ad187ffbce96a57e5c33a7 SHA512 5ed6b0e4f4ac9759323a8450fea204867247acb741514ad6e1e3de4a97201fe9b01b56c46d8e9c317ca8308ea7083894f14735b566fd448308d9d79c1654e449 WHIRLPOOL dc7f81028e2098c63467712b4e59d3f89cb79c02e899627dc3ceaae30b2d9ac002c4b10da60934b51bf9b5940d85cfa6c754454c9ec43ec535a76f94bead4603 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_de.tar.gz 21507729 SHA256 f10336b6f1e6b14ac85e7973b6b2ba64ec99ed8a3b5254ad942fdbce090ab50b SHA512 513fd913d6ad8ae80cdff6cc2764c922132ea77fc66b6b91477ecc44d3a31ffac42ac97a3751480a5871b1fe354b5bd2dafc00cd548565f91634474bca549070 WHIRLPOOL e8afb0b3b6e4b769ee8d30d4b4f89fb9776d5fb18f2ce94e29a80f1a2045fca4aa2478e71e4b5cc60191ffcd156d3aba55c72e15e52aaa967277f26b44e14e2c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_dgo.tar.gz 532791 SHA256 55571dfacb25627a13531ab0a767ae553a1b28c862641d4d958d7b961a3eaa2a SHA512 c4d5b9e6ba927f7aefa77c1a08483c8e2408c07b853ad43fc5f75e5e3b06da273e325228699b73e90617c6d765a7f332cc7898e300a5e43ba4bd313d784e6f63 WHIRLPOOL 0345d1a27496fa4a2cd7589560093b37290c9be0ca932623d5332f6481ed59ffe7a4c5c27fbd34482446c6c038b8b3377409c591c12708b7c0ccea192ccc6c98 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_dz.tar.gz 527925 SHA256 c1df3815d4f0d4c2466fe1e59c5c2b84b6f05db2ea6c34751854353494b96f46 SHA512 69a9849e6ea2c34d94fc1f58cfbe81c2fffff92cd94fa9acca89492c51de717c3225330b440021c2a58daab3f22c9c92deb91562aefde02acd7b723f8d845118 WHIRLPOOL 011d357b11e1c9d0d7cd3d4afa45bc37162aff6a89aca31ca12974a1742312a8ea51e3ba6a9859cfc6134d28e5b7d63447049e809c87d4701bc0bce8266696d5 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_el.tar.gz 2572752 SHA256 8a12d8776978e2f75a088680ee44cd3bda2a420a7cd55807ae18669c429a7fd9 SHA512 70544846d1e0a7f5169a6c6a924c3355abbb78b0f5ef6fea0c7e869c456ac390308dc33d3a02969282da361f4184961d65859c47e7f32723472cd5338a396698 WHIRLPOOL d0551b0f9294f327a1cb588346497617fba3d59a0556e836789916027203a7374539f06b6138b1cef2f58d5e2999beda4088ab6755baa2f16edb04ad6a939889 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_en-GB.tar.gz 7071029 SHA256 d4e918aed86a46f724ba51352ace577355a8ed978ea14ff81db8d481085d6883 SHA512 a19bf39c815ffc56e2c4b367ccef94bdd991984b83a7a7dbe6d03fe485899d41127cc0a60db6e94e99734c180cc87976674977330849f71f1f91c307fb6f68c0 WHIRLPOOL 58c13c01569a890996cc189aece0a41bc513eea52012824413aeded432b774d1637b3ae4a1f6569ec6db4b4787c59478826bd38adcba508363cd4d30ce235a65 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_en-ZA.tar.gz 6988460 SHA256 4aaeb3c6b9e0a3f23afe45c74418643cad409ec31134bab1ee68339356e448a2 SHA512 7f587379e24340e74d9e1e75cfeb9d126fe10876303248505989b9ce288dc6ca24df2b340dd5cbd9e5b0b902a51aa4d733b4c4b21d3cac57c4e2f3eb0942f3bd WHIRLPOOL 0035c6d637e63492cca144d6f50d2a983d9714fded00af39c980480491c1af33ed3abe2e82c0605ddaf423276252a0c1dd3b29dc365db3dae8ea1ba1f2755da5 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_eo.tar.gz 472053 SHA256 0d9eea2b472a7c87ef0256bc309c45307f53ad22cf5e91798ad1e7d364054ffa SHA512 a32f0069ee233b59c6ce7c0e6273e8ab1770c2e07d13da774c70015d43bf360b5199aa531030407fd07b77d1b7253e3d9fd3bc38f0deb3c9254398beb762d65f WHIRLPOOL 9b604a5eea06478af37cfe8e2ca9f8143a6c53e09f4588e97fe8706d4c8167cf9e6e59474dc436f85a49aab52966ce802e1e2028ba141917d072aea279bfe7bd -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_es.tar.gz 1973562 SHA256 22bd42788c8adc32a538b831f8eca282fcfde15f91c4a106e25215a253a421fc SHA512 b83f2da39b4e9bb289acd9bec2245e745b688055deb27b7fbce22b6538b144a349cbb59098a58751b2a1208dde741a885f145191bff558b1ef511008772017b0 WHIRLPOOL dc1d8dd0ef5b0dbb7d500bd26ce4f254f5df69b06d087719ecc5d75845a100d85f1234f37f839095b5b996e481ece073ca79ccac73f397009d03eab7cb6e916a -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_et.tar.gz 1381232 SHA256 9fc4ef493208aab02a4838bb470ada987c2d0253ab3d8c6419df6ebf4e3c77af SHA512 40385468383debc050907f167ae5b394462b73ec2260c09ab3d3b8d7430926e5eef9154b8af0e2b50a5322187cb0235a2e42370f0f7973f7d45d0f2fc262bdc7 WHIRLPOOL aecea026e882a0b6c45686dceb8903c0567f0e8a88567aea29445758c7586b4bd0d1913575ba4bf94f29ed7e1e7cd2f1879ba83e1e4089de995857570805caa6 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_eu.tar.gz 478172 SHA256 aaddf55ad4adc23190384ed2b75271799c6331427b974532f17a9fff2930acad SHA512 70e419c6e0795f69f465e574aa2782637dfc2bde32805f54542a79278235bda5ee0e1ae77085b78492ca136023558b81f276758cc41f40f2a175c0c1eda84c31 WHIRLPOOL d2c41a59f5959e42498f03d7908a406a4c9c3e14c4dc08b4c62e80ce3e56c9725bef49254959dff539c3bcf0fdd02c72cc175f42cd2c0450baa828a4a8352ee6 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fa.tar.gz 500667 SHA256 ef7c7bc1d4b1f4fb530893e94fba0d3bb834c1fd5fa88e438d401c4b8e5b402b SHA512 3aac6c72d7e21a464d8fd186ea7293301206126041704d5cf76a71bcf84edfed49f7db6c287d43a7c69636c1600863de15305b052c7001e6f7f48a6c8cec8a2a WHIRLPOOL d4bbdcb1e145c7494fa97830a0204f431874b35432bb0aaf980a238327a99dc6dc3b306868e2e65d79726695083be65eb7ee8584dace56966cd428b9bca6a51d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fi.tar.gz 488079 SHA256 cc9c3a0207ac10afc648da859b10301ccf2c380a71210d0925b993a92dafe454 SHA512 ea4a63b0835ae00095e4430e463adf923b49f2e9314b70d3cea668519d33c081e002d42528d942f8bcc954e192b869bf8da616206c9fa6b4ebeae1f21cc4d566 WHIRLPOOL 5276486dbe54995eedf20d2f870505550b65a21d13fce62e51ef04597bc575045709dba4b03d425236d6179efe9d6bfa928d96b33764b78dd5832d4c7851eeba -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fr.tar.gz 2782495 SHA256 0d16ca559c84e9de438f70ae0f6a5d532a08c5afba2305ad12d443beb8299aa1 SHA512 fdf7227dbaf4a59b0fe2f4f09e25fb74809b764fcffbba395a500e60f8cfb6ca0f5992af436e136e376a93f75228686324e0644cf88311791ac8310ee4673804 WHIRLPOOL 6169f72796979db5c939251696933bab9015aa7513f7411be2abe359fef10e30233529cd48f888cc6c121607891f96d463e2fb8099156f993b37b288c6342130 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ga.tar.gz 498280 SHA256 a5809952407b619fdd418dea644d730e1b3d3696e618e624d444375f59796157 SHA512 8ce05f44c0c0af352cc4b3ca6ee99130e383521f947a3527c99d7612225e5e2082d48f91252f921d3e862be815eef96f2baee80b95cfa959cd4ec57b69239fb2 WHIRLPOOL ca70524066dcd8f2675ad9775633725dc93fc144d09757238f118104e6f2b00417bc9fe42363ddc2e108aa4385d36270045dcc1d43d66e8bd646583e03ad5da5 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gd.tar.gz 1404817 SHA256 3435d82e306bb8fc47e8eadba3466c4d5d3d663c005d9cb4288029fe055c95cc SHA512 fc0b84bb8eba03b9feb3341e1dde849ab4f3a3d22703b1434e10499b2688b4df27b40a721418f63d6dbb7e39e44fc5f18fd542c17ebd21be76180c6f093bfa61 WHIRLPOOL 537003d83d888beafff55b2f6fa562f5747234ce5a92f119cb77cfc0e7b470266b81e19c9cff638709ef4f0ae99e451cb953125425d85dcc6fe2da763673074f -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gl.tar.gz 1045455 SHA256 0bcd9eab97d7a79ccdb25c727b464ee54c4ac5289d079c67f694f64ab49913e5 SHA512 367cd223bb52925c9394bdc15227fb046b8f437a4de61573250b1714c58cbb3f027ebd6958df6e4061cee2bad4d574e0606baa824ad3d89ef14d0339b8212b0b WHIRLPOOL 6eb4f88c340f66c4f9ebf1ed1e9d37afd8cb073d3bab736d6c585da13ba42121382b69fd40f986cdb4c78a8d14f7464bfe16dedae4de15567cf6998307d1da7a -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gu.tar.gz 1179767 SHA256 0f0e10f0ba9af71b18b7cddc310040866fe2b5cb88f74f82025fb4feca3a91ea SHA512 f3bb20c27bd74fac8632705577e021e5c37b7c776cabc8ee1178e5bb7ba23ff6aba7edc705a6e2b52b43577242fd707214d681ec99b6a9754be166cfa67d2da7 WHIRLPOOL 09718e74885bdd0d2ef7059dc20a70be7df1fb7fad0a47fdc805a576abbe2626d49436c978cce29c156c6687b233dbb033a1ff5fb069655b9d0fb7111bb4fa55 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gug.tar.gz 494997 SHA256 290af796afe914be534a18008421776ed9eac19f239e14b4b290e68ca19ba7b6 SHA512 a20fbc13bef9fdf48b5bb2c15c2edd13b7f02027b71470fb19459aeb9305b4728f9be82442f45640a52b7ec9eef7aa47a606a4eb09a402347ac466aaf0b5af4e WHIRLPOOL 1e543438ae5d82c75b98ed2f2af6949d8b355516b81560af71c788a8893732a0eedd68c8e7885579c610f31731a68bd4b74e285a081030131dd685af5d642d1d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_he.tar.gz 1574137 SHA256 46dda1634ca7ca13dae7873fd62a7f70cbbab53e569e3c1aeac4dcd850a5c3e7 SHA512 21ef00dc56026b6a02d034517abe0d38eeefa0de77eec569b85746c081e12ae97f0e432cef46629fabaa72484da2b1913b5495add898d1d010eebd77d37e229e WHIRLPOOL 3611d757246653a675ef3a37efd16e51357a25cab6d3d7991bd0258b2587bc1c3499c786cee8d6003b8e7ac429255dfaa296aa7271d0ee197e0107a3a231680d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hi.tar.gz 600905 SHA256 8d6cbe783d66031210c1b3e862633569eaee1f24032820c1007435926de4d466 SHA512 37b37246ae593cf1864a30e12d83a079a7cc1ca6c5379a8db974545ac693a802ccb1c45197007b4c93263f2b3a114c0bd4620ddc7fce1572b211c5d2b0d92bd2 WHIRLPOOL d9c5d4781e2dec35ee8db973cdcfb43d4bf05b45d9db6ff222b2e9c6e21514951db68870def108d3feb9f33ee71fb2a950d84efe95536c3c4ba32e2793f3d517 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hr.tar.gz 727287 SHA256 b96d6f239183cc6b302d5f17041a1b00c10f53aa8eac388607444aca748f9186 SHA512 e225f1f8a3be26ea575ea76a1d89498169699093aff9f5826cc61c0e2828d280afd3fff96e0778df65f48f2b1f3594e188d48cc09363ba509fccc46609428587 WHIRLPOOL 44a160e8113a4a35ee656284bc6ff0238f7d528b036a4c86ddf14ed4b21774a4021d0c309feadeb69abd741f9ddcd643841612ef8eadb122b88ccff3e519355c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hu.tar.gz 2706449 SHA256 de40e9d7a6109f06937d593ca71ca8ce103d07bd88ac7b061a054ab4cfd423ec SHA512 6197ef1a4b8d6ae3f707eb1bc66fa937aae0699aea34a3a533ce0e97bba9566e4942b69d6d6511f58071386530b2f0284c584211d535f1989b08735bfa9679a8 WHIRLPOOL fdf9e6eed0f633c598de45f39f5183a5fb77b4dc6eead592bb1c4ce536ce9a1b57791da8448a72666fe8404851e4f143f84cc7a3c1e2899466b79c9944d2e5e7 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_id.tar.gz 472069 SHA256 f0ad28e3ae41383ae83d81cae3f1dbd8dbafb3cefde80855e0f89f93a3a3eac6 SHA512 410eb232769b366db59b1779d6b4c125dcfda4799f8806d8f4c4ca9bb509496ef7d59d7acedf3daae13921a968048fffc6bc80f560249645fd512ab75ee9d227 WHIRLPOOL fb236d612b6ea6701f563acec2942457dc1d3430456b8be16ae2673391e517444fae3acabc0c87eaf5335d8b2d7f694ddda212558267e3f83ebcd675f4c4dc03 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_is.tar.gz 1283953 SHA256 fbe89c72bfa3360129c600a54d4ef5ea25d380055be2e43adbf4de4ed3288047 SHA512 c076c1d6ac366fd050b5aaffa6630e023e48a8d9028be4e1735f49de0f9101ae199b099e5aa92ed04d3467576c6668361f35fafcfa67dc1bce01bc81ca0c0730 WHIRLPOOL 582c85f06b88ddfff1db5b76e8a23715d3c24d701c1ab907f4693de456a30774086224a13fefb6e6a92cd6c37714c0238ef46f6a40a0692d86c570ada895d037 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_it.tar.gz 1819029 SHA256 75341a065267f800ce5ee2bef8b58c7a9d3783060a04e6976b619afaf021eba4 SHA512 ec4a8999cb4e60f6637410cd99e3f38bc9dd47c98f4beb920e71955d4039f60ae7379b5527f2e3707d37307f04ba4851003bea6772bc9068c4ec32aa7c47e5e6 WHIRLPOOL 788f29a2919e658097309aabc9afa3c92708513ed6c6a3f2c066e819549c993b5b0c6ddfd7bfc7a0c0c0590d053f8c54500372696b789444e6ba3609432b7613 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ja.tar.gz 581832 SHA256 fbc91c1c666419c63ce5cc351952c88586c797fb9877664c0df7d098e71d734d SHA512 65b62df01d05f60932dbdf480a689e939d5d98696dadad0124253b457fb75ca2f5811ab68d24501ef16f4b9881709c9597b2671f5439d357add2d998d6b050e3 WHIRLPOOL cfd67dfc46ffc48a0d5eac46c3f78a9c8b1e9099c32fd6dddd54ab898b07666ad5854a8a262e9bf2e6dbfa17ead649c8120371e975169d1d4e66e9af7bda300b -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ka.tar.gz 511533 SHA256 bd50845adcbe98fb8dfe149d84a3d70edba34c9f1bf45fdd58fb31caf3e4d9c8 SHA512 2d836ae5fb5f442645860f2ae725841403a50293205d4588f3558bf35a97e65559ee5020f7f624d43a7f96018ffdc8c2c49955904b157eaaec8d04cb4b327880 WHIRLPOOL 7416cc82c9aa8638deee828ddaa96b7e6efbcb1808aebefeb2405b398f84e83774459a95297b199ec1df0ebe6fa08dd65fbe1d69a53f754e8f7af5f366114554 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kk.tar.gz 527774 SHA256 fdc3329beaaf8539e1459a1fb349c51a10e38332b3a5ca6e9862d98f7bfdd950 SHA512 5d5528788bec9357a8a95e82b61cb248400497aea9ed68626d80f620a1bdf871994a9302dd67a6ed31820a37dfe6a4ee4786b8340054f15c8d791cc8fcd8be4d WHIRLPOOL 66f4dbb483c6bbb9785dd51c2c114f2dac4a48848d761146633c8a8e390452e9f1d158caf36fbf7ecf29113dde3c692878395451a1482a0c596ed2e688e40cd4 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_km.tar.gz 632396 SHA256 d8bcd6a271854979eb7e55a2a103e0695cdcfb15bd31f5a2cb925f0ad5902930 SHA512 fe9bf1847c625a7e0e9cb45075cc105e6847f15c70b312fcc2414c0e8b839d88c3dfad978c3f9e0f4900b3501ef7bd0bf2d8f8b3d795bb3830190d4ac25203b5 WHIRLPOOL 278dfbf8647d253498146a61c8714d02b85c94df88f2f1a86606271d2bb897f5146f22b0775bed866b287a36cd599dc1bad520038b6790bd9e472b534ee9feb8 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz 487034 SHA256 8391c5cc7d6ed7f36f997b5a5df929824bfaa5dd4064ca0e4052fbee2323a8ae SHA512 1115388441663e2d01782d08bcd88b8ee9219749906192d34588eaf08111f5a67064cad27f59731b8d1cb1b218820f2269119421a517d92ea7c06e01d175a9f4 WHIRLPOOL 6fe725ec233c43e86b7c6f0b6e18a352c5c5b4115455af229e87a8353b3f5ac8f1783de9ec6af158e1940d3b9a914907ed2ba61a270a77c5574b4536bc2a8c7d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kn.tar.gz 548295 SHA256 ad2888cbadb5fbed163b3f17a34cd71549f058989366584d629edf264b7e716f SHA512 8951aa6138a6baa2716ab5bcf366149cd359dd4d52ea257a4b7c87ec38a579c9f10bfadc49bb8d1443f30537488d28e084d8d4bab3973cb88cd8ad8868fb6048 WHIRLPOOL db1bff2b50f5e31e10c6f6da369b5468f901e10750b2e172fa036a7c154f8fb180ed4786603c1bf79779ad24aac16adbff7ee1317b03cca7cdba5508081bc989 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ko.tar.gz 577751 SHA256 c6f486c6fd24f2022359b0b0270cae547edee14338891e83f0069e5044df8093 SHA512 6f99ef4cdabfe69c8cbcb93522ec50f8996f3755c4180973e4ef4d44d8c5ad2cd14a080e2dc0a0b00b2b644f99e0fe010e88354dc904fc4267d8f77d74ce531b WHIRLPOOL 570b4af90a1f13da2a2d73d6fd63d658419f79112290b162a7d3bd123efbb5dd87f78c4c150dc7243b75a1d5c31aa8998111b74474d516c55e3d80ae06855895 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kok.tar.gz 526245 SHA256 72520692054fa77a97e8a7e61b19256db859699f853f8a2661c4c5baac9242c8 SHA512 e736f45f5fb84df599038a8cf54637d4029fe217127ef678a2e80dbfb8143714cfca448bc20c336fd9410e6cd97901384527e40f6a3d4d8c6cfac3bced8dc43c WHIRLPOOL 1913d2079a0f634794b97e6e2fa7028406a61fb664e5333d1438b13c0dd34a70122130d75ff13ad887d203f9556957d2ede523f33be8c900702106ff8481a027 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ks.tar.gz 505246 SHA256 1e393380f5d11def18bb10fcd588b468c2fe7959b2423d8c68461605e2d2bb23 SHA512 be02dee2448a285dfb2fb8ab4c2461c90ebe43718d286c64e3281af78de446458726b89943f78ba829bc60c629a15149c126b88a0ea872f0b5ba955572731dcb WHIRLPOOL 2138028ed45c4bb1c04c5f42ad63de0d314a3bfa9d64430bf60cc6eb8e4924faacc779bdb63ae8ad6165b35254441d44266cd741e1a380a0ea4cc926318e21bb -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lb.tar.gz 444582 SHA256 d503e32966633effb3c5bef5c66e9895ba9c617868f82fe1774490734a56d071 SHA512 ccf192993fbc9cf2788d6b7609bc3e9c7c487ea769ee5327a399fe43b6a52cbaa91ec2173b95abcb56ccfcd2e3efa2440a81a53330d3711c810e1e1236fbd7d9 WHIRLPOOL 06deb6a01469aec94d450f0a63632bcea73a842922e5d5d146e4831f54ac1e5eb031eccca72ca945b8d15ede3fe9713e718b2fd95bfb09930d0dc99599dafb97 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lo.tar.gz 549518 SHA256 577c37e237346d98eec12509ea1bf2a8ed054443db7980b6953774efcebd3673 SHA512 349567657d80fd4dfc3a6425469c724486f0c0da8ea09a440f68c422ff49b59e1e473d9cadee2de0be92fc72b8f84f8a7b5438c5a37fbe4fa7339cb2fa81b0b1 WHIRLPOOL f19e45baff6f0aa502433d4ea9edc2a07238f1fd24b524411c8001380c233a43efe7bc7446973211142a646411fd7a1c9599237321edbd97a21a62a45f05d0fc -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lt.tar.gz 826971 SHA256 f9d361e0069411812274699adc507227ee931e75d72ff2c95722ad62442e30b9 SHA512 0dfe9a6ab3533854c5b382128954ab9590cca3248341051238fb7d5a0fbb5bbae43e3d1f4e04c7464468d58327e639a5f732b6f7acbf48a936f9aa570a49ee65 WHIRLPOOL fc88b1e0c0ce8765e73aee23adbec9d04f064bee7bf992c7562633e5399cc8be9c8d79dac5d0c4a2debabc6fa49ec7fb7f126a6fbb4df856c8021facc85b67a3 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lv.tar.gz 1242947 SHA256 c0d13a6d247e8394f11712fa0f994b3121519b14598a3166768db4060490fe7b SHA512 7ace7b94d07144f8068e0b7df7b4fc1236a66f7f00d74239b9fa812c4084bacd74768a52e28360a82221493aeb3b0771ddd13ae9dc10c4ba5c571a70051eaa1f WHIRLPOOL 63938debe25e17738e7c5524a2462211948ebdac9de43ffd81ad2f7a3d8892fb48a8e429e9210ad8b3ef1ce158880872d992f47828fb10aabe6cf62fd9d4b3b0 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mai.tar.gz 506744 SHA256 909ad34e4e14a8bf1e645fe192d58fed43f79d039f2d4acb5b04a475920b43d1 SHA512 8abdbd734fe31e2e0e1a6a84035a36570e3f066d1fd91cad5c5148b49baf568992ae2b75a0149d794281dad6c8d5f2849627c9540cd44176b6cd0b125fa56ebb WHIRLPOOL 5812b610089f8fe5820116ef17e94a67cecf3895b45ffeb8224211e426ded0ad5abf418a78c2d13b2ea4be9b08c906916d4d3241cf4457e709f7fd25ed5297ca -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mk.tar.gz 509064 SHA256 2b38563c6d72934aec734d13796ba13bb74d9ead3cef215e239cfde1e8e2d780 SHA512 f682995647b362751777d0d9c8401f32b5958290bd16b04b4a3560d985c69e839fecf9843300c45d9abb238101d648e85724fb7572a0b2f6d52578b67ddfaacd WHIRLPOOL 9cb86ee153e9fe47d8d91ef001f27f0bd370507865e3329ac7a9af29fd08112d5c7298de47a80947cc52ebfb6d481ba20cbfbfc5c5ae54883a46b72b33d91820 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ml.tar.gz 548670 SHA256 c80cb28d3357f9d2af69ef019290cd6f4eeb8aae92e59e871fc42239c3b2de37 SHA512 de122f0c69ba789729e41bb6fc5cc672ff71dce8153768e99141512ab5314063ee69c3a129bd828e13cdcaa44fa012beffcfaa941a52da69f4d858abbbf39568 WHIRLPOOL bdedc31dfd722b240477288b474fcaf1a95f77121e2b98eda099797f9c259bd8a0f8c17796c5e3ab7c8308cbd99147cdadf0b63267d1aa8c5f05cdc58f34775c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mn.tar.gz 597589 SHA256 42007e4756e2c1a60c198c8024298bc3e674f39157f221689f91a00bf17aa2b9 SHA512 e4c26b29f961db7612e29a982ead1014823da5fdc9f488c00706b2c56020b3e9f9e118dffa9b4a3d2964bb03862cc3fd4d8d9b029d4598611bebeecd15b8942f WHIRLPOOL e217f42a48d73615bd0fcf2730ac8cb453f86ae35ab08b0f43c35452090608ec1f35ee8d49934f06efa8feb65aa7fa5dad14c824b0431cdbc98498b0c1e6e65d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mni.tar.gz 520260 SHA256 3766050103f346ca2c146051b4515c2d49b270ab945bf35dac9f6ba8769d4136 SHA512 e28343744aeac652adc3078ccdd85193a259bbcd232cfcb35f8f61e54a50c7d981dfe76abc3bf127764e9d65419d3f7f1d55d3882a0f027cae8170932e7c709a WHIRLPOOL ddae7d21a576e83cf8c69663455897c228ec76e6d67bc27f518e158c1ffa450fa41776a8e76a506b98677c3427862acbe6a06d6650e92609974ebc4b849872ee -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mr.tar.gz 542634 SHA256 5cc19a91113f20bf4d92497392f3ffbf5291fdb136c9dcdbf1a33a112aad0be7 SHA512 01172bdf01363b04c086356b4d4798af3a8de04519fa864d9614b448f1a62a5e310ed3b95e70ad0ce3d2254bd2c37a292eb048dd5d40557783787ae842e7f628 WHIRLPOOL 750b2ddab0d9023ba11c2830219a0cb66a067b55eab66123955861d1b1c275dbb13807b1a42ac54202789027b3596081eeb2c373ce23e5f12fd3546c8284523c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_my.tar.gz 539921 SHA256 1f5b1b74b7eb50e29d469835de3c1e1bccbdc241cf62a6a7178436c4ddc93186 SHA512 364db677587811b1d44a42cf43c38947b489d1e544bed9810ed54177ef85af20641d9b908ee8ab24bd3aa5b80c662777693435af0f7b57bd9d03eab9cfe32905 WHIRLPOOL f3614b3e5cc3e6ae262f41782081d97199b1ebf05648a472e2687055ed746aba1e1e14f800b70af98e53fe45345d47ce80edde7a1a82429fe8016a18dd397c0d -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nb.tar.gz 3476268 SHA256 3cc0c9cc422bb4a0dcd9c286a464496db4b07b93ac97f9d292cd70286d99bc31 SHA512 9a60ff1dd495d2f081f62649ac9019644938410161cfa78872a61988c0d5497a4eafa0da0e0a3df160c2cefd678ba6990be628e0ca76dfbd8975433cf72d449f WHIRLPOOL 6861d6eee951d404155359617be4b2763e04306e324b52ffa211d631fb417235fe34f69d711550232e2bb7b3d67595dab9ed351e8420a202a442ea1ae4c92877 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ne.tar.gz 910134 SHA256 aa4c300e353df8b09ea57f8f9da825b498ddf77b7aa1cbe477afc91d614dbdb9 SHA512 d98ba58a20cb44141b057b54a0efabec38808157be0c5bdaa9619b86702d604af37dadd63eba5fd4795d34ec5f240cc05ffeefea413712a83959b29040a23bf3 WHIRLPOOL 5f2798fca595cddc1dfd6b16e0440a5bf244322d589a3f0cea6c8367dc5420b3f63de36c2cc47ec6a2d15aff25d943cd8fc2492b43bb5e4c3f8ce622b346b725 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nl.tar.gz 1276809 SHA256 36f03b50152e9ade39e3573ca34c16914aeb4dd25811ee397a3acbf4bbfa6348 SHA512 6e9f69ee9a74e7f603a5a54fa7539b7ab3628226b7a7b6178cdb42fad7769d78038e18a7df773d01dcb6192baf89d47f6249f27c40b755ea1c99cce95f59fa30 WHIRLPOOL b5f2b23b5c344104b8387e606342051b183fbb774db311edc6c0f166a912eed6d51de337caf239d42f8af065647910e493b091f133c077403796b852d96b8fd4 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nn.tar.gz 3475591 SHA256 61908fa2af7c87d5bc75c9a516375ab45c452d4972d1395a2b44f6e8ca9d1ffb SHA512 844bbe7522f6f6fccf1ec8839e19c1a2b0f942cea798ec6f47a80ade1ddf9aa76048d538600ec1b110d846e779db444ec6b6ceb1538fec1c20b5c21d9b9c95e4 WHIRLPOOL eaf3dcfe50c90b67318d8ab7ccbdb567ccfb3ac58f87573c0402da1c1d533e2af56ef1bea90a69a60436b0a222632d4223a6dcac2637846b29b5d1691b74fd95 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nr.tar.gz 485393 SHA256 e8ce04c37917a8d53c03103ef3ca49633cc0f34649c9e0c28a61c36c844ab2e3 SHA512 9b0e61781c6f7b3de402561489204a927125b460a2d812bba2a6faba5468b19f37ee3e8bd9ce1940d6b719631d55fed5c970213582014574593111843b7544bc WHIRLPOOL 60eef5edf04e03188d428867c109618b8e744af290c98e6ccbd85914acad8a9c4f8ebb851dba54be5c333068ebb4d9554fd957c6e164c410407d9da084033003 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nso.tar.gz 483857 SHA256 76f854062a46b120b0376d1b65d85bef923c665975562fa3fd6f565bf81dc023 SHA512 2dd76407f9bbdc5623b1241794025b0c58f234ece53447570ba3a2a522e83c5d6d311ef2951ee5998cdf60045f445d690a9442305921a4a85afa3cf10e7a4e35 WHIRLPOOL 95d1bb81affabfafd778a6b1b26ab7fdf80a4196efedb08568737435ee598d301e89faecdfc21843ea636de0ec7c1a029064e4e0f9bee2cb03d7e76d27c34c50 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_oc.tar.gz 688128 SHA256 f88b221533cf408158f761b12a67971a666c0cd9e0d09a8a0b3a334cd17b794c SHA512 ffa86f78114dbdede01a346c1b1d0e561c55e86e22a152f657b580779160c751809da03b72a5b6fa06741edd0daaba3976ceb66875e5b7f8e142398855ffef35 WHIRLPOOL 6e5fada76dc091be0673362710f64ac7692a714c97246036d6afeb7f46d22172ab66af40c94e14da1555e0c8c084d7b0546224c123b1cdddcb06ef9b84795f4c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_om.tar.gz 478516 SHA256 660a332e52c26ce3145d4a9a24a0f5a2ac3665b438e6a3a95997d008cb7f25bc SHA512 6553d2c747cd65c1fcc6809068490e9d5c0e376707fe2cf3548d8abf4d6c0574de003c700dc976c948be8c350f7adc4a2bd96af3b7b9fd167e8f86e3ce1be26f WHIRLPOOL 48466d4131d71dcd4a2e53e91d7de9ec0e4a78d786836f2fc2d344693a7f8cc98e756d7ce16538bf4b644d5059c7ded5b8aa83e499c32b255097d8b7e6fbd766 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_or.tar.gz 543076 SHA256 59cc7341e6e8594f603a656182605ac5d4bac851067558d298e7d6588cb0113c SHA512 05f81bb512d9c57d08956b18299dd23a6cdc8a084dfc29152745c56f47541f9ba3c9429bcd00210ca5c6d4d339cb29b0e4823e599277e3f68a174190e32c4e47 WHIRLPOOL 5d9caab360c54437271543ba2b8bc307b489d992ad1f42f87180c9ca51b62aff90fa1ba3ee0b2eb1ba6df6349d9c1911fb1b91ef7479f558d4c9cea492fe33d3 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pa-IN.tar.gz 514794 SHA256 f2fd43c1901b095603042c9fb3a03bcc8323e9025a52eb72814fbb77e2ed0193 SHA512 74f87fa5c03b40172cb1a3e65dd6a888a330f7cf0ac31cfe98663c10993a8c0defdbd5fef761e582241b4a848803b0a9d85f321d7d4109ebe75df4159f6b2254 WHIRLPOOL 077bbfe5dfa0e7656da93c34ffe9df12ced4e293dbd624bf5a2278947df3b7707ca539805677d535d99e4b59ccfd1648677047487af5df8679b60491aeacff68 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pl.tar.gz 3269510 SHA256 a730c6c98bc882fb98b4f17b2ddc5e0b6bb752f977b6b6adfc9bcfd08e0537a2 SHA512 feaf17f8ee39fdfed8535869ec9f314448af0bb4edfa71f8207d953f3d5448b8c77be41efe4930d947097df0faaba3322444757d27556301634497722153a5f1 WHIRLPOOL 447f739242bc8a07df36b663a851afd2715dba3647c65b29da931b07df084a879d34ce0f2673255468af43e75e17e7ddd61718933d9e2aa4cd49fd01dbfc06f7 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pt-BR.tar.gz 2568274 SHA256 a647d2aee44ddbdfb7354a2e6e57d88ddf26431e4a2fdeb016e7fa46ba067086 SHA512 d6755adbfd976544cf8ee01b461ee6776c55e3567aca635e7216bfcdbe317aaab4c46ef599d3e8eac5af7c9b157fa043fc4be3fe08cd54dde9ab55ffd33cf294 WHIRLPOOL 5a243b722f2837578de561b96b5a4615c043b0ff384dee382a6923abf8290860f596d989adad63a7a0f426cf0ecc750d0e8596d3ef8fa79f96f189316a1b02f6 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pt.tar.gz 2121371 SHA256 2f3e335279c9f81ba08c3aaa059d49d3be0cd011ce60caa20d03f184c3a04101 SHA512 48923af0485f3687093efe33a21326d1fdbff8884e66408e06d1fb1a4ad8173831ddb33702af1cfc5d3a0229907577711b24e213a447fef1bc7058a56548ccb0 WHIRLPOOL 9680e5ca3c1dac1490974e0e70e33f5e55b7458a5e6e9e477351d373bf754387a0ddebd0a08a8be9ccc9ab220793f48b48ccec71ba0eaf21483014d5d342e8fe -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ro.tar.gz 2355135 SHA256 f218f958949bbf9ed56160aea0b11e819363f69aa3c88b412ae329a65d1c0fd1 SHA512 f278a220a037804a3af75f658ae6ed912194b94d30e69851de57e25ae1bf677e3c3c4f800ad771be1d1bbb15df4d926699b574e6ac2e6f0cf487d36ce3f0c245 WHIRLPOOL 553e79187ecd6463cc50f48952da95044a67bbfa0ae82cd1707b5c54acd27966eb47c3aa4e0dc4155c4b3083133e50775daecace810e67e98c8d4240d5ecc329 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ru.tar.gz 1644622 SHA256 ec0cb44255fb7d6440950c4ecc9e775e485163f7d34d342f6fa3e05588ed9bf1 SHA512 e8887063f57ae4ee95e912aee468076981b2e682eeae52223cce45e90a9b4db4851372885a2a2a4046619e33a8bf72daec63d6025a6b387fd4cceffcdaf77b41 WHIRLPOOL d25ef736648533fadbae13ce32bc3962c88f45316d966e7754b894468c408c35862fce9d444861b7ae08dfaad117238bb0dde977d57801eb1b55df638b697ce5 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_rw.tar.gz 479947 SHA256 844dad78281677615d5b7a04a727d6b254d9bffbc0af7b18d347947815f28902 SHA512 5ac35c4ff1c42f84c79956e5d5c4a538a88a8a5f57a00a39a1b151c2f92b376d638af1e0ee29291682c9ec0ee28bcc67c353b0b5591d3c3c14e9bba429a99cf8 WHIRLPOOL 6c396f13c2ff69e21ba626488f47585610ae0a1d0508111d96646e7dadf3f332ed99aef5049a8ab869070199ebfa7b17ad7d8748ffa1ddaa08221c4848f94e27 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sa-IN.tar.gz 529470 SHA256 c20f4d78825d9ad45af21f5e24332c2b6cfe5d6a98318d17a9401dbd7d5e5a53 SHA512 cd2aa6aafaa80a73639dca497394edb416ae423472d249ff792cb50164a7258a08f6c02510dfe2effdeb5cf701e4663558b72c02f0688dac89ac316debe4a328 WHIRLPOOL 13d451f547caa9eff0ea43c0aef3ee6a50ce7887589e5d7b83186dc13e17b2ee5a3adc2fbd7c4edd623f60ee7aa1505c1359b87f9ee49e5c0ca2044133c06199 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sat.tar.gz 563450 SHA256 4f6042b0d8620f1ad0a57aeba181d49e55ff232ee6095aaab390a519405bfe8d SHA512 158c2da7c4f852cfc10566180cf5e4f051e3f145848f68ce3dbd9d79f8c27a8f1f4a8f3dacc08dd093a47b7a6ad27daccc166649d7a1e260ce29719f2fb2c179 WHIRLPOOL e53c5202f0a5cb008872892fc43af01e8578a763aff6c7ec43dcd769adee2a9cf0e1b6bacd88bdc3444b7bfc21664139d9b8cdf7739b61ff7881f7de92bfc226 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sd.tar.gz 521339 SHA256 856211e293cb0569a4c37be95b0ed77bc87ac356d6a6ef5364bf55993e70cf5f SHA512 28cf71a6babd33ed74ecf70aa0bda3db78363bb66c88df47842f8e89de77b8aab8125a49fc7191698bd10fe9fa3d035f57a077135a43875d6987a36a860f44ec WHIRLPOOL dc2267283af1e2e6abc28ebfe4127a2574dfb99496a891db37cc955d3841e1df865b5e9cfd3acb02d9984d57eee2af8ae1e3f2ae9084b7e0f0804f28f253d1e5 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_si.tar.gz 810702 SHA256 c5ed42d56481ba52ef021e145d4f18f02970bd53db477691c0d3f225e47e57dc SHA512 9cff21302c6334e994d94bec7ee92b0b250d39fe862861c349017f7e3b4d72d7da3833096a37be9d88d49b137d033e1932cb6f72e92a2b7e7bb1d093a3750476 WHIRLPOOL 89b395ec4c1e80480104574773218fb3b8e6c83cff57860ca1addc3cbff0f1657f7c48a5615c7c70afd866fdda41a8b4d89a6351cdd4c4ce323bb511c1d199b0 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sid.tar.gz 485169 SHA256 4cb867a0c0cff5b14f6ffd333df69422e0483434665e6a94c627d11077965e79 SHA512 43c32e8610efa40fce9da8d75a3bfbe918525a4755b53b653622947c180c5ba7e252b9cf31c574f5001d78943471f0a7258e4faafe450d31caa5296783bd8111 WHIRLPOOL ec58992c924bae17b26580f22587d76d48cdd25dcb4a6ed2d3f59c7dadb5ba2f207a29cf842949c63dfb29e5557c3764382b7944905b8accdd3ac58561a34aca -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sk.tar.gz 1775075 SHA256 7164efc7f21dd5bc492693fcbdbe5f1d5efd7a8452a96a42f77284a65bb1348b SHA512 18c7d7b4837df5ed0156cbd8642191e8bbedc9aa4f2eeabd5564525720bca978c79e334be29ae11fd58d9a337b030738f66b5879b9b2bf1097b9e6be7ef53faa WHIRLPOOL 8825bbdc59aa316c1bde7e41ab5064c316aa7aef4f3ea48163950dffb24430e6dce5bee6907d73fc48fd5c9b6b25e902b29a3e9289de839500239558c41caa29 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sl.tar.gz 2154100 SHA256 2fe200efb7a3b39c175a26b38d8ce495671d27aeda333946d0ec8538c1db90d1 SHA512 5bf2350d428a4e6857494c1b5e03dea325de0e48954aeed312868ee268ab670cff2485c13fed20944532910eed73f605b39c1ad5a012ab91178a474b47135622 WHIRLPOOL 981beadd343abbb6c4ecc98ca27fa4c356b41aaf9644bfd3d8c13bdd751bb995f5bd045c35b4ab0ac22d2524eea8294c2db954cd50b2aa54bf6a1a333102581b -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sq.tar.gz 498269 SHA256 202f17a8ebc086cfac3c6985d3408470d63aa6dd97bd2eb9ac84c3531fae7093 SHA512 4b546791c7bed952870bec4964e5d711b9cb53780ea5dd4993a5ae6280de6d9fa8a161699a4ce184a45b77a77ef7533f9e7c01e901dea643466932e5ddd78cea WHIRLPOOL 975575ba27379a55440244950dc60715560c353497e554626be0f5167e8000d94fccecb394cf9a8992cd6c0d1aa3d340081b8ad1b49cfc87f8b67aeda0eb04ca -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz 1661270 SHA256 d723c3aff4ea07c187ae1c0bbd299b59c61ae4ef1f29f9a3312ef6ffa36fc2c1 SHA512 dc936650aa249a8b2e3e5279efe4c01b0fd6be3f645cf07f3abd787130b0b5829ef6be63a55fdaae02d1f8f7b21489ab059a059f3c6b885c78749eb6d31d7e7a WHIRLPOOL 5722f5c9bac215586790de9e4db6bb1e371bf430d7b96959f75cf11cd214e77a060c107cb8e1fbd0c1af374056e02310da9a70a50ad46ca2f101275493a9fe88 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sr.tar.gz 1687764 SHA256 c732db3d8ce16eab77c1ed795e7c01422654fb2ad78908a4733c9145b7eee116 SHA512 7adc3b191df0b8c46d420551e79e94fd96497b1ffba89a3573402e588d2b32502ebdbdb3cba8077614dbfe1dbd74720ed467df8d9fe0e07f20c01c29b69e2638 WHIRLPOOL f7bcbdaa19219ebc02681abfae2d75c27c6a213b34bfabbc6613aa4bec64a06614e5ee66e98a013643cee3254dfe4b9d5b3409c0591f1e8479b4d7532673a0b7 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ss.tar.gz 484244 SHA256 8766424b46b536113f83892bca0114008df99782ea93893abdbfabd280e5a523 SHA512 5e460bd434195423f75a47a65c0bb5a03296ca77ed73e7d746624f28a0267d2045c73c2ebd768b6a2f373c699105f112c01d56d1b09ac5ae24aeefcc2bd72fd1 WHIRLPOOL a737dded890c062980e9293f08129601de78f0dd669da51a54889bee412d04ccf4516275b0dce5bf76cce4d24ba956ec09bc1038a57a3033479c9e22db050e64 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_st.tar.gz 482730 SHA256 df1d7f800c4669c629ec1632f1fd55f4728bcdf725f8ac437423daa53e2ed708 SHA512 a5289e6bccf59230af6613a35e08f39088d4e3757590512f94de748f073619b3de89ae1582efc34e60fab7c3f5808d2d1cf714e1e73a2565215199ac1a998abf WHIRLPOOL fd2fa72674aa8081725f10028f70c05ac424f9fea2dde5b6547db5eb19b24b58fd1d4f4b17e16ae8ae1d3cf43c961b31639430143258ca9a4e71cfcacfe3a476 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sv.tar.gz 2362938 SHA256 90febea2a504d1b391530c4075a8469a205f1ff4a5aadd8c7b9c914fe5c1e1fe SHA512 c6277239d288906db357f7f2c60d2027a4e671cf44279505debc44a9645c17896969bca41cce6d4530747528adfb08102a623fb581f22a32e231b72bba1eb8d9 WHIRLPOOL 404095692153f505023c48a10889eca8378f6b827fe9398dd73cec897674e4a36a276d7f78432db04e49f30aedc9bb1a907e0b546add6f1b6fa9d750c7840703 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz 472049 SHA256 0104eaea5141f5532789735dacee184b0f7b5b4f4328021b18c8cd5d6b3652d7 SHA512 c14f8431e956fa217384a0c55dd70aad7fe458c85275ae61203271b2b600187ede9af52024539a5b117fdafdd5b42d64d913c21ccfb9ae7850facfde531e4566 WHIRLPOOL e236df2aebbb8c333bec5826a1f2d477733589ea16ce346b438473dac19ab701c259fea699bbf5d0280f70835ed126aac087ce91da8033a32fba08bf28e9ace1 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ta.tar.gz 541103 SHA256 af9dadca509abf5d138aeeb5d0dc4f01ffc856a23e79b697b4978e9a0ab9692b SHA512 a8dd0962e6ceacecf3437c0c4ae88a3e3098cb6b7f3bb14266d865cc897fbe500f96e9f0e2b55daca22e5bdc85d43bfe389695e8f3e830e2d736c87136b248a5 WHIRLPOOL 42ab23936f757cfbfcad8f4784c0724fe749fbce4278558e328152edffee347098e643457c9308ee03101ea985dee4aa27f141d480a07404a1a46770245cdcef -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_te.tar.gz 1092933 SHA256 7dfe0057d13a5ac633168f5ecb7aa06712c8abe858afb2c8c82ff258dd90ad83 SHA512 cabc655f0754cc7c747089495aa440f6f1054f568834793235e9670b81a8ed8ca617b6bb536f47ed58d51e0dcb2ecd6e94fd821a6f380672df2cd977e6c42f6f WHIRLPOOL 9c4519b183c5772de802ec49d0e8b2f301049d479e8181ae40098eac71590b075dc81359ded729ea9e81642eb54d3a501995d4fb5d3122a308af7eea415c8983 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tg.tar.gz 499272 SHA256 a9b9f323c248cc370a2c280d6c3d6276f8488cf047427ef630d623c114f23ef3 SHA512 f7bee4893ba8c0e91a3b687456fb2db1a7386a98f55560c1c28223cb05374c08d5a570315c4220999074602f730ab00e0513b0b718cda2712107e0feded20e17 WHIRLPOOL ec552cc1900d51ce4ead1f3119750135064cf973897d43a6c32143bbe683fe922d10aa3e77b299c59011521da538fde54cc0901edffdf4c2899adb24e67dbce1 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_th.tar.gz 679000 SHA256 2be5a173ea818887f92ab4095711f6957b13c5adf73628b68a7fefd65ce17b72 SHA512 d014b8a2d7b87c56a1b4d2cf41cd2949ca2d198b0ac6ea12b2f2e25029916baec29e88ebf5439e665ac96456011d725efb648cf7bad58628b7a9fc33e2ba90dd WHIRLPOOL 443907f3df5425d87d943ed31cefe278058a27c9baa76e4a305d8306cc2c799ba355ef6b49f3903ab4dee8bdabbddc0f535e06d074cdd0d69c1dd80e6a330a9e -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tn.tar.gz 474872 SHA256 94ffcb602ae3d923e78ab2fd1d71e27f940e5b3ddb21d169e07b333eeccb273b SHA512 10fa714bf4d776e1a2970bf1640c4ecb96c845bdc5d511664d0b71ced8999267fc7e7d3de4c907e939f78d5ada7d8d4eb117a9cd1e84c9115d398f7fc3499de4 WHIRLPOOL 82edec89f175f50bc64b35f0e75858f088eb490f116a6ecf39c0a16970c29a2b58015894fde5e53dcbe082a02c1accd1b367824b4a0b2d5d3a766621f2420e72 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tr.tar.gz 525890 SHA256 c60cf83fc0dcdc3aa016b8ff5fe334cddb7ff346b101648ea80554dbc494797f SHA512 e6bad65cd7d14b62d894b6dbc00f61b95cba1b31b07c2d1d755a73ae4a94ab5961635fd8b9f76cb19da15bcf94dedeeb46caf1df89dfd880e0359e088d71945f WHIRLPOOL aedc833d25b3557cd5b6233995136dc0f3f6996da5113df85963c879f7bc4febd4c5416554ac3e48f7b79e1b2206c8ea6e6681e48a1986f31ff545197e3638be -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ts.tar.gz 483632 SHA256 b57237a244b909775a1a508e6c2f4f703ac19e9731ca7a2c7316948a9700df0b SHA512 7d43ae61a33f5335aa521db1f09e32c1f99eccf52f5bf618d746f69180ca4670d7842700d6194c2a8d2c63e9aaeb7177f7bd8a460e9e5e7e0d623c319be5b3d7 WHIRLPOOL b0906722f277b7c6886d42009143ff79405ef3f74e77789d454d4bba725057f60f8d8ec80d8200c82a9258a54aaafe0674923df24ae1cad80b96e94c225e9689 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tt.tar.gz 460766 SHA256 6ba24aecd9c87f6b51971bd69a43051116083951701da6d62a944be4bfb352d6 SHA512 a0ab2e38f2bfd104d2a6d72a896740abb436e0d8566fb766a3c4eb4e6c0d41eeee59b5dd16f9e4056259ef1832f3c3d08ea1c633d88142c65a2ee6638cefe351 WHIRLPOOL 07ae0a63181ce34d97ccbed634307856fb41ec6849c8c136f8e797988ce14a80bfccb86719714ce195db727f40c51c3467af4f660251ae1697bf7936469e8599 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ug.tar.gz 516375 SHA256 d3b9720ba139dd8347d962e50b39e204ad803f0dfde2164be7206b8cff175c9e SHA512 856ca99586e8393b99111c1d7fb97cbae18585651c504f08c1450fbf18f7f265f7490e0dca900fab7e157955ddfad610883d433760f7a47ad15a91685f758082 WHIRLPOOL d76c8ae02af4f420db42dd033932d51464e4a19fd4a435b4d5e61715754d7612539b854b43d23ef1717d8fa6e91bc4d5a1123b0007d90a4e2f19ce5b6bf67a06 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_uk.tar.gz 1365066 SHA256 b79e3a8ad23ff4eaaae71ce685526d46c1470f03d5df5b50ca9990c877728193 SHA512 8f6f180dd7dc41fd8e78a05b946185eea72e1d107fb75eecd2a40573f80c7b8422e76ce1d890090606d880349c46bb7f754ba9479d662b349ddbd93ea56fcb23 WHIRLPOOL c2657e834576f2250b9fb59e123a4074540b608075656fc647aa5a295afca3a56dda1c801ea57a3beb3e1ffc1e5569174e72cb01973d5c8759e0d372e3add7c7 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_uz.tar.gz 477161 SHA256 c4442a9b0f1a3f9c32cd745f4aac21510284b54eb9955eacbce726e8c342fceb SHA512 7da64fe7b61d43ff94a6c28e889b323f5e34cfde9814414d89e910e8610976da1b3dd454fd12b49774af15d1c10820f0b78b0e72a763bcbc41ed5adc905a9b5e WHIRLPOOL 143d150df47cdb0812ab6446b352b6c7b4437e9336cfee8d257ab084f8c175bfb1c10d95d821ec29c3dc9dfce978e3af596005fd7f502d7c154c4270db1f01f4 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ve.tar.gz 486091 SHA256 a8e29d2cbb4c2e71beac8026dbbb2ac2e4dfb64dc667de3bfbbf311b8599b555 SHA512 ec75e1dbba506516fbc2e471b5b77e8c023965c0ce7c798b72be84a36b487037463ec528e56706415c9df2e7fc8e98bf1806c4506f3a4228c225a113cb3f444c WHIRLPOOL 78d315db0b7ad2f3a3c63575bdfc5df6705e22e7c3527b5c18e1c2bd120f8903c133d6bc87db8c62e49cce5819257d662c4f22377d5631757a430c22a408977a -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_vi.tar.gz 517408 SHA256 70cd7bc07003a402112554921db4a601743ef642c814c987b14799783fcd62fc SHA512 af60aa30985db884e7dbda0b78b9f3d66eada183807dbe126dc5e1c93fbfed193f403bfb9a90551f8fe90b145f9927e5204e52566ef501e6d0c16871568aa3b2 WHIRLPOOL 3f70fb9023972e35c18900aa2ae5e94ae8cc7c3b951b6c93c011b02ddb9a0694fd95694ff6d6a7d3553ab19c0974bdefd6ab665ab042dea8bb26d7dc68b2f2e9 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_xh.tar.gz 490559 SHA256 2a716a90b8b5f02c894cf55e54fe5e092fe0f5a597bc031286550cf4da394fdd SHA512 5586804313fcb681d3e62e9a7dca2e895db2bff8d272981d176bbd6579aab9f8e0237b6269a7f871b7bab2efea3e82ce3484b90bdda22d9c61fe81364bcf42d6 WHIRLPOOL 5d50b181df424fa86850234903aead5eef0318418e21ec619226d696d516676ce9c187f5d013e0f7691b66d374b4b9ce6f4408b6956e9eab0d1e645a5c5ce927 -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zh-CN.tar.gz 564811 SHA256 ad50decbe48f858a93239e5fdee4f84f2ecc6cc9be46e604ba861dcf714cc604 SHA512 9c35e7c0d8e9f650e094208ff8b90f1cf693c7e89ac36824053d345af8d73a4c3ec5db6e8b0d1c180bd3d201e9ddae0456681e415610f20c7ff7f9c72f78acbe WHIRLPOOL d1ca7cfb716dac1a1b0eaeb8aa4bec09df9382fe26d7c3b80b1f6bc821f879a6b0d9a2a394448b1b30186b76f3461e0cfb9426bb39f966145a40894d0ae4916e -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zh-TW.tar.gz 561279 SHA256 6f765963918c340f768ded077ced137e4c14b8adbb1124d91070508bf0e1a98c SHA512 56ea00cd2e4876ac52c425b478f347bf52e872b2b65a708d3d677ba7dca0567fd3836b0d38d0b31d2f59fd844a3356fadc8ba4d29571884ae9a4670ebee0c8a1 WHIRLPOOL bc96e8c1014129202d3c69fa9c7360b5e24dcccc3f86fb09e8f2ea410e6630abae0f0c62cf60643138df95317af6869cdcdc4ee8ce5440a68331a09b65920f7c -DIST LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zu.tar.gz 493077 SHA256 ec9c852cc73f4c222c5dff51a975c4e41a2fc6d90c3ae2d0b81f6c9d53eff845 SHA512 4b152e646ee44eec952787b01726bd12c3e9c991ffab0297e76ee074c02e7d1fa30b46bb64dd884de0f2a9db8465c1440c03ea6c9a135d6a64d6b3cb362ba0d6 WHIRLPOOL 0da5bc6a064f80cd04ed2478cea80f1990ff34e0e95a199aa6a5032a1817e3f0457f56f7be75a935b64f08e3ab1ad98ee4ec6d78ed3359ac08321be0dc6e4e0c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_am.tar.gz 7943496 SHA256 a6c98268e063e259010913ede6f52e34d3c94bffaee7ef971e23c0325f6984f2 SHA512 ad7405327ed39dbfd2987279f87d1ceb73daf9c73fceea0107edb3d89c7690f9c048bc45cc1c1e0bf449d7e944acff155337bb3f7acb9b63a914a6ac78cd5670 WHIRLPOOL a75ad1c85885282b2c90bac50f30b4ec7ca629b2bfdb1e32783291218913e7d01c1fa22f31d346b12f212756145c0e818197a0399374931ad15eb0244af608e5 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ast.tar.gz 7872141 SHA256 b5267bb22bc8671f7c062bcf725eac1af0e124586ded7654cd16de84286fcdb0 SHA512 6a0ebb913de48e8dc9e61f2becb9417be07f772e634e3839e53839533ab278df9b4884d0376569ad54ffd6bf2bab41082b297bacac485880b88fabb1e0d2dafc WHIRLPOOL 16185b204e249ff4227b24dcc8fc11d908faf7d55dc6890ce321fda198684aeb8cd5160a311f4736c48845f84173f73c2cfea5d59b5250d3931e797059da8724 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bg.tar.gz 8443320 SHA256 222ceb6a614efe3932bd6c6ce193a766a520aca5937f78528069591c04aea630 SHA512 9df0409c4234e1eb41b7b0f0f0869ef0d40b9e9b31df194fae898991590e73a289ed06a997e75f518b80d2dc44116e09079864ce241acb52d8de283d166f79e8 WHIRLPOOL 32457f49441b166b1c2f62ea91ebe7275830b34fcedea24809383f9b3ca007ccf02b582e32ba42c07964f1c3d701bee5db84f099cb1e48f8e97c3a50dd964050 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bn-IN.tar.gz 9126727 SHA256 90e93b10e470bcb21deb570ee2b0521f923ca6caf5f838294ca256035bd61d64 SHA512 d1308b8219402521f826fd29ef190042ca8a6542fcfe3de616ec92bd3e8182f9878e3f026c77ac1f20e45f226ab035001b564e2b30efdb171d84472d55b2aae3 WHIRLPOOL 93d6029a97777fa1e84875a64b9a0a1f21562a92c010f98330d45974bf2d8fbe97c7a9520ba7a2f6b263d4ba1b2586696746c128b7a63355ca21586032936138 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bn.tar.gz 9126716 SHA256 419deb3e060819f232b2fe6c0dbead02f2acafdc75b4ccbbf6f22c005ee2b9db SHA512 de7305a5d0ea54a1ff0729b90feb2046f4f09ba980e0226ee3f4ba1696b5ed88f512d587ed2dd0a94b554fcf4279bf96348fc49cdefb7f0098cfd72ff2064fc8 WHIRLPOOL 0ba0ad74432fc1837c3eb3412257ffacb63bcfb0394201d13ac698f48e0f6e2f99e1e29dd3fedbf6407a5c44e36997bdc293da094f930581f10990784915f9dd -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bo.tar.gz 8872915 SHA256 5ac055bfc06263d11429c1409dc4847471f353c9e1f17e3305e57bbea60d345c SHA512 d9d21dcbe3c5985919a07bb9190ed1586b20dfd2cba8298b05b7f48d70e9d07f121d346ca82c15b44d15b2ec4f94f36cc62a7ec27694e282388d91c630a7757e WHIRLPOOL 1b140e33b5df82e5f19d612bfa3783e915e334aa078046e8bc3b75c1bb844935a02c7a30694b56ddac02b6af508e0953aba5837eca47be791ed365f0987801e1 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bs.tar.gz 7174869 SHA256 216e007ce7a6db12042a6ca8bdceb85a960be3da6069c1df069cd32ac9e7193a SHA512 cf721c631ac58e1020dc98f7ee3c9185b83deb472f086729c39c9b7d41c67fdc6b4b1d597544ab1ba7f75c8945e59f92a9d43c98cb11f88e773a44a599242c4b WHIRLPOOL f25f96a5e624a728b075ca460966e04c39cd603f71a5ebd0383fc66eb873787deb616a7817b541c13c231f345cf5d56eff6b5cf7989ce5f498d1bf5e4c4efe0d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ca-valencia.tar.gz 8010385 SHA256 557e75216ce9ce101166a1af06ab43fe1b4108505737da36e46f0b7e86eb1609 SHA512 9cc240ba560815917ff6809038b8b0e71455ef5a708b7d8e07753ecae3de2c2a72b601f5ea3b15102c7aed9498d77ef4839a890072bafd87b5ceb924df848093 WHIRLPOOL 8e3c0da7ac1d3caa06a2f1139b1835685c88b6468a7e28a9d1f22e9bcd6933a4a17e1720c59a8329250aea6c424c3d887cc2ccc4b51fa16d5d0bc83e47329c02 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ca.tar.gz 8046661 SHA256 565f543b28eed7abe19d18e4339a980588bfea36d179aa3be4a4023d872cadbb SHA512 65a0ef68b5ec7756eda97ef58b4b9cb8e8fba40d8dbce43e4b006a3dcc62c96e58ee58054944a338c474760b9de9991ef40c9b0c3ac3a7b77fda7e08caafb656 WHIRLPOOL 379d65cc97f36b9c18b54ccf96744f1fa19b529746905f48153d71f3fa89d3dcc1af656adc261d254eee35e3274872e21b93441d6f78462c0d652eb0bc4f8837 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_cs.tar.gz 7735607 SHA256 bf42a5172ecba4636d9363a63543fdd42035fc9020b6832efe33c0dc9d3deefa SHA512 1e51096c0403b9f249b3fc4ca29bf7541fd3adf0e039547916182413def02e48724cff2e6f230e4b588b9383f3b74a13441dd401f0bd6997e8a073f9b85e7cfb WHIRLPOOL 9b3747b6f7edadda4951e9ff0cd0ac8d1af5aece134826fe8dde97b11dcde63e6d7d0f0e45694c8399a572ee8df627966473d7231218977cfacedeb94e954dcf -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_da.tar.gz 7682950 SHA256 0aa028302f963c7ccf3cf4e62882c6e61f046f23cb795a55e70b94b918e4911c SHA512 fb7bafcf972b0706a9a2a8f6c4f8c04cfc3343c56884d6742600bfe8f9b638bebfc3e272c8613b18fd582518b93f0acbbd951341027b3eef1730fd749f15bec2 WHIRLPOOL ca0180d25e409ae5964c9bec69db7b497bbd9b8af2a05f0d3a8dd87191840399d58894ce8116703903ec0dbf2678c76960406ebd3585994f15c542cc8166fece -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_de.tar.gz 8196616 SHA256 1b624c07b345d8ee55ab19de5125e95b6e42583c7a45bfee4915cce0e23a0b42 SHA512 7c62bcfa5c560cb5bf0a8fff001f7cac863b554c31d33c355c61800cc7e25eff55f28f935bcbe313ea09ff5bd0eb037fd460071c98f5a3b40cd3acefaf416321 WHIRLPOOL dd21c58bf384044c8ce486b0ce6cbf00b8ae8cecca530b922fc4ac42f352199923f46e3b5366ef07f9448951c7b2b4e2185c320266ed8bb5f9e9562edf1c9663 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_dz.tar.gz 10258253 SHA256 790ed0615e4929939996b398590b14d955dd118b05d609aa82fc06ebae8953b1 SHA512 603618571d1aa7be61a5392cf7d9d9fac5a69a3b201a47a5c34314e22793bd87806bdef309190743d9c01e0d74bed2793d393f3d7b5f92f39d4c487b63da015b WHIRLPOOL adc9704e8f37983b9c5f08662a3e254d80c675be2cb4a7ef14317d98c5d7f2b237834f8c58f17a66b7285054c1ed4bcb2e0e0a7a1f21d41b11578625ea0e30fa -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_el.tar.gz 9063283 SHA256 cf7ed4ee4e3217b0ee3103ddfc6c88e8fe3e3bad25eef5db2095dfc31b23bfb3 SHA512 ec43a873088223710cac42ab5801c0702919b9c7cac89e3e4398690d7f8180dbb76090019a0bbec38c6634c7e46ba41ceac9fe98df8a26ac33146082477591dd WHIRLPOOL 82eb6dc8d43abbfcc3a4213457a11c0298fbda944118f91efbc76b654d12ac5597d3ce2df98a391f0fc0f2b2c202b2fdec2cadbd44e396cc09db556e37649dc3 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-GB.tar.gz 6513746 SHA256 a8b2d2fc4a1b7c95e943c4d1ad71b5bd1e335da4f5e731fb695ddfdf61766705 SHA512 08550680f8e6f3ee396f811d3b877900859c4d02ee432ab026199a1c66d26db1d7080eb15c88e31b4293155f9f6b905a82ea6d93007a225840411a625395f7fe WHIRLPOOL 95f8d9ec495f5f920e60ad2f5c779dbf786ec576a055e84b02806178e9922bbf96e966ad364ee6818c4dc669570c6941e7b87ad7abe1c176d6c26718bfb2b72b -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-US.tar.gz 6549726 SHA256 eba8eb76b1e54cb1974000b1d9ad3f976cc5915a46bb9da298f601421fe4a3a6 SHA512 b076e3c4eeba3ce23bf872fea997e8efca0ec1c32e3a2d8567ad169385f65d2e5ad5278a636167368b54de22319f937a52a2412631f606876512bbeb1984803d WHIRLPOOL dc0ad1c8515ebf5e6671b44a3c163b7a647e19990ebd4cfe45d68c2972f95fc709eaa920dfc03e0244a3a7271b07a5f77987db5f986b1728e3fed5f188827933 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-ZA.tar.gz 6495163 SHA256 9c4a0e491622ee344b2bfc850b5f5e579173e85a2158caa04b1453fa2514197c SHA512 8be9d64510b13bf980be9d283ab5e2c034141189a480022f2f529becdfdfa92f7342dbc9b9871880d69920528fb4be3655a86c39ef1a91970d97fc7ebe71c029 WHIRLPOOL 6d6ad4dc185918070a64478ccd90a00d39ce5bc7d1149bcc74e21eec8bb27026fdcb4d7f8fc2b462fa9be7b31cd88952f60f19320f6309d524bf165220bd44ac -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_eo.tar.gz 7075703 SHA256 d2556b3961328e8128c44f7215ce31a805d2316b2ef940caf4a4a0ea17fc2105 SHA512 8b2ea44c7297b9c4666944ac9c78ccb88e8279f414698bb7058d0fc7ad605254fb682073f574339e6d1ac90b01e9cc869ee5ac846032c54f15dddbb29710f05a WHIRLPOOL ca34f076ec393b52d396271e7c4032c77d85604b6f100aae6ff28554c6b4a359d5d4519db2d8e49d257ceaf240707da2bf1c0e9162bcfa98c73117e02213ce38 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_es.tar.gz 8110331 SHA256 e689ab66a0597c1f6507974e7fbf6c0f11cf66accf7267903daf1a18bfb6dc5a SHA512 0ca43ac697dcf94642deee2a533f700e21d49df7ccb314de4a30530bf576d1b14491a449df88651ad77ee66e4ceace4930cbe0908b93c55f40dd7285bbc57333 WHIRLPOOL d0cf63d6674abf75399cff596e7abd03c81c588e7e2f92f72ad9dfee3929dc03d6fea5c74273e260fe33e89b959b6a5e3a728f19f64e6935e4f07b2e0eb7c36f -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_et.tar.gz 7604414 SHA256 73c96e7141bb32f62a603679fd694a7d24a156708f7c9d4d733b0ef7b262e95b SHA512 3f06437177b5b9ceeec8363d515040638ca8eb579f6e308dff7c49ce687c0028068e21e58c1b9f3c97d8db0258f39f27e8c33bec987ee7b3895ecec9757ecc05 WHIRLPOOL 9a7706e6c5e9fd12d72bd8a0fe361280cbd0a43cd2370dda3fc1db1574f1c3ecf9b76b58b5e0d6208537cd1c68bea01319fefe43bda69f578ddf584baa84e236 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_eu.tar.gz 7710672 SHA256 81e5e5fd8307cbafbc04711a5790355dff826c996adbffcad193ee34e09d90fb SHA512 762595e5ebd0c0fe9b46440626a7301af44f96f55052e7c4b5173e0c7f0d149f998354ab671b6e7b9316df5c192804c3bc586fa25a836b920a19fc1485c29a2a WHIRLPOOL eafdd7a900548c92073fbbbd02d7a80ff697ee56b245fc8222f1405f701bede3ed4dee054391f86dc09cc3d69d37b60b1dec8df27bef833d7a174256c4116f85 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_fi.tar.gz 7839371 SHA256 1e10c9570903ecfc3d69fb05ad91c9c444687038b0cdca6bb009d746d74a24c4 SHA512 995b2119340204d23ba7ce5ef50a513e5cd4754dffe3bb94b21d6a48b7eee66b4c7cfe0be1f98567dfaee013a6bedba77a01ee70984ce78c8cc9360c36d823ee WHIRLPOOL b47f6cf44d02bafab603c7e655254f2c83ce376e08d90658aef5b1508c2aed6023ca048ff970ad368016fb6e08cf28eac9b63d7704291101d901412ee38442cf -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_fr.tar.gz 8279457 SHA256 bb3214360150b07063da33663ffbef964bb68986ab2acdd902e02752497e11bb SHA512 e4766ebfe2dfa6335a5b40837110e1188444cfa36852adb8607940f1b42313885595491923ad6bcf6a89f204de44fce5a985ba4dd2be5b5787212e9c415f0c39 WHIRLPOOL 560a8b91332ddb2fe180c081e77e6dc85aef36ffc0f8e5e75b468515abfa51917ad9cfa9cd05b59507c29abb27fd7c0e55e5aa204ebc30cf551b2a284e4e5fe4 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_gl.tar.gz 7747790 SHA256 d676bb8cced2e3f435cc582c81ec5b19497c262cb49ed3e72f11fa2f94c36ca8 SHA512 56504b19b6e4fda1938a163f43622a28dc26c6cd4062a16125900086579e8301adc64aa5cf8638ad22649ce7073a57b2092500f6b45ff3297a83785d4cc30102 WHIRLPOOL 852a63d9031f3e28d791e7f6f75a5c5c55f3a0c54d51e4b7fd1d5809967ea5228a668f64768c5ce9ccbafad8ef6830689337854b417cc4ddb580567120723a30 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_gu.tar.gz 6709379 SHA256 8528e875ef4c7946abae4d296fe072145837c9aad5e9aa1649a0f71e0b974ed9 SHA512 428c6e5a02fa7b5ee0cb5abff2d7e9bf4e992ac00e87f45afff00c34e9d917efff513f6f583e20e375b70647b41672e4d33d7f6f8096f0c6e2d1a6bc446d5169 WHIRLPOOL 8dce2cf4362548cf2ff02c222e1dd70cd94196653fb11b7584d44a535a23c9d4fc270e97a82f67f8040d097016b01743152d666425b053383dab0f8b0b9c5e5c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_he.tar.gz 6320323 SHA256 332ce433dee7cac19f40227ffd66991da4eee7b2d7c9fab7cf82e6feaff6c088 SHA512 c2eb2dc0c8b6ac680b16001d56294c1a7de32b92a804cef62b4112f5d441bd73be4750393409de707f9f633361ccebd892c35211bc0d777563c13616b0e2dc70 WHIRLPOOL 97a5b9d50332e9358b57e96a66b3e943b9dc453867cc47af75d2d6af641183e44eb58553d69cda985bfba1841b3b0da99b35db95a324ad136e24c481b7570c7c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hi.tar.gz 7360179 SHA256 849195f2f1cc233dde290f4653056375d7b04246313f00c263b7ae7306877b90 SHA512 c7b72a0495499269dda5e0e60a3cc7362bce1b34e7ca117835ce240efd18ae9f9043ebce67396209c71dbd44cdac35bfdc2181370f2c431df596149090afaf4a WHIRLPOOL 33fa6ea1ec09dc3cbd1ed0a22c0cdeff30f93a8a8b4d90550ed6984abf46d4bb4c4057b588a8dd45dcf14e4e386043fffaa3ce1f5f377a4e8f85fd18f21d2bab -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hr.tar.gz 6863857 SHA256 ec87d5211d0745e4a1c39bb091b53ccf02f24184a37d4f986bc931d8de7f7b66 SHA512 b4c6726a6ab363b37470670113eeb5926b014a2ad6141cefb52ac89f1ce2cf2978c3aaa28fab60c47755138e8c8417129c6ce3bb651268e4f7243551b6e1bd18 WHIRLPOOL 89eeb40dedca707d512cf21e475b43161e2b4dbf972e9ff8fc6635f864c04ce11bd78c5e6c240d0d75ac5eb32bbfc48e4347d1e5244242ad9601872aaa258b29 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hu.tar.gz 8151812 SHA256 7fe2910bcd009115055553b8f61640cc581a80f97c17396554a50266ab0a74d6 SHA512 5f5e7cadc6df3913448c2f861b2f413152e830ecb151b82f9c8d8729c2535c7573ab896c960e1014dcfff77151cf82a32c7b3142aff85e761d4c067bf26bffe9 WHIRLPOOL f80d924c49eb94e4809763aa4ff7514c381fb609135829182ed81950e135e15ffd14eed6648b652fbec4e64a2d3e3e3ff167f733b5a867470d8efe7b935b8c3d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_id.tar.gz 6915116 SHA256 62ea784f23fa6316f41832799641e0066d055d8ab192c6744f0d3420120d3819 SHA512 ce54364186a206af037539bea5de0bb86fab75545a56ad36c574dcdc270465698f0c2851f3424b65b24e0aa3664ae3ed514ff56ea69cf0dd93bcabf8cc13453b WHIRLPOOL 722ef664f25849d9a50a5373f47cc72d066c2eb6318ecb61be21b79e8c129132f645345900c520d522834bcccb8a8c31c0a1a4ce532132c0bc1a3d0edb224e29 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_is.tar.gz 6974185 SHA256 e392c31c45d75e8e77fa805bcbcf2d9d1d8b3d031b37c57c76bb4649b6eeb313 SHA512 ca21020fb58d5609a1abd67702424bbfbf5a84899b63f60dc5605b8fdc1e25cacf4f93fff3333f0190464351b65e73740ed7753accb50ac6951f115efeaf26cc WHIRLPOOL 4aaee09f9459eccfca02a13c4623d6cc75a1bd8f0a62da72c04dddec9091c3031c989466aedd4974745c00a764c594a385ddcb01fd7d384df1437f79e9ab8cef -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_it.tar.gz 8031694 SHA256 c4450e7b3e273fd26091d7e363736e6b2c6473bd020164e272d2fabaa42faabc SHA512 19d9950bc29de11cca802e5d5270e08cd6faf0d1ad21ef708bbd13518b599d90a48d6a002451d153f2ce235685deb70555b9e51b6fb7b9b270e4014f4be8df80 WHIRLPOOL 1f5a060fbcc9f4af28d22af38390de2449b1d6bd1f4adb22f06e7eb1bdaa321fa6601e7af3c07b34dd79f0150cde886936bb0df35bc409a0487816023ecc3884 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ja.tar.gz 13187612 SHA256 5fe3db9693a02bb2c1579320322881d9c1134346c51555d4e688a46a87beaa00 SHA512 c0f13780b8fa69add8283c44bb22d8737aef53071488d3ae913d83d6a02a11e02c434976ab255492367fdd6a3cb1f9a23d619f55d6004e6c194a272c92c04f50 WHIRLPOOL d426c3098640cba967cf933646fdfe3bf4999bda9d78aceed2bad53dafcb4b434cdc633e7c4eb0c3a91a15790c08e82c419d49d9ff34ead97c067bb34403888f -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ka.tar.gz 7158106 SHA256 8ce571bbfa8dcf0f1b867c0427c4585b404a403da2011da06016424bf8568a96 SHA512 92980ed6522e4a7f001976726b5ce7f8e3a8fa4e90c8c2b081d6b0beb143e3fc441a849cff8a44602a6beb86566c27b85c8c3fe381093335bd792db99d53aff9 WHIRLPOOL e5d0f5c15019de27db67f217f3e16b7e282edb504144e808e1d345246ee9c6c2c006bd4da29ec249d7d5295c7303d88cc1fa09b3756972023ff093a20bbdf937 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_km.tar.gz 10320653 SHA256 7b61ca324828266eb22e2568066688ca37a3a7b04566dffa8338a9b554e9b35f SHA512 c6e8741119c4b4c2062a72ea71256c70252f025eb94c7f3f436473a17c5d55f752ef699b6dcd5d92c057efdaa9de666554a2a78bf1ba8c6d61947b5164b37321 WHIRLPOOL 538be89d2862e72074b746d257ada0d130a463de88abf41d16230d85b73eb7f8c9caf9669d4b42a5b06785d046f4fc678ef2d06619039c6821cf858e703882b1 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ko.tar.gz 9396365 SHA256 e7124ef7e958823c56664e36dff4c9ba6393662007e5b7259830b99576fccd8a SHA512 dd4082f21e5f9289d588937ab7e219b6e7acd3fe8cb16252a0a80a73f1955b4487943cc2e2c91629cbf88f23914b8f65333438390ea3f56bf8c5d56ed70cabc2 WHIRLPOOL 04b237308abe78d45a5b7338ff51407fa1dae4a7744da9b66091c8f8109a18b6dd56ec0ef0c34be382e06aa0c29662c5f93d42684ca65e2f8ed1776cd0941d77 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_mk.tar.gz 7374417 SHA256 c2c2915bc7326be8ca876d2d133aa6f81efa6785cdd289fd7a46ff951003d2b7 SHA512 e0ac774782221667a98329c6e8030c3d0f04d9f32be6ce70522476cb0d69108c5b78799e28c06d34bbc716abb4d7433fcb6c12575e45bb56ff51e10e85425735 WHIRLPOOL d24bb3678e6dab5c9f3079846106ab50325e9966f5e9de069e9fb46073c0eb22948a737f6ea7f0024edccc926edffc9d02b032ae1fa6baf5cced8583f62f3087 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nb.tar.gz 7728408 SHA256 923ad8f79c92f39bf65a4b482d708c8a7b05cbe88aa11239c56d70426512b0ab SHA512 9a292f22b5e8148e5281d3ab6a273eab11b10e1a02b9901ace16f1474ebc7ec19d6c4275f9e2286ca376a336721110e600f96ca296b2106a0c7a4e1567ddebdf WHIRLPOOL 28099fcc983bc2c75c3fe1fc6c2133b75a77bd542f1d3b53560a3b4cce1155cff48ea25145a276e7d4ad660c51f5a2bab7b433e00b510a6ffaffbb03bce42274 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ne.tar.gz 9750850 SHA256 791e4cb5c918a72128d42b58f789987e5bc26bd33e5d5d055ae2e6016e0c1812 SHA512 83a317ed16e8b763ce2e94632afc5fd0b4fdbc79e616b1f08a8b2b601b032da2b6c742bd1f6fb19069d90d96e85082b7eea4a5fe175c6a4e6ead44e475bd08fa WHIRLPOOL 315988538d273886d0d468ec7d013e6f74202c439fe3c3bd0e1c2ae6e00381df671c74c291b8e6dbd9c9fae861a61c1a626331b29c67004ac7309469b193eabf -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nl.tar.gz 7855126 SHA256 bef2e26b9d8f00fb291168715fa7d7e818b8f74388338e806c2271283ba94210 SHA512 c2be6f891f6151684b6a5a27f22a59cc8f4d9ed31f1aa67c11c97d8a431f267d71d7d06dcb8514937dd5ff3d2e47acfeabe81488a6f0e19773f56795af5ea0c4 WHIRLPOOL e363894c863d583aa5354335ec2f65eaff1c1d031d53a69346ce8318448ae8957f887f84c07746ab089b8cca51c1469884a6858ee187e4b495037bdfc16ba47a -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nn.tar.gz 7715962 SHA256 2be48d132bed178ef4d3292ea546c360bf4c1f9d5be1052658f276a64001cf1f SHA512 70d2c0ae090d3fad9e8ad0f7b78ad9155d488bb13783e4c133ce19b3af1ebdd62dbd2a9038618605ba02a0df8ad3dd4c5a7a941509881ed55694364889d4a6ce WHIRLPOOL d237208918f57e94c009b27e8624449d4fae4bae5555d79c4b18c71565f4322a3e85903a6d769f538d8d5c95b1311c66364f868dca399659747584c8b99c806c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_om.tar.gz 8028247 SHA256 3952d2d21769d77eb3abba312aed3c8349a0bd6ab0355f32af5b11b8821e2a9c SHA512 fce22574816b17245029ea18be2e265a5dfd54285e931b40be89a15bf7cdcbba1bcef8f39637e49e924184326372e6dd4ed8b13d0d872cf276132fce86653568 WHIRLPOOL c9548641047d61ee2b9925f37eefcb77a7b791ee931bb317e18c3445411cec0a9b79e858d1361607ce8d8696c1256dc950062074b084a6aa843d54007519ce76 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pl.tar.gz 8169312 SHA256 157f7d36be46c570db6c634a68659be885a3052adbe8abc2f7d24b406cfeaaa0 SHA512 7657ff11165b06712feeac662ace9a392f409f438885d794a05d214ad7d0ae5af9630b60300956361a32ee3b3819a561a919d7c21cf03ec7f658236088b8d37c WHIRLPOOL f2aeb001d049527238eaa985846be861cf544b6b942df2daaa17df55fcbf07e2037a8a80aee4826ac4facefb5dc6ae3919eda5a18b5f2c8c2dc842cf7a94e5d4 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pt-BR.tar.gz 7847449 SHA256 8d18d00da162a485f177a7df2c5137b0f9f87e9f1cc50b3f791d90f7e63fc85f SHA512 9a3b694501921ca41236b99c84e42e776e6e3f089dabfced8273a12721f0542c12fe17ae223c331be263f76567bf85f13eaaefcdd7f002173aa04699872dbe6e WHIRLPOOL 4b5d827f8d7e82d6761e89e28f4a98a148e15186e7e7d2b0d6e85b75c52458aa39f058d0ad5175cbc652920512dc2bdff195865c9b38e105a368bba264263c65 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pt.tar.gz 7821497 SHA256 eab8cac9d6d1b66a0bce81959d069215cece3a0949f01717e80b51321c2f58e9 SHA512 087f5b6332ef39b624860dc3766c7f49ee6aa2deeb0633ef84d220c1e5fbcbbd11120de571297d6178dad14c0771d9318a427fbb67871a6ba628ce18c9fb8e54 WHIRLPOOL 5626e9ed96dff554c07a28ee7363a0e36aae3e4f42a5ec2855e911df5ea3fdff742d5498ad7584fe8f495332db518ea5c1003a749b83aceae8b60d15b43f150b -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ru.tar.gz 8458912 SHA256 a1f0abffb5b146b461477577c7195a3cb307408a94ff57d3a6a596df1c872256 SHA512 f21598945fe93b0d41e5a520ff1d2a6a985d82ab848355703536780b809f90bbcdf8a51cc70c8764484857d7cff88263b8a0d8f1242d3331adfe98478474948f WHIRLPOOL 43d2856d48318809620bf86a8c3dc6fc5247d9b35332132c01629f4c231f04eee728a150993d8caeaa8ce5220548fc0c1408db1965d6f039ea6e14e391c32bf6 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_si.tar.gz 7249043 SHA256 cc1bd0f458a135da35876ff1d613d09b5e940be2eb35f647dc06f6d4a196248d SHA512 f9eaa2cd7a073eccfa3fcf3dd5dedfbb76211f95881e248c0b11582d7c4865e709f67e5da9f5f9bae6a59f976f44f38b0e205e8d2fedd46bade3acfd703bc7f0 WHIRLPOOL 3e1782961a73f8e8eda9a7d73043e2eda0c97225eccde663ab0f0c26c229f946410b4986a7e6f1670d49faaa25c8892903b25bff5a9a63a08a65f4ecc48e97c5 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sk.tar.gz 7551247 SHA256 c5d95c74b8bb2914c7f9a84ad958747423267d72e6e19d59021db039ff226caf SHA512 69d3d8d4ff8f5d1f9a7498512c5e85272b0414084f1fea7d301d80f2cdddf235dd4ee60ec9273909020143e7fa63f3dd5de992d655c9c6a810074d7428630216 WHIRLPOOL 54a37d79741ece10427eeee223306d6d049b2bcfc013a4c41c08d3ecccc38aac436f9142f8e7f60b205a166b4be828ef270187f6aace3ffd54a5ba98b7db1c00 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sl.tar.gz 7852481 SHA256 1c4c3b7e17c04c28009bb4aa3f18d9ea99e4f8682ff24cb025eddd466a7cf609 SHA512 af44a867df49554300d485c306e025dc9649021f26b36e02d7362a77142bcb783beb680be1251f5c9682b3509dbf6846ba58399effd14a841e34a6891656efa2 WHIRLPOOL c533af6d9ed97cc1de6a9fc85ef01f027050c0c102c609995979d990c20b75cd5abbefc732e0ed82092861e1266abce29dbf256f545ac7d60cf13f9dd2e989e8 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sq.tar.gz 6903554 SHA256 6f81baf1185b47e9058ade59908cbbd73c535ce39f2fea5af980a407ab9bbab7 SHA512 6d1b30e785a257d01b789b4c77975a39d4c5ff663364515e37d1c9e237d28514a425cf12aa0b990f7eac93dec58535605053161860916f8d09f92bc41acecc08 WHIRLPOOL 1c087979390c683a95ffdfd5085a50dca455c3ea18a655a09afc684196db72f0b39f1befad6a19428541a15743121793ad20bb1103457b53e233d0c9542365f6 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sv.tar.gz 7773985 SHA256 c6d7528c614d7e701dc550ac41ff162b47bd80b277c788d0d65d0cc040be47f8 SHA512 7e3d1d1676a6232f212a7b14285ecbddf638bc73dfcb65dde80a8e10e674c6efeabbb20cc717f7bead1d19cf563d9c833f591d5a521d30a4e84d411c2459bc2d WHIRLPOOL bed428c62e9a9ef021f9e5bc3d76c6b652338548ef37732e66baae21c459c7727aba886d259695f512c61bebef329895694802c1152e221fe93fc606ce434f00 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_tg.tar.gz 7209746 SHA256 4fcfde2ef12a4d87fcc9c2a7a49a4d15cb54e8ac24734ccb9fe5a18e8938bebb SHA512 7abdce3d63c5efeefd733d5b343dec711f31873fc37443fbd2bac322da776c16cac84d1f7cd3e75e5e447b5aba718e9c7486076171eabf1a2e383cabd606a2a1 WHIRLPOOL df9dffb3405d44d9035c7d5825d62de406fcad4a0d0d30eba235d028952258533bce3f429287ac2ec82772289cc71d6eea64711c50cc71fe4cc8842415815234 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_tr.tar.gz 8004275 SHA256 c68244976ce9782524e48683c9c53710377b3513845fbe7fb16ad5baa265ce20 SHA512 16e3010c4a6f7eccc7f3b4e867b52e95500765d40d6cb2e2e50a74c96b2428eb6f2ee7e909bd64902c77f0c0676e180ce36141200cf2634bd275c8732e603967 WHIRLPOOL ff05e7c574076f76a47d7183ff81359f34e736133fd361d52c5dc6be259b83730e618afef06d87794fff0f4fecd692ec4813e28bb110fe46afeb23764a703402 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ug.tar.gz 6901103 SHA256 b4ae869748229ebc7d4e20d413db34aea0ed7f4acb6353ce05404648fae2e753 SHA512 37459cc18fecb75345774d389943fe2c94bd6bb5376b1ff98faf3ee2fc2567320b80999cbd8cd07b12ca8abbac860b9b2a4d7d9d8deb46b248e819060bcc9d46 WHIRLPOOL 32b52b946b24818fb1cd60555c6ade70e452e75370106f176185f921b10b257904ee7ec69623e43a650ef9065f6d9c682679198ce7ddc1dc775d20d2c2845935 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_uk.tar.gz 7870229 SHA256 5d24e748021673caaebd1ed1ed5b7679b632eeac71fde0a0a280565a4feb2996 SHA512 dd7129d3258604dc9569beb3000290c027c0e65c6419c4cba520c4c9f82cf7955cd8d74ff498786107805d4646c9b17b781103ff87cbc3b8cc6ac2626e5268fa WHIRLPOOL 67607dd60f99632c8af3dbaa3f6a8c5e354f511f9f4bbe7ae16ab84c4fd69aaa5e0fce9469bde71e9ef7b246f7108adf4ee5649846eb3274fee38dacf57fa953 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_vi.tar.gz 8157394 SHA256 d016683e78e36a9dc014f403d50adb58990f9e7fc16f79ba268c7630e1758403 SHA512 e53bdaf58bda56e9a7432a95b68d44ff8c5a6a89fc4b20fc85a53350b3977682c2a34948918bef296d5e4f2a5b5ecc7e04aca0977ba8d7a4e024b878d90cb8ea WHIRLPOOL 2fba12dd5bf90e7156a4c2be52ef2bfa41f3a7df332fcffa51c1b2e1ed37668a2bce8909d4289a6f3b56a93f9447ca40316c3028d3c4afa1115e3625c1926f3d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_zh-CN.tar.gz 10730403 SHA256 1c35e46272ca0d06e7def69153e4a231e99363c9763d9bbea752a22fdbd3563b SHA512 2abe744d4c8dba8419a98b3aaf3c18327a5b729a61f69a35bc50975046210a811e6809ce005775a1d9949ceb8e5b686421ea2c14d5524afd7d746f356a0a5f1e WHIRLPOOL 662aa7d3b2502fb468efaadcd3e531ad03503283edc851e1295b2f1721ef9a2bc1c486433a6021cea0ac79999dd9548361fc079c86e17e08683c645aafd66b6c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_zh-TW.tar.gz 10693710 SHA256 35b97d86c42d460db6315eee5d1b6f07dfca56aac33585577f26ac025fbc3255 SHA512 ccfeb5279a4eed560a3de06064cb840c36fa304990c2a47b96c3b5a44db36dc370b2219a120450f1e2bc0652eb455250760e8b40d88d7253b573deb4b69abff5 WHIRLPOOL d120c3c7f7a3f92e8e2b1ea1b4b9378a07a8bba3be83af8d8e66ddfc8aac52c37e449f51461b460641fd4f665f30739b30587c61a699a8d7c62519529ce2d57d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_af.tar.gz 1054125 SHA256 2b5e2c3e630880151178b963f7b22e9d4becdf191628788abd62e7eeb5dba8b2 SHA512 8e0b137733f2c42f1375998121cc27d38490caa30e62d3032a19aeb25e37f7e9017e00588715cb35da72e7f06e016e9fa5769a733aea07bb6faa2e5f3594a2cb WHIRLPOOL 09fe74b775efc4f8429f201c799b4bc90f27dd6f54268f277641f3bc10885c1164822d229309b7e9db6deea58a7d6e133b4db451fc872ff8f64dd60c55c20ead -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_am.tar.gz 466447 SHA256 37e7b77ab9d28f6ab27a19e1ad84f472037983fe95ea2e3763fa5a5d91218e47 SHA512 e8cb9f388a1f2053a13e22b3d6e540365bf029eae698eefa42ef612da5b6cc55eacb4f155f81eb598b959068503a1b8e8e41f4a6a7391bd9abd3ab24c41f5717 WHIRLPOOL edc487ef212127b82a625cb2718858c077d924d76033564aa91ad274fc3555a8b2857bf36ae437e7abd28f50b12143d41a5edfc732644eacb16b940db92dc7ce -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ar.tar.gz 2204417 SHA256 75e6746fb1ad32d7ba81c73201ee92d31fc33ff8988147c15cb2c09e948e9fa9 SHA512 6042fc2abc548c0a169392e0ad112b69828ceeb94387b1f2a428e17b8cb9b7215ed4ff11a35b27b1519edeb6fbe7f600d8f54fb2856753dd93985a1317b5765d WHIRLPOOL 97a81eacc221fb344e5e7c7c86ffb48002896f14f794968fda80d34fc274cf9840b9beef5a819c2aeb6320b4d65732ca3c937976e3fbdad282d53d641e6c0434 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_as.tar.gz 482892 SHA256 c24d32dde40d0da4a0548d3e67ae879d18581448c3f8f4f3485fe788c83fc64e SHA512 e4f22631016fe9a01fd83677404517d386cb32f41b8f45d0044b5de29cd3fb9318df974f8ef1918df0e962cfc531bd48bfab7565c5add6bf3326fe1afe4e994b WHIRLPOOL bcc347826c16a35b4f65f71177f714f2e14c23d25a4dc7fc92b5436ee2702a2d51d1d4c5cd046a8785cf0196a5e2a4d6bf4b766b1772bf9adbdf6df46a216797 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ast.tar.gz 443767 SHA256 617dda964e85f93b48998b26b6c170e81806d07c89978bc774fed2c671c14439 SHA512 f7d5695b30124b12d1779da734e574793aa735ef584ff32b7875bd13c85e899d699ddcd8a6f670fc532a2fbb5ea6ed7153ddc093b0567c3c1133878506bf64de WHIRLPOOL 342cac825a2dd65063bdcd12e9d032160b80d88276e04b46eada5e9e202a13c2874bf634fa9e4bc19560d31f2d81d13909e10407ee8406c738d3fddddf963c18 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_be.tar.gz 838204 SHA256 b65146b6800b8cbb721893ccc5bdc56812518f4ecfe7bba34e5f7216c096c768 SHA512 986a6ad476d93d1df34518168efefe0a537c366821e2b14dcfb2f6c251ed58a783973d770c6ad3dca3ad8a702c64d597cc3fe327d168e4752e9f6044c7603911 WHIRLPOOL 1dc3108141f0910bccdf8d266515573379163302e884cdddcbf452cdf161949a70087b0a1b50091ee3d252a0ef0db24e7693650c6363f9988e3c071a60fac4ca -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bg.tar.gz 1903987 SHA256 13eda6bcd999c56c2701a71ad293341706b78b807753aee1429386a3423c20ab SHA512 440a5d57b04bb17fedd1d0a8166e2571e19b31b481ff70c2eaf772a08e57eebdbf88e670b9810ae86a59b16329a3aa4fff035cd81c70e6a748d5a0055859b188 WHIRLPOOL c780aad6a6162d4dec162ae9411b037553a5a3d5ee2024788f8019f1f380ae02799643c089db3a1f6be8182453271070986cccd54b387b4000e5b53e18b1a05f -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bn-IN.tar.gz 490732 SHA256 2a302c53ac355d9cdfa86ba336e1da6939a1892901649fe424ceaf1d123e4fc0 SHA512 1a7afd83145f835800b247cd5682c857d1382364832202296109a16b8358e110235c3957909c3c2b63cd8fafba16ba76312020545ab7189e2bda6293a097145b WHIRLPOOL 954bad5d3f4ff4d65c26e7c7c16f5985ecd80f92f2e3f3be688254e5afd06230e09355befc790b446cdd750f96105d272a79a9ba3b2d18ce9c9f5f3f5b2b1d6d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bn.tar.gz 836162 SHA256 e372e25a7916fd2d3fa979fcdbc52045a2dc5f897cf2d5e754d9d9adcc3e17b3 SHA512 2d25d69975b9dc705db847255c73d35ee7b5411e357d20ea24be0aa58755fe82cab271a5d2e44b4a2e12227e315ce1c63ab6017099a4ce312514ce9f9e33c959 WHIRLPOOL a25cecab3a6e6b76708475245d8ac686e007051b592685da252a3a1d987db4be92a8dcb1cfe011e081ecbe2ae97afd3ee7866ec43809a5b6b6d22d4ee3d9e404 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bo.tar.gz 473480 SHA256 42805e59ae6ff148a68300357b696eaab9c4f2d2b48c77da21d2aa19377ad7ac SHA512 7216d445aa8b6d932f405b29ce482323bb69e65ebe0c234d028869fb039dbb26987e1163856af8777ecb110422401933bce182096374cd3b81013d6f6244c13a WHIRLPOOL 79aa4d860fe39807b1c31f721aeffffd2b5190e67cdbb431aa8dda872ead95634d55b8baec648750bb573715f384d8381d15deed13a28fbf2a4f80aed51f52e0 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_br.tar.gz 1661895 SHA256 02f9444b95fd4a61ef713802b489410a3d9e906e9da66801cd30c29dc8b44861 SHA512 5ee2d9bd733ec61d156f2f67722922a39d624a762f0b2eecfbf37ec3eb192b55dd3ef8ebbf7f3dc8a360aa308e4424e1168418f5516617e7df4897fb32872ec3 WHIRLPOOL 59a3b2dc29a011447db889bdf6e8db4b8382ea5ed254a0231563ea8c0b452fadc06f94944d79d62c227714d35d6ae39a568ba3025bf8ad6e2c63c90b21d10e82 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_brx.tar.gz 451760 SHA256 e7ed20e5c7847aba4daba9a0ebf28006119125f8888e97862c2e0f3ddd314ed3 SHA512 4ed01f81d4dbf90ad68fccf062c52a35b8b593477892183ca7f6e7851a1eb8117a840d1c7668783ca864016159983d1b29d16fbbca38ef2aa194080fd49245ce WHIRLPOOL 948b8c239f5caf304b5040aa5d49df3d60f0f53337909273d477be4784f0b5464d9feb002e8f76f0ab8597ef01090b9163d7291fb875e2fed40291a629ff9cf9 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bs.tar.gz 557759 SHA256 331b00335f7c211cd0423a1f01eef4bf46f0136122a13607a39bb8fb63524439 SHA512 25f819b14d6ac2d5099a5bca9421c0e206ab1706f17b6a4a65b671505f22cd1c32e5d94933f91125b39f2846ee899b03fb8e858c987c6ddb33d7842913f49608 WHIRLPOOL ddf91657de26f77ff2803547f1eac54c7bb6f3b80418cdb86c5bf58d3fad6a9e4ba3b7f15edad3b7cf3c64c23e7c798ff1469aea0dad9c00af10969aa0f93275 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ca-valencia.tar.gz 1713982 SHA256 54a3da730fa00a9a98a4894db1662a48f19b6655caac9f7d9e886ccdd8460005 SHA512 282fcec8cb14a211bac289de58c57f9a10b0d1c9744e675c87d9612d9c377a142206c7ae62958daeeb9db4fa5fde6598510cdc719b7c58c82e6c11c7f14d73aa WHIRLPOOL a7d9ba03fb617c1013e0a757fc8f18a822b98e20d257b1d99ca060a443eef75baf96b688aa1784beae02c6cc6e25ad1fb11800f16a6ebfaad27b12b0e1a66411 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ca.tar.gz 1715096 SHA256 23f40835d0e338e09d70c0d053a9509ffcffad2de1f64796e895e6178ce63d9b SHA512 6a17ef3aec0a72023c0ca7b848d1eef98ea4c006ac85e62b550ad1f9738ab616a4e8ea7c0824f9f3f2d37a0c56c4c693e2bf2db1bcdf74fa4b3f27d6eca47610 WHIRLPOOL 1c215bf95eec64e326459a4f13146e2d4eee90735ce821fbd5919f730d7e0f5a5d1a4498c84406353318a5b0c501a29450041f7da2b37442796d536176d4e4e7 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_cs.tar.gz 2883402 SHA256 b9fa41e1985168ace0b545be9019e2112cfd63bdc48d4186107fcfd486333811 SHA512 b2ce23a9482328de28bb4684e3424f8ac9a5ce8c787a81c5d50077d036569b951b0864fa47b33a7ae8b858418e4fd4dfd68b79680900649bbcb04a628119635e WHIRLPOOL d22071691fc1f52e508b9148b455e08279ce361f515ca25f4597531c9aa2c6a95a51d8b5ca172e0edb13e7aa13515f13d8d1a36013c4fb5f8a1037de051e7990 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_cy.tar.gz 426403 SHA256 e36c60c0479fc211a742bdaf80e1e5d0cc6001137e0260848fb9fe0de4f17dbc SHA512 f113ac7659b9b330e418d2613e081c2a749a4bce853de08001993d039810f7ec99124aec542f4b1fac79ae3f28f894cfb5bddb7de753cd60a036df202fe09795 WHIRLPOOL 451afd86814cc7ac2c481813d7947667467ee4c75c1cfe1c3a55710fd046f74d212888b1a10ff503240039f13a8a02a393ed3b4b750d13c7e607a5e9463d00f2 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_da.tar.gz 2329645 SHA256 4c90821377df10023234d0b21017bac75875a7338ec45396fa229c822213bef8 SHA512 893669e24541788a08558dea4f854be3f0fcc97ac914e19ff83371ee4328d9f7611b577eb9c97d01e73c7df29be073c44491725a1b651fd4a1c5ee514aa26c9d WHIRLPOOL 334b533f7af796ac4bdd98bf527cab2a8e5829e69e6ba70e7a27445296a4545c72e550e63534868f082ce686d57bfd2dd3fac88ccd501367d8f2284d338e1418 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_de.tar.gz 21457416 SHA256 19db5ad4c26e276f07d73f9beb69356b04a9c05a372cae65cb4b2d01cfa6179c SHA512 49bd3ab27646e20d8579fcdeff35bce82bd0806951718ae1cb5771415df7e8e30a0d5eceb8b100dcd1e44162ae4ffef6e585dcb0328843d32d0036e32f55717d WHIRLPOOL 70c30086ecee226d8c02a0f96cf5be8cb12947b8c0fb028c92e08c3be6066df12274ff61571d24017d13c52a5736acb95dd4a7bdc2e53ab164ca0548af28ddc2 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_dgo.tar.gz 478568 SHA256 cff2852113634e30cdca878d0cd156506d7339f2a2150fda48ee90e5a3597670 SHA512 97424b00cac2e37ff65f82832d79b7fa2cc966d1fba8d0378bbbeda49f8a0ebad242d582ae8b38cfc3e05e50b3c0b70111200487d0225ebb6835e3e8f1c0753e WHIRLPOOL d782fb55653ac49be2f68e04e376458f0f69e1b0a9f631170f73d9a6ed0b2eb32085931349a25e1f3d9e1cb54effe68cf02fa2947325214e0b546695113df292 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_dz.tar.gz 472192 SHA256 f8517c2bf25db06feee14ccdbd34d48ce38a3816eaa90b8b403b4f1ccee8fbc3 SHA512 c3b1c916f89b0e426e2d50fbcf11578be83d59756f4083ddb1234b54fe6abe7b121630b57c1a7a7476babc44772ba19202cc9c8dcf663c85fb91bcf55438cebc WHIRLPOOL 1d9ebc81d8fb2d9463adc189c887377506e7fe323149a0785a9d70ffa6aec6dad3521f8cb83eef73da727a891219658c7f07aab137f36fa8e0dec459ffc6accb -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_el.tar.gz 2520745 SHA256 5196097c0c3e922ca4c78a8e8386b45e8d7b1a062020b2de9b75463c1271e860 SHA512 f88e3216c3f1cc360599340599c9d34a6e1d13bc3b338d006010f648547e4c3b9da1b1d3c1f4eec7c144c7665a042ff58388ed559152d5c5c280d39a95e21700 WHIRLPOOL 51e0993606f30fec313fff58022ff8d3ee301025f0fb74b27a1dd1e2cdb2bb7e349fd08662c9d52dad2a11707d757c4f545d841fa1208a9c2b676db1ba0cd78c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_en-GB.tar.gz 6962508 SHA256 2d82561057f5e47186833f300a45c1051860e566be3bd654fdb029d6fd5804f0 SHA512 21dae9cd559839ec07a72d678a3b4176c619ab5b2d15bdc51f1aa2d3d5a3291b19b2ec522e462a225255559a4c4a7926396c57a78e71fe5904915dcd7a048373 WHIRLPOOL f36ba9e647b99eb316e5e9a1e534fb9979d1a7680a17f914a7a59250ac609ae9b2a9d28bd75abd6c9501bd44da52e35a5db34c868af8b544c5219e2ed990b461 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_en-ZA.tar.gz 6879735 SHA256 639f1567e1f7eaf4847735815932d1453546d3525e3355f3c709cae40821e781 SHA512 22262f145d9b3a3bfad6c4479a97cbc196207ac2343d1c9e54912fac9d59591fed8b911436bd68df0a25ab37ce0518156c5ec2163d2efd5d7273a8d35f85ba9b WHIRLPOOL 22a2324d496afe213dfa70acc58cb6c8b071beafd4dc1134cddfe9370bc41f81431d7b662a7c266395b1c26351ecb889bf5cda33541770c3956d95b64100e679 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_eo.tar.gz 422022 SHA256 a3113e59a16f7f6f5fb7bfd969b8b088df64c8a9315431d672d89d5cc7486959 SHA512 32b75a9bdd2d1756409c1ee3f16b8868f7afbe28b2215a90984d60e5599826be532b22f245a9d5e4724a76dc03ac0d2d697ba86f667e18e1e57b9e346be47fb1 WHIRLPOOL 7a34e9d56d48799c5b79328f84090030ce899357464d0a35a99be833bf0cb7dec8ea71e934a26f07ebd5bcbca3a71841ecaaa201e3524e655a1617894b4892e2 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_es.tar.gz 1922936 SHA256 98bef7e3d0b499663bd0cc950e5b31bf5ffcafae1f8506f56d665f30d71d8b5a SHA512 2404f422ebc1341d9efdfc391e9fce3a724ab42115a7575204600d3d643224439b0963897d643490fde3f43c5adecf982fbae7dc538848f57a1edbeed02f3723 WHIRLPOOL 1af699d29172c0022c01de5cdcef00c02299d882c5833109deb1047d4cafe4d9d9260cc8f1731102c7abf5dd55be6d152e02a1275e6824b418562c02d1f0e084 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_et.tar.gz 1332507 SHA256 62c81927f21a1423a7f536cfa630ffc2fcdfdf646a174d740e2b8bf04b61056f SHA512 83b3907a50d8ff4e076b9e3facaaaddbba8800c6156189b086d1e73d2598f18ee2d534a3d7acc8512a0e00509b63af9b7cd78a1bfc7aeb0236ef0a26b73bf4ab WHIRLPOOL f7fd7101c0cda95d2128e6a909e00524c601df599e9457e91584838fa0e566788c5768a78136b267ba2ec50ebb9b77c454e8580b01a10861923531d9b8c55b03 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_eu.tar.gz 430290 SHA256 5ec5f649361af1ea2fb72dfb79ba83e7bf12ab03d8921c9fd1117c230ff3dae1 SHA512 bcd0ad10dfbea6a51a03a938d914687de24e07752dba514b06b12743ec539d255e95d11a449a70d14cd49eb0cf5792b0597c2eabc11da83e2aebd6f2204a23a5 WHIRLPOOL 9e5bd31680ec6fc10971c289d4e11288f367b6bbe9bcba11a4958f64e000a91c577f7deafae3856ca69d159be0abcddc16610e7a5a63e06728df0d4ea5feb224 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fa.tar.gz 448312 SHA256 ec493340b58d8d04c18d59664106b83be3fc1ae5028bbe2acd1163aa4928d593 SHA512 34527c51298c3bef648620c2b827fb077aa49836845fe0218ab61f1e6698563e876539aaa591e2304e036cdd12a4002dc95376d4d7f03e94d944c9db1d0fc631 WHIRLPOOL ad2b981880eeeb0ede75a32fc6c89b38c57344ca53b85e4a2c772f6673d5275bdcc0e60e6222dbcbb5557415b1118abbcc031e5a75a5fbe543a9dafc961ebbba -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fi.tar.gz 437009 SHA256 c564fb3c38656dea80a6f788f900f5f3dccfa71fe1c95b3c6311179fd0bbd8a9 SHA512 440b4ae20163a2b555c72f04504921bc7171470649321130aba21b63e0c5ba9cf06733b4718a22273c356326c5bd904aaa95525abc3943fdd0f4f991828c0d57 WHIRLPOOL 9b9abe2328ffd8096379cd01c748b5439e696e7daa47fbebb6e71f98dbd4fa5276ed2635125a5d4c4481ab8dd40232382db6d7911981ecbad7367742b50d8bbc -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fr.tar.gz 2732639 SHA256 765a6b4f89db78051fdd3c99283bdfc972194e2c6e214a260e4871e68877401d SHA512 3abbb6c6c5dc08d5286a802e23d75179ececd12b432715bdcb8d4450724443317b354e7040ee9203612aef40abe84349a27e7f66ef9826ce368083ae458fc871 WHIRLPOOL 01c1326ee67fc4d26e4be4fcf8463662691f033237b454cd2417bb630b0c03735156bbbf24122ceb9cf94612927ec82882278cd41500604dc310a37850b80e7b -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ga.tar.gz 447376 SHA256 3cf577b1747e2417301034428b418bfde40137e3b6e06c16f3aef38963661d55 SHA512 fe408839a3818ae9fcd656fc84d719a704500ddade8a902aca9e682cc94399d4032d85a27e40f694444fb6b12b6e6fa03d2618f2bae7555966aeb99b23c71041 WHIRLPOOL 0a493a23f8cdc21b2e0c0a899a1b71ff7145d572d5b160c3a94ca89dd98e0b96897cc424bc1cca5a1a2c17db7968f73abff4f6bbdaa756dd1c111f4618696f49 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gd.tar.gz 1481701 SHA256 0032420931b5ffea5ec60b3f821a9c3a5873bea0b27af4f4b9697d536d0bff80 SHA512 ebb58dc0acbb4f687f009d03378f2eef141e66cdbeef7c8605934f4bcc6487ab2eaf5ebf3a86e81768f5f657633d0081e9177e1a7a5adf13e4164975aee5dfb9 WHIRLPOOL 7799f52bad7a76fbd539eaa2a74c500e868c3c1a13be9af5413bba3b0a56fc4e17372e5fad97df8a0daf2c36b5cfa8c898c6ab3aef9ae3ed657552e8a4f771bc -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gl.tar.gz 994922 SHA256 cdbe5f15843e20aa454c385d6d17e2b3b02679d10bbad781e727f884d9029355 SHA512 080cf7553cb7260b3cd21f4f1c789d66098a930cb982c997629264d0721f6668caab696ab08f5f646a603dd4e12959a2d51ee9b305208f7c29081101860b8da6 WHIRLPOOL 9098378416ea0ec9dfce30631d8301f052e1e02ecba38a973ce51bfa0c52cba5a200fda9a71d8612feb367d94410b3e3b20c3eeddfeebea21e8444424b55948d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gu.tar.gz 1126944 SHA256 6e91c4c7b3b2b9daef0b580a5f725b3e51a067aef7dd4c36ecce37080dfdb8ef SHA512 4c9127b790628d60bbb48b7f7765d03d088ffa4853fe8aac4af83cce89062dd5cefa7c4a9fedb21960246014b4bd4a0b1fb25fbe6133869bf01038e9f4422ef9 WHIRLPOOL 88af8f8990a98087bb76e69b30b5913c0945967d64ec8157237d40c9aa3186f1b092da2aea98f1a8e250fb4107ae7064ef08ded2683d11227a178a7edadbb241 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gug.tar.gz 445125 SHA256 64c225475f544252ad1fef4756f21fc59fd2a1af34280b64900d9f9cb40d0aae SHA512 9bc2ac4c24cbd293ce7cc483e76512762b7269a58ef75840a435dba67e107c0d365950ac27d3da00a3a570e90b4a32c90d3dfeeb053baafeed8cf506b5af033f WHIRLPOOL 4608abc06e893849dcf4fc42b665bf4976c107cb980432fe386131b6ec67ba7b2c8038ebd8641d8ef0104f9a8cfb2902d8399d165a10d783750450859fa56127 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_he.tar.gz 1525789 SHA256 3dfa051bf7acef735733a98fd0f6c6804f23e9959c612ee404c06c9187745200 SHA512 daea4f721300dd12b8e161acb09826853e8b1953bd3a94eabe2af0f88e93df0f853dbcba2787525c8a9b51c0fe9a6afd1d0b764e7a050013b548aec0157745f7 WHIRLPOOL 7d07c2af76b4caea87feb5be9eb6d27a35dc9868d2ad936c32350eba14f09bc88751fe1ba9ea03cfddca0d5974defd7ae0388d17abfd50ac47594b2be0d64b0b -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hi.tar.gz 547372 SHA256 22c1769884b7c67a4f6144a06eb768b3f132a72f744bde7a03cb68cedb4441cc SHA512 68ff6cc3ab46bdae75595902f7c6a490361396e002854c0a74480993a65a89c56d283becfdc0fb2dae025d6969d6e69964270828fd8a6364e8c09a347f2d899c WHIRLPOOL 76ad559db0466b389061615e8301aa1e684ad87177b6cf8e7f76bf76b99003c182f42463cbf997e4ea54cf3474b88bd0dd4f56459f1a5f3c8ef5b7c2446046c8 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hr.tar.gz 679128 SHA256 5f821d485d7fceed3ac65527790578744d6368eb5b723422c03088ad13f8b5e0 SHA512 eb0c778302e0536e4696bb3424c2e6255309ca7c9a0af616c7cf9e1060c52ad64a159bfd79d6742177471b2a193363b056abc2916c53219e2ba4ec12a577f247 WHIRLPOOL 21b72804f5f1ac0aae711b1c8c16beeb3f839eedd538cd53d40a0cb61d2eb4e5812d9c244f34ec8d52ba95832623b5126e45aa842ed660f1d1d539945cdb6a8a -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hu.tar.gz 2657049 SHA256 0e4fbeb63daf327705ec94d87750eb4cfbef2d520f0df04c297716592d439307 SHA512 98947db26db3d7a45f2ea8f32b4b8c8f6fa323e698c52a2996812d25993d4a8793507d63a150b4dd45ac971ffd222af9d8de26c186988391351286beba3b4e4d WHIRLPOOL feeca5308a37e1f3b095f68a11eb0a827dc6c23618161bbf8f153d43149a3faf2f8c8b32157788489e94bf0b572a5da105dc92445334ba88d216b276f59c37ba -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_id.tar.gz 423020 SHA256 ca9e6138763ba6995ad94cac1786edc0f4d1d89976201b21697e0d3d9e7fe2ef SHA512 f3a64bdaf07943ddff8f9a220084d0b127c5b63e728319d7bc4ab8ceace7268aca7cee7250c253d70ff55f936382af3309310596541c4e8590e2133c15a8bc76 WHIRLPOOL 86499e2f2d11b50b6243537078f38a1b4188c1071471cd64f594a8278302aab021ad233cc317d9bd48fff1bc3f8980fc4b17e8a05e779b14a0eed200aa9c68dc -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_is.tar.gz 1233373 SHA256 a0c9fd73665674ade72725cb43186a3b2273770c44d2f928ce40f5f5e4fdc145 SHA512 d0588d270ddb77bcd3bae403b5bf791a637058c9ca7d9e7f8955f8ab09f25fa89088d2487fe348b8ecaf0f2452a80833061685e4574029acf56b5825b63f23b8 WHIRLPOOL a8ec842d7804a96deddb7442b746cf7bfb4c371ba52d47ccaa631a525f2a5307a384721de581dce64de7980bf21f9a45d9453c395029df5934bde149d54f5174 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_it.tar.gz 1767779 SHA256 fea2219b3ed98e7bf8ee9e14d3e205de27cfd54cc8794030e6abed0276bb68d4 SHA512 5fb86bda8eb0b4c9438ae34a2edd141ceb4303b04ba3a55e78a9304edf39d33dacb0aec500bf55aafe3d22b4cecf40b8ded438c74fb3b5aaede6fe6b3436513d WHIRLPOOL 6aa7c11cf3cb982a86a015844e9674ab39c2b90a99b85f0b181c7b622e3faff61fb1a5066ccd367aa52151c38b9714521b1316c1a4360ec3990cda5367138895 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ja.tar.gz 532018 SHA256 274a57f0de3f1bf5bf0cced53d9a3d251d70453dea27357512a2f6f3d3854e33 SHA512 bdb31d3129576ed891f1bf0ee58038f5fdbe95fd37c06632b2ce573c59bd25963646e45d9c0ae8183c6402a96899689578d14c77442e0009b65585cb0914540a WHIRLPOOL 7ff1daa7356f2938f7d84fd1d0589de160927d29fdb89f693280880e9b7e0baf6c123879a88047f51c1b6e2352a8238f86ef034fdec50a504c53592abe483868 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ka.tar.gz 456463 SHA256 9d628e9b1d220aa96d35eec5dd9cafc2cc9c2346468aaa7716368483c9b174dc SHA512 4b53306349f1449190212e94b037e3cef42dac68841b0aab128b5170c041cff8298466a3fbaf37cc4ae228d09dcd35f3786b65b16ba5d8a6eb809e6ee03329b1 WHIRLPOOL bc674dbe81c33fb5388b7ce13ddadc6ac51c650eb4f0410ea490d24daa8ca5efccfa85f0b1bd266dc80902080e8a98a44b691379c81ea2c0b43ff7ddc9402b5b -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kk.tar.gz 478917 SHA256 28d50ed7fb714711b8167bee35f8928e5d3c6b6c65b5d2e036106ae4178ab104 SHA512 736bb15a6ba8f1c7fe23630df33eefe2099d132d0662c00b5f08488f4e0655c70b0b52e5745d7d12bb4f77bfd4ffe08aefbea98a7fe7cb878a0ca08881969fcd WHIRLPOOL 5d915b459466c7e5bf1ed46673421e5dbf0017c5c1b87f13ce99a06de904a4c0b2f78a357d8a308f6282650d2a1bcd628220d42f0139b7a57989421abbeaa4bf -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_km.tar.gz 579181 SHA256 12c5093519d1cb36668a81bd08b87c191a271cff5ce4b6370f4f485482050923 SHA512 6d271287707b2a052cb16b60d72d3c0600613faf5a23680f9bb541dbb2a4c4c66bf271c50a650d63a0bd913aae292694b5ef43267739f586957597f8ed907614 WHIRLPOOL 53eb2c8d7b413b6cf8bcb68dcf4812750182280851b01bfef22fcc29e05df751515ca1be5f0a75fe887196015de440b8bb23f6f29bea8fcd401a615400322bcf -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kmr-Latn.tar.gz 434355 SHA256 a312de5473afd90f99c9d741a26fe89b971f2199b05d0050670381e3e8ae3187 SHA512 63cb1c72129e9a0a6fc5ab559a1f2b06e7068b950fe47360346bd068463a5f9a7978e617fdd72bda53002ede68edee36b61a8d39110823ae3aee929e80a080f1 WHIRLPOOL 700f1a1b873a7623eeb311ec5101f973d8f34b7c9c792e5e66aedf4264422cf4b2e484ed309e98ed94104786fbdcf698c6167889e7ef64028f34fe1b7895713d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kn.tar.gz 494915 SHA256 8311c2cda00c965bb1c46d648d9047e1e09f4eb03dabd024d2ec1c2c7a1b5724 SHA512 f9a8a52cbda88cc914626a3becf7d7038970bdb61b8a507b38257fcf613cf294a4a3a48f88ad625b080895f01c6dc68a97748fc8246efaaa5d219a08d5218bb5 WHIRLPOOL efd3aa0f9d711d09346dd15c45cf4b10e44b32dbff62e2007bbebbbe0b37ce41acbdfeaee746415a4ce7094fb2b51f755aa7086bdbcfa29dd5e059ff74b6071e -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ko.tar.gz 528224 SHA256 aeb5eddc6c0ba0604078d62a861b79a2cff0dcaff610c2a04b6246b67f6b41c5 SHA512 4fe042e54b9b1d2cf7a90da2e8b92cf30a9951a50a7d422c6c0a2d38b80aa5cc314c9f4e240542776b0cb5020bd43280620c5e7c9f5526606e227cd07876197f WHIRLPOOL 04c7b5897f6eaf3e52687c7584faf2153d8fdbaaf3d12430885b33831356eb914537e385aa4ebe03a7897b74f927fee4ba69c8f38d9abedee8c721ba5fb381a5 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kok.tar.gz 472411 SHA256 f4decd4c223f4212b89b4427036ca600e3e57d0b20f9522a39893482de93a596 SHA512 409e1700d9ce536fecf65d282287f1b96db4d2b9fca01acbf1f5758e782bf1752df1bf7e567b3b4945bb4966c3b0db278aca3145f5160c28169103bad64be147 WHIRLPOOL b43a0fd16ea1c555c8dc79453b0702c80603d5e3b6e064120904bff85ab049b5190321c29155f11a5701fb34fd0fbada0837f7c5e1510fec670ed9b034352a89 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ks.tar.gz 451468 SHA256 0e07e973f4baaa31b3629f5a016619e81d7b8e32af8d85b2671121c74e323195 SHA512 1b99a207f9e30ff7b5c337aafe7e1213c27159ab560850ea9c057c4b346536366779b9c7b0824e504a621c151a8d37022841770ccea3e092ce625a99097f9e9a WHIRLPOOL f57d0f9cd60b367a5ec80b04540d46df967afe54f58a10f1a058f9a7f069531e27fa43e185b295dc7541d66e1ecc4f3bde75969f8da5df927cd1a94fcf0c9a8d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lb.tar.gz 412514 SHA256 71384dea24fdf7770a16fd8ded0e1af0c0742e6d155e690089a9d81aa66b3e46 SHA512 4cb81c1bebc35219e9620ece00aed5c01e1f34759d9ec02e0c10ba005d16b416f285fd8c86943cc0a2dec49db3e7c9d1a246072477afabd7b9eebd483ca25556 WHIRLPOOL 7767a190f3ca15fa28cae23d70a00155f6ea0ed1b4f6acad5b1683aa59de36f779b66029715e56328abec681f0c40079ffbd34984b0781319b0da2e9d0afc740 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lo.tar.gz 496453 SHA256 77220b069d29542e9ba057ca3bf9bfe50bb15e8cbb30712ff069af61c2d41afc SHA512 6d2947fc17fabc585f051fdd03e0e2fd29b9206c13b14c0a1ab564113b92fd5b37aa92dff7695e3de135abf41f71271b84bc69bbe5595d97dba025a30a573770 WHIRLPOOL 1397c5f9ddf294ce9a132ec2977f82e8d719610269d09ec5bdb9f9765dadf2d7fba724945b655ff1b05f4a2a3aa8fa650ba3d8179fa32a229d0b4560d02d6ae7 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lt.tar.gz 778005 SHA256 8114888cf6f59146f58d8afdccd7cd15d19ea1818cf50822636e5de45f3d8f2d SHA512 f3c0489a8903f622662a7e5b7220c466e3605efe1148c2cb2a74ecdbdb1f5c6d98c32123c11f051315528c48bc017c7de2f944c535826e20b7b346ab637d60c1 WHIRLPOOL 52093a201ae59d237d7eaa6f287764c6e930d50d262230b499e5ec21f25a92d06f2585f1c40eed1b4c89fbf831e1618d57f6efa07cb4b5d699bea8b8bb8b3ad5 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lv.tar.gz 1194228 SHA256 ec4fb059358c99ec4f484d4e83b84f675a143d649c73a5009edb46d8fd82630e SHA512 0f6029a3f09997237f9324c03f511696642afe0d86c16dee641d1ad905754156016b27bde6e7d3dccfcba12d53c9135d144efdbffd7b2e1ea83167f388d94cdd WHIRLPOOL 36863e99e6160deade0828e012e9f88885961429067a894527009bb2c50182ccfdd597b73a813348eeec9af3b5265e648379b14b9e61dee7060dc60440d6e07b -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mai.tar.gz 453097 SHA256 0a08f936aae0f38914a4578c16761792d193fb63b99f0f5b93b962ac79fa2304 SHA512 9b1c954c38bcc1db9c1ef78ec8deda8c08dd3b37ab4cbf43dcaadcceb48ccadecb056e70d3e4dbdb7d69c847fed424b3eacd2be747e6cddc9945ec4800a822cd WHIRLPOOL e0461b8f9df9d558fc6663c5d36ba2ba5a5db1e73686eaa990346d9ca1f481e053dea3050817b1f577d2ffae5460533315e9c00031583befcc1df017878bb454 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mk.tar.gz 455269 SHA256 5b7555ba68883e109d7a56082ad7670792b9128361afd8f7bb431e72264eb2ce SHA512 60e98e8f48e8e2716755e09714b0389a657cc4284083808d1b8a214fc0e18ec944158200a0d8946df86a89246bda57ed82e10c451333bba50dda28dc8231958f WHIRLPOOL a931682eb1636ffebef4c957d20987eb4591a02bbe7f486ac9973e21575cda0fbe805d214f5e8e77bec7fd485bce454f806fb9077946937f7a60dee520e4da68 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ml.tar.gz 493957 SHA256 763053a5a087854a24b47b68831413e41c9e8dcdcb8d81f4f8ede300a8f3faf9 SHA512 17f4e62a86789730ca5c10876f124d2d735f3772f12f4e021bface860dbf92d338a6f5704b8bcf0d206b6a507776e76e5dfb406f22c71e059cc2581b0282276a WHIRLPOOL 39a7af5394906477be4b0d2126c0da6383b5cf559c817ae7972230a0444fda8dced3073992395e4780914de82513df05b9cc2d5cf6aa568917311f793b9d3ec7 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mn.tar.gz 544257 SHA256 6428484ff6f75d281ce11e14dd4ebd42df1f75f1299ad3cc6eacad564379ca37 SHA512 996876f53c267300616bc4caab732d296291879998350a9a1b5ca7a3d125c635dd51723f4d86692fa97f18aae911aa7cc36fd202b91a5b99f18e15aeb74037ae WHIRLPOOL b547d67d83b5bc956e90ec4d3cdf6e6f2ca8ef83afc490e6bee7164e1b92fe328a6d167736c51a252661b2fda4f56a29f713d2e102c8d20dc9bcd965d24959d7 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mni.tar.gz 466355 SHA256 5f33b06199001e343cc9dc097bf68ffef9bcba8bdfc01d62c6204a01b1bccb70 SHA512 9b58d5240dc631bebb908a2612512229c4f5c290c1a08f13a88a98ba33250bc683fa49dedbe12768eb185475ea9920a4ecc054d6b71cdfda5afd726d9043236f WHIRLPOOL 005996ba06e08c6f39cdaebff5b3d64578c616003d084863cf1943a4e6784505cba1b3cea96503216fdeb62f30c5a8b4d827228d3018f5619c6a34a6c4547253 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mr.tar.gz 489670 SHA256 86b991b1ba1c37147b7b994032deeb6c1e04cdcb4dea79c28a0bdd8933275b59 SHA512 7b00d08792add09b5d936f33e3ba1f661ce73cd7113fb73fe56d8bf4428e5287c63b1c8d2221e2233ea896db487fb524fb8974542aa52e489265e7beb8f8a1ad WHIRLPOOL e5e24debd88e075a64f208523eeeb65b35e51bb24519c4be15ea456bdc7e1ed1dfddefb2ec57ec37cb47d3a6d3b15038636e0b002da1d79638972146a499cee4 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_my.tar.gz 485249 SHA256 91f792975b8866ee2a19b66d3f98c49c4059b2a751111ccfb49c02112ed44898 SHA512 9157adaa7c1cb502ed539c9296d6457c0f0e22bba7f04bc7388e837bd7d4fdb117795d2d3b5e1cf90aef388805f4c6db748eaea69f2d9b829490d4609ed9c4a7 WHIRLPOOL fd87263a9ec55131eb8260319c1ac6b9f945502b04b76b087fdec9ec76dc63b9b72886357a85130706bb6ae610a35a0abcd4bf2f1a9f3e341d0609d51fc43d6f -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nb.tar.gz 3426005 SHA256 b79a7420866de0559fbcab3c58a450a3ece838c63ebce2a756f2a288affda950 SHA512 0ead8f5ffcc1014456e02a12f43072424e3c4cc8b041734418d6f578b812b0df7c9d5f062053afcb8cd8bf2aa7e11122242cd3aecc3558d2e21cd5e706b7298c WHIRLPOOL f325e9839ccc34c9c9818b1212a615a912a0136ec1820ef5a3b11a671a63181abff857e14b77e6dcd90d9f7fdafbd1b4044794f68143a21845fe2f7b4865f05c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ne.tar.gz 857590 SHA256 6630a751b61cb1219e680604b9c0a2e66f8c98c03ac84ed37a1ad093812e2d13 SHA512 186ce8962ba737473106bed732ba28bf248a876af9d6f6fad55937ce7bad19bfc2ba09c4923ae0ee6023bff5a69d8f248c96af7f308dcf28cc76cb419423c58b WHIRLPOOL 9e7553cc614d4a9392b95c1be12a38e4c869b6344f5b7eebb84383aa19fdc010dc429446129245a6d741c33659cecd2e1e6d627359a52625e721bf9b77fb627f -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nl.tar.gz 1226600 SHA256 f3440c4d3814d1c5c3b9492e7ba71996c73ccafb0bb7d776357339878e5bedab SHA512 82f3a31f9b4550dab52980123ae1314fc3b1db5ccb6877f0ba75b61100b69316744634238aca66ff81c4cad156647a666449d7dd86519470927ac2c4c160ede9 WHIRLPOOL 8364caaa17448427acc7afdbd9982242d7739b9da9acf131c6424e0ce1a9082d9bd55069b289785d7d2e3cc315b1611618bebe10d10ee3937b7b9bb0978fbf35 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nn.tar.gz 3425852 SHA256 338cdddd64fc9265968fadf8b52416b0c300ae0d353ab93be2c1077effac4a09 SHA512 8cb1bf37f4cfa02cea31d19d00f28b972f6b695d56f42b999d74a2c595718e6d33014a00a4bf78f2234ab5f3b025da0add03eaccc04ade26e17e013023a06407 WHIRLPOOL 85edc1bd8e7419d0978dddee1147381e09e0b3180a63b4ec47787c468902e1558e00ba3b421bb0b4d90fc5d60d9e7fe0efccf79ac6aba9d25822540582e1ad58 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nr.tar.gz 432699 SHA256 8bbd65478d41e2db4ff4fc3209727a90b943c25d2ec963af946f81dc2cebde1f SHA512 2d07406f3617e55e28a048ca10ef7496c4c880da335c70de03c5e1df01ecde19a63c05bc1a74750724b596340b8078065c588dfe146e19234634ded063234fe6 WHIRLPOOL 75af3033ff7bcc0e42e8397c571fe7695c218ee14b4f43173d054eef6ea442261aacda40349d91d3475ef3dcacce8a5a2bb42c1ce29b3f0969cb03b9a607100c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nso.tar.gz 431330 SHA256 17ee5349ea06beb04294c1a3dfa2d01bc23d1070226270f00c93b05d069bd563 SHA512 e2f26b3fe681e9364b4fee1170d8c4d88e2fc8c9087db9d1a1b017718d51ddad1a4f9f641a0715841dddb1799b5381566fb1e86d54e5978f07cdbe8a5ffd39c1 WHIRLPOOL 7439778a0472beebd9cb7407c35342a78625f1c222bb2d35bdb17288f31021ba6909f39859c81e31006eb7dfc1ff76b16b8781345b96b9ebb6c52b8e72b872c9 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_oc.tar.gz 637756 SHA256 303ed274e358d8214447f3d37e7b28abaa6a9c2607726021e82a0e7e4d2667cd SHA512 5d4101173f3d129550077a4356c3fe3e8ea7cd0206541e00680803e00e6a68a19b4e914c2008ef9d6cf071cdf2707ec12b0e34e822fab17fc885c3d9e9205534 WHIRLPOOL 1dece901e7f252716c7f40964c3a430a8f0f37b9ffabd3639d6ab15752f03f93ddb4c3d00a98cb56069d6f1b7dc01a76308d26db10956b6b77520b125da89026 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_om.tar.gz 426497 SHA256 f558863076846de93b982b62630dc1406b773e1d9844e13706abd3ea1dce35c6 SHA512 08de69db89c8aead7e4d29e43a89db0c42e40c1a0fd9ea3621c65abd786f406b109c43a8bb1c2f7c2ea20f421d0c732299524b7b9a2f0853e1bb9aa18da7c78a WHIRLPOOL d6635a80e3d9a8caf74f0947c1f77442d0162ce14c1dc4fa8123e4c53b95432ccbd7ec90dd3034e4c6220eebfcefef8b0c8b24c26b9ad4a276e21d39b23ab39f -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_or.tar.gz 490748 SHA256 c73a40a26de0dd36f2f4aa71c222c7fa87b7902ba52784fe69257aec7324f20a SHA512 dcb4efca1c0a98332024ea9fc21cdac58386e891d7cdd0cd2efff7b88691c577d8391a1f3072aef53baaba1f3e47ef33d429fb18521cfdaaeabd1f54eaa2be59 WHIRLPOOL c0eee521fd4372bd793bfd1c4918bcdb2d80cc8f79b047a326fce0fdf5e9cfec55780d32133947e55146aaf2876458a3d1fdc94bd86514054bc0402202786dec -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pa-IN.tar.gz 462761 SHA256 4e5e3030a09e526d336d37c04a1b8e7bfb8e48805bae1e49059af242a79495f7 SHA512 d0e296eb05dfcbb4646e26ad6fdd9266305638b6b10d2ae6c5122bdf906fdf4e1cce1d44cc80157f03b2a33404d0746a541c48155d2c77defbfc36ed38fa2a33 WHIRLPOOL 538fb07c2d7f4f74ab9daf5352b31f94ad9f6570f875335db7149fb2a4c75153cdc56c04db1f08ed709d7f237021427ae876a8f903eb93c6af97d6abce410e50 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pl.tar.gz 2794671 SHA256 56b3f379fae992efaf28306f6dfe3542fe2f1ca374e957d8b076b4bbe7aa7f2f SHA512 329bfa00e236ca469e5f4f7ac3253ef00b807afeb05c52cee7051d812ebc16cb94e263ec8255b320071f26008220df976125987f12203e87c154df48d54470e2 WHIRLPOOL 3e31dc1d7bebb9e1aa5948b872adeaa4f2353b8c4af6a30192de32aab92660ac8e3a0bd66dd70d5d64af0be473865cc5fb1f13568620946e9c8ef69a64fd1cd3 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pt-BR.tar.gz 2517196 SHA256 7a7c5b7c5de0a8b5697e7c137fc027c1acbf6feb615aa7dbe70a3bff1499c860 SHA512 aad41e1ea615f3e102fafacb0fe9b7deb04fe4e2ff7e84c9dd15650e3e4d86e159a39898f3136a5b4b7f8d3ec20b899e026832ebe9f65d889d27ad3da22d8cf4 WHIRLPOOL 60046d5189514a85a607c127f90f498b72186c601f5faf6dedd194f5aa5e0f05bda9c86c66638ada8d84c225015956829f3f69534e0e6563beb3d606d91197ce -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pt.tar.gz 2071026 SHA256 3985349da3d5f41e94e039195402b5a9395f4ee0714338f22dcc77ce369c1fa2 SHA512 240f6cfe06db6f437578f9ee2ce6474628774745deb300c41353853a6752c31066ec88b31a0d6386c06fb06738e320d6177115da53b73ccebc9fe75475eb9632 WHIRLPOOL 2eee9eaf602a8509aa4a77385b6197acf961b2e44735429d4d21103ceb325b119b893589d3d729c256470ba51131605b3ad51e0ca3722998097bac4aed71d58d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ro.tar.gz 2305264 SHA256 ae368bb23b4c9875c91c2abf8510cc0463f750fa7e2d6e90823d615d0595bb0f SHA512 d07a6618c1082255e1d9765c6e4eb6f145d8ce2108b0592a8d8ac4c6b87f4c77c784883aec8b712fbc66062dcdda2645e11b4ab28a6915375d44b571260f48b6 WHIRLPOOL 6035877d20d7d09822461520fa930d490030c24fff6336c6ebc0d01a74e2d591328a2d2e90de6308a20506d9f279b9e67562c766048693c42c1f005e78ee7d2e -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ru.tar.gz 1592815 SHA256 ee53da8b0f722381517fdea0acc5d6da6820705a4a262ea342558c9c45a438a0 SHA512 be29ced218fc16770adb3f0e4ca5807aa7c1627ff26226f5d6bc7b424c9192140271087b15c5e96e15ee3dd0144ea5368e1ceefb855960c15af13366c8fd2676 WHIRLPOOL 5124153b6bc6be1ff71f939026242c792f2a2c18a55dcdd4fef80f55b9111f6d7e339cbfff3f6fa8d8feeb5584fdbd1141bf3e0326d286a5167a7a365dcffb0c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_rw.tar.gz 427781 SHA256 ccc18ec68fec5c60f6864058aaffdd6a00da4e3feced5c6df9b2ca748375ce13 SHA512 6e50d7f01390f37ed73fc1d96785ed98d54b2fd5d3c33d40aba5a8d2e52d72ee7b3c6a865ae7cd5675c8b9e4525a80e34bb975bb6d44e956ed9062ab60d590ba WHIRLPOOL 04b117e8a9680b14f2d9ce5a360360bce7bcc268b1f2e8294ea0e615b9850a5f2572a6ed998b26afb5daf3faf1eacf7b906b71299a60c019db0b70427cdcbbab -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sa-IN.tar.gz 475639 SHA256 2a54031cc0308df3867b471d559d1ed61b4a10b91bac59870536ca3a1756acf8 SHA512 95b292c27500b7fce62eb2474fb3ca4c959e80d02663eb823bc047819dd1ac6eca4a2b1ccc9eeb3f68ef55ef4e57385a8dfcb9a50151f674db625643fa5a5871 WHIRLPOOL 71c39b49f4db1de0684471c2bf961a2df2017a217aab8d33fbb3e4a97bc9f6b6de27760cbcf47db765e8fde40d1a12225027e0795772818789088633fe4e7440 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sat.tar.gz 504727 SHA256 74a693afbfbb9ac6942488d47811abc9588d21abd9cdfd9c1dd614b2403d0cf6 SHA512 f9e274ed5ecdb08eb4032a13b3c9b0654e2ccc6eaef5a4598413db5702d366e93bd6027d231e03ba1d30f87d9cc87e8d2c3b57c25079fe740b2710b054e64aef WHIRLPOOL cb01c0a24a6ccccda0d4d9a8d4f7d7b37071036ca3787e09c71afc0586ce14f8e59ec8ae371acad77bfcc01e930614348b5ab7b1ca5c59c3d370f23b9760877b -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sd.tar.gz 468705 SHA256 f9bd7068917858ebc24031fff914d51ab856663237d4a44eaca6cafb0e889ada SHA512 c6002feb7db6dfe488c48044722c54a3cf648d73850f96362ace902fb6d41432a3a31f06486ab3a90e7c0d6ba254b821f3ba01300c8677705df97c20dcfe465d WHIRLPOOL 3f734975c6fb94dbc3f15a214e409f46778122936972224164666946c52ca904c7f5dcd624380c0de331dbcc6e1ac7a0ab9ce7840420c3f688fb2d695f53b5ae -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_si.tar.gz 757970 SHA256 6f4fc840d900f02201aead11c1724944827e89a7992f0bf1e7028e60d9975a7f SHA512 6d88d3dfe6e24448305f230584d7045a8405bdffb35a54eeeb05b9616e69d78f0d5503a0ac520c6511025a682546a21510bb5baf6dc3333039ddb4156050ac4f WHIRLPOOL 8c94a98c427de491df4b57138a702dac4724358df44dc375ffc42cfdeca23ffb23ec33089f51cb894208ab26aa3df7b4c2a98c21b9f1ae11c778a4767765909d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sid.tar.gz 434613 SHA256 c561f3fc90c71137ffc9f92f6660dad303baabb06450d4320882c1afbf33e92a SHA512 43f06a873904e681b1140ed8efd0c5c7735dc662b437face178f936c775ab55f0acba07779f2cf6ae0bdfb5c16e394f01ef5c2e2dccc5695e22ebba5d1dc7ea6 WHIRLPOOL 0b2aace7dcee5dc355c2036d55dee357b573cf98f579971e8b23868f4eac9ccfaa3fc2309b8d0d69bf870b0c08e02a7963e576fd27bcc40fbd33566848472e25 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sk.tar.gz 1725846 SHA256 135eeff9c471b07ca4ad30a605ca309113f1899d0602a7eb9f781d1b7719cd36 SHA512 96489cfdc8c14e0c715ace1f120f0e5ab3e52841704347232ed824aa21d31ea6bef8214cf2a6ebbee13c28f40d8fd9562365a9748e94d7a0ca05cf9530328468 WHIRLPOOL a807feb4e776f643e1cacf3a600556b900c37ca4b7470c3b5c1f3ae9d994eaf5a179e9e45c2cf4c1f7e7bde99a9890980b0a53e8744fda9a73cccd90b3f3a53a -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sl.tar.gz 2104004 SHA256 91c7e8a2fc37f253c0b559a50bb5160f64be1771776abd5e2941efbb32d0bfac SHA512 5d11d29adc6e7771ec5673889fa30948c5be9fc6d52dd3ee714a43c9c9a7d57433dbe0076933e9509b999b095ba18a839809ae9a920cc297e67b3ee0a5cf784b WHIRLPOOL db42c253dc7b44161968fd48c1b4809973a80e6196bb7342135622204fd1c6bd95bfac2484b836f4b9b7a9b7ee1dc17d01547f2af9bb0b87a556b3d69fbd96ea -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sq.tar.gz 447245 SHA256 eadf244c5153b0397a9987bbf2761cd62f55e962205c720d59dbb8707e75acad SHA512 8cc57b7f37f6188b30536b32b35197e4aa775ee71fc84ead095be4c2c714e4fc7ff4e3ea816dbf2741629caedc3b6ff1cf787e572797ec7a73acb52b7cf1a44c WHIRLPOOL 5f91806748b16d0b818c4db0289f53ab24563b62e8bebd811422c4c4def34cc60e7875670cf43db18bf661bf498939e63de2486d02825adad548e65cd727dadb -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sr-Latn.tar.gz 1597275 SHA256 34ac003d9320816ebc5253e7fde0e9997afb393fc868880e1bad2f456ddf5a8b SHA512 b1cbe1000eea18c28919a15a50bff8fbb426f8791c75bcaa215c9e0f5b70fcfc5a76b7e73e744cb67cbc5e658c05d68be754e6048ae5bcdcd223933887d880e3 WHIRLPOOL b442fcc8dfa83560b3edbae78731baf97fc18df1ac26e9f93966dc7e754a86497c568a6dda2b831d673a75e9290047d744b169a45460fd616b40a846a0aa8c90 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sr.tar.gz 1616105 SHA256 1faa5ab4ccfe867ff51363d292fb6697fc527cda6a9f989a19bf62627d53ef75 SHA512 26d63eb0e95550f782bff59d9694dcd60aaef74cf6fdf53e06111497437d450e47e185655ef62d1c860cd4563a1e3ad9b6ab17c362dca3676b1c750ac5f7bf92 WHIRLPOOL 5fb376927ccc8a916eb9a4a39908b8466d53700cdad5adefc6e463958a88d489040d91a81021326557628ed10c07562203da6473acdb0c03395290fe8fc68540 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ss.tar.gz 431361 SHA256 3f838d3bb44f15939eebf9e9aa5cdda1446513f5bb389ed37d88c3d7cfde81bc SHA512 71cfe5c06638c57627b8705ceed1a778a05febf209ee95c839f5df453850711bcb0c8607fc56d3f038ffa2b7966c726f1bf26243c16895a20c030993a8f1969e WHIRLPOOL 3bf65fa7e6bc46577a81f7ff65a71ab64c967df768204e3e5d708f475c999a81a7d212b3433161b56bd391ef4cc51b99786842a818118d148b93e12593236d79 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_st.tar.gz 430748 SHA256 07a0a73b431c9ab6010c5eb0672ef8e0ff4404b512095035803f9280dc63e3be SHA512 d3d8b86b5527083e951e091ea20da15fe53af45e7c6c5721e20bae84542bbb3518ccd65b6c3b6f95a28a10a034e5fc15d48a36ec4b9e37b95b862513d0f04a02 WHIRLPOOL 2b1ff75e5c7c98fd227cac11aec56105c2b2370c65f98eb449029151d73390a623fdef68ad50353c4d1dd44f9ee03782e4be35b72538f17aefc40dbdd23b7166 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sv.tar.gz 2313295 SHA256 7844cc68208d7b98b90c0b3659814adc6e38b3936e820543f59ab42fe4fed5fb SHA512 218bddbef22d426662514d2ca2e8b47fec9bad8a08785485941199e31f21062b9fd749543e4d24859f314be18f4d707baf0a2e2aa4fd2683cd5e9bd9859b507c WHIRLPOOL 5f79cb3944d5dc5b6741cfaf668e45ca8aa8342f14974cb978c39788f237577136b54666c69a0869b6d1c07b14100706bf6b36c26bdf62563bda433900334947 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sw-TZ.tar.gz 420748 SHA256 8fdaacce2724232785c8941376fd60e4cbd1e92d28f4fabe9b2789bc14b60af3 SHA512 342ad76c473d7212cc349abfc55934f40fc40900905bc363637dea8a4b74faea43391b6b51990ac6f40e89e1f0a6a5b58be8cb83620132fae208358f2f30e8bc WHIRLPOOL 07bf07267da0d1b97612c393a152b5111a4470e04397fde34d07f18d39e69576d0d75e938e90879a4cdb9f37784e16536385a01534f27b2c3daab868f11b50cf -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ta.tar.gz 490367 SHA256 fd99a41ab347c078ed2abb4551d787ee06e8e6fa651dbd11f28446af446c26cb SHA512 3c2eb3539e005cd08771730ffab4e6dd5da88de2676ee063d880ae6ca43c44bce37ce795a43e3e5a6ddcc33f01f643221a68af513947324422a35be168191cf2 WHIRLPOOL 023340503368ceef0e46120ae26589906b3ac5e3242ac64bef4012e09514af6dbbf6ad83a8a5d819c769ffd222852acfa2f53c7f91d01363b796ad83f8b6f2d3 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_te.tar.gz 1040000 SHA256 39ba4e98d9ec3b230876e20097b0604ad950683e4dbde0f8448af111b8d3ad9f SHA512 ca2903fed232b563a39ebdb4f5c9646b3254ceb8b19b5b04dd57129952febce888f03352e714724456d2eb66146085e6e0d0b827d923279da9d232ba1b01e41a WHIRLPOOL 323655ea4e7d3e19adf9c61515d371c0ec79066f596cc0994810310af3674f6c7dea3f4b719e3d53fc1a30e8fa253d659aca57dbdc2a36924f14ae0570399606 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tg.tar.gz 447636 SHA256 6159b927ceafe2c77768c218968b8da786c9639e4d21b29f03d6f877bb9c5492 SHA512 1732d0d6e59b0dcc511a0431ae78068a6b6b44318159711e44a62b5e99a42eb2379b70b59867e6fa851dc241ac23beea248517ecaa6a96c4a0454b8b827673e7 WHIRLPOOL 0b58fd7a2bc3a5811eec5eea7cfe311e688f436b9ef32392c503fc0d371f929f394ef667c9cde0423bab438765d6ba27b8216f0f3ac81857fab4114ee61da9b4 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_th.tar.gz 626633 SHA256 7a5808847f76a66f4b6d8efc5c15cf0840156752c8391e8b45b107c3f92b464c SHA512 3e1955958d508ce111be21658c3e74dc98fed13c03901edf4f502dd5929f8ce60abccee653e6ba1a5cf4011fe2d72ba638c6e18723f2e723432491e8e619e8a3 WHIRLPOOL 76da2d18bd06400a72a18d8541872d4b0bb18e7254f630afa75098dff1e397cfb7621c90e17b678ad73384e8ee547a5759352bd43616d0e2f9d5d052db24fa44 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tn.tar.gz 422675 SHA256 842b55e2c04a9a1e1e0ffa29c2baa1710cf77633803cdfbc41c9dc429aec9b1a SHA512 81697147b24f1cf6769cd58c6de0bd3b415dd08d7e7e2c9a240d0df7fa17b9c355b046815316a5e982ddb2f20f20030f4b1c7e801c372b894220d67e7c324f91 WHIRLPOOL 603303af68e8231bd6787e1fc75d3dbdd7976588c6d4fbd04682b03bd2c61d0eb8fab28a789e6721e2e8cff4a08658f5d743f63425e5a225ce0ad57d34693b2c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tr.tar.gz 475953 SHA256 f60bae2b1f9d2eb0c3c811ffc57b0447119f7055c68284316e8a5ce9af207e54 SHA512 13634ad43a1fbf2c4abf96e8441db8be85b8c10e711e115328f3d9b87a77571c716b0f77468767968d6d71cd701829777a7da31c1c1c6bfeaf315de58b068300 WHIRLPOOL a3cac60f01775b84fb3328e83b48e7738f1f2b300c3b1127ead565e1d41825e2aecd442968c84db84a106b99a284ef00160bc174c5e25620d063409819132034 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ts.tar.gz 431217 SHA256 495422f8a23b7337fcc43774c07a689fa61400be754e2bb69aa5df82b4f68970 SHA512 ed3f8dfdd29f3aac45255576457fd02bff7581fc9e36a73678b9d04359b5a4b284f855762c313614acf805556e7e9742d55bc6379bdda8ea12b4a5046059f7e4 WHIRLPOOL b1332e69906a431f11aa8fda8251ecebefaca045b2862ef444a8f005bb5f9e224bff5f7b5a2040be7eb98533e443308ea4aa90f35a7166c67be0d34a58d1153d -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tt.tar.gz 428215 SHA256 f5646ec8143e02f2ccdfb167a019747439eff36f8eaae0ca68f5976d8f2c4eb5 SHA512 442beff9e28d10a79d9bdb934273a8cc9cad71427fb40be71a5f04ac138925023304e12cc7fab93deba71f8bc83e600a9da2ddae7b2ca4f95a983861eae8df30 WHIRLPOOL 1f1923b0c4d8e7ae6c8b71738c4812e3d07fc60b67e0c9ac9ecef4e5f0f104759cbd64b22068326eceb0f7e7575b851e5281a4769c588797c0d73a5329c089b2 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ug.tar.gz 466054 SHA256 813353ac8ed7ba335a1213c2052b45c9880b7ba772a0f35fa03cb9e868004db6 SHA512 984eb9ed5262119e8648fa365ef6c0b1243c463435812284818010b40eec95a3923f89dce37f0bbfca1fe48ffc17a353e3d73e723d1385475dcb1b51dad77581 WHIRLPOOL 3000878f07ab66f8d869e02eacf72453dd9455291b03a8552df60bc7ff8d164a013bd40be0fb08d984354da8602e631884ba18b6c217ee7c2bf63536def5c6aa -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_uk.tar.gz 1314659 SHA256 ae8aa138925a2dd992b5fe28858246285b8982b1009b398cb2c3ae0e06c179e9 SHA512 d7a975baccd3644b8a6aad6e3ad4baab8e778048570e79b896bb2769ef64a5efc4c63183e5eb8d2b1179abe9e116dafeaae9d71c4ca37e4fdcfbfd51203e3848 WHIRLPOOL c59ea118491ee32dc044cc82ea97cf18c3e332e8457c5b9c82c78655f7e60603faac04286b1eff79d49b12a26dd82d5d83200e394ed3f3c52fa75b299d9e2194 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_uz.tar.gz 426114 SHA256 0c4ebb29ef5eda178ecaf9f4ffff7728fcab03e72d48f33b30ef05e535eb6b41 SHA512 cf2db9c7fd22c41808375f50b53e3d6f9f9a55aaf74ce019c305a7243254fe646b5ce58ada2be20097de006081d5972b94f7a6fa2f54bac50958122198da5af4 WHIRLPOOL e65dbe2a83fcc76de078d8ae0fa5abf5a7076b2f22a45c8716f075db781c9b5cf9f81a6d70609af56544ff67adaef00c138e713eb9c8045628239c52a7b90601 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ve.tar.gz 433664 SHA256 88244ef7d54a5ad30f1fd276702701478c7d15f297cec01a89ffc073a5c862f8 SHA512 2851a088265faaca0c4eb64d7b68a91d295928b9e0416073a51b45738edd2025167cb576cba4b527d6b012f975fff88979509b65cef39ade2d5b0ced3614b463 WHIRLPOOL 4839006c15f336516931f521f42fa83c3a385ea0bad5e50115b4a23248dcd48fb1372e44872856a211b777449d659e4e2cf576897d9f69818bc0f34b39a38006 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_vi.tar.gz 466607 SHA256 1c652e3d791baffef8b9e2f48fb838524c7a1f0287681ec04c5e212cd18bb913 SHA512 56641de8503d6d491a4252398464b44ea3aee7ade3a313abe2298783e86c524958333b726edae430b386a5bfce5f7b84ce5a409bec034f57545a2e675624a1d4 WHIRLPOOL 600b602163bc5a985d87550a89f9351433569e89dfd82f08e825e5f7c5a77fb4c9e6ffa88d326e44f947f0eb6848fc35b0900ebc5482a526bea7d7bd8b41f142 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_xh.tar.gz 436853 SHA256 3e981e38159ea284c5caa970256760f2ed20f42e46f83c0aa1052a10cc9cb63f SHA512 10c20a571384e1221bb0a6dca75a90a09160c6ca4b63a6e819952d50f62a6dad5a76168ad138db77d9c63deff27b183306e03d0394d4af6ecdce501b251ee3ab WHIRLPOOL 002432a510164bfcd781711003311baf7171b03a7590c8551873c443f6aa067baa6cdfe5fa9d4f829ec8564fac8d17f8717e08645e09bd7b813f3669c261e981 -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zh-CN.tar.gz 516270 SHA256 5ea92a28caf50ccbe4d457abc819d52aeeab6e129dd1f2b48a0bb13f57ea7e92 SHA512 39c7a193a5179165ed12ff224dd27813db05aae9c431f1fae0956311326c845f79c07d88dd03b94ab5d156e946c41ce5363e7f8f4d47ffb39faeb24898421588 WHIRLPOOL 7e25d4df5c069df16cd1f852b13948ca772837961fef3c4cb3ac9348cbe436810b619f636eeb9bbf91a9d966b733117e8a2b3fe0bfbb4747904e9530b7c22f9c -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zh-TW.tar.gz 515308 SHA256 b0791740dd985f747b30ee1dae1bd8a060928d751ce39c3903f735cfbbc50bba SHA512 94494e7788077e1c0fb678c399fc6bd0f1de4ccd0f018e35430e349290b9b10dbf669d99f41d42ada1c27ed467d61af210a4fc90093466c69a3176f5e294008d WHIRLPOOL 99a372acc32c3c306072531576cade419242ae8981be460f4c1ac5e8ddf19fba59e57c2e47faf41b0be7cf5a10fa9dadf6f8415cb9d8da9fbc4325dfb491b7cc -DIST LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zu.tar.gz 440516 SHA256 d584ecaad2c92df106e08e9538473c2c06d0ae45d01061530e451cc6127cb943 SHA512 dfb2a516b47d432ed9f7fcecb15a76cdc5cbc25dd1f94529f48e2e18cce4d579be3866c700c6dff54eef766c4044496324501e0b8390460b00653a0052f74fc3 WHIRLPOOL a01ac6026b76c24138c32725489c10af5eb37f9786543b6903e16e484dc4aa865f9ea66ffd19f2ee12a7bcefc5f5be13cae9e9273075db7c2bc9566cc5872d9f +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_am.tar.gz 7942649 SHA256 e5d210fcb45b4d5952db50aa6b362ce6c783139abb68f28537be67611d2fecdd SHA512 87551cea3db60ee86773f981ded8abebefbf9cc950fcf778171b7901d42c15c8663b70ef9559bcd99beca525ca19eae52b6be26436a62134d9f0303223c22ab4 WHIRLPOOL 3c583407aeecb90762e10f9d3f3b24d32064b1752800785cfdc384f597b9b7fecf11a0e282c1aa1c235340f8bb12da95abeac36ec6d35e5b91fd01f0129825b6 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ast.tar.gz 7872466 SHA256 2dffde65537bad3728c45173e50fcbd78d3f2f304b3a15019a89d2f037746b69 SHA512 c460b96ff7d776101c135b9fbcf984c193144b16287da684b123c897edbd5e7537227aed7e0b1a5d11170efbb6a7fe3677048da5b2ab3494e99bafa9053e8ed5 WHIRLPOOL 8fa9d7b3558c034ce77d413ab2020405c5db7a7d417d61d62403b2a6d89984351dacf130f3209bb089e41a70fdc78afe6f1a56d329a05bb5db6efdf5784d09bf +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bg.tar.gz 8443504 SHA256 ada8b704f5bea1e714989bbaaf85d172f9abf1571c84ce126a1619c14a8d1827 SHA512 14b2835b61e732a6afd0914633397bac48cc0ff6654f8fad5501425b5d2b399d00acdcbbc19f42b71457cb55ef2164afca2087f6e3989cee02f7ca9818048e4d WHIRLPOOL 5119151ddc907ca04640512326be85fb296dfd70c0ecad8f06ca2417505dd218e038793969ed435cb6fdec28c5aefb729dd0e2f81fa7765a1c5bb2861a7a1066 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 9126865 SHA256 63e2fac726c413c713b5803bedaac1ebc7770d1fe132866390cec959602ea217 SHA512 5b5119d37ecf351e447ab2df38e3bc536050c8a1a9fa92eac3dceaada0731716bbcdc6dc48ad325cb4938a612b80529f6e5b4f22a937154da8e78dcd85ea35d8 WHIRLPOOL 7a5755d6953bcf8df37ad08b6fe325bd52e520f7ba2bc25e0c428e6de01d66dfb6c005962d1eb2d4e8ff99740ad36718807c871a7949cf89c56da6560c838ce4 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bn.tar.gz 9126870 SHA256 68dd13cbd4117b4f74b4b974e95b4816d691b3c87953e21faa4f0d9fcc1b78ed SHA512 f6dedbfe029a406c88f462b55bd30df10a65514705c3f80c4e0cc792da1d67583354245d83f40726c0b8f7f14c5bd4f7eb827eb9abf3ebe1dfd57116b29c9951 WHIRLPOOL f277e4106dcdf8ae528f4fbb1dcd17c76498fac581f0e0d7c40e77ce2921cc55e9ebb3e3389771d1a0d236131dc2bfc1ade901586fe948eb34b3e8912f22fcbb +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bo.tar.gz 8872890 SHA256 75e129afe6cb19da2329db2c12b53819dfe46626620919210f9cc719e3647b13 SHA512 12dc197b374dc994f0e3d1559826ce8d1366ced383203d5750ec754370d41a6723af9505cf960c60b232d6700c64233443b9326315e9aa6b9bd90fb5cd4365a0 WHIRLPOOL 4696f0c3c79bfb5db33a19c41a6fd2d3cd8dd585c8a29c64b2a3a88838cc2893ba5de15d1de08402362e402e6babc7eeb0d17136b769017ccf7b5abcd83dc8b6 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bs.tar.gz 7174821 SHA256 e9f56d18b85e904146df57b974da47044d04957bbf742ca98280f0dc273cf74f SHA512 966ed4800135ceffb082c96d7f0777bfc2417b5557b88de5c0dc4c6901af700a707d6b24dac454d9aed35c74358930c53d49630fb53dde744534e329c179aaf2 WHIRLPOOL 04cab49ce9a27b387aa5989838957e31c992ddfc21ce74fdfddf60c2cf7e365b52228ca9a898feed6d620ef66425dd80aa6e4113c9b62f98664759bd907464af +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz 8010395 SHA256 73419769ec6a871591733f5aef85143da31e63caee4b3488e55df137b707fd4d SHA512 77357d44627eb8c47a9404a7b7ed07a04313ba85cef729ed170d1956f1547e366b0e12217961aae3bd5b172f0750ca6ca4522904cc4a929d1a21ba5b4533d419 WHIRLPOOL 7a1d5cf40a910b4a53051274fc8039d953232e80ec3145feba1c2479346d40c795491dbd6e362717cde90ede1bdc765aeb15b7c0015ca4de819a5f14ac12c3f2 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ca.tar.gz 8046380 SHA256 03ddac310b66d77f743d88ab1aa5e030085c40f0b52fdcb2e170f5e5dc6b1026 SHA512 72e6cddc02c94b5513b9511f035a80268a721e23fa3ab06bb81d12cf49d21e0bd3fec0501e24c1c89410a697c3e93adce49906c69f3d49183e9793e8027a54ba WHIRLPOOL 26e7231299468818ded54fe716b908b7f167458a1ca8d295d29af2ba4160d56fcd70715e68b542da897a917c6b157d8aa52420ccbf98aa473625668d8abfb075 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_cs.tar.gz 7734641 SHA256 a6ebb7ab187383d3b87e699a667d508426f527cd5c8d715b523465378ef77f58 SHA512 bc5e212e20384c7a1dd7816200db5226a5e48113697d1fb85d95997a10520eb1ffc7bb0201c51e781d1947be3ec016a6ba2066451cc5d3c4e707f63cec1efc8b WHIRLPOOL 3cca2518c3e50828a6c59cb7fcbaaa96d7ce682caa258fc2e0c12bf25fc00b7d0973ddb81924cce0e1cd1586660243f7c1b15c69cad04560d3082db60c8729c3 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_da.tar.gz 7678952 SHA256 ed45ee70df7c2e69f6efc0f0ecc37eb7d0db1e3df59465f33f3137f07c801595 SHA512 7899bc4ed2f7071a3582190c134cec4ef716dfaf33e58eceb1995f5a68cfe3900d230b1f03a2eacc86992fb1e08401232ee4014824ddd9b8579988571242d7b0 WHIRLPOOL 3a7cc7210ed2908545684e862088736ad174345d884f487f17aed7408c1a41098fd7f15eebdda3c19200e95f61fc94c0968c58d471faa583bc871957b47980f9 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_de.tar.gz 8191345 SHA256 59008abbc6039809550caad08d314e3e93aee11ce07f4141fe980f8b435bae75 SHA512 fcd8ee2dba06b288e8d3f361dee3c9cd5271d343498188d81407f03cf994520ef8b093adc26369022a60e3dfaac00fe1522da8d5a17356e1646715f4eee8c2be WHIRLPOOL 87f30116a14d2d3ee072a389e8c355fba16bd9dba5ba940a05662095f6f82facd9de63945105721dbdb47a2472c17df368ba0da4a2e039ed1dcf6e16386bf1c1 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_dz.tar.gz 10257801 SHA256 9167de64b1c2a315f2874322cabcd96e74b6ef885a0e6fe3f873dc4ad97a834b SHA512 1e458436f469fdc04bc7f60a669c2a98fe7ff1fc728077b1cedae36285ef1aa095622fe57d8a78aeb2fd619614569031cb00c969287ddbd773feab27c49b514c WHIRLPOOL 37c155beca5e2a1f9e939c603cf556d885c7be694b9f6abd248950ae54e4fb569327edc156cef7f949ad22273864ece051ad98786509faf68431edcd85efdba1 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_el.tar.gz 9061964 SHA256 206d97d1dc4ae1ed99178d4702ae2f2d7e0152193012c75762295a10f276330e SHA512 bb2af259b38b64fe8f95c047eb5e0bac41fedeb5ca761cef025aae5e7f90f203500996c94d14ae77daedb1448679292016a777b2af7bf1eb272bc0fd6978a674 WHIRLPOOL b385618d59c91fe2553d3c6a65c94fd1b231a9fa5203c4ccde36767d733c667430725227a98c7d08fd109ca67ad0841203d510edabb33b744ab8e1e15b8a597d +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-GB.tar.gz 6513279 SHA256 d1434c2aa449a8617d1adf4c916331ca76576d44a82815ad9925d4d95d0211f4 SHA512 2f91d97ff1cbe116360e7dca44224fa209c07007d725c81706b4901b02b5a1a6591f6ab93e4e587bb02a95a3b65cfeb7dd2e80cf092beb5b7b54c6a58dcd1529 WHIRLPOOL 4d795d8fdc36f56b3da1b4047efe28bdfe03bc76ec49ddb0cce6723b5a224dca3e4e96bcbc5fb94bec7647ee8b4a13349d860f4297ba83ea476e1d2d38f0a24b +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-US.tar.gz 6550535 SHA256 ac089952fd43df7ae6a5028956949fb1828c36d07ef50d6a5c2eca599be4612b SHA512 ad0d3a50be99ced2d76e1044b141458c05eae7b0bc6aab2a7e00d35980654d1ddc85aa7d0be68c6db9bd37b1e4acee7724e6fc8da3059bfca4dc51b036428fbd WHIRLPOOL 803721c10034cfbcd760fddb94e137c2b7297d6ce7799082ff8b43e1bffb777299928f176027deb129c69f8ddb7af5c14e37533936a2875f16a73de20fb4b037 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-ZA.tar.gz 6495057 SHA256 0966dbebfa965cc0e238fd0eadfaceb6f5384e891fbccfcf6735a9bee36bad1d SHA512 059f2c23a935c2714a709d929485d3d46ed4439cee8a7f2a71a7f8074a5a285a9e57fdfe487174f737050191050c3ffd432a69b1c01f3cbf858bfded36fae21b WHIRLPOOL b8940b57dca1db7deafa3151eb1173c5947bcc07aa4700d4b556e34ed5a171a741b3bdb276b732cc988410af0206116c5bb0cd6ea4e7d1e417a3f64fa99d82be +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_eo.tar.gz 7077037 SHA256 ba4cfe6ec5621cb7539e3e61137493adaeb623e498312bcd8d7a4d0e5e28e6e3 SHA512 fd732d3710a5b99de3072fca8b0ad8f9616cfc290f7cc3d034544d097cefc215651876a72c33a8df0da6dd373061cc8094f7789dd14afb11d36cf016f05fc280 WHIRLPOOL 5e5ba8797a17f98a6a983dc16c40e330d35b181037d0b81de0033c5ab95c9880cd89cfc77085f2152d469df0df9a6cbee10f2d62470f5322f62b8c6f87378434 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_es.tar.gz 8102028 SHA256 c6e1138951418fc411d1b61b3fd20a8157a6f9cba95c9cfe67715b5dd66fbe24 SHA512 df049e61b29980e7da6300de50bf28bf6d3207d498448cb15023c456d6ac0cdedf9642f5f5a5c2107ef5695fa2a6c4d10d54d58ca11ce18baaea4663f0ef1461 WHIRLPOOL 3ebe99d818e4fcbb0474897356cf0948b26badbea2aedcc81dcd86e242035e2fe656cbf3320ee393988ef217aacbd3e89d368136d0a749c26f0480441c4d3f3b +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_et.tar.gz 7604662 SHA256 6936f57df18e24db6327e0e8a141ad127d94dd5c1e484dcd12617050be28b030 SHA512 da388eeed361299dc51afc4c1215cd39ca007aca9cd710886e72ecc4b801ba77bdf9acaca8bc5445d842b961ac9c67f43269159659766422725e022b6b52fff6 WHIRLPOOL 53bf30a6e2544cca2b724238854854a36f87b64cbb7794050dc74f57a17c73fb8b17e065d5a453b027e983a3e9c8fc49c5543337a4779e15f6e85eb46850883b +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_eu.tar.gz 7673136 SHA256 e7a934b515b87bbe24f13b2b3f8896c2138240d6b9a67482dac9b767071149a9 SHA512 ca9a11351029186531359c6f002c92513d4acc734ca0d32a623e4962234387848ebb7faea90a47a224a0fa1c64d22f870b35537af338eefe49a36ced8d034a88 WHIRLPOOL e472951865a423ec7d10037ee187fe883f3a1cb16aadb9ea7802d5202ad23a0b607482e32602d15c03f35e28d70922d377861fb37c9a39eb11ca8336b421872d +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_fi.tar.gz 7839421 SHA256 81f59f29e6a2d7d4c4a5adcd335e875665196b5f97445636612129f329a1cf94 SHA512 14d436baa87a0cfc625177034c1ff0a3656421a52e6d1e9e62db89e919b76301ac9aab52d4be4af3ad3eee205a01c5639a5e249af9d61061fa538a87c4dd2a1b WHIRLPOOL 5c272227808d3680c64c8de3604539d5e80ed45a617cd0fe351028bb30fb20d50dd4e0edb71fc8c85078e37aa2a9af53ad019096fc5587eeb799d58b690b7f7c +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_fr.tar.gz 8274444 SHA256 ce4ea90d469b81ec76483689c732688f3316e2576475cf6e7f1a16c31d4dd8eb SHA512 de35c5ca79a4eb5933dfe1166b2e1970c4016a4441c8855be867c4fb0003d246ce7f146f8157352dfccc1168f5aa97c725e554b2a6f31506e4177dd575c72dac WHIRLPOOL c320e101a8012fe3546ade2b3367830f22d2d5302148dfcfd0dbaf341011d6b82ae1b14001b6df4d2beba9eaec5c3282be8f8fe7ee60af1f446cfe375a81afc3 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_gl.tar.gz 7762588 SHA256 a7bc650dd5b1c2c9b661959fcb03bfe3be578acdfc6207b4fa0d5605eb53e312 SHA512 73148dc5a1b6a4ffc73529837759ac453002a1e602bc96ac708e579461dc28e2eae44cb2c2837d457572abe709657ee8bac68ce5dbb39e727c6de028ddb518ac WHIRLPOOL 1280d67871567fea5be09efd7b2c12c244973f7e99b958c4e6a8fff8b3473e4d1112be3f5f2970c3d7caca56f8e4fcac1ad1ee0dbdc12683c6d4c5d8f2318b35 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_gu.tar.gz 6709494 SHA256 ca94f0fe54f04558e7335881cd26034bcd9d4250e41aa6c73ac2c7c0a294dcf0 SHA512 7d84ab1a56215efc898bd13d18f264aff7c39af5f4c36cf5825e07e6a0db5e9cb444fcbfe4fae73e915235fe97a316bb803e426263d1e25fc73c0dddd911fda7 WHIRLPOOL 45f43bba37166cb1ece236e47f8842940558645f15b5cfea37005ba3b2391a388e74de57d933b55e8582404de0dda98796ade645510be7c9760fa46a7e7da8dd +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_he.tar.gz 6321026 SHA256 848cdcabfb02020eacc115f98161d7024eb08deacfe785b55aa40a6fac64bfde SHA512 491b8f66cb9ac618df976da4de6c229fe32fb39e477ccf575f63f6f35ab2ff1475fa246ad9ee2f18951f7ae22517109289627423031f75e027acc9d06993935b WHIRLPOOL 5d990dfdf33d3f726d0308bc6585d409198474f8083f697e5dc693f6bbd58896069ed3ab87193ac1805dc63b26c0b6a535af4ff1453504478075daa33c4e4a3a +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hi.tar.gz 7360311 SHA256 b3bc76dae3df9a9765c8a9a1ec4da0f6ccf2148b3d329d26b3f7bd7fecd2b8f7 SHA512 fc2acf6d4c5509ccd38cb1a9e1dbb78508946b5cabf28c226af9850438c85728a5ba0f85cbcb6f8fb9b86d53208eade08f68436e1cc7057774796a8cb0ef7784 WHIRLPOOL ae94be61ce5808c75fd1359753dd9e52469929ab9b2ee99b931e288347fc14893a73c921412cc91394bc2f7c749c989359e24e1f482143ed42a33f9b1c98a6c1 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hr.tar.gz 6863817 SHA256 bd0a6e4488f33eda5fdfdb51493f1eb046844b577c860b3e27db351f62af3ce0 SHA512 c0c5e9a8f151c4397308735b01b3f8429fd7b88d671dd2e849c0114f14962c7aae3c7eef6091f246cd5fcdb58ed68ce3645200740537c77a791befcf11810cab WHIRLPOOL a6913f6572b2bee843b863974ff3ba1f71049eb081961a96a03b0bbe7db9d63b8ea9eb9c9a374f8d3cf69363003d284934e89d3f2c1018bd58c55f10a5ec2a12 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hu.tar.gz 8151594 SHA256 cd743e3c5df37b6a18ae9d27dbb9f819e715278e639215a41417c75f68832fdd SHA512 f87b935b1d8ce4cd4075ed714d5f6cf598be84cfb08cfff77af24221b3a00150200ccc671f51c9d7c3270f9a02380b5028ff592734a541924e8323ddfc303811 WHIRLPOOL 1371d2919c8871bef91a9cdbaafcab33cbf919ff1c0dea8f3e4c80e74ba6de61df482b5709588a444a204fc53ace13b3c199c4ba9d8504d5c01fe360a16e3db1 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_id.tar.gz 6916650 SHA256 d901f6f4159720e0398c2de26da70016731a42be68daf01b47f7a88811c773c4 SHA512 229d31b5ccf49c9a1360fbac27edbf308302901f12a8608612371aa545e659f9cffa043382ceacb86ac4c4f213c74a1f0b5d107fd0c87c565c6c93c2f9121f92 WHIRLPOOL 340e59c29c74dfe6649441b5551fbd88a6b226dbd807d3e0b3bcca2567dc2c129f5a656f45f209a91ef58aea241f5e508721bf61497a7d7a22527c8f7dc55609 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_is.tar.gz 6994909 SHA256 ba2a0bf0130ab5476b752753d4a39c222105348186456bdbe838ddf675e28914 SHA512 ebc5af577d41cb9ebbd991739e7e586ae890ef7c4e9638de85184dd7d48829257fe0651dde778eecd157fa9bebbda935cd08fb8711aa722ad925e172d54ac635 WHIRLPOOL bcddc5fde63afe883bdd78ecff3e1da8d04a7d9e558851b0f489530fc499f65e1ee482b735759d9cca902aaccb17e461c6d64b16d06f4b25a73771e3b14714e6 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_it.tar.gz 8031847 SHA256 998e9d2f0fd19fe9f811453f00e2a97d8f1658ee25da6c8c41b75c3a2513e27e SHA512 c4ed707df5ada91de29ba03b5fed51d41a6dfc465aa3616a6284977d2a733c1f92573cf5d388dd129b3b5b48ac8024a957e5893ed4bb95f65e509fc19946337b WHIRLPOOL e80fb8497255b34720f9f65dd43a21eea94a98a16cba9051ed6a55f60e305efa116fd0f34e485e762457fdb6bbeb5106b5f67f6af5e1fc6f5358cb362eaddd25 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ja.tar.gz 13188024 SHA256 454e1d7783a4d5f7845945910bfe4062c31a653cb898fef3d9d79dd2693f7c85 SHA512 6c322afbf7205914f29845831324e06d5a66731e4d19e242128c69cb7c0a6808cc07beabaa4b1cc4777979a9c36bf6d27630b41fe7dbca9193debe38b1604d84 WHIRLPOOL 7ce2a32aa21c10e785f8598d581879433be2e398be9184386aa2efdcdedebdca8475f573f1251f7b6901a06a695d1edb980197ab0ee79b47d00caf4833f2713e +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ka.tar.gz 7158102 SHA256 b0a71a7bdfa0d21174f8dda096fbf9f3e403edbb156fb36aee7ac092eaddd49a SHA512 3b68988175718fb35099133ed9e6728ea7119f24c949c4e6386a0e0b7e7eddeb51d3fb71e6a61dbee8eabcd7581f6c23a2ce278f36e663bff80aa761666353d3 WHIRLPOOL 8e23cd9f1b0cd5171e57fcde653eebff1d2481d6b407d37304a323216f6a64254136e6348564aa12de040b151300f3dd4f9736d7fbe0e7539e1b05901a7301d8 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_km.tar.gz 10320741 SHA256 e53e3adab08ed455cc7f92a47ff3f4b37c6b8cce33709d6ed5bc55af5f87cced SHA512 09d3b5fb9fda540252d0cdd2f593162bbbfcb5e9422fc6e2e3bcb5eeca9a7a2383d3c480e8d552a0e33a0aa0bd9a046df234f396cafee6b74a6ed56f36a45486 WHIRLPOOL 8a98e77e14c44a6d95218d18c30cd90bbdd4b3e444c8f12a0114eeac94ac4f6363c521afa162821254edcf50239f638072e6d33c59ef4efe865b3994a82ac098 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ko.tar.gz 9396473 SHA256 1a38d4ea141203f491f634a7c4472c0943e3664c11c0ee9375305416251c4a42 SHA512 a4989eb32c5554eea8ca72f575215285ecca7ad773f973b66f5dd38a4044b589710b24a06449694c2f63ffb7dc5fe486559be1ac82d089ba87e05c636a9b5f76 WHIRLPOOL b5dae37ae8f28f4cc54960adc9b7da6554e0317db1695712235c10962761a8a61b08536d046fcceee191a9bee8c49df676956ab0c3db659a24817b6b1201885b +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_mk.tar.gz 7374318 SHA256 9d8e23ea9b9f24b37def922ee5babd90a1678e019c7d600b42d085e47f6120f0 SHA512 a7c8d4e75335ea523d1228324bee87d3227792d2e3f1e55a09a9181211223044c81f8535043ffa1be97856ecb35632e8c0076fc4f9c31e1cd167c478b45282b1 WHIRLPOOL 8ab4d8532a2ab7018bb19cbeca168f41ab6bb13c691ebf0b1e6e0b1336d1e507d4cede0c3e5a7c085ea48f4b6f39d05278fd7dc1c50b5fc76fac8d3dd4932e64 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nb.tar.gz 7728295 SHA256 f02b78d727b43c483d61c0cc36f959d2cc720a2bb8da134175fa4131be91409b SHA512 c112a6c64152424de857115568a502a98b2fdf638b3b00e34c7345ac62fc3dddb62533398ad6b7ad7437b2d565347bd2260eefbf5388e5e05e4d8880e7dcf4fd WHIRLPOOL b9c5f594df4c8a5d69662a3d102193570aca8b52ddc07736de04b308716bb0067aace86420e28e792ad0813d46c8b536c6d45559c0e313c164510f77e4042f8d +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ne.tar.gz 9750890 SHA256 818d40a6f43adf04df3fae16d53d0f6a1e88e1182e6cb430a45c686f617bf3c3 SHA512 ad8481bdb55676319a20cf50f357b9247eb81c84e6bcb2cf87576db1046440c3088007594e0851b188dab984e641ad6f60280dd255e4c6b98a950196edfabcb0 WHIRLPOOL 2cd2aba13e88cbdb6c8588df1b4f61ac3e37002c227602bc6a16c958cb3e09b19fd009889ba42e5a7526e399281ec5a6e3c49010ca1fe801bd05d5418945b35c +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nl.tar.gz 7834515 SHA256 b78e1297e7bdc9997ff7ec58cefa81fb1cbee7b8907b193701937e1414372822 SHA512 ead5ea351bb79799d002828617050ceae226c988a065bd3148da06ccda0d8da6dc891443b285ff9fb1e5bffac1a7ba25aa166c002a2ceb6af1ad7ebff545422b WHIRLPOOL 012e24a35f910f051ee60b706672c966087a5c64951e7a99c23120f30840129568ef22c9d03e34e25dddd113289357a36e26041f057a15330f0f1bfcaa3de1cf +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nn.tar.gz 7708758 SHA256 a2e26b665a68eaf426f19776ab8f5807848f1054deba7c240762e3019c55ee66 SHA512 f7679321287dcfcb981a319d5ed37a7ecfa010b09568c79df335cf9823306c112f32130a83e4bc34e636dbb450e4acaede8386bbd936c5c272cc738b99e217a9 WHIRLPOOL 188e5e2ec644403b44de1e4dd155f0041d173755c01e15f52bd7c0c04e694e21fd0bb24dec59d8dbeedd72c0be160e82ecee0b82326ff5c02fe6ffedf77e29e2 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_om.tar.gz 8028057 SHA256 f9db54baf4cb3b6781179aceea4cb86333a04e0fbe4b78e1d5c391294e99dfdb SHA512 01064fda64cdf0d7edf4018c81e2e8b2f6f0541b971b6d33d57be4a78b01dbafaaa74b4e86daf55e84e9403a22fca4ef88bd124c5b60c6b64e679c301e1a47fd WHIRLPOOL 64fea3236733a92d5e937f5eeead866f33a04d73a9c46a23bcdb0dc5be01e0b5790bb4c9b58db753ebd5bc86ff1cf5dee0c9ae4e52eee2e816aee45fc40f67f7 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pl.tar.gz 8169245 SHA256 db12bb8e808c90f69da0bd63260a2bd571f344c9262036751a240d983910fcc7 SHA512 eebbe3f80b5a762bfb441c35b6b20575f79c175fd0cf70e737574b807e5283588028ab31fc44c157ff28f2039e67bd97579baa7a18236340cc2e95084b0d80ec WHIRLPOOL 7f7553fd3b32873a2c32a7ffe94d153d3a9629cfa51a04b5808dacbbcc2149a47f39c3350ae6fcb1e763ee0230c0c78272e787a124d9871b33cd6c74d852c962 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pt-BR.tar.gz 7842556 SHA256 df54d47b0d5536453f421d0ccb5896ceadbc4628016520a021a32474ba7567fe SHA512 f2302a073a2260ee4ad97512f6a59c25380004242b77ca2118248fd1d6d16b74b5cf2fb47bd9d560cfd16bb1824c1acfcff562cfed81df04dd3bd991d9716511 WHIRLPOOL bd04f67c179c9921465d0585dd298f4ea0fcfae7e1f3fc3fb4ef6b9dab49da97e2642cd91687d4c51f011d2867b402bb3231dc9910c5c3c5c392eefb9795c699 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pt.tar.gz 7811705 SHA256 0dac628d30d0cae8e464ecd93f1153315f5da34daca3664eeec9db46d964ce96 SHA512 73b54ffef3955fb7eafe458d60a0df5f533a5b7195fdabd262a227a542228c844156c29e74c87e964eb26d167951180791882fab222a981b2037e4c477c689dc WHIRLPOOL a2701ba25cabfeb6dd01fb56958a1604b1197885c28d916788e9bb73c4bca8b4baf83eeffdf9800debc7001c27a0662792ff7c01b965f27a29842403ba7dc43b +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ru.tar.gz 8460783 SHA256 f39a06d6a1709bc58b98d866ba8b555548c1fdd2ad842ca280180e1c3eafcda0 SHA512 884c3f052d531fb54ed843eac6c791a13cbc5fb60b1a7b949b57fea2b426f77c48d4380fabc3330641bcbfb62f85943ea3e47aef4d69a1ce56acad7d7528b805 WHIRLPOOL b1a7ff451b27349b5bb12e7ab87b224754be800382d45477df9b1d1a101bc1b19d07a86b1d328d2fe6f3995502aa3360181d757657ee734a6d1a1fdaa78fd238 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_si.tar.gz 7249228 SHA256 d06502f356303ea99d3a00271c4ae90653a79c20ae48198101babed28d954017 SHA512 8a8a3f118dc540ae241c01b7e1e558be6deeb3f0e5b7b0635a0269082826337bf5746936ce8355c5bed8bacddf0e510fe4deeb107337f66eb15cff4bd174ad7a WHIRLPOOL 14e79dcf0db60ad3fce55ef4fa0fd5a2cf7f6dc00f6c6e92a11a33969428b2c42620c02fda2d4a9a4591bae5f8055acb4e5f6780b149ff3bbb9bbea0ca530847 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sk.tar.gz 7551387 SHA256 35ebcc2e228883ab14bac209de58b5329f8fab73c8c0d25609fa746c89855f8d SHA512 40149cfa3a879991ec5b1b2c45e6ec7428cfdac6193806b1f9d792097d951e9b1a601870d1298c19ffd6a9ce8281d1df3f03f45119103c78902afc21ca75faa1 WHIRLPOOL 616438b666739a3bd55cbc28fb1e7d717e955fff713b400e6773ac18790008317ae8c2f4b58f781d4404436ccc42e93610bc852f09b3a0beb1142016b798c9b5 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sl.tar.gz 7852247 SHA256 4a9202854df166567e35d4ddd78b4ede536c4db2af72cbfaad559faa9fa5cc7c SHA512 0c152bfbc0e4ffe40f10a881e450cbeb06616f9ba04599c3c305f0e284f2cfa703d5048b35ad24b4da7790e7fc9ca9d290f2db35659be84175317a647ef929a5 WHIRLPOOL f48814b4089e451cc3af155c90a0f979d83494ef90cc44b157d8923a499de912ee07260736ca8369e08a2086262285715ed95cbfed95d736b3f76457ef41faa4 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sq.tar.gz 6903675 SHA256 a99143152d6e71f2ebb975f588d12460e3d8360c36eac6fa02bfb9279d8179af SHA512 37c12e45972934002f754c1d07aff5bef49e72326e2934ad92d445716a41d36ef61b51ffecaa3cca47489c6891759292d7eda5c85ac317d549cd8efd1a0f9b08 WHIRLPOOL f7f58a16116b9248c761937ff7664268e5b35bb087251d46c4d39f68d6e779f4234e3619743090c0bfd0fbb94015fe0292e9a06aba1929daffcdc5e01c9facd2 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sv.tar.gz 7773824 SHA256 eaa08e8bf641006a62f4bc8a76a652e5118425f2fe1f9e67131f1bfc4b3edf7e SHA512 7571836f7c6cbf522bb7ce0f007255b680108ab60647acb2f6f67ba3d3e1e2f0270fd832f3524fc132f7e706560c3dcb43573f3053f2b6193ebffaa860fd594d WHIRLPOOL f60968820adc77a83b4649df62ce59abc5310b9824c33a41f084188c68d10ca78206239c393b207ec5fe3eaac2a3b39fb4b81f77b664cecda2a92dba4c2986fe +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_tg.tar.gz 7209988 SHA256 9ebbcb887419c680a378eed37cf81e81a4f680c57213ad5de11a887295d1b093 SHA512 da3faa3af32d9b7d07b88cde06c0c2991402220cc53c639af973ffea5f5d6e59f2733618c12f20ff0208d4a8f8ee9876c8ffbc31a502960bad8426db6c9a08f7 WHIRLPOOL 5275f733d8e3811e8a830d6ed0fe7668ffa67604943475efd52960fbda152cbf04eb13d8c643e6a538c8fac404672e8869c70a7d1e5361025208331cbdf2fb68 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_tr.tar.gz 7998336 SHA256 3e96d3f208c8f7bfa3eb5ec843dd609d367c0275a37b4a8b034016388450c9bd SHA512 d408a60ee9e1c2d44199ca2027d7f10768ec8fbd3ae148595eaafa10b016b74004cb44f347a3f2963e926d7a972d5e9f8ab284ad4c6b6b755c472f04bc88535b WHIRLPOOL ca26bcd38b6b8ea06dc6b4d290adfb5d3daf7d91425811f35e02bdbeab8998c9277f39040f6a32c630d349a60976879c62465f501f6854d6da69968616f46513 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ug.tar.gz 6901186 SHA256 3eceef474bdb974581222e1dd77140713029f4ed35f7b3e3c2084f9cb5e02cef SHA512 90c002d7b1231387db0b5f1aa7f0ef65a249b5611b377440d7bf330b404bd1d42daef92d65f13964b5745cac35b4b4b75e41c35f476f7a78cd804f3bb1e1562a WHIRLPOOL 6a1196066bd59fddca4063f090312edcd84e274c532823e4d618a4a878c7b7e50b33aabd34a72c5c7e09c62d1df2415bfa2b26604bb6f8df8e337dc795390643 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_uk.tar.gz 7897224 SHA256 49a8a33fb531db3c1012335a065ced1632275688ace43df866074596a7865757 SHA512 63b99672d61be669b3f59dd6aa6a5740b112a27eaee6be0fab35f25627cb159c4a19c0b473de5989df7d2165ff8e4fcbf6d06a51d9d7aa53b458b793779394bc WHIRLPOOL 05cf36aadb44b72a820240db0a3901cd883194e7b145004d9c73ff94becb33d93a5126c1e5034ba562f8620f762e1b3d9c244fc40219deb34ae98db6cfcc118c +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_vi.tar.gz 8157439 SHA256 46724deece0bc73a0ee449e44715ba55924ac4822db6baa20ed1e5496fad70d3 SHA512 93bb29749930147471f7a074f8d55df8a6084fbbd37c1151089894c30949b7a406192cac93547c7dccd549dd6e4a31a45ba8c7b8a1270843ebcd21a4f10e4906 WHIRLPOOL e2a7cba6318c4887a13f61fe4e18591e4b6938086938256ab095afbe9b0f62f2623cf05439ffac9a8c0ccc3613dca686c0972d9efbf37efd7cd6e1522a975952 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_zh-CN.tar.gz 10730696 SHA256 25448c02e7048c7e59573e58df75572fe7f2275e1a5fae5631314bff64af8443 SHA512 6cbe01556c6a0566e543ffa162ee487df272d4d5dd7aaf159dd2d8a81e066149ca4d8c9713fa94f9443ffc0a0e95f7c6b4e01a11b9dbde2901e5fe2c58b3360f WHIRLPOOL d2a4e038f7b94a1b766ad27577e81da8c55867921035682542a8a6a9ecc0e1ce6a5aab8d6674fd2f55f3bd44fbdef231143db74551e1c413bdc5760392701ba9 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_zh-TW.tar.gz 10693860 SHA256 b4cefff347631aa58defe42a4592c0a0cdc11d0f6a4b1054e2f1022dab16748d SHA512 02a30935988164361fea0bfe902c2dd5f0ca8516f5ba7dc34f54389114181d8883ef4ee8ab9ccfd71bdf2e71864e18f5849733bc092d89325ed7c42fac6f45c7 WHIRLPOOL 393a1422585a134f641fbad18a2efedec849c52722c791bbe5329c1f1d17be2e355eee55ce9a6d4835b129fc468c2160a29688ada3afcefdacb76387f41ab7b0 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_af.tar.gz 1055811 SHA256 abcbfaca54de2f3514a556eff1f71a3f5843182741d1da82accee7d3a6f266c9 SHA512 d3d36d8ca075258046c8a69aca76f78c06d8ca4a3986f746a5b86a0b918d43b1d0c0ed5a32e865280258fcb8c8da8f6c89c26201f99dede6eede8f4325a44c4b WHIRLPOOL 745f4250977e4b1630d81b91336542dca9e705ed01a5cf86e2d759b334c89a546c04e185d42248a232ee8fa92781b737a93b5948d7b6ecc67db9bc70a0da650b +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_am.tar.gz 465828 SHA256 a64dd05ac6525f582bc32a11384f384ba56001590677350784b28dd04215b24d SHA512 4f129a570a48b1be900e5561db412ced19ac4c3fbb9e07f87fbeceae4352f0ab5a867501ffe076d9bc198251d6af4e391365f4acab6e7adb4753a35221b935a8 WHIRLPOOL d15c1a93a5960cd3eea045e4789fa44ca820c845e1214247b6b3117da4ce7fa16b315f9cf3616cdffe438d841cb16d27e63bf41e9046ba293f34def2706773b7 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ar.tar.gz 2205766 SHA256 695767126f15b8f12ed8ca840994fc2e1cc09c9ae92b3d0c5a27bb947a831a07 SHA512 b06751bc8e3a27e96581791d0ca83c762b7e9828739b1643723617f65ab79be6a138da95945de86711969e4f58a02d669ab4023ef449a2f565ed5c876a0ca9d7 WHIRLPOOL 1ffb7cb4ec17cfedca6e7e95c264ba7e25d166f6c7fd24b207674f585a0772da87c68c96c24a55a4bb3a7ff8104e13014c5b4c6d62f5e24317aeda72379276ae +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_as.tar.gz 482858 SHA256 ae4b1577b253ad9162117e37f1de8364bf898020cdcdfeb6615e0471ea0cc8b2 SHA512 3032a366661e63f26bfd806753ef94c87e138a3b8b0304183367b0c174659f60f6b23b4ef740b8db33fa0bfd292bce0f59af747639a10d0744c37122f5557efa WHIRLPOOL fbd65df88586a22b6b767b3a2e56712552e1f9ca10c03e00efbfb49048fb56ea6515b5bd9308aacbccb66da47958852df080a7200cbfcefe03879eebd265ba70 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ast.tar.gz 443398 SHA256 e6c5a71e366cb436d556ee5af1f9558cc430adc0fcb8844c5ba1446b92170128 SHA512 5f196eef5cf58cc44a69e4eea9e3c7d7c24d141f8900dfe92cfc0b90e5ee76f07166021ac0e9542b2942fe7511cad225a80a8c2a45e30dc2e502103b6171c89f WHIRLPOOL bdd8d41515d73f066bcac9b8031ac2b5d112e1b1e9df9d06858494ad4e5567b00351ed6157f897b556b3e21d2bb77468867df7f801698db5be25efa6e5122dfc +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_be.tar.gz 840890 SHA256 adbbcf463063ec5a86e5c6e63e862b38d5d29796ce4a94d5460e3a0722bc91fd SHA512 fdc98a22830b2919ed231b07cb03099baadf28c6206b9d00e0d2e069823e023cc9d43a38408d99237971bc966ca9e1adcc6d706cc3ad8ff68f2aafe56eb7171f WHIRLPOOL 170ced501fed2a26636ba238dc3418c08410ccb06189e334b83e2915ca9488af742fd7a1018f9773f95960ce5977dcb537a81919cded53c20e501609ed6365df +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bg.tar.gz 1903190 SHA256 f5a215d9fd5649e6c6404063b232272d2cbcb8cb7a85e53055cbb239ae0270af SHA512 2eb06f0cc2271d2fde7be17a7085c0023849e6102e9e1a8462e65390408177fd6e9e63a005f075541c6103f57ca4e7fe62d11b21d64dee5de52ad7764aabcd7a WHIRLPOOL 1ed752fc5e6e5561c1e2c2ef9d01a10f2b09175e452cf0e488ce2e93d126474d68a44e5135c004fe4132cd9141a2f256e69c96c990df8643a0b647ed427736fb +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bn-IN.tar.gz 490244 SHA256 d837fce7e219806a064220ac7d1337564bd924916e4736b7187a8dbe6c6d732c SHA512 e5f1f5374d9224fbf4089527fd69a5db4817fe1895a76574e1dc2b5dec6695e030259aa7c9e893bee043e2dc230a74c52b63f8a56bf97b5323f5f09da8d153f3 WHIRLPOOL 5d54e332c270774ce599ec5c65facbec3593be88059199b1f9976ae0f68d76e226dace5307c5f4c20328b8063903c04ce7b54b0d2c89f5f2562252f5be01fae0 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bn.tar.gz 836402 SHA256 612364947e11a9bb7f1de1b168a06d1fd04251f1330977a6b546f23a7b22df4a SHA512 8bc00a0c3922d4a946677fb0b99fa5b64a27019bad7173941110612b25f39cb441f3f172d0624d0308670f476b0942da83464184d51423f991ab15dac2f13c9a WHIRLPOOL 8d77ab615485020906084a7bfe7f3fcae789482e6f5abb737fee90488de18fb6cf1ea7a430e680b83876bbe3175d6b2ed0444e5c2d6ab40453f5e69d7e0ea4d6 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bo.tar.gz 473547 SHA256 8c8e63c19a61739511230caf70ec45d5d0081014841a44755575994458dcb02a SHA512 5ed5569fc94379d780e24216e2419460508985c169e3c4f448494d177885af57e2f1952988a7a1399e17a076b08c1ed0e85b56e51d3e42a7fbc088c9d7cb630b WHIRLPOOL dc4bd7d4fbfbaf77386c0c80200473bb18b9b4d4297d60006ca70513c4e8850d9a0564fcac99273facde87276bd7c22ddb6b241d46cd1da1f221dc78a214d262 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_br.tar.gz 1662501 SHA256 afca3087051acb77f19902d250b1c163a7f5d51ceab861d4d7426e996a1a5ecb SHA512 281d94325d923bbc7a1ef0ab1e57d5d50f6469734fc6ced37201e3f9e14a3cd8a24d4c5aec773c59c5b6f9305fe1c5e950cb9f626d882a4e6c21a25d0d1098f5 WHIRLPOOL 907f9ad1ea5c9584eaac5a0aa68967f766b83811866a7c5d8e372d56c5f03111edb3f4b9994356e0f8b9ee637613bb322b992500ba29280263917308d85c58d5 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_brx.tar.gz 450989 SHA256 d36c0f988f9f31b4031126aa0686cb45d647e70d4b0c1fbf2f9e3318e4130dfe SHA512 91184c70cbb53591583077730cf7c6f63377753315ddbbfbbaa49145081423e1d48a4cf7d9b68662c0c86c5d3e28b575c3058e0cb8dfd8dc83b4482bc90484e8 WHIRLPOOL 60ed4668447ba6c4bcfc2f9340379455ff677a69b5732c07b44217c06b40501d147600081193d86c0a7a780cdf9312788c5a62a1505fdd77a91921f9ae8c292d +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bs.tar.gz 557612 SHA256 33249b38c4ec9b702a6198b5330a9d0a979bd4950c233c2061d17fd995e2d428 SHA512 11005fd44dfd211e5f16ab2ff6e3d118f16c646bbf6fd7330a9659b5f3d01b53e630af0929a8c7aa6b949537210239b88caa24ed9fe1a875057f8bfbd0e27abd WHIRLPOOL 339d6478e0b933114caf727ccfcf1bd013df34c58c2ad22366475000f8faf33136c59683b8de085472a615a2fa5805e49085f7ba3ed5dbc1dc5bb6ad2eb58392 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz 1715018 SHA256 093f121a0d48b6219ddbb0675dc575aba59adb0091ab75cb3e4913f92a5c4a55 SHA512 4ca691fc66650d29993bbc8e4cb4c00b5dc535626717709f8002fc019afebf55bcc6af230fbf0c1bfdf767f9e6bc6551faf2f7bcb99d0058c3b0603d25002dad WHIRLPOOL 574f0bb4826dbd83ecb67960494a8a73e0eedb0b82f9f2750f18e9837ff710aa1dc8b74f23571347680e71fbc7d5f1983aac239827d170efbd9a863556e61942 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ca.tar.gz 1716527 SHA256 3b9ea7d2cb3f1bf856fa8051005eff06211d12c78fc3a706850b7e05f430db43 SHA512 d876c4597ce702b39606607c92e49cab66ceb03bc8afde663eda3c13db5d58512b9718a25446909beb115fa178bc1444aad8983a6d242ea183450ba438b42bc5 WHIRLPOOL 76b6f3ce6d7ec2b711e0810c16a39fe42b446b7b7f6eaaf59919d3e312d57218a6d0d00e5f451f53dbec00369e50b3e5d3217ff42788b3c276ede531d157a93e +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_cs.tar.gz 2883658 SHA256 d19202c039153b91efbf983277010e34606324450bf25c9683abd223fe3cf058 SHA512 e8e552c3752c8f967ef26d03e958bada7d2230f3041b2cfe72f0b2cda0ba8e6813d76f30f74c34b9aa0f720121a90777976ff531b0352bc19f9df236b5d3bebf WHIRLPOOL 8fa087bf4c6cda3e5db7f5125b331482ea40e90045ee3e2e3733e8fcf7043584f7300af80cadf94f32968907c5e560f1f4820d58967c55936b106a7d6efd115e +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_cy.tar.gz 426386 SHA256 fdb5437ce5b78a0d993bea2497bc51ef0059033697ec25eaff3614b2d72a88a0 SHA512 a5a7869b5d45420a7afc55fa3e3c5a0ab704106102f381b26133a641a094fa35e56e56426560958b48c324e353e5428ee386ab97c5ae7dd416440f1176b1b89b WHIRLPOOL d7df31a0a508e01f8f8dc5a2fb742f0caf7cf3dabe7798e347e52d7de6ec076108a78af61f2c78bf31310b590ab581df190da97a69bcafbe8dd139bc8d4469ac +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_da.tar.gz 2329646 SHA256 573f3db8c97e4eb1caa1c4b615baedcf25f80ec227feb12bf73d38a70bf1948b SHA512 de4514818c841712b22555474b37d9bcdf68e9368b2ada25b3e9635626ba43df2c3d14269a1d9a1f0ce0638696259f51ad5c99f03bfb23719b06e05055bb375e WHIRLPOOL c10499c0a122801458d816b4dd7953793c0fc33afd99e4681014d2870b6211d33fee73a9d35dc415ea07d951beeba25f73f2df98f96ce5d57446c1f241fce364 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_de.tar.gz 21457044 SHA256 60609fc8c627ad3e074e535d59697079964fdd76ec17b0bb8afb416d2c88f9a2 SHA512 496761842108ab88f96ee17e6fbd083468df9614d83b92adb5319d27b31ab308f052ed5c481318fb22ed5cd8e98a9520eb8e44fedb6e5df5310754d9d1d6805c WHIRLPOOL 58cc7c5d4e6ede85dce35f99083f4deff90bb2440178de6e65df6e670f186c98811fe084db96ed81faf2ce58f9b983b4174f13229aaa586b2b88ee6a9f39dba9 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_dgo.tar.gz 479017 SHA256 fe3907960ed061ade7b389c4ca0fb20dfe9a4738f32f915d4c6887ff36e0d50d SHA512 4ee62faba30a11e0246c378dcd767f46ee8d513b56ba7ea484a111767d3fa474a86eba7948fc1b6a36f7dcd9778045fbfa6952844159e6bb7db8d38fddac7d78 WHIRLPOOL 8fba42a7c8f20cc4e6804c2bcab80c474cd5418151bf6b8cbf33865bd2b5918ea940a883f7e038b271ea5f6de94dfab24e8c463400456b69410658f63ab55549 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_dz.tar.gz 472173 SHA256 42895fac0a803900d745978be038a14384f049cc194325c2a32de39e868e69e4 SHA512 15031e1454e44aacfa12cdf158013633afbba5bc07eb56090ed7cbcfd4a0bd725564e46401fa791baad3a6e9744e241142ed7072537fd89ca1aeaab4d747341e WHIRLPOOL 9eb41c46f529481060d0b6e51f57f0864ef602eedc5173df25872b73aaf3d4317d936773ec4c278145fc23b2ad6332bf6ed431880c4489b4c93a8f06f5c76612 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_el.tar.gz 2520607 SHA256 63c406fcaf65dd331919a493bc6c13201d746a963108a5d1e1f6e0573a6c9c8f SHA512 1c96f797c1e5553bbbbd24d776aaefe541dd4e5bd9dc52906ca5ee430b9d73ec6044e8023ed305862ef01b4f0a9e0c0128075437b7e4b9176e5e28d7fc707c1a WHIRLPOOL 463d87e8f8bc40879abba28923d0b1e755cb1ffa2afd295d34d50b9d9af077eee10cc8ee8168d87f92d365aed1cf2dff3d69f53b00f0373707e3575bb44bc63d +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_en-GB.tar.gz 6962987 SHA256 9acba242ec627e79e39ea149d3499180d78b663e5ec22959c95f9a95ab007f1f SHA512 0d3eaf438e24dd4ade31f8a536e59edecdae90ae2dfb46379adef7a2cd6800575b61923b71ad003cd42273b4c7d4a814599e2105a67de0406587617359b77ae0 WHIRLPOOL 2aacbdb3379dc5744e16e20c7717402d4ed548a06c477e67a0929f0b0028bf90d0e670fd9be7a2434c3b8980f2908fcbd76d929ac7372a0b55c9827b2c98c12c +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_en-ZA.tar.gz 6878065 SHA256 2e4e5c385e1bcf31886271d403798b492fb51defd34836d2cdd891c3c6042179 SHA512 488d83e5ace8fcde3cdb2b5de2e7bcc3d539140c3e69eb711e575e01d9041a581fa5f924f6f75ed15ecc1a22916fb2b3387c2d8068fdcdbbb418156b63ac92e4 WHIRLPOOL 6ac8f0d1583d8557ee0d3cdb6a8bd7ec150abf11d41335cb16e3f3bd87782400968229c7aa9807f773f89db0a4b4761b76a147e8e3cec7a1c76441dec1d2b3e4 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_eo.tar.gz 422555 SHA256 e23af562bf5f5079690cb803c9d0de5843ed0182e6f0ecccb23b73427ff848d0 SHA512 7b4d4dad2b15e8fe056f14c236b973bec6ab683fbd8590734cb76f6c5bc610cca2213b70c037ff34edd568eba92a8501d1fad7867a063f6a5695ba4c6bfda830 WHIRLPOOL bf222dac9ae69a7f095ed97981901e6b6b9620c6c2056511ca4620895ce8ef07b4903c0c748c13f52db38c8d9363f717788f0f5b44f2dff53f3ec0713fd16ccf +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_es.tar.gz 1922492 SHA256 837042e6f56c1f3987b36ef5467248fc8909dfcfbb744883f8eefe48dba79263 SHA512 3614e7b1e952a8787edd058ecde1a7e9075b8899ef6956c288df7d6056a5a792b4b7dcfb8fa4e1083182eb048675a4bef234225d5496bdadb31b447f8e88bb97 WHIRLPOOL 0b35d74fbd836bafca614e9452eca50d66f6554682412f9e4a24a0ba16703eb6a1eb3e1a5b083d385dbae66f2ffe93d63a6b9faf6eb2d0705c6749cfa4ef7836 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_et.tar.gz 1333866 SHA256 64b2b4fc6bda2017f781d523fede031ab00d1ff382aa4bc090214268ba3fcf41 SHA512 962793f3a5e644b4dbad3ddf9f0b95721d89150a063c010463aad0666144c4d7a402050c7bcdc1b30b4d2284eaa089c4dd4dd1f5502663e473063f2086ff571f WHIRLPOOL 2fd0ae98fe397d63b5a19ec6cbba7ce25d1964a706c54e3892f299ab0a86925e97e643805e7b777bbfd7a5672150ce32c8dbf7ff5861fd32ecd563270f647e29 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_eu.tar.gz 429687 SHA256 b68a940463f5fc70de2b6ec4a0ed060ac334818f80cda1006d692c6184a8f99c SHA512 500764b5e28e37fbf843eac440502e567086723a343d87116685b16c7769e13406a760eb6ebf309aec5d128f40b552613976b2e40747ff349d07832f5ca10a95 WHIRLPOOL e37453fdf8162a87fb8a829337dba02a9307e7ea74cd80c667ebc2d70455cad2f47c7e11e7207f1136a592975c7fa9be4526d165cae41f51b84f486b25fbe33a +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fa.tar.gz 448867 SHA256 904a1e6ba57fe5e40c1a11af9c17782c7aba40164e18bc6c05f4a5db2f36cfb8 SHA512 795793815bc76d3b53d8f1959ebd5507f4486bfa6028cad65d3f2e29b8b1c57afeb0e61cd5cf61be99b8ba3101f5bf3fc6a9f04ed0426526202447109bfff1ae WHIRLPOOL ea106a6c8b00dbb7664951c5794503780d3160a9ffc84cd8bc6fe4bc43457291f8a086092639fe9df80c6550b714209187acfc2959a61b28683d31f05d77712f +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fi.tar.gz 436649 SHA256 d530fbb1bd4684e30b0df452a1b35f0db50080acf70cedd73c77a3c99550edca SHA512 6b7669040f4024ddfa24fcdd6acfa2faa09ea8b13cdc881f099d42b08d0264d2ead924ec5ab660c56035cd027c17d6c03639a1de4bbd797a3f7c6fc419aacd0d WHIRLPOOL 5cf0d4428bcfd0cf206ad401f2233d4939796a523d801af85b314e4aedf83efafae20a76d8189493b54ac7bbc95aa506853e5444856eeae61b8e512b05440b79 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fr.tar.gz 2731907 SHA256 b2b7c1cc2b2eb7c39cae28589825a6a363cda641cb16a89edc5ec984c77ee994 SHA512 b67b41d09a03c6402395539333ed30b2ab9d6da5754cb100138f1c165aad7ec9dd47af64dfd1046e747129d1ecf6f14105222210c49840fb22650c1a6151e917 WHIRLPOOL 08c7bdaac5bccd2bf488e91d969c1667236965d48125a12309d0692f6a7699e502837a1a00de01a6d28cf55640744e0229a1ff050b56a3bf72469d275953a1b9 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ga.tar.gz 446708 SHA256 a648755eca2ccbb5409ea6c438254debcecf6f6673031815329c6fd9cd19dff0 SHA512 b973c78c03f5d24b5b81300d81453ccc8ac82c38e225d3d19fd9f298e2c37af65c3f2a045080ffe817af3e60e71d80fddb9f159ef158db902bab0adecc19fee5 WHIRLPOOL 460bd0594f02e4f56a7e7a31c54f44f5e6bbdd9867824936bd1fc574b5b83a67568eadf22e9b155558ff17dadf8266f0e7da52f15310ba126066d3e7c5b05c04 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gd.tar.gz 1480768 SHA256 7dab32153fbc0a84f4b46c577790d103248fbbce55ad261a7c29aa37ec6017c2 SHA512 2b26005675183fa995be394e97df7fa33bdabbfe432be679ef153720e7b7546c05151400d9170750099f37f524dabe2b221ecfa5655bc531b124b9185baf8bde WHIRLPOOL 56dc344cc20004c704d68dfa6fa87a5b1a007541c4fea2f2d3df71aa59a3a5158d855695bd558472a9ab1a37e73e5ee7afc627b2a39565dc8beebcbedfce6752 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gl.tar.gz 994690 SHA256 8245e9274a444ab4007d43d9313fa3a3c828fe2b656c4ab3cc92c49808375cca SHA512 deebecb39f7809f95439639b365bfc0c5d933154187036cd046f6a491d3dad4b84052b22cf710145a153b7a23c5e18cbe2afe7b2dcba0cd47f4f4cc15ce45ebc WHIRLPOOL 14b61a06ad8549d9e688018f47376f2544c702aa8b56949066a25cb11194d80b41ebdf4272f04c2502e2a9b31931d02f2c0b7b405706c135bebdd75d9bf22b00 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gu.tar.gz 1127629 SHA256 60ca6e01fd70a261bcdc03c5dae8da5c07639476ef8adbeeb3083e80682d8687 SHA512 dccbfdd06532266173088ea52899eb64aaa66e6f8f08bddd1d8ed0b862a29dc7905280b5fbde8ee11d5db97665b0ca8e3ba6f87f617c4e07a29be662be72b2d8 WHIRLPOOL 687bcdb94a91780b018c08e4e33c45cb6fbbd43994e1113ca0ab11d93fe2e803b92987643c14c21a5e6ad28f0937919ca89a8a9e1304d0bb5b0d7078cf813a59 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gug.tar.gz 445844 SHA256 5913b1c8b0f6a2981c1d7847d1e1d6b47a2706e18621a28c5dd4f2fe21c627f2 SHA512 33615bed856c3f8ff6f2f696c55e55da3fde7076d9d9eeb6bfef2ab56e48fac77a02f8c164295c7ce036515fe8da660460ac8b199447e1bcc851255bc6649dc7 WHIRLPOOL 5eae7126dc8bf0427af25cdc5914be1a4dadd46002fe89ccab43da276919e489674ed2c58594968290bcaecc2cc6ee8301850b10572c7a4652d6d2ae88390cd2 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_he.tar.gz 1536086 SHA256 168bb1cfb238cd7bb40db9790010050bf527c09259ccf0f2c56fc55f2ae698ff SHA512 dfb085f5ca74e8b4a9218b5439138300745bbbc27498d5b8aea5fa9ddd031dcc20c5ae1c1bf9c13f87fed38816f20232dd9e7f66b129b5605898c8f587704372 WHIRLPOOL 9f9385c44cc2f04aba737fd2d29bc888ed92ab47862644cff5235362455f7f92e5c5ee55517b72560176bacadf27cb4cb3fa4b7e79d9098473d28df4d40cb08f +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hi.tar.gz 546905 SHA256 bfaa823d03ec54ed503c6342086e5ffd920ce280d6b5e19105dd2500f8e4e5dc SHA512 7a2fd86c15c29c31b2a255bab5e95948bc9fc4594a8b4bb8fa358537ab913aeeb78aa53840262ed5259b57c4ace7a8049296fdc4fd313fbf73bfeda33318fa31 WHIRLPOOL d52d515e7aed10345d7215d78b2e355e3720153cb32de7731beb33cdf22f62093ab91123c6e76a4367a5472ff5c92642b11f82c0f12031c71b5a54191ede07f3 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hr.tar.gz 678838 SHA256 8cc2a03523513e6a1438f4d476d4ca48b49a9fece039ebe76833775ea2267110 SHA512 533f26114d731de6c11da4327e86c9553bc7d7f6f44243a5e061649faae002fdf6b34865b9c68a687e0b400046f7c298ba6426c8b733f4185c6d7edd6faa3afa WHIRLPOOL ebb1bd9b505a75ba302439229571e80231273a92a8f05305715cf4a2b50401d65d45f83905d120c4960e1e4bafecbf681580568582592fdf220f87d27b04359a +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hu.tar.gz 2658579 SHA256 d23f98f0eb395078be038ae027c150443dd20544f0e341c9830edf746398041f SHA512 5eb12bf86a36ec08a522bff47a53ea88a266c108de7e11c4c1bbda419da557cd325a55b85c933ff2cc70dac439f916f38508d7f03a8a60c65a780242efc065e9 WHIRLPOOL a63100e07f0f42f1ae0d9ee7f422211412e70b69b9b6383b2ab835cfb1e874fe4c6f8964201ee13f03c6c451246446ee0b3707156b8e807c5d8478dc8b8bbff6 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_id.tar.gz 422793 SHA256 8f60856bf56cea8e1d1a14c7f901e83eea8f1dcad00ffa4991c9d3ea500e7b40 SHA512 2f3615d3a77fbb5e71027881930c824b34d64eb8b523ef157b897ba71c3bf1390cb12b4a10e80716748fa49263fd1efd9503f14299587f699f62f7b444ce1296 WHIRLPOOL d58d32ecc09cc2b1a0d254e8775cb9f2e2584e71b70544ebe8f3f4240197f25f40e3b6a9aa101d76c5923f641e157744b8762883b811b129ceab952fc3d8102a +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_is.tar.gz 1233403 SHA256 731942a654074c52c4c2f6408a1bcb4f9ac90cb17998b82f0b39306fd3b50547 SHA512 a5178a450a97f7ffc4894ed40c5169b89435c35806d3df5d218bbc59f6fd67aa5c373186ff8b81a9f5870598da16d0d93c08489f3c00b030e05a56406553a83d WHIRLPOOL 1e8f3daac677f5390bb9720b746eca8a64d88978c7758f6372bf7c6348106d1e37e3ccc7b541370b7810cd5174d6440fff40cb9ca597cfa1fc37f635097e572c +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_it.tar.gz 1768576 SHA256 59af13d2b18eafbfc343aec8b9d9702836c60eacca62e80385da128a08d078dd SHA512 d5d447ef153401e8b802a20eb9422346b8670d1ea6c6f8ee89883d137f798481525ea92a86952a19291608be1274655c9743e6bbeff3cd3e03af26778a175ae4 WHIRLPOOL 64bd022fcc4c67aa826536f67275e9272090c54c2dc59d4b3de0044c2b70079a538d934597972caf34ee4b7e7cc309e26367d453f1edf8c0c900d51247a3a9aa +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ja.tar.gz 531043 SHA256 864911c9165cfca7cb3a6f161de8a8dbbcaa08418833c13df62540030fd70706 SHA512 4dea93d1d3f81b1cd4f95d8c1e38d2ed91eefdac746701032c5a47c8632c92a4788364f5d0592b63ccb28d77ab10d5f3b03a92789f56a5d8870fff03f7150328 WHIRLPOOL 10cd5a358e2b023eadb7bd163833b2c3340bf300bd0849c253fdac5dc4382d17b73225598fada1730b908c2d8b4fee993bcef935a5b1e3726b9c5bcbdedb89e8 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ka.tar.gz 456773 SHA256 1cee9b7bdf77181c025c1b7b20072381fdd309a1ca5049572f7f8667c240b9ab SHA512 87c8cad155f33c87b8fb1eaa1bbc8b53147d9c026be44f3cd42296d298e8bf1fdcaaef386a844e84fb4af41f2b11ca7070cb4089ad026b77fec5c8b61074c455 WHIRLPOOL 02181611947a5b1ea5ac695028eef9daff4baac9a2d882322ce61aecadcecdcebd362290da25a2f18d03a0c8ddcbbbdc5b0af34ddd58a867adf42c0e34d8a581 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kk.tar.gz 479299 SHA256 c7c936a100dd6d76c3e1f8b6ae1a2b0caa3147941e927cbb3266699689a54d91 SHA512 b5d5a22a9a0b913e381851e2e3af93121e1e6333ad6b39449ca77b4263ba169092e5e5836fbeecd3e5eabe9f0f9f52f8becd666bde8a70bec34401ce669838c0 WHIRLPOOL 68a6d071722ec4fb8749343994b32c25ff33aeb75ee2a9bfb0568a8e06d5343a59cc94bd249a3bbab0efb3d41342ce99ff1e9bd1046d868e141c875da664a436 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_km.tar.gz 579499 SHA256 ca05457fd905765ea1f0aba4c880b7d5889434f4b90d210c5457a1bc541a1b8e SHA512 6327cadef62a65e456ef3a34ae9b58228b770d8c101472f69a012a04948649d242af9aa86cce3ff7790a957889f08ee1905f99f3c816b34d31a108553f4bf2ed WHIRLPOOL e77cf9a17b2eb959d4e6bcf662df9f4260372c665d81eff6c660055bc2ac887615593bc4c28235217370b24d791e7fb47c46e34e36b732709dec8b36c5babd7d +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz 434285 SHA256 1bbb5230925df345ae246252a954a9e23ba42032e49dbcb08399f62db3d48e1c SHA512 f4464e9fae0db2a8c1784c22ad0337d3098b4047322b1a29771725874c33b07f808b9da794bfac8451b1790ea37af40c188addafcbbb7b76da20eb266bb7501f WHIRLPOOL b5117b512af259e54043a2080ed0671b6c0cb7a34d17690885b792fa5bf7e094db89c56214910e4bfc4a5d2250e42e5200ef10aeb1305096b92b04124c550d6f +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kn.tar.gz 495453 SHA256 fe389a12430cd8b2ea20db8cb0b021fc435a09324e90163c9791131dd9e0e220 SHA512 a5598cd3a205552232eaadbde1238b369253f6a881a1d37f5ae4fda0ef12d5219dea0e7788cf2405d02ac00b04301225293c7a7603e9b76d35c9f8cc79ec474a WHIRLPOOL 4cc91bce8dcb9957399d170240f47831a35552e3743484ea469de14ccebc0c0286596d4406c86921ce27fa5cc0abaf0f7eb43b9224e4eeb65a34cd61fac3a746 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ko.tar.gz 528720 SHA256 5290ef984e39f8cd16a2fb21e28a375af1483e2af0e4c553384ad12250d8f3bd SHA512 e27ed718741032980c59b54e2b0b8beeeffd0c4822122286f5564d2520457106c615afe1e5056c83406a22027156ed2017a27eba501032b44746585eeafdb85b WHIRLPOOL fe2e49c4b3e36985be0fb54fa5defd212bb860faff3cf41bc7c3268fa3b19a7ba39e5c593f68648335b9ca810d580df4b552c8569b86f07f2791af05b0a06867 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kok.tar.gz 473165 SHA256 a8b23c8447fe44dbe3882d7c07de2096305df24d13e7e10ed1de134156b42875 SHA512 c124c2f2de9a1894a7ce99c3ed65b22cad81026ce96d571d3924a8c7ad527635b479f6429b0d8771b1c0160a835edede0c8902dd626f075dd2fe169b7e2a1aff WHIRLPOOL d807e56a9e8113612a2edd80cf5f2c67f489172afab0be0b15fd9f0af0d61530ea5b4aa524b032b06f75fb5dfcea5a37742486e4cae16bca082854e9903a27e3 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ks.tar.gz 451568 SHA256 586c3a2f78b5dfb64249d18add1830f637820f8caa20b7f7792388bb4e8bf12c SHA512 20ebc75c1c901b2c67d2861971ef8b308e813e22effd5394f97e78d9f30a6a93792e2cfa517a3e6d84ad579f940bfeab9c94ef903681984959dfec942da6e6fa WHIRLPOOL adef39449c1f3069cb80c1e32dc4fb7980deea05da1353c91112d95f5b7f7ebc00c00fc1a61e106c0912686b83722def25b4da43acfb56dae400a174c8990ba3 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lb.tar.gz 411974 SHA256 a34bed24c6495a30b90e86b1c8e1f093470cea52f166b6b2a6ddec9bce813f39 SHA512 f0a1e3c7d11ceaa990d10ba26816791a1ef49c20d9ea71150d9e8019347bc93e47fc639180681399ae0cc48f1ae0e5a3ee79de230b8de39b66bb7ab36fb87fc3 WHIRLPOOL 90e3a5b26c53f99a2c74e4e8ec531e1022fb8fd3911e3a4ba059e4dcfa665badec09f509ac7e7c0935de9b6aa523c647de7eb557ff3f8cb09ff029370bd22396 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lo.tar.gz 497062 SHA256 2cbd05633ebf14ebdd5372300face43a0e7f16d4cf98fd4155d0d3ef30775362 SHA512 408a6a0f6247cda55c9f47e5dcce19686af6fb815c71e42b753bde43c10cd735180bfe680eb26ffaad9135f9a77867aaf9bf87b717055920560e40e8833b69ed WHIRLPOOL 581ad66cbbe3a0518cc4a634d65486221846a3ef74fea0467743e05fcc43a9b25470c829068bdb19ac20b92315f45b5a01a652ec48c4d053d411390870c5851c +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lt.tar.gz 777935 SHA256 1244ad754c052f5848f754dc8fcdfa65a21834d4b6af2b005adc113755db1d42 SHA512 ae9d3ac2a0b664e488617779e16fb075c5ecc6bb19fa01b098e6767ee4931bae8e2ce1e800accdbb515c25823246f92ce4a05c76a69ae89dbd01f6f2c0ec72e8 WHIRLPOOL 7fbd2baa5c1c5f29a533a53d5b00ee364232c2b26a2a5b44f8bbe781c4b49c5fd0c947f2f09be9b45c093e5418bd161bdcc79d851ddc428d5e1781d8e1dda927 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lv.tar.gz 1194028 SHA256 daa5d6116df370287a1b7ae7983705c582775aac1515ad7380efa058d45f2480 SHA512 216ff43f2f77d5f7c1e958a0e3ced4ad7e0757ba799fa3fcc5b3c66fcdd2cb875dd770fb61aff5571595979c9f914fd1c65951347e58b0967a663b9c57e0d5d3 WHIRLPOOL fa68562043103ae696bc21e4b8a0e1fb719a4a999b8f974511d4caea74cc69ace0f15f82b6084a05991a4410f0088cf161e5db5247258804a19e9705f2488985 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mai.tar.gz 453562 SHA256 d9ef6d9840a2343fff09af3a27ed6b50f94d1ae84a004e14342a8f03fa2644ec SHA512 5693fa9cdb3dfaaf43c01ba1f9bd1903fafadd9ef974b51cc35021c7d19e633f89b9dbd825546202f839ef3d9fd85263a21a3b96e4c8970f51b8eb9754b4931f WHIRLPOOL 05e4a304e0d5239971e323f6a82920cf17a1305c9f3fe3de4afb81445f3a8d1eab8259eb0379fb53e9b9c431fe26f1c1629179debf43d0db7910c213a7d4b4f6 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mk.tar.gz 454191 SHA256 11d473119d2628d7da7d9e2e08ea12eafae29fd44d9e98cf6af72204d66eeee4 SHA512 ec4a4fdb32261093d41e1f2c7367cc7c518945be5fdf51adb74fbbd0581f5db01b78ae3a15f761336098fd5dd3041342af915f71090474193e62f067458d92be WHIRLPOOL 4dea49a6b21615aa6e43e6411acad6635a17a23df34c581b767445c33a3e2a43f913210e40defa5cd40191bf45c766a88d43e614569fc3db506c03feee217de6 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ml.tar.gz 494089 SHA256 ed3489e1fb504f76c77afa6079ce275883a8bedb7c6247b86ae9e4b75176f176 SHA512 ce847588f1755bd90fe67df4d21673af5347a1d3ca8f1b9490f82663ccd193480017f2c12fa51d3df64b0d8f2fbc3f9e57d97cd584db652fe246ef2ecb430718 WHIRLPOOL 7cb7726226a78d6533d71c5cd81ebd2863fcae55b1d412678aa12652278de834e8c45c294b3c540dd1a2fa14c79051a99463ab028e99404cafb2a8bf6faf8789 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mn.tar.gz 544456 SHA256 a3d2140bb4a9db5258466b06e8cc7e3d9b36ab08950d3306add31faf8438f360 SHA512 ec463ccc8a0db7a7a56ee4c9e5f132dba64a31c0aafd75fe8c76d3e6f3929dcbe4c808dc154ca46430f4df4d9d55343288ddbd8e3302e0376e95ac8f98e5a41c WHIRLPOOL b65d8f7882e68a960280bb7d3d8e2de210fc756beb94fd269baac20af9cd93ae4065a4b6014839ce7a8c05f35a1364d15bb9b9fed2d24e0b63c1ae2cfa2eead9 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mni.tar.gz 466457 SHA256 1fbb2bfcdc2b4f36d45910ab31fdfcdd07c33542296c628893e44fcfb9a15a02 SHA512 06efd4aed5ab087d00d345485cbc7dea02b0562f03bbbe7e602d1c212fcafb215a46646049a13436ebf27acdeab70ac4eee2924d3af0f57fca3096c1326a5637 WHIRLPOOL 2dd17a11e032811f3fc3fd93a759b63f0945ec0dec2cabec54eeeaa34a9260817957a37901334c036b1df02547b684074259cc87f5a8344bf8de8f28e026ed07 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mr.tar.gz 489781 SHA256 d0cdb9dab05e5f7ed68cac1cc9048ca2418de814b8c479f065530a31c0c4408c SHA512 8d00cff21a1087a3565a6e0da3473b43cf77a69a58962dd4f8f4b6606e53d0c07462e2588fc34b846b636a706b6dfb6f30b15536948c3ffa2e89b975b9899f74 WHIRLPOOL 761767365f55e42e50daf14ab0acb41c3fa8e7e26b3d36dd52cc010c580869962d08887cf3379c4a7c40f513a160c145bc3c375decbf942d21a33d40400dbf3c +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_my.tar.gz 485477 SHA256 8e40fd87df3ea21fe5e6d6aa017b66e8ce431f192fba87762bc1608729a3208b SHA512 f54e8e0de78d114ab068998a56b16e259990d00c065233826bb1fbeec55b01b297e72ec58f5d56bfd268db686ae6959cc5322d05369851aa9ee8a49810d3be94 WHIRLPOOL 3e6ce38068ef4ac843d99aed821365230af5a92ac0cd4d6bdff68f669902f2a5c245d2c29ab23daead5b1a0e54731c9b60a3a6c481f03019c2a26fe93d62db14 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nb.tar.gz 3426527 SHA256 6990495d3c6aa7b3baf78dae8af642982004bfefd55c14b36ba80edf59e0e3ed SHA512 6c5b5e4ff8102d7e898dffd7163a4b6fb973cae73b77ef82ac51f0e7c54905cbc2cf018d05d361c6e579a7d9d7d58b259b25aab1c2b3fb1e106ffd1d4e9342ce WHIRLPOOL 2663d63bab0b5fecc593e5639fc9428258c157d77db07504af375d2c7728e340352c95dd66ef513f83ad975fb62969c4aa413382fbf138cf46c3bf9a505f4e35 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ne.tar.gz 858018 SHA256 f27a3a5a8e5433e1d8e5a71b2df4cf96e145e399fe5a8afd010c593ce19dfa50 SHA512 fb7467ffef645cd1a209d1cae815e85718156f2bb8644dee8c6f3d9a6c759d19159cff1dcd43bc18475ad6a1e1f7af14f072ac32773ae578b8e08f7da12e7844 WHIRLPOOL c39ab4ab47a8b670b69adb1be9fdc68985027c171497eb249b8445e73468d25367a85200a0dc8d72cfeb9cda3cc0912c43ee793190732125763de3e7a390aa02 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nl.tar.gz 1226455 SHA256 69b5cfa7c5ed2db9a52e620a9e737de016f52e9cd317393f46df54e3db09491d SHA512 01ab2439fb295931d6a22e615fa50e421f90044108deba346c3d9f6749dfd63e6321244ca320f46750a9d0c4ea61da2aad6514d2b303ecd41c6eddf8589aa3da WHIRLPOOL 8b3d3a9788cb6a2d379be153db3360da330d10254a25b8b337e8e93e86c01fecdea819ad4405a8a0b4a91d904c1ba2011262e135289db672d498bb07ca08bc7f +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nn.tar.gz 3426125 SHA256 35325622fbbb7d77031377b424bc10e78a81c18e7c25567335390f329ea5bc28 SHA512 94131efee13d0cdaab554e40908ae01e66f03dd7a0df44036f6fb50c71e4ffc4f1b54e82094c15cb09868436547a90278d2effb4ea6540e4f636815a6fd712fe WHIRLPOOL 4d4af7d370d71280246e1f8a89580bc1c12c41ca0ccb9852f976d2d87c75e44044dd3781161f8fac056bfc434b143798debd77d8eb4a9c267eabd69cd939bcdc +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nr.tar.gz 432062 SHA256 7acc5bffc02a8176207fb0f86665c98bfe30f5148a3cfcc30d10484f2f0050ff SHA512 ce589131f3c183b3ee4730e2dda31f56c1efc9300842a1a699337c5aef8ec18f967132e6057e23e459a3cf231b728e9eadbef86163ecf4637ec03354899d7e59 WHIRLPOOL 3f6df33b4dc9259d3a64a65a5ecabf317fb8ff232bdc5f3eb12e6189bcc6cbe22104cede4f0633e6a25badb0950a7877ae29b80259a2f9fa1886f3456390a118 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nso.tar.gz 431144 SHA256 8e999b27284c11a6406e2ecf5df811bee8cfb9cadff6b6e5c6a9347267b25b2e SHA512 fbb3d7fed31e1b7a253ce6737552def7ee9b66bcc3cad2122ff1728846865a010f6999ee4f64f7871742bf2ea73f876f868f16a05c9d63386739298a5d972a7a WHIRLPOOL 2bf1774b2718193f0e39fc227129c01afd49b3c75a1b9855618033a9c1fb3afcaa6f383763b13c9970fc48a7c67bf38ca410fd43e9af8beb8391a481a288aed9 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_oc.tar.gz 637646 SHA256 0f9c06de66fbd782dd00a09575b88222d96ceedf40c168f24baf3c3bfeca70d2 SHA512 044412fff6ae0a3529e7dcf2bc203e1c7bf6612ed9a6446ad767b13fe86ae5bb5cd6bad55febae085dab593c8d3df404ac42d2c9cadda4ed7743c1f9f2c94fa4 WHIRLPOOL 4ae582b7455346d5140f2264839752c468801f2994406d5387825b8511d70d144154a66793cc1e51133f9317b5f2df0c396703f9cbe32b247eb9994d85e267f7 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_om.tar.gz 426351 SHA256 bc28df15fb6cb32d38b69074c1aa0ed3fcc2042798982081b45f04756af3d569 SHA512 1ff9038bc0f5698fe543c51f6ad3f2b3bd1c955ff3dd69578a6787493e5a7e3fba3fc1a422c2ff87bd6c7bdff7f26ab42d2dae2d5f4ce4171ca6c754f954d0a1 WHIRLPOOL 266e1f843d9bd28a5423a025126181dae0d67061e1b64069dd2ccacee2c70eab15ce5afa44b119d10b704475e3f1c735ab51df6f5f79b74868ba7fcf917cf39a +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_or.tar.gz 491372 SHA256 e0a1b91ed0c571e45f9f3a9553c39b716be1f9a7125a6492ae1d9f4b10f71858 SHA512 ce4fc1e1e16269d0a3f16b46e9af8444d40a42cc0fe1e4820ad3f20a77e804be064a94b40d000c846d11e85fe217a1d1e5ab0a1784261427271f6cfc91005ee2 WHIRLPOOL 651130467a5a346c2fd92efe1580476a22093a89ab5f6e3213f5a901f7f4404b70dcd24de576e2f6cdf4bde0695f81c3d5a768667cbc487829fa146cffdda7f3 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pa-IN.tar.gz 463032 SHA256 f28aa975ba80c03b1f9d9906ff09c29c21652777fb6a3e873e92e9f5f0f73cc2 SHA512 ad27e06cf20bc2d9398d60cb6c8a5fcc57126fae6b861bb4d5241c9b225d1bd7cb3cf0eea1ed577e412557b6a806812aa397a91e0c960675d3a64cab684de881 WHIRLPOOL e671d64a432047f6ca695dc490db5a2b8dc70d31a6b7a88c07e332825aa7a376a64cc98749b164d701b12bb2e2b7544a780f7588266bb1e7c43fd37780088fcc +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pl.tar.gz 2794555 SHA256 eb1a8220f3cb6ce7718d7a68d72ea759d325c2f57fae300d02313ca884f7a575 SHA512 8bb839c45aba41187f82fea92d1ced595feee95b47b3b515520642bf75e90659d0c9a567febc531d6ef946eeee4bae957ab02e459181a11dd70df973cccd2460 WHIRLPOOL 9d29cfff1c89ff69cce266032d08e1dc91f405b8e4665bfca0d382caa697b3cf9271b4aca26548cd78edd1069738bb3d8fc2eb8b32a980526e832b6703e56ca8 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pt-BR.tar.gz 2517153 SHA256 6115d5600fee701d09e44c160697f2e42681ae6f68e7e18f6fe353f5d099d995 SHA512 078457369fe28f957d6661e479ba62df4d9fadd4a537c2081b9394583af0c5b0937d6fb8a8c9f5ac235fa4d5bd56bfd222c54dc3d901348e8d36b49239e3ba80 WHIRLPOOL 094c4094a4df3caa1f89133aa7100a952d7977e3db3648f856670c436109b876e887c9a2d07710b7ccc06e0ed1434bb5c6638cd58c738794dfc6ea74fadc58de +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pt.tar.gz 2072032 SHA256 6c2d3f21a04fd1d1033bf2453a3ee8bbd49396cc5059aeee7284404e49ee2176 SHA512 ca45ca432257df982799489b9e08893c1188005245121257ba6c8ae74d1e146c4a4641097d9c674d579e4f4301ea3b1adf5e39162084225460cba6ab0b4fb473 WHIRLPOOL 3a198eab6b2c97a7dfb3da5c284aac0c9dc56c315016d7d948ce745f0fd02c2dff233118343d3fe916dd69ed695614ba40c165b69257d83f8f58ccc33e77694f +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ro.tar.gz 2305008 SHA256 965db3afc90311398f27b207d783899f7bfb6f2546422a05dde869be9933b665 SHA512 f73d1ce3d73a06b078f33315a64e6150022023ce898013656fc4636d6db8e4d6ae665f2eb6ba3cfafde47e6eb9cb4627fc8139f92582b0418e6d38c6ca30a495 WHIRLPOOL 0134232b48ea0a1b99ae72a5ff3e8046fe1cb83d17b692dd4a94c6ef4aa94eaf898e618f9945170138f9c1253bb5dd17a6aaf00fae99c53fcf473e65497bdb92 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ru.tar.gz 1593518 SHA256 13bfc06f5a6fe5dc6a61f107fe08047f262cb71abbf4cc7306fab871add3077a SHA512 3cf5e83adde0890bee75b67aa110a565773d0269288eb2d0a891e0887ae3fe495b3c87a63f51b8cc42e99a784814e248887cb6c157dc1d53900e9834903f13e5 WHIRLPOOL 82c503c07912d656af96aa079685a0680e49c92721ae9953f0284e9bebffe9c8f252121319e3f2da991ea7636291f7f1df59d9f28d6357cfd248753c5adb1d96 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_rw.tar.gz 428376 SHA256 988facc13846fde418f86cd80ad08ef1f7aedb62362140491a17e8b15df9b2d0 SHA512 04de307df77a57375f9eca8e60853d21dd80b9ebd8df3c1c06c469b8bed69a03698d3b3f1fde30f219501afb828352abc6ab62edc10a485386b90f8601f7c955 WHIRLPOOL 78010dada0a229b8dd34b9e20dba1b730d75cf1efa492633ad781de84affca8e0379e639a76c9444fd7f02b953384e05336c3cc40bce6eb6ea8c946b658234ec +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sa-IN.tar.gz 475574 SHA256 0b69252b29cd329605ff018541e31cc938d856b3f1ef5730e104a69528cd182f SHA512 d4b7a70b7472736450e8f826a686f020fcfaf8551d1a091d9ae918a0e0ef4103aa082f635bc94f01ac6cb2bc2a9fae2d97d9b8537bf449cca74af9cc38d555b8 WHIRLPOOL 785d88f0af3170bc133f273a2c338e1dafe1b1e4e5bfc93a56ec09424ff1e572df67f4b381705b20544260ffc2c8765c0d4840380a413ce57f578bf79006e5f7 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sat.tar.gz 504827 SHA256 6fb77640ee64650cd3bfba28deecd3170b203b4c18f9a071db6684ebc6293181 SHA512 af4d18a5f4e2257bb0861ed1f398968b539f69702cc7fa769b6889c91288bfc2cb46a12cec95f65f118e952405a71d0c6124dc792f2225082dc2430c6573dcfb WHIRLPOOL b18a8e8471575c6d8fdda332700f5e6c9300aaa3382d5ad0f3fe893478cf49b8e2319bafb2ae0632bd07fa5a170350c1cf8681fa25d2b6d8fd371d1a1bb5a7bf +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sd.tar.gz 468336 SHA256 c09dabb9bdc95d92effeda686be378e8424e5906b533b99391188ecbc148fc49 SHA512 fe9a268476af88fe34f3fe09d55611bc1a550d3e9086f4e765e8b865232bd3175ac7de88bcbde0a288dc01d241cb61229da19b52e1ce0adea76c08f1c653a6e3 WHIRLPOOL 73aafa7857837638461a5265487ee8ff5ac8425a96f1a88848f4969493d5b3dc52ed657933b96e2326c3d0cdfc8527591f928fcf73e282209752f6e7740d0d51 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_si.tar.gz 758448 SHA256 10dc10b594f1eb234b69cda2423a9f17b279e67f12b9eaebdfa5ac80f269035f SHA512 67a7b5f2fee531cdcd8941364479b6d553217e8d0538c52e2e01e6bd3401a9a4481ffb566646cecc6c5541e0439f35787f6f62b2f12f7ec103bc25e55c728784 WHIRLPOOL e5b599a47790e64a8e7fcd861a0212b5ebbe988a0df3734d33156f0d2fe3a66eb34e3443e76823c4ec44ad1504741f7795aa3e36b861471090794b159c501418 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sid.tar.gz 434533 SHA256 2b30f3592d186c79c3248fb3a640830037e2e8b4577a6ecb830d7b883e831da3 SHA512 0190ba7ea7c974bac42cde330adc9d7d7615e4ca02d7ee2449606013efe59c62b7fa9ebc2f9222675b5cc6941f5fd94c09946d48c5f45df1854f7ecb6d82f820 WHIRLPOOL bbede88c0e477c8a1ed32d40ebf839ed6b944c25871ff08c97a95805c1888f843eec7e766884f7e54823538f515714357cc0619f3201d650bb77c2cf95142826 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sk.tar.gz 1725513 SHA256 3e2fd16d67860ebcdab121437682f2056e3f8bac0ced831d7d64061df8493cc4 SHA512 07c253e3290de3049dc6a1e4b71c0b88c4c954b5fad44a0685a989aa4e8e1edc59d347e304828fffa577d750216d178d578b9a40d60ae3d2502a7ea51f0b68a4 WHIRLPOOL 02acf6969bf85199864add40a0d5e68b08f7e2005ce9836fdada59de9dda0a04d332cde2128c25fb37d157ef10119eec52cf6d1db0e7c53a43727b9f7541d144 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sl.tar.gz 2103787 SHA256 7d0e653e8eb846985432cd58b13536d2f0e0e97724bb634ed1794d7710db43de SHA512 dac8c492b63a15a9e632a6515875577dc8a5275571087582a47e38a5424b54137de3504b5b77e86d2185b3e0477b2b5dc0e195c9e2010a55df5b533ca7c86beb WHIRLPOOL 779e22544f333bf24a2596e6a80585ac181d70d862b03a5e47d38d29432e3d02fb5af8babd46806e4d13eb49b49c81079b2e69368e930e3b3530e64a7dbdd538 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sq.tar.gz 446715 SHA256 cc8c86a17b4bf45e6aeccf6c76315c8dd8c44ad67d17fe5d22bc371555355d08 SHA512 0541689363fcd985471aa4dcf8234cf3f86fe69aab4e2df81c0352597ecf69778c4dcbcf55541c7bfe971fadf262800d75a999f8ec5ffd1dd1738cc6d3f18826 WHIRLPOOL 1b5cee19bf49431d74ee5f6611ac3acfffb086fcb98c616129a34344c786229b6b66c5920f44f44d82f72c80717850fbc876ad8d1f3ca178b80ad2491e674d7a +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz 1598385 SHA256 d6ca97505b4d6ccbb0f11733499f9f64b561930f1d2b73692dae3165b20f067a SHA512 48dfe0f4c2d16abc699216d9d699f2092181be93bb429f917dbbaa75dad5f03b0668ce303d551bd08fdebd582d6688b281cb2c47b739783662067e99bd04b1c6 WHIRLPOOL d18e5b3e24b7457d59bdbbd027840d193c08fb74eb62f44c588dfeed9dd29815b8e49358226f53a5d825cf93ae61050a4afd36ccf8d6c3d7bdf97fcd03088046 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sr.tar.gz 1616915 SHA256 f0714c64e6d7bbc3ebb029c3f29d9261b9d37c12cf0f23f281ed8c7dd798a206 SHA512 b8cdf803c8bfdb2fd38e022fe6bf2618fcd670c008b5cfc072ff8866f2320666f197ef3c9eb8ca62662310a8dae56facb910203fdd308eb0b89ecd7913b20b5e WHIRLPOOL ef23508146c1ae91e1a934aaa92241325d409dc3f53e2381c585a9b9989a0d138ee30ce5baa188059f9354389e1b3cd371756e2f82bf05c73927a26d52cfa681 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ss.tar.gz 432122 SHA256 1287cf6ccb301b1b82572dd485610d029eb025b145b6c504c0dccf3396203091 SHA512 4338b4301d0c2d63e39ca22f4be0ed6390aa3ab0b94f249f948fda4c08746f628de320f8a559ff0edafcfc7a2311f504dcce085719735ccdcfc109d69e83fc73 WHIRLPOOL 51fa2cbbfd7378a1a5bb7a523321db1fd9c371b2527aaebd2b0a1996c6e677bb782bb816acc2a934a7f11980133b48a08c8cf1572dc00e4b085a11f69167820d +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_st.tar.gz 430680 SHA256 fb2324005df576744cd6df11146c099a01bc56fc53a08c18b470352395ef6bcd SHA512 b03c7f87a7e1c458f64fe65a19bab0563f74cc54296b5e3ed3166c4d264ad5294e68be38d02ce6c706c846e84024fe49bf4ad438d797ca2da42e376a55a33b02 WHIRLPOOL 87af8bd2b11ecb50204cb0f032bd21db657cb9e97d3c4383fa8410fc1e31daea0279b55cc6be605f93036505966759d4b031a5c35fdb713ada73a06275d4f3b3 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sv.tar.gz 2314282 SHA256 9c2b7db51b27624e541f53c5ca769ba78999fa3c182de2446b0360b77b79d858 SHA512 db3d374207fcef197406bdc644dcf166fbc73439046287c2f68a24bb6478c57fdb15d8a8f6c2be7c325f02ff887431c3a6a00fcc561d3a7b96487d79195e53ed WHIRLPOOL 0b490e48eae40f768f0c8de0d1cc59daf9da96cdb45f70ea495c80d114991717d9a1ff7f0a8ebf2c260e19ea8166280e30ea955406b2bb38ef40b17e8d770280 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz 421302 SHA256 a65f1d48b96b19a157eb9f5e47d4a5ad45d399d3fe8ce951046c2d266b8eae26 SHA512 b595685d9239b3845d1eb95b3f725738656f9e3046690d1c52864f1bd37e60bea861838429e12b6807e1d6c67f9ce9e385869295a03fb0d742df4e577c43d412 WHIRLPOOL a5c4c677f1835a6fc2d56656319ae78186d3e09ca94d11410df408aaeb09f943539e0fc5cb5ef1ed9626e87496bfb99cd87c5c4e2ff658551544e545731bbb25 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ta.tar.gz 489841 SHA256 d99ebb25d45aa06c3621f180101680b9969a6148c965367eccc9669fe97fb053 SHA512 c47a8266294ac1dd1c10385269a8c9dfb72c234c5c9c5938a289b2cceb4604fe1e9a269c6e11b3808b1402ff8f1afb8bf54683317d56dc7df584590657d514fa WHIRLPOOL 549dfd2f002bb1900fabf8109662f2b3b84df67fe81e478b510cbb20bfa991ce73d38fbcaf9c4becad6eee76ca42e2179b77b1cca73fa786fa2e5893b2a59086 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_te.tar.gz 1040304 SHA256 57e54056daa02088e0b95e64cb3de420a4f8b955a4886dbc483189490c2e0fa3 SHA512 cc454408be3c84ba7c40ddab120143f6c911658f70e4803624188675a33f521050cf7175d85bf00916e58717760a5fce81e7856f6263139c7d4bdedf5fcaba51 WHIRLPOOL 9f1820443dcff6d374ff0f3b857b7eef55f2ff9d8963e5d01f5cd9e01dfce4ff26d4f94c4de6bd2ae15cc393f7126a7e84f2687c3eb3f91ffbab76038a4ad5fb +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tg.tar.gz 446741 SHA256 68d986c4c731903ae250d1fdf721b737545b7d679d75f13ef67be0b8365076a8 SHA512 afaf19330b72a75aad32cec8f6d44409a9797bd4d80826bf5c0254d70577a7dd14338060a7dfd5ca739b33ec6358a420fa775e5a7e08b477919fbd8845cd8073 WHIRLPOOL a64b2c9e0bf9bc3aac0cd8d4d474bc9252469af270d3208a37398bf63152182394e9ef60ea473792301ee958941130c48b88da786b5b9159105aebaaa324bbf9 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_th.tar.gz 627062 SHA256 f3f83e4d312f31daa4cb5edba6aea47ebee1b7e05057cc919a3e344a5d11c690 SHA512 edcce79318bc4e3243381b69cb673e76c355dc22007eb7155e8430e832b14828b003b2d080139f04fc59711380d54318a7584de2e23a28ccb941c1cfe7040bc2 WHIRLPOOL b6d7a893cf02f48c3251f16b2238ab086419d22728a2f6f439632a386cdb613f4f5cbe5c7e4460536722badc55e200523b6a3bc69898fab7c1bc4f7a0115d1c1 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tn.tar.gz 423151 SHA256 0b4d3d2968eef1d2276f725dfc681d5294d86a4600d8bffe6f58e8cd8a6170f3 SHA512 45d097f1b8880de5def523145646a5549f2f263a7b36db767c129c3aff5437d30c633a317a42150e93671f1840f97d3c27b8aee641e36cd62af0a5a32b5d31eb WHIRLPOOL 322c3c1119dd89359c0bf2c5c635d70c65480807b41168ec9077b6c9bc007f32a07ba81faf12928a80060af24ec8bcdc6436bf65cece93b9cc76a49f512962e2 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tr.tar.gz 476639 SHA256 c3813d3a4d4d9c9e4c1c36cc0a86ebdc6976485610f3206c53558e92d5680035 SHA512 ffd1bab2494afe96d8500256e18a9af9f7e001fce5672061e70046be02db4db3af438e52adc43be9db66ca8dc474b7e5443733fc8f66e940312141e240ec4674 WHIRLPOOL b0e86daa9cb8112376e1d3d03a3d2195cd1c6b8c6eb2bdf264d2c4d668452b390d382a6606b4355e50bc538a6f329effc9d01718e3574546c2f63e21bbcfc8ce +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ts.tar.gz 431520 SHA256 ea8d1a736751da313bb0043f6702c2b6bc7122c1238677fd1b13debed2347a4f SHA512 7b312f255b444db1a5f200080d8c0ada8a359cc0f767be0b021dd8db48761e20eb11f4ed879cd13b6eb738bdea6306c2a9d6933f97b56e6422a2c1849c217403 WHIRLPOOL a5bfd24b3261e093bce99148cf2afb8264f9af6f6a5a01d47ba8e633198cc512b430fcd8e6cbe823a98bcaa88ff86af9caf17eb026681b7ccd0d13830d2f3b70 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tt.tar.gz 427985 SHA256 ab3eb595139894600745a6c929ef20e72807bd2e5893dc7ed392f839bfdedf7e SHA512 fbf8246424088c412bbc363016e5e6c3566be18a53b84b1e7038ba675efbd2f79521d3716e06431703c0fb0a3732806fb3c562edb1bf31af436d5d03ec05f83b WHIRLPOOL 83302eff2309c45dc79cb81aeb037e6598964e08be384129eb18ed9ab6b135b61812195bb301bea9b0044a6dbe8ae9f257aa32268e34954e2a488f21f4c6bb09 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ug.tar.gz 465902 SHA256 4c5c908d5a0614b3a2fdebb121a6c3ee5f750e7382f3647cdecf4d5c30a01f06 SHA512 096bcfa6b00fff9f41aa4d2a7910730d529b36631a4439fa82bc08ad4f76b40a72feaed993d38a77add5a42568e52e2c3387cf087bff4f2dc1ae698155e5a051 WHIRLPOOL d571becb8e10d061a88997a3a2cf958b5ab7d72e2f2348bc161fffd7486192cfeb9597c401a77d6d8157a0929492c34b8ca4e18f47db0e165996017687790d11 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_uk.tar.gz 1314841 SHA256 949ba56db6a0dad5897b46fc6be7d1391a86f635d1c1589369f155acffc108bd SHA512 cae3a67bb6404380657e1c0229d12e90c3d8dae24cab5a5830df87768e70b7c1a02c0da0113143958217beb5e357439444b2a8ae6a0ca028809b56f0e514e9c7 WHIRLPOOL e61868833e4fad9360e48bc799d5b1fe89d7e145e196ba177a0ddebed03c63c18a8e7c2018f2217da8af25784754c847e5019df1d25398cac1355181d44c7178 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_uz.tar.gz 425805 SHA256 24975e7b9c655961bd38c4f38f1ea7e1b6529382818ccf3a100214bdd214d331 SHA512 00e625191b9a7e97966f6851ab7620419bc6cec0b4f318090eff2f56a9ad90e1e78766c56e54c22ef7520656a36ce35e9a2879560ff71124591ac7cacaa086f2 WHIRLPOOL 65829d3c4dafa5acbe0b041fa3dd7af689e20f643cb09bb9a32cb5c25f00b3f2c13acfc56d0c9c6a67b67f00d60bb77f6d030213d9b4c61c391178900e6da486 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ve.tar.gz 432841 SHA256 bf190b3693d2bdaad5d3315878b88571c882ec2e419708bb7735185bdda6d973 SHA512 69b29eccf0cb67763d9b26351c633d1cfb638af4fb40d89c347b242924a36f790a74282c0a369330f5e4e824f4de94d149e7098c4d901fda4d82c4d4537e4b33 WHIRLPOOL aa0202f690a4a958103610b584364c9f58666802c22c8df6f9c2a08023e866b560d85b4b40c103ac7d39b8eb0562c1500ccbc156568fa941a32fb53516c8e0a6 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_vi.tar.gz 466351 SHA256 3fe4d38141c94a46e0e566b297a850528269edb6809398d6524305f2b468db94 SHA512 d2a42cb19c0fe84c279b36e9d5ce1e1b46ad045d5130fc35b34caf096954864f926f19619b618671a1ee23032889803c3628f508765023ea41d88f1f978e5f8c WHIRLPOOL e7c0c04615c2d94b1ca2d558f75eaaab67f4a81e20b582650a169efa74259785d37457839db55006c5039fe6b4057b96cefbabdb32ecc0bdf6ba9ac4b516df7d +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_xh.tar.gz 437890 SHA256 c5ea77289ba9c0f8f3292cb66cd426dce8eda48b318c0a555b50e6da41ee82f5 SHA512 2049b75572b3167362c7431100db080922102fe1fb7109c1e9093346b760034e2778a29b2291833e17d75a5eeb25982215f0d7c95a40c9e725e1ef03b08715db WHIRLPOOL 134b9866b4e1ce99c01434229e47b82b6f94ed68d3f7de0447484dc2719a6c43fb9dcec7c7fc41d6c2853da4054f979a32062ed5db19325aac436b5b9807ec90 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zh-CN.tar.gz 516245 SHA256 3d13a2347cd71956fd3a4d9de6b63ee233927cd2118b098658acbc53eb265ea7 SHA512 70d37847c3e328e4e812a4ff60e343e627d370dd203fb6eda2f3c318a79418cad25829957a53b0587fe9ea4f051727de2ff7a9550efcd68789cc3cffc2327dc3 WHIRLPOOL 630bc3d5b0dadf9dc818bca42ab3dfaf71f91d3133ce143b4e49c63e28c5a8051f9c88010761f08b25625c751804b8058c1fb714f86d04301e4cb41f5d0f6882 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zh-TW.tar.gz 513435 SHA256 4e9f4b1668905cfafd217812966e6d44b7a227b6ade6d5138d6105919a55e76a SHA512 e841d8ffaf6d64657eb4edd92efd560f2f1e61778b494b38adb0f1fb3de59565cc54faa9be6854c51332d28a6fd55a65f30cc1bac2b1263683359e1eae6b9797 WHIRLPOOL de9892ce88fcca4975eae0021a7dff2b4712c38b564ffe4cf83f039754272bade9cf8827286274fb1c865762e5495fa1ffd6643079e28d34384041e512a64709 +DIST LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zu.tar.gz 439453 SHA256 e96b60455ccbc54bebfff7a6ff0e46217c64d786bf94e1a048330b3d919ab472 SHA512 e206a8c04f43de70b141cde5287b290a50dbb190db499a626c9b73f70f3b8a9cc06542b8ab1c41e0bd3b2fff0565409a6ad3ad44780bf966b5310a133ce52af9 WHIRLPOOL a24d5d78d5c8326ccc874a70719b55789d50059be8743df92df9d034a5c20d22aac8b56b29fd41e059379b68d5b757aa52b2ec88e2e9f7dafb1f649388bd144c diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-5.3.4.2.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-5.3.4.2.ebuild deleted file mode 100644 index df24c74c1d38..000000000000 --- a/app-office/libreoffice-l10n/libreoffice-l10n-5.3.4.2.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit rpm eutils multilib versionator - -MY_PV=$(get_version_component_range 1-3) - -DESCRIPTION="Translations for the Libreoffice suite" -HOMEPAGE="http://www.libreoffice.org" -BASE_SRC_URI_TESTING="http://download.documentfoundation.org/${PN/-l10n/}/testing/${MY_PV}/rpm" -BASE_SRC_URI_STABLE="http://download.documentfoundation.org/${PN/-l10n/}/stable/${MY_PV}/rpm" - -LICENSE="|| ( LGPL-3 MPL-1.1 )" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" -IUSE="offlinehelp" - -# -# when changing the language lists, please be careful to preserve the spaces (bug 491728) -# -# "en:en-US" for mapping from Gentoo "en" to upstream "en-US" etc. -LANGUAGES_HELP=" am ast bg bn-IN bn bo bs ca-valencia ca cs da de dz el en-GB en:en-US en-ZA eo es et eu fi fr gl gu he hi hr hu id is it ja ka km ko mk nb ne nl nn om pl pt-BR pt ru si sk sl sq sv tg tr ug uk vi zh-CN zh-TW " -LANGUAGES="${LANGUAGES_HELP}af ar as be br brx cy dgo fa ga gd gug kk kmr-Latn kn kok ks lb lo lt lv mai ml mn mni mr my nr nso oc or pa:pa-IN ro rw sa:sa-IN sat sd sid sr-Latn sr ss st sw-TZ ta te th tn ts tt uz ve xh zu " - -for lang in ${LANGUAGES_HELP}; do - helppack="offlinehelp? ( ${BASE_SRC_URI_STABLE}/x86/LibreOffice_${MY_PV}_Linux_x86_rpm_helppack_${lang#*:}.tar.gz -> LibreOffice_${PV}_Linux_x86_rpm_helppack_${lang#*:}.tar.gz ${BASE_SRC_URI_TESTING}/x86/LibreOffice_${PV}_Linux_x86_rpm_helppack_${lang#*:}.tar.gz )" - SRC_URI+=" l10n_${lang%:*}? ( ${helppack} )" -done -for lang in ${LANGUAGES}; do - if [[ ${lang%:*} != en ]]; then - langpack="${BASE_SRC_URI_STABLE}/x86/LibreOffice_${MY_PV}_Linux_x86_rpm_langpack_${lang#*:}.tar.gz -> LibreOffice_${PV}_Linux_x86_rpm_langpack_${lang#*:}.tar.gz ${BASE_SRC_URI_TESTING}/x86/LibreOffice_${PV}_Linux_x86_rpm_langpack_${lang#*:}.tar.gz" - SRC_URI+=" l10n_${lang%:*}? ( ${langpack} )" - fi - IUSE+=" l10n_${lang%:*}" -done -unset lang helppack langpack - -RDEPEND+="app-text/hunspell" - -RESTRICT="strip" - -S="${WORKDIR}" - -src_prepare() { - default - - local lang dir rpmdir - - # First remove dictionaries, we want to use system ones. - find "${S}" -name *dict*.rpm -delete || die "Failed to remove dictionaries" - - for lang in ${LANGUAGES}; do - # break away if not enabled - use l10n_${lang%:*} || continue - - dir=${lang#*:} - - # for english we provide just helppack, as translation is always there - if [[ ${lang%:*} != en ]]; then - rpmdir="LibreOffice_${PV}_Linux_x86_rpm_langpack_${dir}/RPMS/" - [[ -d ${rpmdir} ]] || die "Missing directory: ${rpmdir}" - rpm_unpack ./${rpmdir}/*.rpm - fi - if [[ "${LANGUAGES_HELP}" =~ " ${lang} " ]] && use offlinehelp; then - rpmdir="LibreOffice_${PV}_Linux_x86_rpm_helppack_${dir}/RPMS/" - [[ -d ${rpmdir} ]] || die "Missing directory: ${rpmdir}" - rpm_unpack ./${rpmdir}/*.rpm - fi - done -} - -src_configure() { :; } -src_compile() { :; } - -src_install() { - local dir="${S}"/opt/${PN/-l10n/}$(get_version_component_range 1-2)/ - # Condition required for people that do not install anything eg no l10n - # or just english with no offlinehelp. - if [[ -d "${dir}" ]] ; then - insinto /usr/$(get_libdir)/${PN/-l10n/}/ - doins -r "${dir}"/* - fi - # remove extensions that are in the l10n for some weird reason - rm -rf "${ED}"usr/$(get_libdir)/${PN/-l10n/}/share/extensions/ || \ - die "Failed to remove extensions" -} diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-5.4.0.3.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-5.4.2.2.ebuild similarity index 100% rename from app-office/libreoffice-l10n/libreoffice-l10n-5.4.0.3.ebuild rename to app-office/libreoffice-l10n/libreoffice-l10n-5.4.2.2.ebuild diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest index b8ed7088cd56..49349ce18c0a 100644 --- a/app-office/libreoffice/Manifest +++ b/app-office/libreoffice/Manifest @@ -3,14 +3,11 @@ DIST 185d60944ea767075d27247c3162b3bc-unowinreg.dll 12288 SHA256 eafde646a7dbe46 DIST 35c94d2df8893241173de1d16b6034c0-swingExSrc.zip 9796 SHA256 64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1 SHA512 4a48f1e32907fb2dee601cda3cd7a0d7198b2d51f2a572b647f1e93f901fd511eef3567676e52dfb1723a2cdfbc01f2015ca0bb22903b0bc1476dd618cc9aa8a WHIRLPOOL a5156d06323699d2cbf539f14f5f44f54ebf33e86c7f14e98acd4c6e29c3e496f91dd6792401148ffa32e3dcb1cd4f087ed804e306b241cef86de0aa347d25d4 DIST 4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 555291 SHA256 b0adb8e71aef80751b999c9c055e419a625c4a05184e407aef2aee28752ad8cb SHA512 1e8a39205f21206d239871bd636f17768eb3997e08ba065c1111a537564bec2b4e97bcb2f7cd9e652a1d9b4f31cb0662010303c393aedc84b920bb5f41b27be8 WHIRLPOOL d809712c3fcaca922d64f67a14d9dc3e750ecf359687c7ba0e8c6c7fc7750e43721a21ce29d5a3b0b87b83bfe7b71947e701ba4aed0a337ec35ecbb22d8dec34 DIST 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip 1521926 SHA256 1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753 SHA512 ec5ae23c8fe2f5efc377f7a9665039afadf28b4d8f2791379296766a5fbc9a3bf7548f9b0e3b3b07762229ec733a92ccbb69791ee0318c9c6f78f8e847253d3f WHIRLPOOL 8e446eb44188046b0e90694feba232f42c2e9f13d0f43783a18de37c94b86ff919b994931125c5d8001ecd320c1f4db5da482847304aa61646600a3bb33144b4 -DIST 86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz 1794694 SHA256 41d463d16c9894cd3317098d027c038039c6d896b9cbb9bad9c4e29959e10e9f SHA512 20b0c0ba517c764fcd32165254ae6dcdda8fb72ca3279dbfcf42d899e91d380b78d9be3b1c3d32910eaad5544a4fc51218e32579b10e6b6639338a7bd8b1ddc5 WHIRLPOOL f4d783d01346860ed2cf1d15e692e70e65034bee120c853cf7692358799a6e3339a1bb022f4d72ee4364adddd43766aa01770070a0081d1adcc588e4f84786f9 DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 SHA256 75823776fb51a9c526af904f1503a7afaaab900fba83eda64f8a41073724c870 SHA512 2d3835f7ac356805025cafedcad97faa48d0f5da386e6ac7b7451030059df8e2fdb0861ade07a576ebf9fb5b88a973585ab0437944b06aac9289d6898ba8586a WHIRLPOOL 60b98d9af2c83c0cf12a5a60ba30957d335b8b967cac07971e1edbc787b9caecd4b3c5bb480e8b38fe8109c1cf74439ebafae130c976182c2c15399f38f5d28c DIST ce12af00283eb90d9281956524250d6e-xmlsec1-1.2.20.tar.gz 1769329 SHA256 3221593ca50f362b546a0888a1431ad24be1470f96b2469c0e0df5e1c55e7305 SHA512 2f8d473916abf9822367edbe857fc2e12dc9858d12e790d689d787e439904bd6a452bf631043aa66e7502457ab0815a473657f58fca17a213e2490f5655e5ae5 WHIRLPOOL 29ddaef03d46fe08aa2dba200be755817f8e77de3bbbb3ed86dae65e891239f3051f79fdfadec6ae56023197e32e1c44a94385a1ce306081f3bf94be6226f8c7 DIST libepubgen-0.0.1.tar.bz2 376956 SHA256 eea910b042526ed52f7ab9292b7fa31fca32f9e042285818074ff33664db4fa2 SHA512 1665e5f4708b4c296b9075fa7ab250b3571ebcb42e51c4d195f63eb1969b9014e7490cc2a80dda608eb21e0b127cf7eb8911ed3e5aaa46a89dcad8748618f62a WHIRLPOOL 5b2a7e3878f87e5ca1c353f9ca82daf01946699eb974d3f4092157c916117716ba4ba4969c05da02ad8f08fdd4324dae585fefe332814e004b40cd56b8ef0df1 DIST libreoffice-5.2.7.2.tar.xz 184589464 SHA256 106154a72a329605166a49bfa31c6d1cc03133d600ad0ef340b45e4e2a92891d SHA512 f7414a0d0d654d1d9bd6c5524ff2acf2f21c544dd6ed79f4f2d22f79db46264f95f7ca8dd482027f7a573d2d491ea6c8d9875b262d5e2b917dfddb749a3ea95f WHIRLPOOL 28d7f9531190a16bdea14c5dcc710ef593085fddca1b4d7d0cd6107d5f93e4b94a1ae035a626376ab7abfcd926a263b1437de1e52011bb96aa6d87b046a38da8 -DIST libreoffice-5.3.4.2.tar.xz 188762904 SHA256 1d75393fd8b02b1e2e2e001bc0262359c7452e29a0fff35cb152717246f02379 SHA512 ac3b0a0615577faf6c2529b7ec888fd7969d32f38d8b83a3747535bc408e8d2ef2e724f5b1840ae79a219bb855584be87f10ab26ef101afe04dd15d224e6ebc0 WHIRLPOOL 4b314f2df7ee8bd80049cc6ad04e65df11a46a20853f0a285389cf2c72006dd122f1826ae0080c7efc41faa251b77a48f839f345451d993b48bc673d6e450aed -DIST libreoffice-5.4.0.3.tar.xz 192134108 SHA256 17b29d05349b0db15f606f2d630e84c0969c89af6bd06aad8d75a074ee2add94 SHA512 53d081c937acd48c17a9a1f04c55e2e7a420765251c4b507aaf52467b5c2538683c810ba0559598c24ddb6475ee2f5eebb9a1bf97fd805bb72e61b84fb6638f9 WHIRLPOOL e8cd3068a9cdd43028757044b08f2d5628f408136966a15ce58f50217e555cf0613128cc6c3f9ecde28dcab0fdd0a2d2c907573d1d73d319b98eebb61e0296ea +DIST libreoffice-5.4.2.2.tar.xz 192795940 SHA256 2fda4a8c446786a3afff2cf1b07b818c45c9dcd136bfae1f3191b0b1565ba675 SHA512 37edf44b4b3c3e694f5b5915647f9555413c3fcc6d29f5f8d74806439b65ed90418905476d7b75ce58a032abb1f55cecf1ca74b63279666ca2af5f3ac95a645c WHIRLPOOL 1d2f55af8da2d1c8f2998cc3ab6346be7f6e2e524fef664281ba585910a9e98914c9e07612d597a89c77ab6dc25beffc4dcb1b4575f314752a892d18ea15415d DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 SHA256 22722121be062742624e0634beae92289c75e6a99ed507d3bf0a05c5164e3c69 SHA512 785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f WHIRLPOOL 1f36652a52d501d6548cfa9aa013b3e3a1867aa2b0693d2274cf7816d4aa4e0cde3c7096cc71ed47cf74e5f96da2757bf537f553021f8fd86939accb227bf538 DIST libreoffice-help-5.2.7.2.tar.xz 1940516 SHA256 f7d35c460da96ed2d52cf97baef159382b38e5ce4579c34e65480ff2911cac4b SHA512 c86bc17448fcd1da01e13d3e9fee739610fde390abaf0635cc4593755d102da08a5eea0533076e1a0f8d89f0b32ba5086b155b9b388f317a5e4c669bf17769e1 WHIRLPOOL 4da96a14b70be718109eda5ced62cec85b96e9028fcf65d729a99604598de81edc097bc06577f3ce7958de1316b04d2d2f1f2782c6504a487ffc6ebaaf7feca6 -DIST libreoffice-help-5.3.4.2.tar.xz 2108116 SHA256 ab8600dc99e09d90fec83bcc505c42556156730f78973cecd74fa377fe8de91a SHA512 c4785e7e1b99806adc6b354f8ebf5d81a76b1f802628f0453fc365989ed07c5ba039145ea1ebbfbd0340815157c6638040953afad1c1c9f80bc3271257137d7c WHIRLPOOL fe229a3bd9b99067d33ab4d53ae6502578fff4ee3e184b0096e9da3c458534a35751cc6809b77351c011730a91d94c2bf9be94abaa026852ab67b3b6c50cdc7c -DIST libreoffice-help-5.4.0.3.tar.xz 2343204 SHA256 e1460aee386733725e0d734bb5fed4866c93b0342a49936eb45ec350e45e27d9 SHA512 5683c296a35ab3e037bc3ba2ea6ab55d970041f667ab459451dfe555d6042701e86da3adab9a3833d3e71db7ad6ff40a720bcf22a3f6ee41bf13740fa18076b9 WHIRLPOOL 81745102e7073fad752146dec2ba989397d9f4defc6857c69ce1552705ca3e88447a641d12d1d4d4ff2883e3f3c8a0974617f5252f4794d0ee8772f72e28fe83 +DIST libreoffice-help-5.4.2.2.tar.xz 2343504 SHA256 5fc740dbe77876b96ed731f0a6ce793925a9a4a4ba983b5a3506ab24beb73057 SHA512 ba845653d6388bae53eaa945abebb367fedace81c1949ed975a2ad0c270c688649b385b463256b362a6397f18d214aed9b876869434c6c3868649180e57c3112 WHIRLPOOL f5c81288d7d6f608a47f59fe6ae75b6d90b30383fc7fafbc398394c3274014c29fc6933c7b09c517e033e2477355584cb8970f55cf925d645bee57b935e1d253 diff --git a/app-office/libreoffice/files/libreoffice-5.3-system-pyuno.patch b/app-office/libreoffice/files/libreoffice-5.3-system-pyuno.patch deleted file mode 100644 index 3ab3e8299080..000000000000 --- a/app-office/libreoffice/files/libreoffice-5.3-system-pyuno.patch +++ /dev/null @@ -1,47 +0,0 @@ -diff --git a/desktop/scripts/soffice.sh b/desktop/scripts/soffice.sh -index a259bf6..672fa23 100755 ---- a/desktop/scripts/soffice.sh -+++ b/desktop/scripts/soffice.sh -@@ -139,6 +139,9 @@ if echo "$checks" | grep -q "cc" ; then - exit 1; - fi - -+PYTHONPATH=$sd_prog${PYTHONPATH+:$PYTHONPATH} -+export PYTHONPATH -+ - case "`uname -s`" in - NetBSD|OpenBSD|DragonFly) - # this is a temporary hack until we can live with the default search paths - ---- a/pyuno/source/module/uno.py 2016-08-07 20:57:51.653712240 -0400 -+++ b/pyuno/source/module/uno.py 2016-08-07 20:59:33.958896861 -0400 -@@ -16,11 +16,16 @@ - # except in compliance with the License. You may obtain a copy of - # the License at http://www.apache.org/licenses/LICENSE-2.0 . - # -+import os - import pyuno - import sys - import traceback - import warnings - -+sys.path.append('%eprefix%/usr/%libdir%/libreoffice/program') -+if getattr(os.environ, 'URE_BOOTSTRAP', None) is None: -+ os.environ['URE_BOOTSTRAP'] = "vnd.sun.star.pathname:%eprefix%/usr/%libdir%/libreoffice/program/fundamentalrc" -+ - # since on Windows sal3.dll no longer calls WSAStartup - import socket - -diff --git a/pyuno/source/officehelper.py b/pyuno/source/officehelper.py -index 99d3b03..704edab 100755 ---- a/pyuno/source/officehelper.py -+++ b/pyuno/source/officehelper.py -@@ -44,7 +44,7 @@ def bootstrap(): - if "UNO_PATH" in os.environ: - sOffice = os.environ["UNO_PATH"] - else: -- sOffice = "" # lets hope for the best -+ sOffice = "%eprefix%/usr/%libdir%/libreoffice/program" - sOffice = os.path.join(sOffice, "soffice") - if platform.startswith("win"): - sOffice += ".exe" diff --git a/app-office/libreoffice/libreoffice-5.3.4.2.ebuild b/app-office/libreoffice/libreoffice-5.3.4.2.ebuild deleted file mode 100644 index ed828990e578..000000000000 --- a/app-office/libreoffice/libreoffice-5.3.4.2.ebuild +++ /dev/null @@ -1,581 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_REQUIRED="optional" -KDE_SCM="git" -CMAKE_REQUIRED="never" - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) -PYTHON_REQ_USE="threads,xml" - -# experimental ; release ; old -# Usually the tarballs are moved a lot so this should make -# everyone happy. -DEV_URI=" - https://dev-builds.libreoffice.org/pre-releases/src - https://download.documentfoundation.org/libreoffice/src/${PV:0:5}/ - https://download.documentfoundation.org/libreoffice/old/${PV}/ -" -ADDONS_URI="https://dev-www.libreoffice.org/src/" - -BRANDING="${PN}-branding-gentoo-0.8.tar.xz" -# PATCHSET="${P}-patchset-01.tar.xz" - -[[ ${PV} == *9999* ]] && SCM_ECLASS="git-r3" -inherit multiprocessing autotools bash-completion-r1 check-reqs eutils java-pkg-opt-2 kde4-base pax-utils python-single-r1 multilib toolchain-funcs flag-o-matic versionator xdg-utils qmake-utils ${SCM_ECLASS} -unset SCM_ECLASS - -DESCRIPTION="A full office productivity suite" -HOMEPAGE="https://www.libreoffice.org" -SRC_URI="branding? ( https://dev.gentoo.org/~dilfridge/distfiles/${BRANDING} )" -[[ -n ${PATCHSET} ]] && SRC_URI+=" http://dev.gentooexperimental.org/~scarabeus/${PATCHSET}" - -# Split modules following git/tarballs -# Core MUST be first! -# Help is used for the image generator -MODULES="core help" -# Only release has the tarballs -if [[ ${PV} != *9999* ]]; then - for i in ${DEV_URI}; do - for mod in ${MODULES}; do - if [[ ${mod} == core ]]; then - SRC_URI+=" ${i}/${P}.tar.xz" - else - SRC_URI+=" ${i}/${PN}-${mod}-${PV}.tar.xz" - fi - done - unset mod - done - unset i -fi -unset DEV_URI - -# Really required addons -# These are bundles that can't be removed for now due to huge patchsets. -# If you want them gone, patches are welcome. -ADDONS_SRC=( - "${ADDONS_URI}/86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz" # modifies source code - "collada? ( ${ADDONS_URI}/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 )" - "java? ( ${ADDONS_URI}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip )" - # no release for 8 years, should we package it? - "libreoffice_extensions_wiki-publisher? ( ${ADDONS_URI}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip )" - # Does not build with 1.6 rhino at all - "libreoffice_extensions_scripting-javascript? ( ${ADDONS_URI}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip )" - # requirement of rhino - "libreoffice_extensions_scripting-javascript? ( ${ADDONS_URI}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip )" - # not packageable - "odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll )" -) -SRC_URI+=" ${ADDONS_SRC[*]}" - -unset ADDONS_URI -unset ADDONS_SRC - -# Extensions that need extra work: -LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" - -IUSE="bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome googledrive -gstreamer +gtk gtk3 jemalloc kde libressl mysql odk pdfimport postgres quickstarter telepathy test vlc -$(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" - -LICENSE="|| ( LGPL-3 MPL-1.1 )" -SLOT="0" -[[ ${PV} == *9999* ]] || \ -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" - -COMMON_DEPEND="${PYTHON_DEPS} - app-arch/unzip - app-arch/zip - app-text/hunspell:= - >=app-text/libabw-0.1.0 - >=app-text/libebook-0.1 - >=app-text/libetonyek-0.1 - app-text/libexttextcat - app-text/liblangtag - >=app-text/libmspub-0.1.0 - >=app-text/libmwaw-0.3.1 - >=app-text/libodfgen-0.1.0 - app-text/libstaroffice - app-text/libwpd:0.10[tools] - app-text/libwpg:0.3 - >=app-text/libwps-0.4 - app-text/mythes - >=dev-cpp/clucene-2.3.3.4-r2 - =dev-cpp/libcmis-0.5* - dev-db/unixODBC - dev-lang/perl - dev-libs/boost:= - dev-libs/expat - dev-libs/hyphen - dev-libs/icu:= - =dev-libs/liborcus-0.12* - dev-libs/librevenge - dev-libs/nspr - dev-libs/nss - !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) - libressl? ( dev-libs/libressl ) - >=dev-libs/redland-1.0.16 - media-gfx/graphite2 - media-libs/fontconfig - media-libs/freetype:2 - >=media-libs/glew-1.10:= - media-libs/harfbuzz:=[graphite,icu] - media-libs/lcms:2 - >=media-libs/libcdr-0.1.0 - >=media-libs/libfreehand-0.1.0 - media-libs/libpagemaker - >=media-libs/libpng-1.4:0= - >=media-libs/libvisio-0.1.0 - media-libs/libzmf - net-libs/neon - net-misc/curl - net-nds/openldap - sci-mathematics/lpsolve - x11-libs/cairo[X,-xlib-xcb(-)] - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXrender - virtual/glu - virtual/jpeg:0 - virtual/opengl - bluetooth? ( net-wireless/bluez ) - coinmp? ( sci-libs/coinor-mp ) - collada? ( media-libs/opencollada ) - cups? ( net-print/cups ) - dbus? ( dev-libs/dbus-glib ) - eds? ( - dev-libs/glib:2 - gnome-extra/evolution-data-server - ) - firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1 ) - gltf? ( =media-libs/libgltf-0.0* ) - gnome? ( gnome-base/dconf ) - gstreamer? ( - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0 - ) - gtk? ( - x11-libs/gdk-pixbuf - >=x11-libs/gtk+-2.24:2 - ) - gtk3? ( - dev-libs/glib:2 - dev-libs/gobject-introspection - x11-libs/gtk+:3 - ) - jemalloc? ( dev-libs/jemalloc ) - libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) - libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) - mysql? ( dev-db/mysql-connector-c++ ) - pdfimport? ( app-text/poppler:=[cxx] ) - postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) - telepathy? ( net-libs/telepathy-glib ) -" - -RDEPEND="${COMMON_DEPEND} - !app-office/libreoffice-bin - !app-office/libreoffice-bin-debug - !app-office/openoffice - media-fonts/liberation-fonts - media-fonts/libertine - || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools $(add_kdeapps_dep kioclient) ) - java? ( >=virtual/jre-1.6 ) - vlc? ( media-video/vlc ) -" - -if [[ ${PV} != *9999* ]]; then - PDEPEND="=app-office/libreoffice-l10n-$(get_version_component_range 1-2)*" -else - # Translations are not reliable on live ebuilds - # rather force people to use english only. - PDEPEND="!app-office/libreoffice-l10n" -fi - -# FIXME: cppunit should be moved to test conditional -# after everything upstream is under gbuild -# as dmake execute tests right away -DEPEND="${COMMON_DEPEND} - !=dev-libs/libatomic_ops-7.2d - >=dev-libs/libxml2-2.7.8 - dev-libs/libxslt - dev-perl/Archive-Zip - dev-util/cppunit - >=dev-util/gperf-3 - dev-util/intltool - >=dev-util/mdds-1.2.2:1= - media-libs/glm - sys-devel/bison - sys-devel/flex - sys-devel/gettext - sys-devel/ucpp - sys-libs/zlib - virtual/pkgconfig - x11-libs/libXt - x11-libs/libXtst - x11-proto/randrproto - x11-proto/xextproto - x11-proto/xineramaproto - x11-proto/xproto - java? ( - dev-java/ant-core - >=virtual/jdk-1.6 - ) - odk? ( >=app-doc/doxygen-1.8.4 ) - test? ( dev-util/cppunit ) -" - -REQUIRED_USE="${PYTHON_REQUIRED_USE} - bluetooth? ( dbus ) - collada? ( gltf ) - eds? ( gnome ) - gnome? ( gtk ) - telepathy? ( gtk ) - libreoffice_extensions_nlpsolver? ( java ) - libreoffice_extensions_scripting-beanshell? ( java ) - libreoffice_extensions_scripting-javascript? ( java ) - libreoffice_extensions_wiki-publisher? ( java ) -" - -PATCHES=( - # not upstreamable stuff - "${FILESDIR}/${PN}-5.3-system-pyuno.patch" - "${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch" - - # TODO: upstream - "${FILESDIR}/${PN}-5.2.5.1-glibc-2.24.patch" -) - -pkg_pretend() { - use java || \ - ewarn "If you plan to use Base application you should enable java or you will get various crashes." - - if has_version "/dev/null) - --with-jvm-path="${EPREFIX}/usr/lib/" - " - - use libreoffice_extensions_scripting-beanshell && \ - java_opts+=" --with-beanshell-jar=$(java-pkg_getjar bsh bsh.jar)" - - use libreoffice_extensions_scripting-javascript && \ - java_opts+=" --with-rhino-jar=$(java-pkg_getjar rhino-1.6 js.jar)" - fi - - if use kde; then - # bug 544108, bug 599076 - export QMAKEQT4="$(qt4_get_bindir)/qmake" - export MOCQT4="$(qt4_get_bindir)/moc" - fi - - # system headers/libs/...: enforce using system packages - # --disable-breakpad: requires not-yet-in-tree dev-utils/breakpad - # --enable-cairo: ensure that cairo is always required - # --enable-graphite: disabling causes build breakages - # --enable-*-link: link to the library rather than just dlopen on runtime - # --enable-release-build: build the libreoffice as release - # --disable-fetch-external: prevent dowloading during compile phase - # --enable-extension-integration: enable any extension integration support - # --without-{fonts,myspell-dicts,ppsd}: prevent install of sys pkgs - # --disable-report-builder: too much java packages pulled in without pkgs - # --without-system-sane: just sane.h header that is used for scan in writer, - # not linked or anything else, worthless to depend on - econf \ - --docdir="${EPREFIX}/usr/share/doc/${PF}/" \ - --with-system-dicts \ - --with-system-headers \ - --with-system-jars \ - --with-system-libs \ - --enable-cairo-canvas \ - --enable-graphite \ - --enable-largefile \ - --enable-mergelibs \ - --enable-neon \ - --enable-python=system \ - --enable-randr \ - --enable-release-build \ - --disable-breakpad \ - --disable-ccache \ - --disable-dependency-tracking \ - --disable-epm \ - --disable-fetch-external \ - --disable-gstreamer-0-10 \ - --disable-online-update \ - --disable-report-builder \ - --with-alloc=$(use jemalloc && echo "jemalloc" || echo "system") \ - --with-build-version="Gentoo official package" \ - --enable-extension-integration \ - --with-external-dict-dir="${EPREFIX}/usr/share/myspell" \ - --with-external-hyph-dir="${EPREFIX}/usr/share/myspell" \ - --with-external-thes-dir="${EPREFIX}/usr/share/myspell" \ - --with-external-tar="${DISTDIR}" \ - --with-lang="" \ - --with-parallelism=$(makeopts_jobs) \ - --with-system-ucpp \ - --with-vendor="Gentoo Foundation" \ - --with-x \ - --without-fonts \ - --without-myspell-dicts \ - --without-help \ - --with-helppack-integration \ - --without-system-sane \ - $(use_enable bluetooth sdremote-bluetooth) \ - $(use_enable coinmp) \ - $(use_enable collada) \ - $(use_enable cups) \ - $(use_enable debug) \ - $(use_enable dbus) \ - $(use_enable eds evolution2) \ - $(use_enable firebird firebird-sdbc) \ - $(use_enable gltf) \ - $(use_enable gnome gio) \ - $(use_enable gnome dconf) \ - $(use_enable gstreamer gstreamer-1-0) \ - $(use_enable gtk) \ - $(use_enable gtk3) \ - $(use_enable kde kde4) \ - $(use_enable mysql ext-mariadb-connector) \ - $(use_enable odk) \ - $(use_enable pdfimport) \ - $(use_enable postgres postgresql-sdbc) \ - $(use_enable quickstarter systray) \ - $(use_enable telepathy) \ - $(use_enable vlc) \ - $(use_with coinmp system-coinmp) \ - $(use_with collada system-opencollada) \ - $(use_with gltf system-libgltf) \ - $(use_with googledrive gdrive-client-id ${google_default_client_id}) \ - $(use_with googledrive gdrive-client-secret ${google_default_client_secret}) \ - $(use_with java) \ - $(use_with mysql system-mysql-cppconn) \ - $(use_with odk doxygen) \ - ${java_opts} \ - ${ext_opts} -} - -src_compile() { - # more and more LO stuff tries to use OpenGL, including tests during build - # bug 501508, bug 540624, bug 545974 and probably more - addpredict /dev/dri - addpredict /dev/ati - addpredict /dev/nvidiactl - - # hack for offlinehelp, this needs fixing upstream at some point - # it is broken because we send --without-help - # https://bugs.freedesktop.org/show_bug.cgi?id=46506 - ( - grep "^export" "${S}/config_host.mk" > "${T}/config_host.mk" || die - source "${T}/config_host.mk" 2&> /dev/null - - local path="${WORKDIR}/helpcontent2/source/auxiliary/" - mkdir -p "${path}" || die - - echo "perl \"${S}/helpcontent2/helpers/create_ilst.pl\" -dir=icon-themes/galaxy/res/helpimg > \"${path}/helpimg.ilst\"" - perl "${S}/helpcontent2/helpers/create_ilst.pl" \ - -dir=icon-themes/galaxy/res/helpimg \ - > "${path}/helpimg.ilst" - [[ -s "${path}/helpimg.ilst" ]] || \ - ewarn "The help images list is empty, something is fishy, report a bug." - ) - - local target - use test && target="build" || target="build-nocheck" - - # this is not a proper make script - make ${target} || die -} - -src_test() { - make unitcheck || die - make slowcheck || die -} - -src_install() { - # This is not Makefile so no buildserver - make DESTDIR="${D}" distro-pack-install -o build -o check || die - - # bug 593514 - if use gtk3; then - dosym libreoffice/program/liblibreofficekitgtk.so \ - /usr/$(get_libdir)/liblibreofficekitgtk.so - fi - - # bash completion aliases - bashcomp_alias \ - libreoffice \ - unopkg loimpress lobase localc lodraw lomath lowriter lofromtemplate loweb loffice - - if use branding; then - insinto /usr/$(get_libdir)/${PN}/program - newins "${WORKDIR}/branding-sofficerc" sofficerc - dodir /etc/env.d - echo "CONFIG_PROTECT=/usr/$(get_libdir)/${PN}/program/sofficerc" > "${ED}"etc/env.d/99${PN} || die - fi - - # Hack for offlinehelp, this needs fixing upstream at some point. - # It is broken because we send --without-help - # https://bugs.freedesktop.org/show_bug.cgi?id=46506 - insinto /usr/$(get_libdir)/libreoffice/help - doins xmlhelp/util/*.xsl - - # Remove desktop files to support old installs that can't parse mime - rm -r "${ED}"usr/share/mimelnk/ || die - - pax-mark -m "${ED}"usr/$(get_libdir)/libreoffice/program/soffice.bin - pax-mark -m "${ED}"usr/$(get_libdir)/libreoffice/program/unopkg.bin -} - -pkg_preinst() { - # Cache updates - all handled by kde eclass for all environments - kde4-base_pkg_preinst -} - -pkg_postinst() { - kde4-base_pkg_postinst -} - -pkg_postrm() { - kde4-base_pkg_postrm -} diff --git a/app-office/libreoffice/libreoffice-5.4.0.3.ebuild b/app-office/libreoffice/libreoffice-5.4.2.2.ebuild similarity index 93% rename from app-office/libreoffice/libreoffice-5.4.0.3.ebuild rename to app-office/libreoffice/libreoffice-5.4.2.2.ebuild index 54ba26b4516f..ae65059e208a 100644 --- a/app-office/libreoffice/libreoffice-5.4.0.3.ebuild +++ b/app-office/libreoffice/libreoffice-5.4.2.2.ebuild @@ -24,7 +24,7 @@ BRANDING="${PN}-branding-gentoo-0.8.tar.xz" # PATCHSET="${P}-patchset-01.tar.xz" [[ ${PV} == *9999* ]] && SCM_ECLASS="git-r3" -inherit multiprocessing autotools bash-completion-r1 check-reqs eutils java-pkg-opt-2 kde4-base pax-utils python-single-r1 multilib toolchain-funcs flag-o-matic versionator xdg-utils qmake-utils ${SCM_ECLASS} +inherit multiprocessing autotools bash-completion-r1 check-reqs eutils java-pkg-opt-2 kde4-base pax-utils python-single-r1 toolchain-funcs flag-o-matic versionator xdg-utils qmake-utils ${SCM_ECLASS} unset SCM_ECLASS DESCRIPTION="A full office productivity suite" @@ -35,18 +35,11 @@ SRC_URI="branding? ( https://dev.gentoo.org/~dilfridge/distfiles/${BRANDING} )" # Split modules following git/tarballs # Core MUST be first! # Help is used for the image generator -MODULES="core help" # Only release has the tarballs if [[ ${PV} != *9999* ]]; then for i in ${DEV_URI}; do - for mod in ${MODULES}; do - if [[ ${mod} == core ]]; then - SRC_URI+=" ${i}/${P}.tar.xz" - else - SRC_URI+=" ${i}/${PN}-${mod}-${PV}.tar.xz" - fi - done - unset mod + SRC_URI+=" ${i}/${P}.tar.xz" + SRC_URI+=" ${i}/${PN}-help-${PV}.tar.xz" done unset i fi @@ -183,7 +176,7 @@ RDEPEND="${COMMON_DEPEND} media-fonts/dejavu media-fonts/liberation-fonts media-fonts/libertine - || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools $(add_kdeapps_dep kioclient) ) + || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools ) java? ( >=virtual/jre-1.6 ) vlc? ( media-video/vlc ) " @@ -293,29 +286,23 @@ pkg_setup() { } src_unpack() { - local mod - [[ -n ${PATCHSET} ]] && unpack ${PATCHSET} use branding && unpack "${BRANDING}" if [[ ${PV} != *9999* ]]; then unpack "${P}.tar.xz" - for mod in ${MODULES}; do - [[ ${mod} == core ]] && continue - unpack "${PN}-${mod}-${PV}.tar.xz" - done + unpack "${PN}-help-${PV}.tar.xz" else - local base_uri branch checkout mypv - base_uri="https://anongit.freedesktop.org" - for mod in ${MODULES}; do - branch="master" - mypv=${PV/.9999} - [[ ${mypv} != ${PV} ]] && branch="${PN}-${mypv/./-}" - git-r3_fetch "${base_uri}/${PN}/${mod}" "refs/heads/${branch}" - [[ ${mod} != core ]] && checkout="${S}/${mod}" - [[ ${mod} == help ]] && checkout="helpcontent2" # doesn't match on help - git-r3_checkout "${base_uri}/${PN}/${mod}" ${checkout} - done + local base_uri branch mypv + base_uri="https://anongit.freedesktop.org/git" + branch="master" + mypv=${PV/.9999} + [[ ${mypv} != ${PV} ]] && branch="${PN}-${mypv/./-}" + git-r3_fetch "${base_uri}/${PN}/core" "refs/heads/${branch}" + git-r3_checkout "${base_uri}/${PN}/core" + + git-r3_fetch "${base_uri}/${PN}/help" "refs/heads/master" + git-r3_checkout "${base_uri}/${PN}/help" "helpcontent2" # doesn't match on help fi } @@ -517,9 +504,9 @@ src_compile() { local path="${WORKDIR}/helpcontent2/source/auxiliary/" mkdir -p "${path}" || die - echo "perl \"${S}/helpcontent2/helpers/create_ilst.pl\" -dir=icon-themes/galaxy/res/helpimg > \"${path}/helpimg.ilst\"" + echo "perl \"${S}/helpcontent2/helpers/create_ilst.pl\" -dir=helpcontent2/source/media/helpimg > \"${path}/helpimg.ilst\"" perl "${S}/helpcontent2/helpers/create_ilst.pl" \ - -dir=icon-themes/galaxy/res/helpimg \ + -dir=helpcontent2/source/media/helpimg \ > "${path}/helpimg.ilst" [[ -s "${path}/helpimg.ilst" ]] || \ ewarn "The help images list is empty, something is fishy, report a bug." diff --git a/app-office/libreoffice/libreoffice-5.4.9999.ebuild b/app-office/libreoffice/libreoffice-5.4.9999.ebuild index f21643f11e4b..8ff7aa789a8a 100644 --- a/app-office/libreoffice/libreoffice-5.4.9999.ebuild +++ b/app-office/libreoffice/libreoffice-5.4.9999.ebuild @@ -504,9 +504,9 @@ src_compile() { local path="${WORKDIR}/helpcontent2/source/auxiliary/" mkdir -p "${path}" || die - echo "perl \"${S}/helpcontent2/helpers/create_ilst.pl\" -dir=icon-themes/galaxy/res/helpimg > \"${path}/helpimg.ilst\"" + echo "perl \"${S}/helpcontent2/helpers/create_ilst.pl\" -dir=helpcontent2/source/media/helpimg > \"${path}/helpimg.ilst\"" perl "${S}/helpcontent2/helpers/create_ilst.pl" \ - -dir=icon-themes/galaxy/res/helpimg \ + -dir=helpcontent2/source/media/helpimg \ > "${path}/helpimg.ilst" [[ -s "${path}/helpimg.ilst" ]] || \ ewarn "The help images list is empty, something is fishy, report a bug." diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index dd53bce04bbd..4be2836950fb 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -505,9 +505,9 @@ src_compile() { local path="${WORKDIR}/helpcontent2/source/auxiliary/" mkdir -p "${path}" || die - echo "perl \"${S}/helpcontent2/helpers/create_ilst.pl\" -dir=icon-themes/galaxy/res/helpimg > \"${path}/helpimg.ilst\"" + echo "perl \"${S}/helpcontent2/helpers/create_ilst.pl\" -dir=helpcontent2/source/media/helpimg > \"${path}/helpimg.ilst\"" perl "${S}/helpcontent2/helpers/create_ilst.pl" \ - -dir=icon-themes/galaxy/res/helpimg \ + -dir=helpcontent2/source/media/helpimg \ > "${path}/helpimg.ilst" [[ -s "${path}/helpimg.ilst" ]] || \ ewarn "The help images list is empty, something is fishy, report a bug." diff --git a/app-office/lyx/lyx-2.0.8.1-r1.ebuild b/app-office/lyx/lyx-2.0.8.1-r1.ebuild index 96bc6149e56a..0cd685c7964a 100644 --- a/app-office/lyx/lyx-2.0.8.1-r1.ebuild +++ b/app-office/lyx/lyx-2.0.8.1-r1.ebuild @@ -18,7 +18,7 @@ SRC_URI="ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${MY_P}.tar.xz LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x86-macos" IUSE="cups debug nls +latex monolithic-build html rtf dot docbook dia subversion rcs svg gnumeric +hunspell aspell enchant" LANGS="ar ca cs de da el en es eu fi fr gl he hu ia id it ja nb nn pl pt ro ru sk sr sv tr uk zh_CN zh_TW" diff --git a/app-office/lyx/lyx-2.1.5-r1.ebuild b/app-office/lyx/lyx-2.1.5-r1.ebuild index 249843210ca6..8eaf004cd5f8 100644 --- a/app-office/lyx/lyx-2.1.5-r1.ebuild +++ b/app-office/lyx/lyx-2.1.5-r1.ebuild @@ -18,7 +18,7 @@ SRC_URI="ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/${MY_P}.tar.xz LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x86-macos" IUSE="cups debug nls +latex monolithic-build html rtf dot docbook dia subversion rcs svg gnumeric +hunspell aspell enchant" LANGS="ar ca cs de da el en es eu fi fr gl he hu ia id it ja nb nn pl pt ro ru sk sr sv tr uk zh_CN zh_TW" diff --git a/app-portage/eix/metadata.xml b/app-portage/eix/metadata.xml index af301784c993..f07795f51987 100644 --- a/app-portage/eix/metadata.xml +++ b/app-portage/eix/metadata.xml @@ -1,18 +1,15 @@ - - martin@mvath.de - Martin Väth - Upstream developer, assign bugs - xmw@gentoo.org Michael Weber - - proxy-maint@gentoo.org - Proxy Maintainers + + martin@mvath.de + Martin Väth + Upstream developer, CC on bugs, do not copy ebuilds + from his overlay Build with upstream's CXXFLAGS/LDFLAGS for debugging support; not recommended for normal use. diff --git a/app-portage/gentoolkit/gentoolkit-0.4.0.ebuild b/app-portage/gentoolkit/gentoolkit-0.4.0.ebuild index 398ffb0a1cd1..83450c7fa03e 100644 --- a/app-portage/gentoolkit/gentoolkit-0.4.0.ebuild +++ b/app-portage/gentoolkit/gentoolkit-0.4.0.ebuild @@ -16,7 +16,7 @@ LICENSE="GPL-2" SLOT="0" IUSE="" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" DEPEND="sys-apps/portage[${PYTHON_USEDEP}]" RDEPEND="${DEPEND} diff --git a/app-shells/push/metadata.xml b/app-shells/push/metadata.xml index d19cc490f718..cc23092c85c2 100644 --- a/app-shells/push/metadata.xml +++ b/app-shells/push/metadata.xml @@ -1,18 +1,15 @@ - - martin@mvath.de - Martin Väth - Upstream developer, assign bugs - xmw@gentoo.org - Proxy committer, CC bugs + Michael Weber - - proxy-maint@gentoo.org - Proxy Maintainers + + martin@mvath.de + Martin Väth + Upstream developer, CC on bugs, do not copy ebuilds + from his overlay diff --git a/app-shells/quoter/metadata.xml b/app-shells/quoter/metadata.xml index 9177db3939b6..531820332509 100644 --- a/app-shells/quoter/metadata.xml +++ b/app-shells/quoter/metadata.xml @@ -1,18 +1,15 @@ - - martin@mvath.de - Martin Väth - Upstream developer, assign bugs - xmw@gentoo.org - Proxy committer, CC bugs + Michael Weber - - proxy-maint@gentoo.org - Proxy Maintainers + + martin@mvath.de + Martin Väth + Upstream developer, CC on bugs, do not copy ebuilds + from his overlay diff --git a/app-shells/rrs/metadata.xml b/app-shells/rrs/metadata.xml index 1fd237fe8e5c..f11c8394b116 100644 --- a/app-shells/rrs/metadata.xml +++ b/app-shells/rrs/metadata.xml @@ -5,7 +5,6 @@ pinkbyte@gentoo.org Sergey Popov - rrs diff --git a/app-text/ghostscript-gpl/Manifest b/app-text/ghostscript-gpl/Manifest index 1f7c1f544a6e..442a96866da6 100644 --- a/app-text/ghostscript-gpl/Manifest +++ b/app-text/ghostscript-gpl/Manifest @@ -1,4 +1,2 @@ -DIST ghostscript-9.20.tar.xz 26387028 SHA256 3c0f3dc5df6f784850fa4ce7dcc3d6c56ef543af1fbaedd1d9f8d9f8b66de0ab SHA512 3e636f9746303f0d0fbcdfed22e8da4cc2cfd87c2afde38ffef67acb6a9fc2416aaca691d64355294e70f699bcf4acf33b09d3493dc24bc3c368387f066357fd WHIRLPOOL 0c58d8a860093ae856339839aa5012f5e47d87891fc16890cf7730979cb6506c1b686a6c1ca5dfbdcaafc614d989fec09b665d9eacc784f0dc31bca50d341f7f DIST ghostscript-9.21.tar.xz 29164532 SHA256 2be1d014888a34187ad4bbec19ab5692cc943bd1cb14886065aeb43a3393d053 SHA512 cfea089b92fb01e3f7c18a9ce05e7165fc8b356e2914bf53b7f2fd9de672279c8b97ced07e983e619f0d4334ce16018b100cfbf0cc872c215a8cf2aff4c78731 WHIRLPOOL 3836454ff852633940420a4812667b13c7e9b6602c3fcac7383298bf06cf2157a4580ad4c06cb9797af21418b162f52ff5bc03dd3651079078677eba252c8b40 -DIST ghostscript-gpl-9.20-patchset-2.tar.xz 16696 SHA256 10172b0e1c2bf85933d568bb59f3aa7c1faf7b56b8cf3ab54dfa41e032c3490d SHA512 c62acfaae388d9ecd0d00b3b63e1e42fdc917eaf568ac65833490656d6f7261a7b8df3ba44ed50373007f48b4dd3ca9a3c528ae126307d58635200521e32ba4d WHIRLPOOL 3bf59a324f8f35764cad687da158c404f884ed639505ee5a3ca79ef90bba36b8f4e6919a40aae99947b75697d743340aa88b6a5ba1d7c0e12d17b124385347d3 DIST ghostscript-gpl-9.21-patchset-1.tar.xz 6196 SHA256 53abca720b67cd6b6117b2d4e2946916957fac68ce5caffe7c151504f9db777c SHA512 58fef7080ca17a238231fb528be48f52bcfa771b1e496d7fede6df45fb927f1bb1c755cb77e02aa739295b0ccf0b3d3959f9a05a1628d32ffd11e134c0e0d355 WHIRLPOOL 2541f34acaa5fc923cd82b8873c82acc512bca2b6b28cf347e511acd5a259b4676687cc3c2454b8631a4c7559801c3691e6397c8bf3e04c7575c9566574f35c9 diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.20-r1.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.20-r1.ebuild deleted file mode 100644 index 0d941e885432..000000000000 --- a/app-text/ghostscript-gpl/ghostscript-gpl-9.20-r1.ebuild +++ /dev/null @@ -1,247 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools multilib versionator flag-o-matic toolchain-funcs - -DESCRIPTION="Ghostscript is an interpreter for the PostScript language and for PDF" -HOMEPAGE="http://ghostscript.com/" - -# Maintainer notes about djvu support: -# gsdjvu has not seen any commits since July 2016, which was also roughly the time -# when ghostscript started rearranging internals. Issues I found so far: -# * gs_state and gs_imager_state got unified into gs_gstate -# * decode_glyph changed arguments and semantics (it doesnt give you the unicode now, -# but the length of the required byte array, which you have to allocate and fill) -# * gs_text_enum_t has lost its element pis (???) - -MY_P=${P/-gpl} -# GSDJVU_PV=1.9 -PVM=$(get_version_component_range 1-2) -PVM_S=$(replace_all_version_separators "" ${PVM}) -# SRC_URI=" -# https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PVM_S}/${MY_P}.tar.xz -# mirror://gentoo/${PN}-9.20-patchset-1.tar.xz -# djvu? ( mirror://sourceforge/djvu/gsdjvu-${GSDJVU_PV}.tar.gz )" -SRC_URI=" - https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PVM_S}/${MY_P}.tar.xz - https://dev.gentoo.org/~dilfridge/distfiles/${PN}-9.20-patchset-2.tar.xz -" - -LICENSE="AGPL-3 CPL-1.0" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" -# IUSE="cups dbus djvu gtk idn l10n_de static-libs tiff X" -IUSE="cups dbus gtk idn l10n_de static-libs tiff X" -# RESTRICT="djvu? ( bindist )" - -COMMON_DEPEND=" - app-text/libpaper - media-libs/fontconfig - >=media-libs/freetype-2.4.9:2= - media-libs/jbig2dec - >=media-libs/lcms-2.6:2 - >=media-libs/libpng-1.6.2:0= - >=media-libs/openjpeg-2.1.0:2= - >=sys-libs/zlib-1.2.7:= - virtual/jpeg:0 - cups? ( >=net-print/cups-1.3.8 ) - dbus? ( sys-apps/dbus ) - gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) ) - idn? ( net-dns/libidn ) - tiff? ( >=media-libs/tiff-4.0.1:0= ) - X? ( x11-libs/libXt x11-libs/libXext ) -" -# djvu? ( app-text/djvu ) - -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig -" - -RDEPEND="${COMMON_DEPEND} - >=app-text/poppler-data-0.4.5-r1 - >=media-fonts/urw-fonts-2.4.9 - l10n_ja? ( media-fonts/kochi-substitute ) - l10n_ko? ( media-fonts/baekmuk-fonts ) - l10n_zh-CN? ( media-fonts/arphicfonts ) - l10n_zh-TW? ( media-fonts/arphicfonts ) - !!media-fonts/gnu-gs-fonts-std - !!media-fonts/gnu-gs-fonts-other - !> "${S}"/${gsdjvu_base}/contrib.mak || die -# -## # install ps2utf8.ps, bug #197818 -## sed -i -e '/$(EXTRA_INIT_FILES)/ a\ps2utf8.ps \\' \ -## "${S}"/base/unixinst.mak || die "sed failed" -# fi - - if ! use gtk ; then - sed -i -e "s:\$(GSSOX)::" \ - -e "s:.*\$(GSSOX_XENAME)$::" \ - "${S}"/base/unix-dll.mak || die "sed failed" - fi - - # Force the include dirs to a neutral location. - sed -i \ - -e "/^ZLIBDIR=/s:=.*:=${T}:" \ - configure.ac || die - # Some files depend on zlib.h directly. Redirect them. #573248 - # Also make sure to not define OPJ_STATIC to avoid linker errors due to - # hidden symbols (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203327#c1) - sed -i \ - -e '/^zlib_h/s:=.*:=:' \ - -e 's|-DOPJ_STATIC ||' \ - base/lib.mak || die - - # search path fix - # put LDFLAGS after BINDIR, bug #383447 - sed -i -e "s:\$\(gsdatadir\)/lib:@datarootdir@/ghostscript/${PVM}/$(get_libdir):" \ - -e "s:exdir=.*:exdir=@datarootdir@/doc/${PF}/examples:" \ - -e "s:docdir=.*:docdir=@datarootdir@/doc/${PF}/html:" \ - -e "s:GS_DOCDIR=.*:GS_DOCDIR=@datarootdir@/doc/${PF}/html:" \ - -e 's:-L$(BINDIR):& $(LDFLAGS):g' \ - "${S}"/Makefile.in "${S}"/base/*.mak || die "sed failed" - - cd "${S}" || die - # remove incorrect symlink, bug 590384 - rm -f ijs/ltmain.sh || die - eautoreconf - - cd "${S}/ijs" || die - eautoreconf -} - -src_configure() { - local FONTPATH - for path in \ - /usr/share/fonts/urw-fonts \ - /usr/share/fonts/Type1 \ - /usr/share/fonts \ - /usr/share/poppler/cMap/Adobe-CNS1 \ - /usr/share/poppler/cMap/Adobe-GB1 \ - /usr/share/poppler/cMap/Adobe-Japan1 \ - /usr/share/poppler/cMap/Adobe-Japan2 \ - /usr/share/poppler/cMap/Adobe-Korea1 - do - FONTPATH="$FONTPATH${FONTPATH:+:}${EPREFIX}$path" - done - - PKGCONFIG=$(type -P $(tc-getPKG_CONFIG)) \ - econf \ - --enable-dynamic \ - --enable-freetype \ - --enable-fontconfig \ - --enable-openjpeg \ - --disable-compile-inits \ - --with-drivers=ALL \ - --with-fontpath="$FONTPATH" \ - --with-ijs \ - --with-jbig2dec \ - --with-libpaper \ - --without-luratech \ - $(use_enable cups) \ - $(use_enable dbus) \ - $(use_enable gtk) \ - $(use_with cups pdftoraster) \ - $(use_with idn libidn) \ - $(use_with tiff system-libtiff) \ - $(use_with X x) - -# if use djvu ; then -# sed -i -e 's!$(DD)bbox.dev!& $(DD)djvumask.dev $(DD)djvusep.dev!g' \ -# "${S}"/Makefile || die "sed failed" -# fi - - cd "${S}/ijs" || die - econf \ - --enable-shared \ - $(use_enable static-libs static) -} - -src_compile() { - # -j1 needed because of bug #550926 - emake -j1 so all - - cd "${S}/ijs" || die - emake -} - -src_install() { - emake -j1 DESTDIR="${D}" install-so install - -# use djvu && dobin gsdjvu - - # move gsc to gs, bug #343447 - # gsc collides with gambit, bug #253064 - mv -f "${ED}"/usr/bin/{gsc,gs} || die - - cd "${S}/ijs" || die - emake -j1 DESTDIR="${D}" install - - # rename the original cidfmap to cidfmap.GS - mv "${ED}/usr/share/ghostscript/${PVM}/Resource/Init/cidfmap"{,.GS} || die - - # install our own cidfmap to handle CJK fonts - insinto /usr/share/ghostscript/${PVM}/Resource/Init - doins \ - "${WORKDIR}/fontmaps/CIDFnmap" \ - "${WORKDIR}/fontmaps/cidfmap" - for X in ${LANGS} ; do - if use l10n_${X} ; then - doins "${WORKDIR}/fontmaps/cidfmap.${X/-/_}" - fi - done - - # install the CMaps from poppler-data properly, bug #409361 - dosym ../../../poppler/cMaps /usr/share/ghostscript/${PVM}/Resource/CMap - - use static-libs || prune_libtool_files --all - - if ! use l10n_de; then - rm -r "${ED}"/usr/share/man/de || die - fi -} diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.20-r2.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.20-r2.ebuild deleted file mode 100644 index d2d44e823199..000000000000 --- a/app-text/ghostscript-gpl/ghostscript-gpl-9.20-r2.ebuild +++ /dev/null @@ -1,246 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools multilib versionator flag-o-matic toolchain-funcs - -DESCRIPTION="Ghostscript is an interpreter for the PostScript language and for PDF" -HOMEPAGE="http://ghostscript.com/" - -# Maintainer notes about djvu support: -# gsdjvu has not seen any commits since July 2016, which was also roughly the time -# when ghostscript started rearranging internals. Issues I found so far: -# * gs_state and gs_imager_state got unified into gs_gstate -# * decode_glyph changed arguments and semantics (it doesnt give you the unicode now, -# but the length of the required byte array, which you have to allocate and fill) -# * gs_text_enum_t has lost its element pis (???) - -MY_P=${P/-gpl} -# GSDJVU_PV=1.9 -PVM=$(get_version_component_range 1-2) -PVM_S=$(replace_all_version_separators "" ${PVM}) -# SRC_URI=" -# https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PVM_S}/${MY_P}.tar.xz -# mirror://gentoo/${PN}-9.20-patchset-1.tar.xz -# djvu? ( mirror://sourceforge/djvu/gsdjvu-${GSDJVU_PV}.tar.gz )" -SRC_URI=" - https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PVM_S}/${MY_P}.tar.xz - https://dev.gentoo.org/~dilfridge/distfiles/${PN}-9.20-patchset-2.tar.xz -" - -LICENSE="AGPL-3 CPL-1.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" -# IUSE="cups dbus djvu gtk l10n_de static-libs tiff unicode X" -IUSE="cups dbus gtk l10n_de static-libs tiff unicode X" -# RESTRICT="djvu? ( bindist )" - -COMMON_DEPEND=" - app-text/libpaper - media-libs/fontconfig - >=media-libs/freetype-2.4.9:2= - media-libs/jbig2dec - >=media-libs/lcms-2.6:2 - >=media-libs/libpng-1.6.2:0= - >=media-libs/openjpeg-2.1.0:2= - >=sys-libs/zlib-1.2.7:= - virtual/jpeg:0 - cups? ( >=net-print/cups-1.3.8 ) - dbus? ( sys-apps/dbus ) - gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) ) - unicode? ( net-dns/libidn ) - tiff? ( >=media-libs/tiff-4.0.1:0= ) - X? ( x11-libs/libXt x11-libs/libXext ) -" -# djvu? ( app-text/djvu ) - -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig -" - -RDEPEND="${COMMON_DEPEND} - >=app-text/poppler-data-0.4.5-r1 - >=media-fonts/urw-fonts-2.4.9 - l10n_ja? ( media-fonts/kochi-substitute ) - l10n_ko? ( media-fonts/baekmuk-fonts ) - l10n_zh-CN? ( media-fonts/arphicfonts ) - l10n_zh-TW? ( media-fonts/arphicfonts ) - !!media-fonts/gnu-gs-fonts-std - !!media-fonts/gnu-gs-fonts-other - !> "${S}"/${gsdjvu_base}/contrib.mak || die -# -## # install ps2utf8.ps, bug #197818 -## sed -i -e '/$(EXTRA_INIT_FILES)/ a\ps2utf8.ps \\' \ -## "${S}"/base/unixinst.mak || die "sed failed" -# fi - - if ! use gtk ; then - sed -i -e "s:\$(GSSOX)::" \ - -e "s:.*\$(GSSOX_XENAME)$::" \ - "${S}"/base/unix-dll.mak || die "sed failed" - fi - - # Force the include dirs to a neutral location. - sed -i \ - -e "/^ZLIBDIR=/s:=.*:=${T}:" \ - configure.ac || die - # Some files depend on zlib.h directly. Redirect them. #573248 - # Also make sure to not define OPJ_STATIC to avoid linker errors due to - # hidden symbols (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203327#c1) - sed -i \ - -e '/^zlib_h/s:=.*:=:' \ - -e 's|-DOPJ_STATIC ||' \ - base/lib.mak || die - - # search path fix - # put LDFLAGS after BINDIR, bug #383447 - sed -i -e "s:\$\(gsdatadir\)/lib:@datarootdir@/ghostscript/${PVM}/$(get_libdir):" \ - -e "s:exdir=.*:exdir=@datarootdir@/doc/${PF}/examples:" \ - -e "s:docdir=.*:docdir=@datarootdir@/doc/${PF}/html:" \ - -e "s:GS_DOCDIR=.*:GS_DOCDIR=@datarootdir@/doc/${PF}/html:" \ - -e 's:-L$(BINDIR):& $(LDFLAGS):g' \ - "${S}"/Makefile.in "${S}"/base/*.mak || die "sed failed" - - cd "${S}" || die - # remove incorrect symlink, bug 590384 - rm -f ijs/ltmain.sh || die - eautoreconf - - cd "${S}/ijs" || die - eautoreconf -} - -src_configure() { - local FONTPATH - for path in \ - "${EPREFIX}"/usr/share/fonts/urw-fonts \ - "${EPREFIX}"/usr/share/fonts/Type1 \ - "${EPREFIX}"/usr/share/fonts \ - "${EPREFIX}"/usr/share/poppler/cMap/Adobe-CNS1 \ - "${EPREFIX}"/usr/share/poppler/cMap/Adobe-GB1 \ - "${EPREFIX}"/usr/share/poppler/cMap/Adobe-Japan1 \ - "${EPREFIX}"/usr/share/poppler/cMap/Adobe-Japan2 \ - "${EPREFIX}"/usr/share/poppler/cMap/Adobe-Korea1 - do - FONTPATH="$FONTPATH${FONTPATH:+:}${EPREFIX}$path" - done - - PKGCONFIG=$(type -P $(tc-getPKG_CONFIG)) \ - econf \ - --enable-dynamic \ - --enable-freetype \ - --enable-fontconfig \ - --enable-openjpeg \ - --disable-compile-inits \ - --with-drivers=ALL \ - --with-fontpath="$FONTPATH" \ - --with-ijs \ - --with-jbig2dec \ - --with-libpaper \ - --without-luratech \ - $(use_enable cups) \ - $(use_enable dbus) \ - $(use_enable gtk) \ - $(use_with cups pdftoraster) \ - $(use_with unicode libidn) \ - $(use_with tiff system-libtiff) \ - $(use_with X x) - -# if use djvu ; then -# sed -i -e 's!$(DD)bbox.dev!& $(DD)djvumask.dev $(DD)djvusep.dev!g' \ -# "${S}"/Makefile || die "sed failed" -# fi - - cd "${S}/ijs" || die - econf \ - --enable-shared \ - $(use_enable static-libs static) -} - -src_compile() { - emake so all - - cd "${S}/ijs" || die - emake -} - -src_install() { - emake DESTDIR="${D}" install-so install - -# use djvu && dobin gsdjvu - - # move gsc to gs, bug #343447 - # gsc collides with gambit, bug #253064 - mv -f "${ED}"/usr/bin/{gsc,gs} || die - - cd "${S}/ijs" || die - emake DESTDIR="${D}" install - - # rename the original cidfmap to cidfmap.GS - mv "${ED}/usr/share/ghostscript/${PVM}/Resource/Init/cidfmap"{,.GS} || die - - # install our own cidfmap to handle CJK fonts - insinto /usr/share/ghostscript/${PVM}/Resource/Init - doins \ - "${WORKDIR}/fontmaps/CIDFnmap" \ - "${WORKDIR}/fontmaps/cidfmap" - for X in ${LANGS} ; do - if use l10n_${X} ; then - doins "${WORKDIR}/fontmaps/cidfmap.${X/-/_}" - fi - done - - # install the CMaps from poppler-data properly, bug #409361 - dosym ../../../poppler/cMaps "/usr/share/ghostscript/${PVM}/Resource/CMap" - - use static-libs || find "${ED}" -name '*.la' -delete - - if ! use l10n_de; then - rm -r "${ED}"/usr/share/man/de || die - fi -} diff --git a/app-text/libexttextcat/Manifest b/app-text/libexttextcat/Manifest index 2bf0efcc5895..fe9b08f0fb57 100644 --- a/app-text/libexttextcat/Manifest +++ b/app-text/libexttextcat/Manifest @@ -1 +1,2 @@ DIST libexttextcat-3.4.4.tar.xz 1025376 SHA256 f24c086cf3523424228ed58b9f678cc7647688822e5407d5fbc155fbfc846293 SHA512 f1f7a4292199cb6102cc56a5338b19049664ea664adc96a67a71205fe33d6a40f68b8695825fe253427575347ab6230dce5e0b703635534f32a0f70ff001eeed WHIRLPOOL 00413e249aab03720bc237f72497441586c49a24bfdc23100adce0b76585602d44f84393b90eade07eeb6c7083eb4ba5ff9f5f439148880ad7599d2db2b080e2 +DIST libexttextcat-3.4.5.tar.xz 1041268 SHA256 13fdbc9d4c489a4d0519e51933a1aa21fe3fb9eb7da191b87f7a63e82797dac8 SHA512 f05a9f08c2f2f335d0e483c024321b96fee7424bc1398d4c6acbd9c501f92e22f881bc3d6ec2c0434f9bf4604f3c4b0e880e37d3d0de410eac1a20ea6669baa6 WHIRLPOOL 64c11606ac87af7ca9b1394a098b1a4490f2531db214aa9283625bc118cbc1bf123dd93f6dd94e608bddcc57f9ec522c7dfb641065232dfad7c53ba405299b9e diff --git a/app-text/libexttextcat/libexttextcat-3.4.5.ebuild b/app-text/libexttextcat/libexttextcat-3.4.5.ebuild new file mode 100644 index 000000000000..126ef36d1431 --- /dev/null +++ b/app-text/libexttextcat/libexttextcat-3.4.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Library implementing N-gram-based text categorization" +HOMEPAGE="http://software.wise-guys.nl/libtextcat/" +SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + --disable-werror \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/app-text/libwpd/Manifest b/app-text/libwpd/Manifest index ac2fd59c9a93..96e519055c8e 100644 --- a/app-text/libwpd/Manifest +++ b/app-text/libwpd/Manifest @@ -1 +1,2 @@ DIST libwpd-0.10.1.tar.xz 524004 SHA256 09d3410bc770f9d9eedc8544b5c211771ea3322de3fee19b58ad7d40fb2984f6 SHA512 976694b5e02fd9eb0b3769d5071e9ae88505f491d8fa34473e5b99cd350060a85ddfad9b3c38e9b37a280e695e4571d353fd69fe7b69a627097587912b58ad2c WHIRLPOOL c6c1124a7124edda4dad6788794c46067ad21c8fde0765ff1b1ca6305c08139e86ac0667d6fd6ca53e4bed41ad0b7aa6b4803fad5f7f72c529cf0c3b22bc7b43 +DIST libwpd-0.10.2.tar.xz 536400 SHA256 323f68beaf4f35e5a4d7daffb4703d0566698280109210fa4eaa90dea27d6610 SHA512 821dbc0535ebd4fa41bcf984e344e11176862676c66abebe45cf4284f8de6e6cc7629f8a605b169d034a5c2f3e2461513d61e11e549ca73b8328eb66ac3bdd79 WHIRLPOOL 9ac29bab74f6131966212b932601e397fb5f291aed78e5e1e9da1bafc3ac21329bf1f3b39fde4ed8e8b84918903bb5142624a44293631c515c96b8f9d3511cd6 diff --git a/app-text/libwpd/libwpd-0.10.1.ebuild b/app-text/libwpd/libwpd-0.10.2.ebuild similarity index 94% rename from app-text/libwpd/libwpd-0.10.1.ebuild rename to app-text/libwpd/libwpd-0.10.2.ebuild index 72fe00dc568c..c541619cd91e 100644 --- a/app-text/libwpd/libwpd-0.10.1.ebuild +++ b/app-text/libwpd/libwpd-0.10.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="|| ( LGPL-2.1 MPL-2.0 )" SLOT="0.10" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips x86 ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~x86 ~x86-fbsd" IUSE="doc +tools" RDEPEND="dev-libs/librevenge" diff --git a/app-text/libwpg/Manifest b/app-text/libwpg/Manifest index 97b268172f71..7fdd10343276 100644 --- a/app-text/libwpg/Manifest +++ b/app-text/libwpg/Manifest @@ -1 +1,2 @@ DIST libwpg-0.3.1.tar.xz 316576 SHA256 620d888c10d7e1127d5123ff0065f1b62b86b91bac27d8ae10dcfbdb6bf4278f SHA512 5222609510857d32250e25b1108ecf4c0ce1e58fba280b7c15d400bc8963112adaa9fffa3c21087d4984ec52176d69b30bfc9460ffef978d6b0d7ccc400063b2 WHIRLPOOL c35c51b5098757a0de9a1288d185708775d4ecc2b69ad76e818df5308ec1cbcb870552d45edfe011f65aff141e12656bf98a8ce5207fc0f12ecbc9c705afb3e2 +DIST libwpg-0.3.2.tar.xz 326840 SHA256 57faf1ab97d63d57383ac5d7875e992a3d190436732f4083310c0471e72f8c33 SHA512 f3f76a17056274b2dfd11ce4eb451411d8458b00b3f7be4fae0a932a382f247adbaae1f4f8f6005e7b84f063e415ef5ab609015ba32f779c6ab2f0404b275f3f WHIRLPOOL 492ebc20d136ccd2525c9e1b1ac5613dc6dc74df140c1e190defa22fa5fdb2c04765c5121764c0452087ac9038446384634e61d04512046c22784c523791d911 diff --git a/app-text/libwpg/libwpg-0.3.2.ebuild b/app-text/libwpg/libwpg-0.3.2.ebuild new file mode 100644 index 000000000000..c6a8e938c204 --- /dev/null +++ b/app-text/libwpg/libwpg-0.3.2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit alternatives + +DESCRIPTION="C++ library to read and parse graphics in WPG" +HOMEPAGE="http://libwpg.sourceforge.net/libwpg.htm" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" + +LICENSE="|| ( LGPL-2.1 MPL-2.0 )" +SLOT="0.3" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~x86" +IUSE="doc static-libs" + +RDEPEND=" + app-text/libwpd:0.10[tools] + dev-libs/librevenge +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +src_configure() { + econf \ + --disable-werror \ + --program-suffix=-${SLOT} \ + $(use_with doc docs) \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + alternatives_auto_makesym /usr/bin/wpg2svgbatch.pl "/usr/bin/wpg2svgbatch.pl-[0-9].[0-9]" + alternatives_auto_makesym /usr/bin/wpg2svg "/usr/bin/wpg2svg-[0-9].[0-9]" + alternatives_auto_makesym /usr/bin/wpg2raw "/usr/bin/wpg2raw-[0-9].[0-9]" +} + +pkg_postrm() { + alternatives_auto_makesym /usr/bin/wpg2svgbatch.pl "/usr/bin/wpg2svgbatch.pl-[0-9].[0-9]" + alternatives_auto_makesym /usr/bin/wpg2svg "/usr/bin/wpg2svg-[0-9].[0-9]" + alternatives_auto_makesym /usr/bin/wpg2raw "/usr/bin/wpg2raw-[0-9].[0-9]" +} diff --git a/app-text/qpdf/Manifest b/app-text/qpdf/Manifest index 4fbbec07c4f4..3c4d34cb4e2e 100644 --- a/app-text/qpdf/Manifest +++ b/app-text/qpdf/Manifest @@ -1,4 +1,4 @@ DIST qpdf-5.1.1.tar.gz 7662701 SHA256 95d355d8fa5e1c677e04d884161de94f5438bf3bdc1638498796b042bad4a726 SHA512 236132290694730d7de08635560435d34ae44f4edbc1b887e494f2ee183271331827226e7e29e539d25d5a2ca1dd5815a387c46edc0b6fd898436bbb674d9993 WHIRLPOOL 66eee10dc5163f1e53afcbd02b71bab73598c28ebb9b005c26af4e58396fd693af7ed76a17fd0c29819b0fa08a71ea0158c76bfa0b0d452a78bb357277644459 DIST qpdf-5.1.3.tar.gz 7681578 SHA256 d5164bdad3afc381568dbe8e1509a4a6a911d4d077f1fc20b9866ef8fad901d3 SHA512 676cc6db27dcbcdece21cb427c6aae14646389f4000ff111feee8fdbbb03fe715035e5236a08db4137f275a09ed0dda5c80afbdc5093fe7f56b69a0e335ab73a WHIRLPOOL 96cf06c0da63f9f3f5bccd422875c23e473443a4552de3c23ab9971104876fb5463cb6b7db86faee3aac04bddd9b59391093a7d5840cad801093162561ba459d DIST qpdf-6.0.0.tar.gz 8344860 SHA256 a9fdc7e94d38fcd3831f37b6e0fe36492bf79aa6d54f8f66062cf7f9c4155233 SHA512 303e3cc77ddb87b9494e26c35e0b45b42f73692054c56a00f2e4f1922633c6ebb45c8684992cd9bf32f03366fcc4cd7e7ec6fb9432d2dbba6e0b24395909b5bf WHIRLPOOL f9fae783c16a93826f825a8efe1a116cbde00fb19b8b56dbfcad7878557c106c8f7a58945af3002f2a72aa032247008013edce8943a45cca8c186b68bf2b5cd3 -DIST qpdf-7.0.b1.tar.gz 5788093 SHA256 823ebfefee19b8e4c131866a5e5f403422a95e8a7f75df188ee1a20584cf408e SHA512 1df7f7a242ae6e4f7ad9b7b4a465103c880f6df073032591d4b9a684c8505f5b671ba58f489740eac63e4cab01e8540ba3c66dddc66c303e6e47a641fcd5b866 WHIRLPOOL d24f3def935ecb04eb0d04f5c2fc3b35a69d2b144082a0c7cff8aab16191f6b37829fb79aea3561e01d4d7a201d2b5e1288ea91933bc59b1d94b74db0e8e849a +DIST qpdf-7.0.0.tar.gz 7053781 SHA256 fed08de14caad0fe5efd148d9eca886d812588b2cbb35d13e61993ee8eb8c65f SHA512 7b52d67b4d2c428a7b0c1cd03b03a23f05d38d7e3c81041079a137919019ea5158f12bf95fdcfcff6b43ffdefe93a85127ced2a363a6b4b380cbaa02a3840256 WHIRLPOOL 939704f39badda6edd6fca114134a54888cfb2d9d97fb7085214eec7d25069432a7d7495f8a56201160e5f893b1f60aa6fb2d8bf3831eaf86299429cb892b809 diff --git a/app-text/qpdf/qpdf-6.0.0-r1.ebuild b/app-text/qpdf/qpdf-6.0.0-r1.ebuild deleted file mode 100644 index 2f6257a9a2c9..000000000000 --- a/app-text/qpdf/qpdf-6.0.0-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils - -DESCRIPTION="Command-line tool for structural, content-preserving transformation of PDF files" -HOMEPAGE="http://qpdf.sourceforge.net/" -SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz" - -LICENSE="Artistic-2" -SLOT="0/17" # subslot = libqpdf soname version -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~m68k-mint ~sparc-solaris" -IUSE="doc examples perl static-libs test" - -RDEPEND="dev-libs/libpcre - sys-libs/zlib" -DEPEND="${RDEPEND} - test? ( - sys-apps/diffutils - media-libs/tiff - app-text/ghostscript-gpl[tiff] - )" -# Only need perl for the installed tools. -RDEPEND+=" perl? ( >=dev-lang/perl-5.8 )" - -DOCS=( ChangeLog README TODO ) - -src_prepare() { - # manually install docs - sed -i "/docdir/d" make/libtool.mk || die -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_enable test test-compare-images) -} - -src_install() { - default - - if ! use perl ; then - rm "${ED}"/usr/bin/fix-qdf || die - rm "${ED}"/usr/share/man/man1/fix-qdf.1 || die - fi - - if use doc ; then - dodoc doc/qpdf-manual.pdf - dohtml doc/* - fi - - if use examples ; then - dobin examples/build/.libs/* - fi - - prune_libtool_files -} diff --git a/app-text/qpdf/qpdf-7.0_beta1.ebuild b/app-text/qpdf/qpdf-7.0.0.ebuild similarity index 89% rename from app-text/qpdf/qpdf-7.0_beta1.ebuild rename to app-text/qpdf/qpdf-7.0.0.ebuild index 1aadb75c340b..8aee07529518 100644 --- a/app-text/qpdf/qpdf-7.0_beta1.ebuild +++ b/app-text/qpdf/qpdf-7.0.0.ebuild @@ -3,14 +3,11 @@ EAPI=6 -MY_PV="${PV/_beta/.b}" -MY_P="${PN}-${MY_PV}" - DESCRIPTION="Command-line tool for structural, content-preserving transformation of PDF files" HOMEPAGE="http://qpdf.sourceforge.net/" -SRC_URI="mirror://sourceforge/qpdf/${MY_P}.tar.gz" +SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz" -LICENSE="Artistic-2" +LICENSE="|| ( Apache-2.0 Artistic-2 )" # subslot = libqpdf soname version SLOT="0/18" @@ -36,8 +33,6 @@ RDEPEND="${CDEPEND} DOCS=( ChangeLog README.md TODO ) -S="${WORKDIR}/${MY_P}" - src_configure() { CONFIG_SHELL=/bin/bash econf \ $(use_enable static-libs static) \ diff --git a/app-text/rnv/metadata.xml b/app-text/rnv/metadata.xml index 5a7f1ed8c44d..857f078172f2 100644 --- a/app-text/rnv/metadata.xml +++ b/app-text/rnv/metadata.xml @@ -1,9 +1,6 @@ - - l.valerimanera@gmail.com - dma05@web.de diff --git a/app-text/texlive/texlive-2015.ebuild b/app-text/texlive/texlive-2015.ebuild index a7b0fa8c6bf5..098be06fbe1f 100644 --- a/app-text/texlive/texlive-2015.ebuild +++ b/app-text/texlive/texlive-2015.ebuild @@ -9,7 +9,7 @@ SRC_URI="" LICENSE="metapackage" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="cjk context detex dvi2tty extra epspdf games graphics humanities jadetex luatex metapost music omega pdfannotextractor png pstricks publishers science tex4ht texi2html truetype xetex xindy xml X" diff --git a/app-vim/colorv/colorv-3.0.2-r1.ebuild b/app-vim/colorv/colorv-3.0.2-r1.ebuild index 3196672085ea..104df9cc3bf3 100644 --- a/app-vim/colorv/colorv-3.0.2-r1.ebuild +++ b/app-vim/colorv/colorv-3.0.2-r1.ebuild @@ -11,7 +11,7 @@ inherit python-single-r1 vim-plugin DESCRIPTION="vim plugin: a color tool for vim" HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3597 https://github.com/Rykka/colorv.vim/" LICENSE="MIT" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/app-vim/colorv/colorv-3.0.2.ebuild b/app-vim/colorv/colorv-3.0.2.ebuild deleted file mode 100644 index e8c6e670aeb1..000000000000 --- a/app-vim/colorv/colorv-3.0.2.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit vim-plugin - -DESCRIPTION="vim plugin: a color tool for vim" -HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3597 https://github.com/Rykka/colorv.vim/" -LICENSE="MIT" -KEYWORDS="amd64 x86" -IUSE="" - -VIM_PLUGIN_HELPFILES="${PN}.txt" - -RDEPEND=" - || ( - app-editors/vim[python] - ( app-editors/gvim[python] dev-python/pygtk:2 ) - )" - -src_prepare() { - # use python colorpicker instead of C-based picker - rm autoload/colorv/{colorpicker.c,Makefile} || die -} diff --git a/app-vim/nerdcommenter/Manifest b/app-vim/nerdcommenter/Manifest index 84c9c5ea8d87..1ada53f91300 100644 --- a/app-vim/nerdcommenter/Manifest +++ b/app-vim/nerdcommenter/Manifest @@ -1,2 +1 @@ -DIST nerdcommenter-2.4.0.tar.gz 34755 SHA256 cb2c14c8c002fd5db5bcb126a836c5057537f4e4efeb229232a742433140ac51 SHA512 ec389cd3f6f1f2093debe2e2d5a09573324d9f8459b4f6c3528bf7b46f9b84fad08718e140be6d39bb8c990778de89fda7f9bb06704c1ea6ff319e6ac431fcdd WHIRLPOOL 511b70b1a04be7f6a1e58884369fae3868d90214a6f542dd542bc539bc624141ddacec15ba28aa7a6af804442de56bd0b48d434903253d098af9dae657332e58 DIST nerdcommenter-2.5.0.tar.gz 36834 SHA256 c6611cd24cf7c9c9aee49f14f6060495c39d29e69030d5dbdc1525d6ba2b6ac7 SHA512 8616f56d90dfe2fece0a82b888700c4c762c75b7d1cd30e32a3294d1fe7b65d506a13cfead534ae0f11a2384593d246a723e9a0042421691a5d6fb44969e7ead WHIRLPOOL 88e1b2fd26e1598c411e482cb4e0969a33829d361031efa280ee896ed45f2892aa6198333cd802f8a24bdd75dd1840e3e5e69731b4f3fac37dd11cd2c47a6bc0 diff --git a/app-vim/nerdcommenter/nerdcommenter-2.4.0.ebuild b/app-vim/nerdcommenter/nerdcommenter-2.4.0.ebuild deleted file mode 100644 index 220c1b3ede38..000000000000 --- a/app-vim/nerdcommenter/nerdcommenter-2.4.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit vim-plugin - -DESCRIPTION="vim plugin: easy commenting of code for many filetypes" -HOMEPAGE="https://github.com/scrooloose/nerdcommenter http://www.vim.org/scripts/script.php?script_id=1218" -SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="WTFPL-2 " -KEYWORDS="amd64 x86 ~x86-linux ~x86-macos ~sparc64-solaris" - -VIM_PLUGIN_HELPFILES="NERD_commenter.txt" - -src_prepare() { - default - rm README.md Rakefile || die -} diff --git a/app-vim/nerdcommenter/nerdcommenter-2.5.0.ebuild b/app-vim/nerdcommenter/nerdcommenter-2.5.0.ebuild index 5d3f9f95e5f9..5d0f89e4459a 100644 --- a/app-vim/nerdcommenter/nerdcommenter-2.5.0.ebuild +++ b/app-vim/nerdcommenter/nerdcommenter-2.5.0.ebuild @@ -10,7 +10,7 @@ if [[ ${PV} == "9999" ]] ; then inherit git-r3 else SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~x86-linux ~x86-macos ~sparc64-solaris" + KEYWORDS="amd64 x86 ~x86-linux ~x86-macos ~sparc64-solaris" fi DESCRIPTION="vim plugin: easy commenting of code for many filetypes" diff --git a/app-vim/tagbar/Manifest b/app-vim/tagbar/Manifest index 1a12bcec0e67..0ec905079153 100644 --- a/app-vim/tagbar/Manifest +++ b/app-vim/tagbar/Manifest @@ -1 +1,2 @@ DIST tagbar-2.6.1.tar.gz 51639 SHA256 c061a7e0a45a166f4558b31e6c47b9fd701f5fa1319527b65a268ea054dea5fb SHA512 eb0f29dc2f08d943e1ac0c0fe97ed72a49b85e22d105815a5557e205532be379d3ce8429c5303b917c005b465a7385161ff2edc96efc0fc312178155c67a7c22 WHIRLPOOL d5f7b0916e1eb0faa9a7887a4249ace5f0b8e369527a89010dabfee55507516050a5e5dd2184ab43c095ff514708bf25ab6d78fea85db8821804bbe908ebbc27 +DIST tagbar-2.7.tar.gz 59027 SHA256 955523fdb9a12aa3de2985e57884a7ec3d5dea2ebeae371a25c2e71ab0af817a SHA512 d964d3055f1679aad86b0756cc444a4857eb29ca22f2bd3567ad6c8d073e75d0c8823109038415f5bd1d269bbf8e36da6f34d70fedee54c10f90535ef79ff3c8 WHIRLPOOL e8534ce2b59ef6cfe6b78c3a21fdcc88be64f5f46662686c3878bad86c42b584ebc1a5570ee74a4686180406322031991bafaa337052f898ff654c4079ae7b15 diff --git a/app-vim/tagbar/tagbar-2.7.ebuild b/app-vim/tagbar/tagbar-2.7.ebuild new file mode 100644 index 000000000000..560f75868dd2 --- /dev/null +++ b/app-vim/tagbar/tagbar-2.7.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vim-plugin + +DESCRIPTION="vim plugin: display tags of the current file ordered by scope" +HOMEPAGE="https://majutsushi.github.com/tagbar/ + http://www.vim.org/scripts/script.php?script_id=3465" +SRC_URI="https://github.com/majutsushi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="vim" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-util/ctags-5.5" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_prepare() { + rm LICENSE || die + default +} diff --git a/app-vim/tcomment/Manifest b/app-vim/tcomment/Manifest index af1ae0480c8d..ceae256b64f5 100644 --- a/app-vim/tcomment/Manifest +++ b/app-vim/tcomment/Manifest @@ -1,2 +1 @@ DIST tcomment-3.08.1.tar.gz 49918 SHA256 4f42ca89bb66110fcd770862a129b225c6b54b3f8e9419dba168002de238ad6d SHA512 609d5eb1e7785fb1af829000ab27ab63ac2bb7550bcd0f91c7c35f0a8c4b879e5348745f57b11d1e24d37920056ca55da8863e15e40d6fe289617d5d898a4177 WHIRLPOOL eb4383350708e78fb6b816aca97e178897f9710a3ff4cba8dfe5c7861b65ed4b86a7532375ebdc9ff0a2635a6493788d3caeac85a079c2674c2980b8cdda3404 -DIST tcomment-3.08.tar.gz 38317 SHA256 4e88509c10dbbb6fdbdf93955c004fa3d44c10536a63e1c3e4348e65454e7256 SHA512 9cb582e4c82334a5752f2a0b5b3e753fc7a4bfd3db76dd8f1ca49938f3f9890b8723476a0c3400f60ff8b358d52bf32fa8497c7b1c6118afd21bb860b2ce6061 WHIRLPOOL 855a4516e0864989bde077fe476778a1f33d60423a6fda1da442c4d0e76e727931d868fdb6fad140535a0398fac15ba555fe71fd418cfefea214b275d0e87404 diff --git a/app-vim/tcomment/tcomment-3.08.1.ebuild b/app-vim/tcomment/tcomment-3.08.1.ebuild index ab0decbf1e3f..3fafd8d493c1 100644 --- a/app-vim/tcomment/tcomment-3.08.1.ebuild +++ b/app-vim/tcomment/tcomment-3.08.1.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]] ; then inherit git-r3 else SRC_URI="https://github.com/tomtom/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="amd64 x86" S="${WORKDIR}/${MY_PN}-${PV}" fi diff --git a/app-vim/tcomment/tcomment-3.08.ebuild b/app-vim/tcomment/tcomment-3.08.ebuild deleted file mode 100644 index 484c1aa6a783..000000000000 --- a/app-vim/tcomment/tcomment-3.08.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit vim-plugin - -MY_PN="tcomment_vim" -DESCRIPTION="vim plugin: an extensible and universal comment toggler" -HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1173 https://github.com/tomtom/tcomment_vim" -SRC_URI="https://github.com/tomtom/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-3" -KEYWORDS="amd64 x86" - -VIM_PLUGIN_HELPFILES="${PN}.txt" - -S=${WORKDIR}/${MY_PN}-${PV} - -src_prepare() { - rm -r README spec addon* || die -} diff --git a/app-vim/vim-latex/Manifest b/app-vim/vim-latex/Manifest index 64d81f68784f..fb6d70bcd37b 100644 --- a/app-vim/vim-latex/Manifest +++ b/app-vim/vim-latex/Manifest @@ -1,2 +1,2 @@ -DIST vim-latex-1.8.23-20130116.788-git2ef9956.tar.gz 287749 SHA256 99f47151d5108901f85c793496a301341fe6be66b39bd5b42ea7db2e0afd426c SHA512 27cbea24ef5cf8c5ef6c2a9790bd1745d7d907640dd47dd199e579b8e04c33e30b1907f89e9898f8197e46f002ce4145e5c63635801ca8729d4ad988aaa7b590 WHIRLPOOL 74d11d665568ff4afaa40e3208764919e32c9f899ba3e993ed4e4d0049c9f067c2446e2abdecdf3b598ec89c9d4187f24f9ca04a654ecbaa4dc2cfdcc0e06975 DIST vim-latex-1.8.23-20141116.812-gitd0f31c9.tar.gz 288376 SHA256 b3f8c395ae4d012bc6597e3beb22568c84554195bcba3cd3edc6c84270458eab SHA512 18444b7aef9ca1d7288e2616c0329274172afa3f932096fddc5e40888f65c8cacae2454ab316c5699395268aa88af13b32f3ae6e36058e27e4e48e6d6591b762 WHIRLPOOL f5a133483fd3f8ce33c82baa82fb6632942baa9d919814516904994c848264ec08d89cac299592d9fd741282a4644f63c2ca46ce5e8296c4dd64bf36d46a46f7 +DIST vim-latex-1.9.0.tar.gz 289271 SHA256 1fe71b034eb72061380ba3f35dde3e4f6095e8584827ce78bf745a546b6f46ee SHA512 4cce21683af74a5a1034e5ecc0f6268b5065324908671d40b4d6b60ac880890df1e9c3d6c16fa57dd1edc33766ded374fd43473699a974ba83e4aeac42030e63 WHIRLPOOL 259920a04e27c780e0857b30a17f6311b358fe89d38fad3786d7ad958a88ce59cbc3d1dacd7f11b89aa32bd02d46e1b9438120f8e5fe073a44011bbe153233b9 diff --git a/app-vim/vim-latex/metadata.xml b/app-vim/vim-latex/metadata.xml index f6d5f9255cc8..6c05a86c762d 100644 --- a/app-vim/vim-latex/metadata.xml +++ b/app-vim/vim-latex/metadata.xml @@ -7,7 +7,6 @@ Install HTML documentation - Enable python support which can help speed up some functionality vim-latex diff --git a/app-vim/vim-latex/vim-latex-1.8.23.20130116.ebuild b/app-vim/vim-latex/vim-latex-1.8.23.20130116.ebuild deleted file mode 100644 index b9f42680e7c4..000000000000 --- a/app-vim/vim-latex/vim-latex-1.8.23.20130116.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit vim-plugin versionator python-single-r1 - -MY_REV="788-git2ef9956" -MY_P="${PN}-$( replace_version_separator 3 - ).${MY_REV}" - -DESCRIPTION="A comprehensive set of tools to view, edit and compile LaTeX documents" -HOMEPAGE="http://vim-latex.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="vim" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" -IUSE="html python" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND=" - ${PYTHON_DEPS} - || ( - app-editors/vim[python?] - app-editors/gvim[python?] - ) - virtual/latex-base - !app-vim/vimtex" - -S=${WORKDIR}/${MY_P} - -VIM_PLUGIN_HELPFILES="latex-suite.txt latex-suite-quickstart.txt latexhelp.txt imaps.txt" - -src_prepare() { - # The makefiles do weird stuff, including running the svn command - rm Makefile Makefile.in || die "rm Makefile Makefile.in failed" -} - -src_install() { - use html && dohtml -r doc/ - - # Don't mess up vim's doc dir with random files - mv doc mydoc || die - mkdir doc || die - mv mydoc/*.txt doc/ || die - rm -rf mydoc || die - - # Don't install buggy tags scripts, use ctags instead - rm latextags ltags || die - - vim-plugin_src_install - - # Use executable permissions (bug #352403) - fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py - - python_fix_shebang "${ED}" -} - -pkg_postinst() { - vim-plugin_pkg_postinst - elog - elog "To use the vim-latex plugin add:" - elog " filetype plugin on" - elog ' set grepprg=grep\ -nH\ $*' - elog " let g:tex_flavor='latex'" - elog "to your ~/.vimrc-file" - elog -} diff --git a/app-vim/vim-latex/vim-latex-1.8.23.20141116.ebuild b/app-vim/vim-latex/vim-latex-1.8.23.20141116.ebuild index cd63293ec9fd..da767f6ade64 100644 --- a/app-vim/vim-latex/vim-latex-1.8.23.20141116.ebuild +++ b/app-vim/vim-latex/vim-latex-1.8.23.20141116.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="http://vim-latex.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="vim" -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" +KEYWORDS="alpha amd64 ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" IUSE="html" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/app-vim/vim-latex/vim-latex-1.9.0.ebuild b/app-vim/vim-latex/vim-latex-1.9.0.ebuild new file mode 100644 index 000000000000..f8c537029f98 --- /dev/null +++ b/app-vim/vim-latex/vim-latex-1.9.0.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) + +inherit vim-plugin python-single-r1 + +DESCRIPTION="A comprehensive set of tools to view, edit and compile LaTeX documents" +HOMEPAGE="http://vim-latex.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="vim" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + || ( + app-editors/vim[python,${PYTHON_USEDEP}] + app-editors/gvim[python,${PYTHON_USEDEP}] + ) + virtual/latex-base + !app-vim/vimtex" + +VIM_PLUGIN_HELPFILES="latex-suite.txt latex-suite-quickstart.txt latexhelp.txt imaps.txt" + +src_compile() { :; } + +src_install() { + # remove unused metadata + rm vim-latex.metainfo.xml || die + + # don't mess up vim's doc dir with random files + mv doc mydoc || die + mkdir doc || die + mv mydoc/*.txt doc/ || die + rm -rf mydoc || die + + # don't install buggy tags scripts, use ctags instead + rm latextags ltags || die + + vim-plugin_src_install + + # use executable permissions (bug #352403) + fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py + + python_fix_shebang "${ED}" +} + +pkg_postinst() { + vim-plugin_pkg_postinst + + if [[ -z ${REPLACING_VERSIONS} ]]; then + echo + elog "To use the vim-latex plugin add:" + elog " filetype plugin on" + elog ' set grepprg=grep\ -nH\ $*' + elog " let g:tex_flavor='latex'" + elog "to your ~/.vimrc-file" + echo + fi +} diff --git a/dev-db/mydumper/Manifest b/dev-db/mydumper/Manifest index 65f8cf4f41e7..ef71bad9872c 100644 --- a/dev-db/mydumper/Manifest +++ b/dev-db/mydumper/Manifest @@ -1 +1,2 @@ DIST mydumper-0.6.2.tar.gz 40165 SHA256 fa28563e8967752828954c5d81e26ef50aad9083d50a977bf5733833b23e3330 SHA512 ef9e48cc481f2674456659c061c45f3cb056180ab5576805e75d458658e94998758b894e45ddc06fb716c1d37fedefb644158f07cf6e77f4b5477663e954eb83 WHIRLPOOL 867b7efa6ca00dcfbb32f5dda2b63de038d0da3ac1a127059cbfdae9af577fef74868c38dad2bd5b5a9b4de76f7d108fcb6232b27c41d3062f413eac4cac843b +DIST mydumper-0.9.3.tar.gz 45320 SHA256 2cd6a074bac7072905bd044ec20955c53c81b10e877ac9c644509940a8d201fb SHA512 3bc2c85dbedf234aecca3b66f445e42bb7ddff83f914d5cc231f6a5755d1c2bf300ae9bf4bdea0717b45ea5338c6c336ec44f375dbf29570ed785ffddda53898 WHIRLPOOL 09988aa314ede6e56ce82c6eade9d29770ca2cbc39d4b2f1cd3f8403f9521e1aa5a372fda7992885c1c25743cc59d4c41cdce8d86eb79b8c7725631c2919c9ae diff --git a/dev-db/mydumper/files/mydumper-mariadb-include-fix.patch b/dev-db/mydumper/files/mydumper-mariadb-include-fix.patch new file mode 100644 index 000000000000..0914b3acff6a --- /dev/null +++ b/dev-db/mydumper/files/mydumper-mariadb-include-fix.patch @@ -0,0 +1,24 @@ +--- a/mydumper.c 2017-09-07 14:53:02.000000000 +0000 ++++ b/mydumper.c 2017-10-06 17:39:34.962315949 +0000 +@@ -22,6 +22,9 @@ + #define _FILE_OFFSET_BITS 64 + + #include ++#if defined(MARIADB_BASE_VERSION) && defined(MARIADB_VERSION_ID) ++ #include ++#endif + #include + #include + #include +--- a/myloader.c 2017-09-07 14:53:02.000000000 +0000 ++++ b/myloader.c 2017-10-06 17:39:28.962315949 +0000 +@@ -19,6 +19,9 @@ + #define _FILE_OFFSET_BITS 64 + + #include ++#if defined(MARIADB_BASE_VERSION) && defined(MARIADB_VERSION_ID) ++ #include ++#endif + #include + #include + #include diff --git a/dev-db/mydumper/metadata.xml b/dev-db/mydumper/metadata.xml index d950a2af5b5a..b7a839d9622c 100644 --- a/dev-db/mydumper/metadata.xml +++ b/dev-db/mydumper/metadata.xml @@ -1,8 +1,15 @@ - + + hydrapolic@gmail.com + Tomáš Mózes + + + proxy-maint@gentoo.org + Proxy Maintainers + - mydumper + maxbube/mydumper diff --git a/dev-db/mydumper/mydumper-0.9.3.ebuild b/dev-db/mydumper/mydumper-0.9.3.ebuild new file mode 100644 index 000000000000..b4970ec03bf0 --- /dev/null +++ b/dev-db/mydumper/mydumper-0.9.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="A high-performance multi-threaded backup (and restore) toolset for MySQL" +HOMEPAGE="https://github.com/maxbube/mydumper" +SRC_URI="https://github.com/maxbube/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +CDEPEND="dev-libs/glib:= + dev-libs/libpcre:= + dev-libs/openssl:= + sys-libs/zlib:= + virtual/mysql" +DEPEND="${CDEPEND} + virtual/pkgconfig + doc? ( dev-python/sphinx )" +RDEPEND="${CDEPEND}" + +PATCHES=( "${FILESDIR}/${PN}-mariadb-include-fix.patch" ) + +src_prepare() { + # respect user cflags; do not expand ${CMAKE_C_FLAGS} (!) + sed -i -e 's:-Werror -O3 -g:${CMAKE_C_FLAGS}:' CMakeLists.txt || die + + # fix doc install path + sed -i -e "s:share/doc/mydumper:share/doc/${PF}:" docs/CMakeLists.txt || die + + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=("-DBUILD_DOCS=$(usex doc)") + + cmake-utils_src_configure +} diff --git a/dev-db/postgresql/Manifest b/dev-db/postgresql/Manifest index 53f958c7c4ec..3302db01929d 100644 --- a/dev-db/postgresql/Manifest +++ b/dev-db/postgresql/Manifest @@ -1,18 +1,14 @@ DIST postgresql-10.0.tar.bz2 19639147 SHA256 712f5592e27b81c5b454df96b258c14d94b6b03836831e015c65d6deeae57fd1 SHA512 88295af13db77a85a604c925aa627d383fdac62c1185119bba87753ce4167a13aed0f055a7a1329b3051f8757c6ba7529baed00a564ef0cfbee685720f282678 WHIRLPOOL 134ed8b17770e53f0a898c0b459a6abaaedfffe71e4eaefab6f9cac44b7a1e4d30da83949f65fe4567751bf58d6be4dbbc973f243af6130ca13c6919e4231470 DIST postgresql-9.2.19.tar.bz2 16466698 SHA256 1d29d73a4f590fcc348280f13ac2ff6a0f72c94908c54e3c20b7ab1560e8dbad SHA512 d3b4c5578bf6d6580028e775bff81a921258cb53b6b06567d96a352d14f3b63063adb480b2f5e2029baf8a034e14b5cd75eebc04f1ed7b16c849e1a5ec1f4867 WHIRLPOOL c13b45fd7aee08ea472557c9f40d79c45abd572fefcc215002b562b8046b1937bf522f6f7f6e280ff1e434c9698734cda9f1c3dacd3c8fee5f33dad0da21f75f -DIST postgresql-9.2.21.tar.bz2 16508040 SHA256 0697e843523ee60c563f987f9c65bc4201294b18525d6e5e4b2c50c6d4058ef9 SHA512 c548cd1ba34ad71dd3f1acde5775ba2e71121f004324fac44dbe123a91d599ced0f1b8be675ed07b77712e8c23f376ff6221349385c19a88c4edbbb186f17861 WHIRLPOOL c46fd4909e2d534b98c8a97f0f5410ab40285c118517a36ee73d0e1234483144d1f58785a59df53fdbfab7c2876a60d000bf574dff0be3030f8c909509b1bfe6 DIST postgresql-9.2.22.tar.bz2 16531224 SHA256 a70e94fa58776b559a8f7b5301371ac4922c9e3ed313ccbef20862514de7c192 SHA512 3e5ab04c2be2719579b2ebbf64b220522acfd9ea74029dd2ed699f60230da224bdc99de4ee5529b513e5586de0377764c4e54deb3dd93d5c53c4d666dce2b6b7 WHIRLPOOL ff1817463b488f4793cd0851df846b961d5510b7c1cf4a560717755ca47c363eb782bc1f2cd7a5d8cbc49727dea64394c6b30038105fc584749157157948964d DIST postgresql-9.2.23.tar.bz2 16531436 SHA256 0e6ecdfeed69030dac8d219ecd4c350ce45e9f2caa9d73e166e407e87afec450 SHA512 9715cb9aa34921f7d246837c6c516d588f88fda543ad635520e9575a5ea448ad39062f2c89c086c7f129cc5f61f4dca33e4f5fd94e1df39da428507c56a81ba3 WHIRLPOOL adb7b0b54661e5208967d6158591b918e776a998d34973c907afac83fb50870f2357446ff40bc7a0fbc71723c12c299b0a29ab3b8a71c1ab5b302281d3a0cd50 DIST postgresql-9.3.15.tar.bz2 17059932 SHA256 a9fcba1446a93aa95e3e1b6535756f0472d10b0f267a0845f8b2b29f89de5c4f SHA512 35c30cdb5599f99c94ab921f9f5e7671a8c0b7bca8fe3b616630ae13d6eda8d329e77e7e802da6a83cb09c3c9ca10fa8ce0de8a184e6fff471130e1cd68ce762 WHIRLPOOL 7a627b2da1dc3671df7edfe58420f81ce24202c1251225054674d79e431bc36e1a70c84aaacb76c59e9eefb26429cbbb9ea80c45a989e3564b69e334d3dd4d84 -DIST postgresql-9.3.17.tar.bz2 17158802 SHA256 9c03e5f280cfe9bd202fa01af773eb146abd8ab3065f7279d574c568f6948dbe SHA512 4b6fc079c2bb728b13b72eb2f7d92183ffb1a9b32110d99dfce674032ac499963b75a021265ba08dc95c34ae35a7edac65ef1e658e66ee2da41c1ce646a702dc WHIRLPOOL f573aaa6acf6d542ed647f392bdb42cd60f650e66174c603f0344d64e2962f2fbb46f0233226188ee9a3a75b2de6532738aac28876bd097556eb4f6c0de21667 DIST postgresql-9.3.18.tar.bz2 17194269 SHA256 ad60d12a5a3dd0f6f5904c41b87e43eff49d3f74e45129fe52c5744366ff2fe0 SHA512 df3f2e0bb396cac74021fcc1a989d04515c12e73846b7392ae859c32668d73ae0027607426072672b6228d7533cc512f72b5729bf5c8f7b0e8d0270727784455 WHIRLPOOL c5b3db88e01c507556b354acb1ecf2bbf43246d023c5d9e1d8479ce4aa9944beca518abbd3e810830af1d75356272b4df3eb58358edfdd265cdc395f62ac8c33 DIST postgresql-9.3.19.tar.bz2 17190203 SHA256 fb9e872cd9e927ba331690d86bc63dcb5a596acb7a536fa0518a3c7d43ac2fb5 SHA512 7293d75b97255720c30d342e1de6032e14e9112e283d2668e80320f76906038d7419ffa7a12eba1fcf9f9274595db10e372db4999b0845cb55998d47f683ebb1 WHIRLPOOL 11ca6ea696de3c25bdaf6073ca4163dbc2f7699772b38ea2c3aababd5b3fb0b0f05e55fb3c255556e35ea3f2feab7129ed5c0ec3944d2f430d0681c33fe4d398 DIST postgresql-9.4.10.tar.bz2 17802812 SHA256 7061678bed1981c681ce54c76b98b6ec17743f090a9775104a45e7e1a8826ecf SHA512 2fcf47769b22c69bc82c9d6edc317e18dfcb4a96534e012bae4355e5088afa83da98b21e08a07766794f0a166888acbd16705a806464ea11711ed97c3b4012fb WHIRLPOOL e6ed3c209043cbbacb0698e1be367f20028d649d4cff62b5d6edd162c6ad629a3ec5f55854bd12334a3d3165462fecb34188bd62cd398cfc242a3579810b5b85 -DIST postgresql-9.4.12.tar.bz2 17833119 SHA256 fca055481875d1c49e31c28443f56472a1474b3fbe25b7ae64440c6118f82e64 SHA512 69951f9e66069aad1049a0ea9fdcd7bf2f84b42e7c6e0f761d78ab22131a39cf56448ef0ddc28170b66970bf53edf2d2355530fcfc0a2dca92b66d69686b7ecb WHIRLPOOL ca023aab29d7993e236c52df58d6fae6f9bd1649cf20f1e1b118ff232dc41674001d3dc9bc945e3f9dd61779dde27cb93265b89d3615e47f49ea46751d8e97c3 DIST postgresql-9.4.13.tar.bz2 17867502 SHA256 0080f55d65194de8b96a2dab153443f8248ff2b2b10e6ab4cda2dcadcac7f2ab SHA512 98e5721ab1ebc88070a5c2c9ef10e4fc21825de495db71f011577aa15fdd31c2dc0429d48e1624f7161c9d31dd75de4d8cf4ed2e34006ed6d1852f04a948e932 WHIRLPOOL 4f963b81dca21a2f3f5e047b5cfd1796d103c0648c4af0250ffe2274ed71011634dfc1e8387fe6dfa6589585a8fcb5accc9878c461978b9abd483b85f6ea3e68 DIST postgresql-9.4.14.tar.bz2 17873740 SHA256 8e7df23a104b057b360d03180ebcb67f645e198a4a0bee94bf56b2bc9505ec6b SHA512 5952479b7c911cc381744e72d44c7c2269f98f4dda677e8c20a8ac7f4281e143017d287634b707ed96859e5438e82e96668bc4c68bb0c2ce9f3853c5a38fd0b2 WHIRLPOOL de4deeef5fca6375265665cc847b693a39bf09e13d8dcc717090b808b82a6fb5cab5e0da0bd7f9bcf299de979d21bbbb6845a0419e6967519711c6bb7ff559c1 DIST postgresql-9.5.5.tar.bz2 18525082 SHA256 02c65290be74de6604c3fed87c9fd3e6b32e949f0ab8105a75bd7ed5aa71f394 SHA512 727ab57796cd393ec3755e9aabf515ebbdc3152b4062c20e64511e866a7e7038ba5c5e2843f13f3a79e2263296451f0e93108346b6f638611fba2449394e338e WHIRLPOOL ec5262fd8cecea20fd12bcec8e6e015817ae8181d9e9ff6d8aca6ed43cadedac1bd5006c3d04262b99b9a79aa02c409920ab3392136f3ff3dc480fe1155cade8 -DIST postgresql-9.5.7.tar.bz2 18639775 SHA256 8b1e936f82109325decc0f5575e846b93fb4fd384e8c4bde83ff5e7f87fc6cad SHA512 0f879a8d7587739aa9a696d60f909f819d567c67dff7c730d5e856639ed78ebc35beeb3cdaf782573d7e62c7056560a934f64cf11ccac6e309f58bb82d1ca78f WHIRLPOOL d58fb5bc378a58efaf2be8d689bd6d511170c3de18e5300ed46be51e272654d52807fd9a783b6a3ec30a022a44577edb19d6627e5153b5e14259de5571ba15bb DIST postgresql-9.5.8.tar.bz2 18670910 SHA256 ade57068f134f36710fa953e1ef79185abd96572f8098741413132f79ed37202 SHA512 4a11f0a16df460391c8250122ca8bf1ab76e49672a8c003ed09718bb4ce2aa57757e7aaec6e41b53d0d1ada293172b974761606647fcc8b4fce8807490b6ef10 WHIRLPOOL 7688ddeea69449d2e2a518017d306f6c17a08becb258297cbf4bde9f3734c5ba2129a9660b448df458963a7cdc796bbb72f2798c20abd3d50d1be8d4f3f94ec1 DIST postgresql-9.5.9.tar.bz2 18677113 SHA256 e98cd5c664ab5a05cb83618ba8078647815cb71f7a60437f0322c7518727cdd4 SHA512 2c6a887b80a4b1d1da18282f443419db2279d8fe61821aa6ed1e9af6d28dda41959981ccede2456bd8835dccd16a80fd485ebc0a1bdc9459996a5d27d7781c55 WHIRLPOOL 522c7927c102b9a3bf14d79d00cd9d598f02dcba97f5f6268f4d1fc0ac20773bfcc96bea945ca958b3ed499af3d1555d8b731a1ef0915d919923d54915090147 DIST postgresql-9.6.4.tar.bz2 19566875 SHA256 2b3ab16d82e21cead54c08b95ce3ac480696944a68603b6c11b3205b7376ce13 SHA512 b0527efacce6efc09340b68c8c56483cd884676e01cb6bfb4f9ce63226a394bdb0bcf3d832f84e4dff5ceecf09ef4cf93e9fbd0ac453ec85efb11ac50a7dff39 WHIRLPOOL 6296114c2a6f690428754278d11fb93f2142c28bc36e0a17b4b075b60ee90bf708d73d68ff6e8118253ef22e54cd5e325094e3675eccb7f060e32af2572a65b0 diff --git a/dev-db/postgresql/postgresql-9.2.21.ebuild b/dev-db/postgresql/postgresql-9.2.21.ebuild deleted file mode 100644 index a8ad6406baad..000000000000 --- a/dev-db/postgresql/postgresql-9.2.21.ebuild +++ /dev/null @@ -1,435 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \ - systemd user versionator - -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris" - -SLOT="$(get_version_component_range 1-2)" - -SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" - -LINGUAS="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr - zh_CN zh_TW" -IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python - +readline selinux +server ssl static-libs tcl threads uuid xml zlib" - -for lingua in ${LINGUAS}; do - IUSE+=" linguas_${lingua}" -done -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -wanted_languages() { - local enable_langs - - for lingua in ${LINGUAS} ; do - use linguas_${lingua} && enable_langs+="${lingua} " - done - - echo -n ${enable_langs} -} - -CDEPEND=" ->=app-eselect/eselect-postgresql-2.0 -sys-apps/less -virtual/libintl -kerberos? ( virtual/krb5 ) -ldap? ( net-nds/openldap ) -pam? ( virtual/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -tcl? ( >=dev-lang/tcl-8:0= ) -uuid? ( dev-libs/ossp-uuid ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -DEPEND="${CDEPEND} -!! /dev/null; then - canonicalise=realpath - elif type -p readlink > /dev/null; then - canonicalise='readlink -f' - else - # can't die, subshell - die "No readlink nor realpath found, cannot canonicalise" - fi - - local l - # First remove any symlinks in /usr/bin that may have been created - # by the old eselect - for l in $(find "${ROOT%/}/usr/bin" -mindepth 1 -maxdepth 1 -type l) ; do - if [[ $(${canonicalise} "${l}") == *postgresql-${SLOT}* ]] ; then - rm "${l}" || ewarn "Couldn't remove ${l}" - fi - done - - # Then move the symlinks created by the ebuild to their proper place. - for l in "${ED}"/usr/bin/*tmp ; do - mv "${l}" "${l%tmp}" \ - || ewarn "Couldn't rename $(basename ${l}) to $(basename ${l%tmp})" - done -} - -pkg_postinst() { - postgresql-config update - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT%/}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT%/}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT%/}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT%/}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT%/}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT%/}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT%/}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "${DATA_DIR}" - chown -Rf postgres:postgres "${DATA_DIR}" - chmod 0700 "${DATA_DIR}" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT%/}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT%/}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directory/d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - else - einfo "You should use the '${EROOT%/}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/postgresql/postgresql-9.3.17.ebuild b/dev-db/postgresql/postgresql-9.3.17.ebuild deleted file mode 100644 index dac5d1ee24c7..000000000000 --- a/dev-db/postgresql/postgresql-9.3.17.ebuild +++ /dev/null @@ -1,440 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \ - systemd user versionator - -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris" - -SLOT="$(get_version_component_range 1-2)" - -SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" - -LINGUAS="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr - zh_CN zh_TW" -IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python - +readline selinux +server ssl static-libs tcl threads uuid xml zlib" - -for lingua in ${LINGUAS}; do - IUSE+=" linguas_${lingua}" -done -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -wanted_languages() { - local enable_langs - - for lingua in ${LINGUAS} ; do - use linguas_${lingua} && enable_langs+="${lingua} " - done - - echo -n ${enable_langs} -} - -CDEPEND=" ->=app-eselect/eselect-postgresql-2.0 -sys-apps/less -virtual/libintl -kerberos? ( virtual/krb5 ) -ldap? ( net-nds/openldap ) -pam? ( virtual/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -tcl? ( >=dev-lang/tcl-8:0= ) -uuid? ( dev-libs/ossp-uuid ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -DEPEND="${CDEPEND} -!! /dev/null; then - canonicalise=realpath - elif type -p readlink > /dev/null; then - canonicalise='readlink -f' - else - # can't die, subshell - die "No readlink nor realpath found, cannot canonicalise" - fi - - local l - # First remove any symlinks in /usr/bin that may have been created - # by the old eselect - for l in $(find "${ROOT%/}/usr/bin" -mindepth 1 -maxdepth 1 -type l) ; do - if [[ $(${canonicalise} "${l}") == *postgresql-${SLOT}* ]] ; then - rm "${l}" || ewarn "Couldn't remove ${l}" - fi - done - - # Then move the symlinks created by the ebuild to their proper place. - for l in "${ED}"/usr/bin/*tmp ; do - mv "${l}" "${l%tmp}" \ - || ewarn "Couldn't rename $(basename ${l}) to $(basename ${l%tmp})" - done -} - -pkg_postinst() { - postgresql-config update - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT%/}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT%/}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT%/}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT%/}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT%/}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT%/}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT%/}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "${DATA_DIR}" - chown -Rf postgres:postgres "${DATA_DIR}" - chmod 0700 "${DATA_DIR}" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT%/}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT%/}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - else - einfo "You should use the '${EROOT%/}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/postgresql/postgresql-9.4.12.ebuild b/dev-db/postgresql/postgresql-9.4.12.ebuild deleted file mode 100644 index 2752511ee382..000000000000 --- a/dev-db/postgresql/postgresql-9.4.12.ebuild +++ /dev/null @@ -1,472 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \ - systemd user versionator - -KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris" - -SLOT="$(get_version_component_range 1-2)" - -SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" - -LINGUAS="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr - zh_CN zh_TW" -IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python - +readline selinux +server ssl static-libs tcl threads uuid xml zlib" - -for lingua in ${LINGUAS}; do - IUSE+=" linguas_${lingua}" -done -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -wanted_languages() { - local enable_langs - - for lingua in ${LINGUAS} ; do - use linguas_${lingua} && enable_langs+="${lingua} " - done - - echo -n ${enable_langs} -} - -CDEPEND=" ->=app-eselect/eselect-postgresql-2.0 -sys-apps/less -virtual/libintl -kerberos? ( virtual/krb5 ) -ldap? ( net-nds/openldap ) -pam? ( virtual/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -tcl? ( >=dev-lang/tcl-8:0= ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no -# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems, -# the libc includes UUID functions. -UTIL_LINUX_LIBC=( elibc_{glibc,uclibc,musl} ) -BSD_LIBC=( elibc_{Free,Net,Open}BSD ) - -nest_usedep() { - local front back - while [[ ${#} -gt 1 ]]; do - front+="${1}? ( " - back+=" )" - shift - done - echo "${front}${1}${back}" -} - -IUSE+=" ${UTIL_LINUX_LIBC[@]} ${BSD_LIBC[@]}" -CDEPEND+=" -uuid? ( - ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )} - $(nest_usedep ${UTIL_LINUX_LIBC[@]/#/!} ${BSD_LIBC[@]/#/!} dev-libs/ossp-uuid) -)" - -DEPEND="${CDEPEND} -!! /dev/null; then - canonicalise=realpath - elif type -p readlink > /dev/null; then - canonicalise='readlink -f' - else - # can't die, subshell - die "No readlink nor realpath found, cannot canonicalise" - fi - - local l - # First remove any symlinks in /usr/bin that may have been created - # by the old eselect - for l in $(find "${ROOT%/}/usr/bin" -mindepth 1 -maxdepth 1 -type l) ; do - if [[ $(${canonicalise} "${l}") == *postgresql-${SLOT}* ]] ; then - rm "${l}" || ewarn "Couldn't remove ${l}" - fi - done - - # Then move the symlinks created by the ebuild to their proper place. - for l in "${ED}"/usr/bin/*tmp ; do - mv "${l}" "${l%tmp}" \ - || ewarn "Couldn't rename $(basename ${l}) to $(basename ${l%tmp})" - done -} - -pkg_postinst() { - postgresql-config update - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT%/}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT%/}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT%/}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT%/}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT%/}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT%/}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT%/}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "${DATA_DIR}" - chown -Rf postgres:postgres "${DATA_DIR}" - chmod 0700 "${DATA_DIR}" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT%/}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT%/}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - else - einfo "You should use the '${EROOT%/}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/postgresql/postgresql-9.5.7.ebuild b/dev-db/postgresql/postgresql-9.5.7.ebuild deleted file mode 100644 index 30951a16a8dc..000000000000 --- a/dev-db/postgresql/postgresql-9.5.7.ebuild +++ /dev/null @@ -1,478 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) - -inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \ - systemd user versionator - -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris" - -SLOT="$(get_version_component_range 1-2)" - -SRC_URI="mirror://postgresql/source/v${PV}/postgresql-${PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="http://www.postgresql.org/" - -LINGUAS="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr - zh_CN zh_TW" -IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python - +readline selinux +server ssl static-libs tcl threads uuid xml zlib" - -for lingua in ${LINGUAS}; do - IUSE+=" linguas_${lingua}" -done -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -wanted_languages() { - local enable_langs - - for lingua in ${LINGUAS} ; do - use linguas_${lingua} && enable_langs+="${lingua} " - done - - echo -n ${enable_langs} -} - -CDEPEND=" ->=app-eselect/eselect-postgresql-2.0 -sys-apps/less -virtual/libintl -kerberos? ( virtual/krb5 ) -ldap? ( net-nds/openldap ) -pam? ( virtual/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -tcl? ( >=dev-lang/tcl-8:0= ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no -# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems, -# the libc includes UUID functions. -UTIL_LINUX_LIBC=( elibc_{glibc,uclibc,musl} ) -BSD_LIBC=( elibc_{Free,Net,Open}BSD ) - -nest_usedep() { - local front back - while [[ ${#} -gt 1 ]]; do - front+="${1}? ( " - back+=" )" - shift - done - echo "${front}${1}${back}" -} - -IUSE+=" ${UTIL_LINUX_LIBC[@]} ${BSD_LIBC[@]}" -CDEPEND+=" -uuid? ( - ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )} - $(nest_usedep ${UTIL_LINUX_LIBC[@]/#/!} ${BSD_LIBC[@]/#/!} dev-libs/ossp-uuid) -)" - -DEPEND="${CDEPEND} -!! /dev/null; then - canonicalise=realpath - elif type -p readlink > /dev/null; then - canonicalise='readlink -f' - else - # can't die, subshell - die "No readlink nor realpath found, cannot canonicalise" - fi - - local l - # First remove any symlinks in /usr/bin that may have been created - # by the old eselect - for l in $(find "${ROOT%/}/usr/bin" -mindepth 1 -maxdepth 1 -type l) ; do - if [[ $(${canonicalise} "${l}") == *postgresql-${SLOT}* ]] ; then - rm "${l}" || ewarn "Couldn't remove ${l}" - fi - done - - # Then move the symlinks created by the ebuild to their proper place. - for l in "${ED}"/usr/bin/*tmp ; do - mv "${l}" "${l%tmp}" \ - || ewarn "Couldn't rename $(basename ${l}) to $(basename ${l%tmp})" - done -} - -pkg_postinst() { - postgresql-config update - - if use alpha && use server ; then - ewarn "PostgreSQL 9.5+ no longer has native spinlock support on Alpha platforms." - ewarn "As a result, performance will be extremely degraded." - fi - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT%/}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "http://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT%/}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT%/}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT%/}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT%/}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT%/}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT%/}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT%/}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " http://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " http://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "${DATA_DIR}" - chown -Rf postgres:postgres "${DATA_DIR}" - chmod 0700 "${DATA_DIR}" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT%/}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT%/}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - else - einfo "You should use the '${EROOT%/}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/redis/Manifest b/dev-db/redis/Manifest index a3318518cfbc..4008d349e5eb 100644 --- a/dev-db/redis/Manifest +++ b/dev-db/redis/Manifest @@ -1,5 +1,5 @@ DIST redis-3.0.7.tar.gz 1375200 SHA256 b2a791c4ea3bb7268795c45c6321ea5abcc24457178373e6a6e3be6372737f23 SHA512 6c8f4c88d911e1433fd28efff2f6d62763e08be89814ebf4aa4e68e2c8bd605eba24ca3410548b2f480ae094437ce96c0bafa7a5762b3b405d5d850886297ba3 WHIRLPOOL 53c2c967b999bbcb5b45117bbad74b46457158ad94e8c43566311dd3d58c63c2d0cc2dac5dc9e8806821c2532ee4beded17e039da4ddeae958e5a0092429ee3a DIST redis-3.2.5.tar.gz 1544040 SHA256 8509ceb1efd849d6b2346a72a8e926b5a4f6ed3cc7c3cd8d9f36b2e9ba085315 SHA512 4ecf6277c8fdf4411223b9f5a5c8308829da9bd756b45de5217d469e9def8faad8c05b6348c06aef99eca9245d45abfd52df056c3c819723da66a2ca20c381dd WHIRLPOOL db1eecac5e407734002d39cc16f708fcb1f506829df4dabda53bffc7012746a23ea2342cded4d90f39db72ba61eda349b80b4a3e4f1eba06dbaa6cad8c50264e -DIST redis-3.2.6.tar.gz 1544806 SHA256 2e1831c5a315e400d72bda4beaa98c0cfbe3f4eb8b20c269371634390cf729fa SHA512 15f2e55a7cc56e7e652a3a8d344fceb6d0d33cf53caa81854e6b1977ec68f7e92ac06d0d66999bfc577f185eba19e0927a81014bdb5cd484eecb080b6a6e16bc WHIRLPOOL a3dd92e565cdfbc65bfccd452efde8fc4124ede1133ca74a30c69f68eb5021b5fb1bbc7dc30d3ea9993c42bc9c4ce2716564329bd5be142a5764a9ab807a9d14 DIST redis-3.2.8.tar.gz 1547237 SHA256 61b373c23d18e6cc752a69d5ab7f676c6216dc2853e46750a8c4ed791d68482c SHA512 7334faf73af3644f7f9dcaddd322955d5df1e88a1640b509ae623f322615a20f6dc143eb57dd89ff3a278557df309ac4215c3fb458235682ce28e16c817068ba WHIRLPOOL 50ffecd1891051a3e28028065bfaf090b2eec42a757cdf61c6d22b051c8ba4fc78809b3198182d2333bedb4715d9a8d70bf04f605030abe6e33cc6b9b7161cf7 DIST redis-4.0.1.tar.gz 1711660 SHA256 2049cd6ae9167f258705081a6ef23bb80b7eff9ff3d0d7481e89510f27457591 SHA512 62dec537aebd12340b9642f5f8b07fd98757c9e648dcd539a0411f207db3495923c5a6a9941036c56b2d574ee38b46d08558668111e322345ef549f93fada26f WHIRLPOOL 90b6a7a81e6d5302a28c49a8a1ea479f80f7924eb2f69d0b17d48cf15c9ba769a8ef425ae9bec44d3cbd81816b43fe7997adeb73caa6d2b64f7657e60cb2fb82 +DIST redis-4.0.2.tar.gz 1713990 SHA256 b1a0915dbc91b979d06df1977fe594c3fa9b189f1f3d38743a2948c9f7634813 SHA512 1458909c6fc16cff8ca5e6dddff23b988ee1e447f2d0bccf5941553b22bab6abb851732b3fe53dafb8a69d6c0939c3ce7e0686d51e03be720fb018c038d3b1b4 WHIRLPOOL 24834b1fbedaea75f245c9f3f7dc29444b34bccdac08b060dee5ff78b23ee60cb029d8a255f69df7a7a3a54c7440bb37390361a2d995eb0bc7534273570adfc3 diff --git a/dev-db/redis/files/redis-3.2.3-config.patch b/dev-db/redis/files/redis-3.2.3-config.patch index 541e25494645..bde0ef7cbaf1 100644 --- a/dev-db/redis/files/redis-3.2.3-config.patch +++ b/dev-db/redis/files/redis-3.2.3-config.patch @@ -34,7 +34,7 @@ index 22e00bc..b09de57 100644 # output buffers (but this is not needed if the policy is 'noeviction'). # -# maxmemory -+maxmemory 67108864 ++maxmemory 64MB # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory # is reached. You can select among five behaviors: diff --git a/dev-db/redis/files/redis.confd-r1 b/dev-db/redis/files/redis.confd-r1 new file mode 100644 index 000000000000..1f4ff23f211b --- /dev/null +++ b/dev-db/redis/files/redis.confd-r1 @@ -0,0 +1,20 @@ +# Redis user. +REDIS_USER="redis" + +# Redis group. +REDIS_GROUP="redis" + +# Redis configuration file. +REDIS_CONF="/etc/redis.conf" + +# Redis dump directory. +REDIS_DIR="/var/lib/redis" + +# Redis options. +# (Redis expects the first argument to be the configuration file.) +REDIS_OPTS="${REDIS_CONF}" + +# Specify the network service that corresponds to the "bind" setting +# in your redis.conf. For example, if you bind to 127.0.0.1, this should +# be set to "net.lo" which provides the loopback interface. +rc_need="net.lo" diff --git a/dev-db/redis/files/redis.initd-5 b/dev-db/redis/files/redis.initd-5 new file mode 100644 index 000000000000..a567b1e210d8 --- /dev/null +++ b/dev-db/redis/files/redis.initd-5 @@ -0,0 +1,23 @@ +#!/sbin/openrc-run +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +: ${REDIS_DIR:=/var/lib/redis} +: ${REDIS_CONF:=/etc/redis.conf} +: ${REDIS_OPTS:="${REDIS_CONF}"} +: ${REDIS_USER:=redis} +: ${REDIS_GROUP:=redis} +: ${REDIS_TIMEOUT:=30} + +command="/usr/sbin/redis-server" +command_args="${REDIS_OPTS}" +command_background="true" +command_user="${REDIS_USER}:${REDIS_GROUP}" +pidfile="/run/${RC_SVCNAME}.pid" +retry="${REDIS_TIMEOUT}" +start_stop_daemon_args="--chdir \"${REDIS_DIR}\"" + +depend() { + use localmount logger + after keepalived +} diff --git a/dev-db/redis/redis-3.2.5-r1.ebuild b/dev-db/redis/redis-3.2.5-r1.ebuild deleted file mode 100644 index bcf64835401a..000000000000 --- a/dev-db/redis/redis-3.2.5-r1.ebuild +++ /dev/null @@ -1,122 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic systemd toolchain-funcs user - -DESCRIPTION="A persistent caching system, key-value and data structures database" -HOMEPAGE="http://redis.io/" -SRC_URI="http://download.redis.io/releases/${P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="+jemalloc tcmalloc luajit test" -SLOT="0" - -RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:5.1 ) - tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="virtual/pkgconfig - >=sys-devel/autoconf-2.63 - test? ( dev-lang/tcl:0= ) - ${RDEPEND}" -REQUIRED_USE="?? ( tcmalloc jemalloc )" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -pkg_setup() { - enewgroup redis 75 - enewuser redis 75 -1 /var/lib/redis redis -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ - "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch - eapply_user - - # Copy lua modules into build dir - cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die - cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die - # Append cflag for lua_cjson - # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 - append-cflags "-DENABLE_CJSON_GLOBAL" - - # now we will rewrite present Makefiles - local makefiles="" - for MKF in $(find -name 'Makefile' | cut -b 3-); do - mv "${MKF}" "${MKF}.in" - sed -i -e 's:$(CC):@CC@:g' \ - -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ - -e 's: $(DEBUG)::g' \ - -e 's:$(OBJARCH)::g' \ - -e 's:ARCH:TARCH:g' \ - -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ - "${MKF}.in" \ - || die "Sed failed for ${MKF}" - makefiles+=" ${MKF}" - done - # autodetection of compiler and settings; generates the modified Makefiles - cp "${FILESDIR}"/configure.ac-3.2 configure.ac - sed -i \ - -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ - -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ - configure.ac || die "Sed failed for configure.ac" - eautoreconf -} - -src_configure() { - econf \ - $(use_with luajit) - - # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either - # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die -} - -src_compile() { - tc-export CC AR RANLIB - - local myconf="" - - if use tcmalloc ; then - myconf="${myconf} USE_TCMALLOC=yes" - elif use jemalloc ; then - myconf="${myconf} JEMALLOC_SHARED=yes" - else - myconf="${myconf} MALLOC=yes" - fi - - emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" -} - -src_install() { - insinto /etc/ - doins redis.conf sentinel.conf - use prefix || fowners redis:redis /etc/{redis,sentinel}.conf - fperms 0644 /etc/{redis,sentinel}.conf - - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis - - systemd_newunit "${FILESDIR}/redis.service-2" redis.service - systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf - - dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md - - dobin src/redis-cli - dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb - fperms 0750 /usr/sbin/redis-benchmark - dosym redis-server /usr/sbin/redis-sentinel - - if use prefix; then - diropts -m0750 - else - diropts -m0750 -o redis -g redis - fi - keepdir /var/{log,lib}/redis -} diff --git a/dev-db/redis/redis-3.2.5-r4.ebuild b/dev-db/redis/redis-3.2.5-r4.ebuild deleted file mode 100644 index eac9299e6cc1..000000000000 --- a/dev-db/redis/redis-3.2.5-r4.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic systemd toolchain-funcs user - -DESCRIPTION="A persistent caching system, key-value and data structures database" -HOMEPAGE="http://redis.io/" -SRC_URI="http://download.redis.io/releases/${P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="+jemalloc tcmalloc luajit test" -SLOT="0" - -RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( >=dev-lang/lua-5.1:* ) - tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="virtual/pkgconfig - >=sys-devel/autoconf-2.63 - test? ( dev-lang/tcl:0= ) - ${RDEPEND}" -REQUIRED_USE="?? ( tcmalloc jemalloc )" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -pkg_setup() { - enewgroup redis 75 - enewuser redis 75 -1 /var/lib/redis redis -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ - "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch - eapply_user - - # Copy lua modules into build dir - cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die - cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die - # Append cflag for lua_cjson - # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 - append-cflags "-DENABLE_CJSON_GLOBAL" - - # now we will rewrite present Makefiles - local makefiles="" - for MKF in $(find -name 'Makefile' | cut -b 3-); do - mv "${MKF}" "${MKF}.in" - sed -i -e 's:$(CC):@CC@:g' \ - -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ - -e 's: $(DEBUG)::g' \ - -e 's:$(OBJARCH)::g' \ - -e 's:ARCH:TARCH:g' \ - -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ - "${MKF}.in" \ - || die "Sed failed for ${MKF}" - makefiles+=" ${MKF}" - done - # autodetection of compiler and settings; generates the modified Makefiles - cp "${FILESDIR}"/configure.ac-3.2 configure.ac - sed -i \ - -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ - -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ - -e "/PKG_CHECK_MODULES.*\/s,lua5.1,lua,g" \ - configure.ac || die "Sed failed for configure.ac" - eautoreconf -} - -src_configure() { - econf \ - $(use_with luajit) - - # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either - # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die -} - -src_compile() { - tc-export CC AR RANLIB - - local myconf="" - - if use tcmalloc ; then - myconf="${myconf} USE_TCMALLOC=yes" - elif use jemalloc ; then - myconf="${myconf} JEMALLOC_SHARED=yes" - else - myconf="${myconf} MALLOC=yes" - fi - - emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" -} - -src_install() { - insinto /etc/ - doins redis.conf sentinel.conf - use prefix || fowners redis:redis /etc/{redis,sentinel}.conf - fperms 0644 /etc/{redis,sentinel}.conf - - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis - - systemd_newunit "${FILESDIR}/redis.service-2" redis.service - systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf - - dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md - - dobin src/redis-cli - dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb - fperms 0750 /usr/sbin/redis-benchmark - dosym redis-server /usr/sbin/redis-sentinel - - if use prefix; then - diropts -m0750 - else - diropts -m0750 -o redis -g redis - fi - keepdir /var/{log,lib}/redis -} diff --git a/dev-db/redis/redis-3.2.6-r4.ebuild b/dev-db/redis/redis-3.2.6-r4.ebuild deleted file mode 100644 index eac9299e6cc1..000000000000 --- a/dev-db/redis/redis-3.2.6-r4.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic systemd toolchain-funcs user - -DESCRIPTION="A persistent caching system, key-value and data structures database" -HOMEPAGE="http://redis.io/" -SRC_URI="http://download.redis.io/releases/${P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="+jemalloc tcmalloc luajit test" -SLOT="0" - -RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( >=dev-lang/lua-5.1:* ) - tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="virtual/pkgconfig - >=sys-devel/autoconf-2.63 - test? ( dev-lang/tcl:0= ) - ${RDEPEND}" -REQUIRED_USE="?? ( tcmalloc jemalloc )" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -pkg_setup() { - enewgroup redis 75 - enewuser redis 75 -1 /var/lib/redis redis -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ - "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch - eapply_user - - # Copy lua modules into build dir - cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die - cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die - # Append cflag for lua_cjson - # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 - append-cflags "-DENABLE_CJSON_GLOBAL" - - # now we will rewrite present Makefiles - local makefiles="" - for MKF in $(find -name 'Makefile' | cut -b 3-); do - mv "${MKF}" "${MKF}.in" - sed -i -e 's:$(CC):@CC@:g' \ - -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ - -e 's: $(DEBUG)::g' \ - -e 's:$(OBJARCH)::g' \ - -e 's:ARCH:TARCH:g' \ - -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ - "${MKF}.in" \ - || die "Sed failed for ${MKF}" - makefiles+=" ${MKF}" - done - # autodetection of compiler and settings; generates the modified Makefiles - cp "${FILESDIR}"/configure.ac-3.2 configure.ac - sed -i \ - -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ - -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ - -e "/PKG_CHECK_MODULES.*\/s,lua5.1,lua,g" \ - configure.ac || die "Sed failed for configure.ac" - eautoreconf -} - -src_configure() { - econf \ - $(use_with luajit) - - # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either - # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die -} - -src_compile() { - tc-export CC AR RANLIB - - local myconf="" - - if use tcmalloc ; then - myconf="${myconf} USE_TCMALLOC=yes" - elif use jemalloc ; then - myconf="${myconf} JEMALLOC_SHARED=yes" - else - myconf="${myconf} MALLOC=yes" - fi - - emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" -} - -src_install() { - insinto /etc/ - doins redis.conf sentinel.conf - use prefix || fowners redis:redis /etc/{redis,sentinel}.conf - fperms 0644 /etc/{redis,sentinel}.conf - - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis - - systemd_newunit "${FILESDIR}/redis.service-2" redis.service - systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf - - dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md - - dobin src/redis-cli - dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb - fperms 0750 /usr/sbin/redis-benchmark - dosym redis-server /usr/sbin/redis-sentinel - - if use prefix; then - diropts -m0750 - else - diropts -m0750 -o redis -g redis - fi - keepdir /var/{log,lib}/redis -} diff --git a/dev-db/redis/redis-3.2.6-r5.ebuild b/dev-db/redis/redis-3.2.6-r5.ebuild deleted file mode 100644 index bcf64835401a..000000000000 --- a/dev-db/redis/redis-3.2.6-r5.ebuild +++ /dev/null @@ -1,122 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic systemd toolchain-funcs user - -DESCRIPTION="A persistent caching system, key-value and data structures database" -HOMEPAGE="http://redis.io/" -SRC_URI="http://download.redis.io/releases/${P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="+jemalloc tcmalloc luajit test" -SLOT="0" - -RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:5.1 ) - tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="virtual/pkgconfig - >=sys-devel/autoconf-2.63 - test? ( dev-lang/tcl:0= ) - ${RDEPEND}" -REQUIRED_USE="?? ( tcmalloc jemalloc )" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -pkg_setup() { - enewgroup redis 75 - enewuser redis 75 -1 /var/lib/redis redis -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ - "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch - eapply_user - - # Copy lua modules into build dir - cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die - cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die - # Append cflag for lua_cjson - # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 - append-cflags "-DENABLE_CJSON_GLOBAL" - - # now we will rewrite present Makefiles - local makefiles="" - for MKF in $(find -name 'Makefile' | cut -b 3-); do - mv "${MKF}" "${MKF}.in" - sed -i -e 's:$(CC):@CC@:g' \ - -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ - -e 's: $(DEBUG)::g' \ - -e 's:$(OBJARCH)::g' \ - -e 's:ARCH:TARCH:g' \ - -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ - "${MKF}.in" \ - || die "Sed failed for ${MKF}" - makefiles+=" ${MKF}" - done - # autodetection of compiler and settings; generates the modified Makefiles - cp "${FILESDIR}"/configure.ac-3.2 configure.ac - sed -i \ - -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ - -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ - configure.ac || die "Sed failed for configure.ac" - eautoreconf -} - -src_configure() { - econf \ - $(use_with luajit) - - # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either - # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die -} - -src_compile() { - tc-export CC AR RANLIB - - local myconf="" - - if use tcmalloc ; then - myconf="${myconf} USE_TCMALLOC=yes" - elif use jemalloc ; then - myconf="${myconf} JEMALLOC_SHARED=yes" - else - myconf="${myconf} MALLOC=yes" - fi - - emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" -} - -src_install() { - insinto /etc/ - doins redis.conf sentinel.conf - use prefix || fowners redis:redis /etc/{redis,sentinel}.conf - fperms 0644 /etc/{redis,sentinel}.conf - - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis - - systemd_newunit "${FILESDIR}/redis.service-2" redis.service - systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf - - dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md - - dobin src/redis-cli - dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb - fperms 0750 /usr/sbin/redis-benchmark - dosym redis-server /usr/sbin/redis-sentinel - - if use prefix; then - diropts -m0750 - else - diropts -m0750 -o redis -g redis - fi - keepdir /var/{log,lib}/redis -} diff --git a/dev-db/redis/redis-3.2.6.ebuild b/dev-db/redis/redis-3.2.6.ebuild deleted file mode 100644 index eac9299e6cc1..000000000000 --- a/dev-db/redis/redis-3.2.6.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic systemd toolchain-funcs user - -DESCRIPTION="A persistent caching system, key-value and data structures database" -HOMEPAGE="http://redis.io/" -SRC_URI="http://download.redis.io/releases/${P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="+jemalloc tcmalloc luajit test" -SLOT="0" - -RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( >=dev-lang/lua-5.1:* ) - tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="virtual/pkgconfig - >=sys-devel/autoconf-2.63 - test? ( dev-lang/tcl:0= ) - ${RDEPEND}" -REQUIRED_USE="?? ( tcmalloc jemalloc )" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -pkg_setup() { - enewgroup redis 75 - enewuser redis 75 -1 /var/lib/redis redis -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ - "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch - eapply_user - - # Copy lua modules into build dir - cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die - cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die - # Append cflag for lua_cjson - # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 - append-cflags "-DENABLE_CJSON_GLOBAL" - - # now we will rewrite present Makefiles - local makefiles="" - for MKF in $(find -name 'Makefile' | cut -b 3-); do - mv "${MKF}" "${MKF}.in" - sed -i -e 's:$(CC):@CC@:g' \ - -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ - -e 's: $(DEBUG)::g' \ - -e 's:$(OBJARCH)::g' \ - -e 's:ARCH:TARCH:g' \ - -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ - "${MKF}.in" \ - || die "Sed failed for ${MKF}" - makefiles+=" ${MKF}" - done - # autodetection of compiler and settings; generates the modified Makefiles - cp "${FILESDIR}"/configure.ac-3.2 configure.ac - sed -i \ - -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ - -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ - -e "/PKG_CHECK_MODULES.*\/s,lua5.1,lua,g" \ - configure.ac || die "Sed failed for configure.ac" - eautoreconf -} - -src_configure() { - econf \ - $(use_with luajit) - - # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either - # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die -} - -src_compile() { - tc-export CC AR RANLIB - - local myconf="" - - if use tcmalloc ; then - myconf="${myconf} USE_TCMALLOC=yes" - elif use jemalloc ; then - myconf="${myconf} JEMALLOC_SHARED=yes" - else - myconf="${myconf} MALLOC=yes" - fi - - emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" -} - -src_install() { - insinto /etc/ - doins redis.conf sentinel.conf - use prefix || fowners redis:redis /etc/{redis,sentinel}.conf - fperms 0644 /etc/{redis,sentinel}.conf - - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis - - systemd_newunit "${FILESDIR}/redis.service-2" redis.service - systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf - - dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md - - dobin src/redis-cli - dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb - fperms 0750 /usr/sbin/redis-benchmark - dosym redis-server /usr/sbin/redis-sentinel - - if use prefix; then - diropts -m0750 - else - diropts -m0750 -o redis -g redis - fi - keepdir /var/{log,lib}/redis -} diff --git a/dev-db/redis/redis-3.2.8-r1.ebuild b/dev-db/redis/redis-3.2.8-r1.ebuild deleted file mode 100644 index bcf64835401a..000000000000 --- a/dev-db/redis/redis-3.2.8-r1.ebuild +++ /dev/null @@ -1,122 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic systemd toolchain-funcs user - -DESCRIPTION="A persistent caching system, key-value and data structures database" -HOMEPAGE="http://redis.io/" -SRC_URI="http://download.redis.io/releases/${P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="+jemalloc tcmalloc luajit test" -SLOT="0" - -RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:5.1 ) - tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="virtual/pkgconfig - >=sys-devel/autoconf-2.63 - test? ( dev-lang/tcl:0= ) - ${RDEPEND}" -REQUIRED_USE="?? ( tcmalloc jemalloc )" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -pkg_setup() { - enewgroup redis 75 - enewuser redis 75 -1 /var/lib/redis redis -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ - "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch - eapply_user - - # Copy lua modules into build dir - cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die - cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die - # Append cflag for lua_cjson - # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 - append-cflags "-DENABLE_CJSON_GLOBAL" - - # now we will rewrite present Makefiles - local makefiles="" - for MKF in $(find -name 'Makefile' | cut -b 3-); do - mv "${MKF}" "${MKF}.in" - sed -i -e 's:$(CC):@CC@:g' \ - -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ - -e 's: $(DEBUG)::g' \ - -e 's:$(OBJARCH)::g' \ - -e 's:ARCH:TARCH:g' \ - -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ - "${MKF}.in" \ - || die "Sed failed for ${MKF}" - makefiles+=" ${MKF}" - done - # autodetection of compiler and settings; generates the modified Makefiles - cp "${FILESDIR}"/configure.ac-3.2 configure.ac - sed -i \ - -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ - -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ - configure.ac || die "Sed failed for configure.ac" - eautoreconf -} - -src_configure() { - econf \ - $(use_with luajit) - - # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either - # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die -} - -src_compile() { - tc-export CC AR RANLIB - - local myconf="" - - if use tcmalloc ; then - myconf="${myconf} USE_TCMALLOC=yes" - elif use jemalloc ; then - myconf="${myconf} JEMALLOC_SHARED=yes" - else - myconf="${myconf} MALLOC=yes" - fi - - emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" -} - -src_install() { - insinto /etc/ - doins redis.conf sentinel.conf - use prefix || fowners redis:redis /etc/{redis,sentinel}.conf - fperms 0644 /etc/{redis,sentinel}.conf - - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis - - systemd_newunit "${FILESDIR}/redis.service-2" redis.service - systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf - - dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md - - dobin src/redis-cli - dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb - fperms 0750 /usr/sbin/redis-benchmark - dosym redis-server /usr/sbin/redis-sentinel - - if use prefix; then - diropts -m0750 - else - diropts -m0750 -o redis -g redis - fi - keepdir /var/{log,lib}/redis -} diff --git a/dev-db/redis/redis-3.2.8-r3.ebuild b/dev-db/redis/redis-3.2.8-r3.ebuild deleted file mode 100644 index bcf64835401a..000000000000 --- a/dev-db/redis/redis-3.2.8-r3.ebuild +++ /dev/null @@ -1,122 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic systemd toolchain-funcs user - -DESCRIPTION="A persistent caching system, key-value and data structures database" -HOMEPAGE="http://redis.io/" -SRC_URI="http://download.redis.io/releases/${P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="+jemalloc tcmalloc luajit test" -SLOT="0" - -RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:5.1 ) - tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="virtual/pkgconfig - >=sys-devel/autoconf-2.63 - test? ( dev-lang/tcl:0= ) - ${RDEPEND}" -REQUIRED_USE="?? ( tcmalloc jemalloc )" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -pkg_setup() { - enewgroup redis 75 - enewuser redis 75 -1 /var/lib/redis redis -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ - "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch - eapply_user - - # Copy lua modules into build dir - cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die - cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die - # Append cflag for lua_cjson - # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 - append-cflags "-DENABLE_CJSON_GLOBAL" - - # now we will rewrite present Makefiles - local makefiles="" - for MKF in $(find -name 'Makefile' | cut -b 3-); do - mv "${MKF}" "${MKF}.in" - sed -i -e 's:$(CC):@CC@:g' \ - -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ - -e 's: $(DEBUG)::g' \ - -e 's:$(OBJARCH)::g' \ - -e 's:ARCH:TARCH:g' \ - -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ - "${MKF}.in" \ - || die "Sed failed for ${MKF}" - makefiles+=" ${MKF}" - done - # autodetection of compiler and settings; generates the modified Makefiles - cp "${FILESDIR}"/configure.ac-3.2 configure.ac - sed -i \ - -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ - -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ - configure.ac || die "Sed failed for configure.ac" - eautoreconf -} - -src_configure() { - econf \ - $(use_with luajit) - - # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either - # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die -} - -src_compile() { - tc-export CC AR RANLIB - - local myconf="" - - if use tcmalloc ; then - myconf="${myconf} USE_TCMALLOC=yes" - elif use jemalloc ; then - myconf="${myconf} JEMALLOC_SHARED=yes" - else - myconf="${myconf} MALLOC=yes" - fi - - emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" -} - -src_install() { - insinto /etc/ - doins redis.conf sentinel.conf - use prefix || fowners redis:redis /etc/{redis,sentinel}.conf - fperms 0644 /etc/{redis,sentinel}.conf - - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis - - systemd_newunit "${FILESDIR}/redis.service-2" redis.service - systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf - - dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md - - dobin src/redis-cli - dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb - fperms 0750 /usr/sbin/redis-benchmark - dosym redis-server /usr/sbin/redis-sentinel - - if use prefix; then - diropts -m0750 - else - diropts -m0750 -o redis -g redis - fi - keepdir /var/{log,lib}/redis -} diff --git a/dev-db/redis/redis-3.2.5-r5.ebuild b/dev-db/redis/redis-3.2.8-r4.ebuild similarity index 87% rename from dev-db/redis/redis-3.2.5-r5.ebuild rename to dev-db/redis/redis-3.2.8-r4.ebuild index bcf64835401a..cb1541102b7c 100644 --- a/dev-db/redis/redis-3.2.5-r5.ebuild +++ b/dev-db/redis/redis-3.2.8-r4.ebuild @@ -14,8 +14,11 @@ KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86 IUSE="+jemalloc tcmalloc luajit test" SLOT="0" +# Redis does NOT build with Lua 5.2 or newer at this time. +# This should link correctly with both unslotted & slotted Lua, without +# changes. RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:5.1 ) + !luajit? ( || ( dev-lang/lua:5.1 =dev-lang/lua-5.1*:0 ) ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 )" DEPEND="virtual/pkgconfig @@ -61,9 +64,15 @@ src_prepare() { done # autodetection of compiler and settings; generates the modified Makefiles cp "${FILESDIR}"/configure.ac-3.2 configure.ac + + # Use the correct pkgconfig name for Lua + has_version 'dev-lang/lua:5.1' \ + && LUAPKGCONFIG=lua5.1 \ + || LUAPKGCONFIG=lua sed -i \ -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ + -e "/PKG_CHECK_MODULES.*\/s,lua5.1,${LUAPKGCONFIG},g" \ configure.ac || die "Sed failed for configure.ac" eautoreconf } @@ -100,8 +109,8 @@ src_install() { use prefix || fowners redis:redis /etc/{redis,sentinel}.conf fperms 0644 /etc/{redis,sentinel}.conf - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis + newconfd "${FILESDIR}/redis.confd-r1" redis + newinitd "${FILESDIR}/redis.initd-5" redis systemd_newunit "${FILESDIR}/redis.service-2" redis.service systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf diff --git a/dev-db/redis/redis-3.2.8.ebuild b/dev-db/redis/redis-3.2.8.ebuild deleted file mode 100644 index eac9299e6cc1..000000000000 --- a/dev-db/redis/redis-3.2.8.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic systemd toolchain-funcs user - -DESCRIPTION="A persistent caching system, key-value and data structures database" -HOMEPAGE="http://redis.io/" -SRC_URI="http://download.redis.io/releases/${P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="+jemalloc tcmalloc luajit test" -SLOT="0" - -RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( >=dev-lang/lua-5.1:* ) - tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="virtual/pkgconfig - >=sys-devel/autoconf-2.63 - test? ( dev-lang/tcl:0= ) - ${RDEPEND}" -REQUIRED_USE="?? ( tcmalloc jemalloc )" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -pkg_setup() { - enewgroup redis 75 - enewuser redis 75 -1 /var/lib/redis redis -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ - "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch - eapply_user - - # Copy lua modules into build dir - cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die - cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die - # Append cflag for lua_cjson - # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 - append-cflags "-DENABLE_CJSON_GLOBAL" - - # now we will rewrite present Makefiles - local makefiles="" - for MKF in $(find -name 'Makefile' | cut -b 3-); do - mv "${MKF}" "${MKF}.in" - sed -i -e 's:$(CC):@CC@:g' \ - -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ - -e 's: $(DEBUG)::g' \ - -e 's:$(OBJARCH)::g' \ - -e 's:ARCH:TARCH:g' \ - -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ - "${MKF}.in" \ - || die "Sed failed for ${MKF}" - makefiles+=" ${MKF}" - done - # autodetection of compiler and settings; generates the modified Makefiles - cp "${FILESDIR}"/configure.ac-3.2 configure.ac - sed -i \ - -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ - -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ - -e "/PKG_CHECK_MODULES.*\/s,lua5.1,lua,g" \ - configure.ac || die "Sed failed for configure.ac" - eautoreconf -} - -src_configure() { - econf \ - $(use_with luajit) - - # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either - # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die -} - -src_compile() { - tc-export CC AR RANLIB - - local myconf="" - - if use tcmalloc ; then - myconf="${myconf} USE_TCMALLOC=yes" - elif use jemalloc ; then - myconf="${myconf} JEMALLOC_SHARED=yes" - else - myconf="${myconf} MALLOC=yes" - fi - - emake ${myconf} V=1 CC="${CC}" AR="${AR} rcu" RANLIB="${RANLIB}" -} - -src_install() { - insinto /etc/ - doins redis.conf sentinel.conf - use prefix || fowners redis:redis /etc/{redis,sentinel}.conf - fperms 0644 /etc/{redis,sentinel}.conf - - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis - - systemd_newunit "${FILESDIR}/redis.service-2" redis.service - systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf - - dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md - - dobin src/redis-cli - dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb - fperms 0750 /usr/sbin/redis-benchmark - dosym redis-server /usr/sbin/redis-sentinel - - if use prefix; then - diropts -m0750 - else - diropts -m0750 -o redis -g redis - fi - keepdir /var/{log,lib}/redis -} diff --git a/dev-db/redis/redis-3.2.6-r1.ebuild b/dev-db/redis/redis-4.0.2.ebuild similarity index 83% rename from dev-db/redis/redis-3.2.6-r1.ebuild rename to dev-db/redis/redis-4.0.2.ebuild index bcf64835401a..1449a3567826 100644 --- a/dev-db/redis/redis-3.2.6-r1.ebuild +++ b/dev-db/redis/redis-4.0.2.ebuild @@ -14,8 +14,11 @@ KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86 IUSE="+jemalloc tcmalloc luajit test" SLOT="0" +# Redis does NOT build with Lua 5.2 or newer at this time. +# This should link correctly with both unslotted & slotted Lua, without +# changes. RDEPEND="luajit? ( dev-lang/luajit:2 ) - !luajit? ( dev-lang/lua:5.1 ) + !luajit? ( || ( dev-lang/lua:5.1 =dev-lang/lua-5.1*:0 ) ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 )" DEPEND="virtual/pkgconfig @@ -33,9 +36,9 @@ pkg_setup() { src_prepare() { epatch \ - "${FILESDIR}"/${PN}-3.2.5-shared.patch \ + "${FILESDIR}"/${PN}-4.0.1-shared.patch \ "${FILESDIR}"/${PN}-3.2.3-config.patch \ - "${FILESDIR}"/${PN}-3.2.3-sharedlua.patch + "${FILESDIR}"/${PN}-4.0.1-sharedlua.patch eapply_user # Copy lua modules into build dir @@ -61,9 +64,15 @@ src_prepare() { done # autodetection of compiler and settings; generates the modified Makefiles cp "${FILESDIR}"/configure.ac-3.2 configure.ac + + # Use the correct pkgconfig name for Lua + has_version 'dev-lang/lua:5.1' \ + && LUAPKGCONFIG=lua5.1 \ + || LUAPKGCONFIG=lua sed -i \ -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ + -e "/PKG_CHECK_MODULES.*\/s,lua5.1,${LUAPKGCONFIG},g" \ configure.ac || die "Sed failed for configure.ac" eautoreconf } @@ -73,9 +82,8 @@ src_configure() { $(use_with luajit) # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 - # geohash-int can't be built with -std=c99 either # also, don't define ANSI/c99 for lua twice - sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/geohash-int/Makefile deps/Makefile || die + sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/Makefile || die } src_compile() { @@ -100,8 +108,8 @@ src_install() { use prefix || fowners redis:redis /etc/{redis,sentinel}.conf fperms 0644 /etc/{redis,sentinel}.conf - newconfd "${FILESDIR}/redis.confd" redis - newinitd "${FILESDIR}/redis.initd-4" redis + newconfd "${FILESDIR}/redis.confd-r1" redis + newinitd "${FILESDIR}/redis.initd-5" redis systemd_newunit "${FILESDIR}/redis.service-2" redis.service systemd_newtmpfilesd "${FILESDIR}/redis.tmpfiles" redis.conf diff --git a/dev-embedded/dfu-programmer/Manifest b/dev-embedded/dfu-programmer/Manifest index d3cb0f93baa9..a8e5447bf229 100644 --- a/dev-embedded/dfu-programmer/Manifest +++ b/dev-embedded/dfu-programmer/Manifest @@ -1,4 +1 @@ -DIST dfu-programmer-0.5.4.tar.gz 126700 SHA256 c0fb08fead3d4379368d0e4af5a5aa99c7acee32fa8696cd3e27d2f7856a20de SHA512 c6e0000e7d849144ff4d9191b09540f6a7c7414221952b26898421622079c1fd300e1a4d0f35db6f867e539f59c129850c6a9c745bc0f9916723e8e89fe2fd63 WHIRLPOOL bd8f7c6831544209e4513bd4231e4e1f6f43fadff05d319c22551d8cc99e1b0b5b0b98515175baaf3cf8e6baf79ff140b714f314f39063a80583dcce6dec7404 -DIST dfu-programmer-0.6.1.tar.gz 134394 SHA256 6c4c0ac8860894b970ffeef9f5b579a3465846d013e5c0d9c7fd19bb828ea857 SHA512 feb54119496013b8e77b793d8df0d68bf58de5a7d68ff0cf7a70c0bb63c70c4a43d169ecb71761df96bb07f6a23cd959c20132f5446361045f46df965b8b1e43 WHIRLPOOL a86fed7c6b623182487048f8db555ffa1f9a123bdb912df7adebd0f3742dadcdb1d4a778da4e607f63114944077742cf3cdc44bb9e98fc421e624ba69c2ea905 -DIST dfu-programmer-0.6.2.tar.gz 134941 SHA256 0120966a424dd98124962055750e90cbd6c7b6b0fbf5b187bf435daa0a24af65 SHA512 e3905a71c7b6e0a6e322d9fb781c636caa4431166bf032ad2c14db764a4f9ec952d25bd431ed04a41550fca9a8afcae7aa939a015f3b78361f430ad36c26c381 WHIRLPOOL 00d0f28a31ddc567add1d9d4ab7f3fed35a239f1a6ad01cdcf3d3c8fd51b64b9367cc086f5d122ec511be2681c43a0a77756743702a3ae0201ebac6e2a8078aa DIST dfu-programmer-0.7.2.tar.gz 146613 SHA256 1db4d36b1aedab2adc976e8faa5495df3cf82dc4bf883633dc6ba71f7c4af995 SHA512 429b89192bb5a9653ad8678dfc182bfc30eb057d0d1f72fe88efdf85005d3ad557e0f572f4fad3346f1f1078cd273a289f4bba2663bb1f840e6bf724d5293db4 WHIRLPOOL 1cd17a859fb3a945c41eecb9d066b07ad022bc06ef6fe9f1ab7e1e8d1685a494fb98056d14624085e270fa25620e4e9b2030894ff746bbc4c730e4010b860475 diff --git a/dev-embedded/dfu-programmer/dfu-programmer-0.5.4-r1.ebuild b/dev-embedded/dfu-programmer/dfu-programmer-0.5.4-r1.ebuild deleted file mode 100644 index 01905353295c..000000000000 --- a/dev-embedded/dfu-programmer/dfu-programmer-0.5.4-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit autotools base udev - -DESCRIPTION="A Device Firmware Update based USB programmer for Atmel chips" -HOMEPAGE="http://dfu-programmer.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND="virtual/libusb:1 - virtual/udev" -DEPEND="${RDEPEND}" -PATCHES=( "${FILESDIR}/${PV}-as-needed.patch" ) - -src_prepare() { - base_src_prepare - eautoreconf -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - ebegin "Generating UDEV rules..." - UDEV_RULES="$(get_udevdir)/rules.d/70-dfu-programmer.rules" - mkdir -p "${D}"/${UDEV_RULES%/*} - echo -e "#\n# do not edit this file, it will be overwritten on update\n#" \ - > "${D}"/${UDEV_RULES} - for prodid in "2ffa" "2ffb" "2ff9" "2ff7" "2ff4" "2ff3" ; - do - echo "SUBSYSTEM==\"usb\", ACTION==\"add\", ATTRS{idVendor}==\"03eb\", \ - ATTRS{idProduct}==\"${prodid}\", MODE=\"660\", GROUP=\"plugdev\", \ - SYMLINK+=\"dfu-%n\"" >> "${D}"${UDEV_RULES} - done - eend $? -} diff --git a/dev-embedded/dfu-programmer/dfu-programmer-0.6.1.ebuild b/dev-embedded/dfu-programmer/dfu-programmer-0.6.1.ebuild deleted file mode 100644 index 2550cf0f8bef..000000000000 --- a/dev-embedded/dfu-programmer/dfu-programmer-0.6.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit udev - -DESCRIPTION="A Device Firmware Update based USB programmer for Atmel chips" -HOMEPAGE="http://dfu-programmer.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND="virtual/libusb:1 - virtual/udev" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - # Upstream has fixed this in their configure already. - tc-export CPP PKG_CONFIG - sed -i \ - -e "/LIBUSB_1_0_CFLAGS=/s:=.*:='$(${PKG_CONFIG} --cflags libusb-1.0)':" \ - -e "/LIBUSB_1_0_LIBS=/s:=.*:='$(${PKG_CONFIG} --libs libusb-1.0)':" \ - configure || die -} - -src_install() { - default - - cat <<-EOF > 70-dfu-programmer.rules - # - # do not edit this file, it will be overwritten on update - # - EOF - printf 'SUBSYSTEM=="usb", ACTION=="add", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="%s", MODE="660", GROUP="plugdev", SYMLINK+="dfu-%%n"\n' \ - 2ff{a,b,9,7,4,3} >> 70-dfu-programmer.rules - - udev_dorules 70-dfu-programmer.rules -} diff --git a/dev-embedded/dfu-programmer/dfu-programmer-0.6.2.ebuild b/dev-embedded/dfu-programmer/dfu-programmer-0.7.2-r1.ebuild similarity index 78% rename from dev-embedded/dfu-programmer/dfu-programmer-0.6.2.ebuild rename to dev-embedded/dfu-programmer/dfu-programmer-0.7.2-r1.ebuild index 2550cf0f8bef..0a2e047d21c8 100644 --- a/dev-embedded/dfu-programmer/dfu-programmer-0.6.2.ebuild +++ b/dev-embedded/dfu-programmer/dfu-programmer-0.7.2-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="4" +EAPI=6 -inherit udev +inherit udev user DESCRIPTION="A Device Firmware Update based USB programmer for Atmel chips" HOMEPAGE="http://dfu-programmer.sourceforge.net" @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~arm" IUSE="" RDEPEND="virtual/libusb:1 @@ -19,7 +19,13 @@ RDEPEND="virtual/libusb:1 DEPEND="${RDEPEND} virtual/pkgconfig" +pkg_setup() { + enewgroup plugdev +} + src_prepare() { + default + # Upstream has fixed this in their configure already. tc-export CPP PKG_CONFIG sed -i \ @@ -41,3 +47,9 @@ src_install() { udev_dorules 70-dfu-programmer.rules } + +pkg_postinst() { + elog "To update device firmware as user you must be in the plugdev group:" + elog + elog "usermod -aG plugdev " +} diff --git a/dev-embedded/dfu-programmer/files/0.5.4-as-needed.patch b/dev-embedded/dfu-programmer/files/0.5.4-as-needed.patch deleted file mode 100644 index 6b9bd5afa4fa..000000000000 --- a/dev-embedded/dfu-programmer/files/0.5.4-as-needed.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -u dfu-programmer-0.5.4.ORIG/configure.ac dfu-programmer-0.5.4/configure.ac ---- dfu-programmer-0.5.4.ORIG/configure.ac 2012-11-15 11:54:24.938577990 +0000 -+++ dfu-programmer-0.5.4/configure.ac 2012-11-15 11:55:47.730575031 +0000 -@@ -27,7 +27,7 @@ - PKG_CHECK_MODULES(LIBUSB_1_0, [ libusb-1.0 >= 1.0.0 ], have_libusb_1_0=yes, have_libusb_1_0=no) - if test "$have_libusb_1_0" = "yes"; then - CFLAGS="$CFLAGS $LIBUSB_1_0_CFLAGS" -- LDFLAGS="$LDFLAGS $LIBUSB_1_0_LIBS" -+ LIBS="$LIBS $LIBUSB_1_0_LIBS" - HAVE_USB=yes - fi - fi diff --git a/dev-lang/perl/perl-5.24.3.ebuild b/dev-lang/perl/perl-5.24.3.ebuild index ecf25099949c..c25272fc0c4e 100644 --- a/dev-lang/perl/perl-5.24.3.ebuild +++ b/dev-lang/perl/perl-5.24.3.ebuild @@ -30,7 +30,7 @@ HOMEPAGE="http://www.perl.org/" LICENSE="|| ( Artistic GPL-1+ )" SLOT="0/${SHORT_PV}" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="berkdb debug doc gdbm ithreads" RDEPEND=" diff --git a/dev-lang/swi-prolog/Manifest b/dev-lang/swi-prolog/Manifest index a1867230c857..df0332c365cf 100644 --- a/dev-lang/swi-prolog/Manifest +++ b/dev-lang/swi-prolog/Manifest @@ -10,5 +10,7 @@ DIST swipl-7.4.2.tar.gz 16496738 SHA256 7f17257da334bc1e7a35e9cf5cb8fca01d82f1ea DIST swipl-7.5.13.tar.gz 16748371 SHA256 3680231e22ac1622c507652649e17ad07bc41ff08484f4e4f767ec04802c435c SHA512 a19037a6a9ffa06d3775d3669e51431b8f83ec37c2515955b0721bfa7dc4ab4661b740689f2aa74ee0bf0b0fff40b0d0a85453d3cfce3b0936082d719878ea23 WHIRLPOOL b81b30db11677992d0ef55c4619615a47c3576aab1e115c5fe78731d7675ba1d0c0223d540b693804720cbd4bfe9d2177069ce111f1981af5668001c6225c5ce DIST swipl-7.5.14.tar.gz 16743212 SHA256 2e83e96a0eace037da3f75fc44e9c8f4e3b2cf8fd3c27f8f05ff489276aec572 SHA512 f655b9adff90909398772f5612dfbf3a4e6c7ecb17b4c959a58547f30c67c861ad574cf044267280fd22a05503ead10c807d33f54f2cbf8af6ea19753c9b1d34 WHIRLPOOL 93451c566c39901a7c480bb8bc5eb1f53c3ae7adc5ee2e0281c8746b804dd4522a2cfb2e825122753ca212306798ab0659992f588ad8230b6262eeb84a0dd479 DIST swipl-7.5.15.tar.gz 16757246 SHA256 aca07ce9c564e608586e7ae7b9a56c82ca5dd919cde1a1edf1121efa16bda568 SHA512 07344914726a5a1d3e9d6542c06be7c0937cbe3ac59b64025e068e513c99c66be991af9da0d4200364edec24c143295740c232621173039bffda2fbf379fbf33 WHIRLPOOL 5b0cc1b9cfb1f362d4145759a6f575c9bd606a717e33bd02c741321ce7303855bb472ea12ce058b02de0b96a3300807774c8697033403cf183dc9d67c6f95c88 +DIST swipl-7.6.0-rc1.tar.gz 16750608 SHA256 83f1e0038fc8c19bc90974a404bc4d696fa61976a1ce8b34a7aec672d21b88df SHA512 1cf61e4c8d92ed734e006a69f1ea025932cdd5b9d4efc3e9e1336347440dddc4ec9e4cabdf53892576f74c81ffdbc94dcfec605b7f7e42d6b2fd815e6f63a398 WHIRLPOOL 432812cfe1a921729c97e25ddf9e4112177df80bd77eda3aff81f47df7eddbeae658c221bcfa5c979f3d603e110b9928feecb6d16748e9703e3c2a4b4f5d7e4c +DIST swipl-7.6.0-rc2.tar.gz 16752769 SHA256 df3677b24866fffad103cd252b5dbd00cf63a9daec7862a21f204aa048641644 SHA512 149f9a7106e19d848e53514fac5f553afc540b7eca7d4936ff9ebd79c616327d561081b10b8b7cb2075b9bedf691d0bd4ad843b209548715b1e928d14a73cc78 WHIRLPOOL 10ce442b72b6d20e7e6644d227f2343ae15c853fa213dbb99a1b7ab3378375eed8a7a4f7ccdaf412e02f8b2e291e475214ec7c601c255f19389a2aa0cbbeb2e8 DIST swipl-7.7.0.tar.gz 16761831 SHA256 a1f603302fee12bfc390272ca76381401f5483c3a5521d391265404af58fdfcb SHA512 196e0c17cfaa9368a0032372cfc64e4b96f55048a4457c9ca28b1180b9277fba7811c2a72f410502f12544ca21751013b73002bf7c84cfb79ed0f909a871a24e WHIRLPOOL d2665b75a2bcb147b207bfc3b6c66be1344a7411420d8e016ae1e6e89f27f70325ef6b4804107a76f6d1714a961d5b689655037b0cb596efb8028fd85cc86a3e DIST swipl-7.7.1.tar.gz 16762129 SHA256 fda2c8b6b606ff199ea8a6f019008aa8272b7c349cb9312ccd5944153509503a SHA512 d95cc460c5eecf3d122c5e558266fd9203a0e8fe389ea1c83f08783e819bae04fe5e55f727ac6fffe89242dae7dc059fdabe09f1093915ba0e5675ee0e278de5 WHIRLPOOL 812eb2c5098f737b99cd063f156b11fed0151e59b949403620b498e2aa477dc08aa2fdd4da7669f2c7998cfbaabbfb0edb85f43aaeee32ae0b347880d577c4d2 diff --git a/dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild b/dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild index 7a8264f8f69b..9f055ae83b6b 100644 --- a/dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild +++ b/dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://www.swi-prolog.org/download/stable/src/swipl-${PV}.tar.gz LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="archive berkdb debug doc +gmp hardened java +libedit libressl minimal odbc readline ssl static-libs test uuid zlib X" RDEPEND="sys-libs/ncurses:= diff --git a/dev-lang/swi-prolog/swi-prolog-7.6.0_rc1.ebuild b/dev-lang/swi-prolog/swi-prolog-7.6.0_rc1.ebuild new file mode 100644 index 000000000000..3e75dfdeeb3b --- /dev/null +++ b/dev-lang/swi-prolog/swi-prolog-7.6.0_rc1.ebuild @@ -0,0 +1,148 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +MY_PV=${PV/_/-} + +inherit eutils flag-o-matic java-pkg-opt-2 multilib + +PATCHSET_VER="0" + +DESCRIPTION="free, small, and standard compliant Prolog compiler" +HOMEPAGE="http://www.swi-prolog.org/" +SRC_URI="http://www.swi-prolog.org/download/stable/src/swipl-${MY_PV}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="archive berkdb debug doc +gmp hardened java +libedit libressl minimal odbc pcre readline ssl static-libs test uuid zlib X" + +RDEPEND="sys-libs/ncurses:= + archive? ( app-arch/libarchive ) + berkdb? ( >=sys-libs/db-4:= ) + zlib? ( sys-libs/zlib ) + odbc? ( dev-db/unixODBC ) + pcre? ( dev-libs/libpcre ) + readline? ( sys-libs/readline:= ) + libedit? ( dev-libs/libedit ) + gmp? ( dev-libs/gmp:0 ) + ssl? ( + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + ) + java? ( >=virtual/jdk-1.7:= ) + uuid? ( dev-libs/ossp-uuid ) + X? ( + virtual/jpeg:0 + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXpm + x11-libs/libXt + x11-libs/libICE + x11-libs/libSM )" + +DEPEND="${RDEPEND} + X? ( x11-proto/xproto ) + java? ( test? ( =dev-java/junit-3.8* ) )" + +S="${WORKDIR}/swipl-${MY_PV}" + +src_prepare() { + EPATCH_FORCE=yes + EPATCH_SUFFIX=patch + if [[ -d "${WORKDIR}"/${PV} ]] ; then + epatch "${WORKDIR}"/${PV} + fi + + if ! use uuid; then + mv packages/clib/uuid.pl packages/clib/uuid.pl.unused || die + fi + + # OSX/Intel ld doesn't like an archive without table of contents + sed -i -e 's/-cru/-scru/' packages/nlp/libstemmer_c/Makefile.pl || die +} + +src_configure() { + append-flags -fno-strict-aliasing + use ppc && append-flags -mno-altivec + use hardened && append-flags -fno-unit-at-a-time + use debug && append-flags -DO_DEBUG + + # ARCH is used in the configure script to figure out host and target + # specific stuff + export ARCH=${CHOST} + + export CC_FOR_BUILD=$(tc-getBUILD_CC) + + cd "${S}"/src || die + econf \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + $(use_enable gmp) \ + $(use_enable static-libs static) \ + --enable-shared \ + --enable-custom-flags COFLAGS="${CFLAGS}" + + if ! use minimal ; then + local jpltestconf + if use java && use test ; then + jpltestconf="--with-junit=$(java-config --classpath junit)" + fi + + cd "${S}/packages" || die + econf \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + $(use_with archive) \ + $(use_with berkdb bdb ) \ + $(use_with java jpl) \ + ${jpltestconf} \ + $(use_with libedit) \ + $(use_with pcre) \ + $(use_with odbc) \ + $(use_with readline) \ + $(use_with ssl) \ + $(use_with X xpce) \ + $(use_with zlib) \ + COFLAGS='"${CFLAGS}"' + fi +} + +src_compile() { + cd "${S}"/src || die + emake + + if ! use minimal ; then + cd "${S}/packages" || die + emake + ./report-failed || die "Cannot report failed packages" + fi +} + +src_test() { + cd "${S}/src" || die + emake check + + if ! use minimal ; then + unset DISPLAY + cd "${S}/packages" || die + emake \ + USE_PUBLIC_NETWORK_TESTS=false \ + USE_ODBC_TESTS=false \ + check + ./report-failed || die + fi +} + +src_install() { + emake -C src DESTDIR="${D}" install + + if ! use minimal ; then + emake -C packages DESTDIR="${D}" install + if use doc ; then + emake -C packages DESTDIR="${D}" html-install + fi + ./packages/report-failed || die "Cannot report failed packages" + fi + + dodoc ReleaseNotes/relnotes-5.10 INSTALL README.md VERSION +} diff --git a/dev-lang/swi-prolog/swi-prolog-7.6.0_rc2.ebuild b/dev-lang/swi-prolog/swi-prolog-7.6.0_rc2.ebuild new file mode 100644 index 000000000000..3e75dfdeeb3b --- /dev/null +++ b/dev-lang/swi-prolog/swi-prolog-7.6.0_rc2.ebuild @@ -0,0 +1,148 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +MY_PV=${PV/_/-} + +inherit eutils flag-o-matic java-pkg-opt-2 multilib + +PATCHSET_VER="0" + +DESCRIPTION="free, small, and standard compliant Prolog compiler" +HOMEPAGE="http://www.swi-prolog.org/" +SRC_URI="http://www.swi-prolog.org/download/stable/src/swipl-${MY_PV}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="archive berkdb debug doc +gmp hardened java +libedit libressl minimal odbc pcre readline ssl static-libs test uuid zlib X" + +RDEPEND="sys-libs/ncurses:= + archive? ( app-arch/libarchive ) + berkdb? ( >=sys-libs/db-4:= ) + zlib? ( sys-libs/zlib ) + odbc? ( dev-db/unixODBC ) + pcre? ( dev-libs/libpcre ) + readline? ( sys-libs/readline:= ) + libedit? ( dev-libs/libedit ) + gmp? ( dev-libs/gmp:0 ) + ssl? ( + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + ) + java? ( >=virtual/jdk-1.7:= ) + uuid? ( dev-libs/ossp-uuid ) + X? ( + virtual/jpeg:0 + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXpm + x11-libs/libXt + x11-libs/libICE + x11-libs/libSM )" + +DEPEND="${RDEPEND} + X? ( x11-proto/xproto ) + java? ( test? ( =dev-java/junit-3.8* ) )" + +S="${WORKDIR}/swipl-${MY_PV}" + +src_prepare() { + EPATCH_FORCE=yes + EPATCH_SUFFIX=patch + if [[ -d "${WORKDIR}"/${PV} ]] ; then + epatch "${WORKDIR}"/${PV} + fi + + if ! use uuid; then + mv packages/clib/uuid.pl packages/clib/uuid.pl.unused || die + fi + + # OSX/Intel ld doesn't like an archive without table of contents + sed -i -e 's/-cru/-scru/' packages/nlp/libstemmer_c/Makefile.pl || die +} + +src_configure() { + append-flags -fno-strict-aliasing + use ppc && append-flags -mno-altivec + use hardened && append-flags -fno-unit-at-a-time + use debug && append-flags -DO_DEBUG + + # ARCH is used in the configure script to figure out host and target + # specific stuff + export ARCH=${CHOST} + + export CC_FOR_BUILD=$(tc-getBUILD_CC) + + cd "${S}"/src || die + econf \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + $(use_enable gmp) \ + $(use_enable static-libs static) \ + --enable-shared \ + --enable-custom-flags COFLAGS="${CFLAGS}" + + if ! use minimal ; then + local jpltestconf + if use java && use test ; then + jpltestconf="--with-junit=$(java-config --classpath junit)" + fi + + cd "${S}/packages" || die + econf \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + $(use_with archive) \ + $(use_with berkdb bdb ) \ + $(use_with java jpl) \ + ${jpltestconf} \ + $(use_with libedit) \ + $(use_with pcre) \ + $(use_with odbc) \ + $(use_with readline) \ + $(use_with ssl) \ + $(use_with X xpce) \ + $(use_with zlib) \ + COFLAGS='"${CFLAGS}"' + fi +} + +src_compile() { + cd "${S}"/src || die + emake + + if ! use minimal ; then + cd "${S}/packages" || die + emake + ./report-failed || die "Cannot report failed packages" + fi +} + +src_test() { + cd "${S}/src" || die + emake check + + if ! use minimal ; then + unset DISPLAY + cd "${S}/packages" || die + emake \ + USE_PUBLIC_NETWORK_TESTS=false \ + USE_ODBC_TESTS=false \ + check + ./report-failed || die + fi +} + +src_install() { + emake -C src DESTDIR="${D}" install + + if ! use minimal ; then + emake -C packages DESTDIR="${D}" install + if use doc ; then + emake -C packages DESTDIR="${D}" html-install + fi + ./packages/report-failed || die "Cannot report failed packages" + fi + + dodoc ReleaseNotes/relnotes-5.10 INSTALL README.md VERSION +} diff --git a/dev-lang/tuprolog/Manifest b/dev-lang/tuprolog/Manifest index 8751d389cc9f..8ae771bfed30 100644 --- a/dev-lang/tuprolog/Manifest +++ b/dev-lang/tuprolog/Manifest @@ -1,3 +1,3 @@ DIST tuprolog-2.9.2.tar.gz 6262268 SHA256 4205dff584b492e10f214c71ce7bc0e81297a915156ca1e10cfac8b34c8c0a6e SHA512 831c7390fe33fc57cb01d4b1d61485ac5df1aa8ebf386d5aae5c5d32f7677d46aa5aa6cc0eb1d3bb79989a54f8484ad8b97754b7f75fc21af6116ae170a28316 WHIRLPOOL 18dceea5e95be3e60b10fa8692970e61d9b16b2f518ac342de271ac7c6cb8313e8e9ca359fb93753d43a2c09780e47f212776ce560f9c2fefdb21d44f3316c77 -DIST tuprolog-3.0.0.tar.gz 6275327 SHA256 1c7a423cbd3faa626f8398a48ec6396c2d17431a77b1f22179d713cc76aeeb09 SHA512 7998dadb04b1314d096a33c54d11977534565accb3811b93a22f606fd838d2f9b0a6defe882992977a093832e1565283d3951dcc791809620deb61d3511c02d3 WHIRLPOOL 915a21632a2c86f33de25cc05ec75f3e40b33a0ba80f73219cfab6d06f69af07bc9d143a3d1cd80fbfd27fdeba9d4259f389f1a33704bfac2151403b26424e12 DIST tuprolog-3.0.1.tar.gz 6326591 SHA256 e4ed2689dd5496175cddcfe299b442d92d580d778a0fd9a4c7beededa20dfbb7 SHA512 56fa96f717b5c8e56fd2979f2953744964d844e5abf215456e31309d3d92bde142f9bff55e6442b6de55f219c7f143a275ccf89359ff2f2944459bbc94770afa WHIRLPOOL 81d8421242ce8308418b7c40b7db6554cdbd92a4966aef4d73c414b675fca9148f5fce52ec2ef2a0c62025eda1c790013fb1b6bd20ac53a16f7be3fc61149004 +DIST tuprolog-3.1.0.tar.gz 7201383 SHA256 be2ecf38acb74e35cd19e507cb15e698fe5a9bd6373487a668fccbe38628bba2 SHA512 1093e29a79964cb3991326da14f020cdc8ff64f2444c84dbb6b22aa5c4ecbf48f74dbc26af0af949ccc31020573ce5908684af794db4654fb475efa697a82cbf WHIRLPOOL 6aac4962fa499efbc95d6e86b654b6a0f5cfbec8cd569f6525006fd0255a08e0bcd7f3826b5c3070fe524e3d752f7aaa6434a1851d61d140597d604ae8e65a07 diff --git a/dev-lang/tuprolog/files/tuprolog-3.1.0-no-ikvm.patch b/dev-lang/tuprolog/files/tuprolog-3.1.0-no-ikvm.patch new file mode 100644 index 000000000000..eb20dacd4430 --- /dev/null +++ b/dev-lang/tuprolog/files/tuprolog-3.1.0-no-ikvm.patch @@ -0,0 +1,137 @@ +diff -urN tuprolog-3.1.0.orig/src/alice/tuprolog/LibraryManager.java tuprolog-3.1.0/src/alice/tuprolog/LibraryManager.java +--- tuprolog-3.1.0.orig/src/alice/tuprolog/LibraryManager.java 2017-10-08 17:06:55.710627376 +0200 ++++ tuprolog-3.1.0/src/alice/tuprolog/LibraryManager.java 2017-10-08 17:18:20.817598723 +0200 +@@ -9,11 +9,11 @@ + import java.net.URL; + import java.net.URLClassLoader; + import java.util.*; +-import cli.System.Reflection.Assembly; ++//import cli.System.Reflection.Assembly; + + import alice.tuprolog.event.LibraryEvent; + import alice.tuprolog.event.WarningEvent; +-import alice.util.AssemblyCustomClassLoader; ++//import alice.util.AssemblyCustomClassLoader; + + /** + * @author Alex Benini +@@ -179,31 +179,7 @@ + } else + // .NET + { +- Assembly asm = null; +- boolean classFound = false; +- className = "cli." +- + className.substring(0, className.indexOf(",")) +- .trim(); +- for (int i = 0; i < paths.length; i++) +- { +- try +- { +- asm = Assembly.LoadFrom(paths[i]); +- loader = new AssemblyCustomClassLoader(asm, urls); +- lib = (Library) Class.forName(className, true, loader).newInstance(); +- if (lib != null) +- { +- classFound = true; +- break; +- } +- } catch (Exception e) +- { +- e.printStackTrace(); +- continue; +- } +- } +- if (!classFound) +- throw new InvalidLibraryException(className, -1, -1); ++ throw new InvalidLibraryException(className, -1, -1); + } + } + +@@ -462,4 +438,4 @@ + return optimizedDirectory; + } + +-} +\ Manca newline alla fine del file ++} +diff -urN tuprolog-3.1.0.orig/src/alice/tuprologx/ide/LibraryManager.java tuprolog-3.1.0/src/alice/tuprologx/ide/LibraryManager.java +--- tuprolog-3.1.0.orig/src/alice/tuprologx/ide/LibraryManager.java 2017-10-08 17:06:55.796627373 +0200 ++++ tuprolog-3.1.0/src/alice/tuprologx/ide/LibraryManager.java 2017-10-08 17:20:18.378593806 +0200 +@@ -19,7 +19,7 @@ + + import alice.tuprolog.*; + import alice.tuprolog.InvalidLibraryException; +-import alice.util.AssemblyCustomClassLoader; ++//import alice.util.AssemblyCustomClassLoader; + + import java.io.File; + import java.net.URL; +@@ -27,7 +27,7 @@ + import java.util.ArrayList; + import java.util.Hashtable; + import java.util.StringTokenizer; +-import cli.System.Reflection.Assembly; ++//import cli.System.Reflection.Assembly; + + /** + * A dynamic manager for tuProlog libraries. +@@ -156,10 +156,7 @@ + // .NET + if(System.getProperty("java.vm.name").equals("IKVM.NET")) + { +- Assembly asm = Assembly.LoadFrom(file.getPath()); +- loader = new AssemblyCustomClassLoader(asm, new URL[]{url}); +- libraryClassname = "cli." + libraryClassname.substring(0, +- libraryClassname.indexOf(",")).trim(); ++ throw new InvalidLibraryException(libraryClassname,-1,-1); + } + // JVM + else +diff -urN tuprolog-3.1.0.orig/src/alice/util/AssemblyCustomClassLoader.java tuprolog-3.1.0/src/alice/util/AssemblyCustomClassLoader.java +--- tuprolog-3.1.0.orig/src/alice/util/AssemblyCustomClassLoader.java 2017-10-08 17:06:55.863627370 +0200 ++++ tuprolog-3.1.0/src/alice/util/AssemblyCustomClassLoader.java 1970-01-01 01:00:00.000000000 +0100 +@@ -1,21 +0,0 @@ +-package alice.util; +- +-import java.net.URL; +- +-public class AssemblyCustomClassLoader extends java.net.URLClassLoader +-{ +- public AssemblyCustomClassLoader(cli.System.Reflection.Assembly asm, URL[] urls) +- { +- super(new java.net.URL[0], new ikvm.runtime.AssemblyClassLoader(asm)); +- // explicitly calling addURL() is safer than passing it to the super constructor, +- // because this class loader instance may be used during the URL construction. +- for (URL url : urls) { +- addURL(url); +- } +- } +- +- public void addUrl(URL url) +- { +- addURL(url); +- } +-} +\ Manca newline alla fine del file +diff -urN tuprolog-3.1.0.orig/src/alice/util/proxyGenerator/Generator.java tuprolog-3.1.0/src/alice/util/proxyGenerator/Generator.java +--- tuprolog-3.1.0.orig/src/alice/util/proxyGenerator/Generator.java 2017-10-08 17:06:55.877627369 +0200 ++++ tuprolog-3.1.0/src/alice/util/proxyGenerator/Generator.java 2017-10-08 17:18:20.819598723 +0200 +@@ -1,7 +1,7 @@ + package alice.util.proxyGenerator; + import javax.tools.*; + +-import cli.System.Reflection.Assembly; ++//import cli.System.Reflection.Assembly; + + import java.lang.reflect.*; + import java.util.*; +@@ -29,7 +29,7 @@ + } + + if(System.getProperty("java.vm.name").equals("IKVM.NET")) +- ikvm.runtime.Startup.addBootClassPathAssemby(Assembly.Load("IKVM.OpenJDK.Tools")); ++ throw new UnsupportedOperationException("IKVM.NET not supported!"); + + jc = ToolProvider.getSystemJavaCompiler(); + if (jc == null) { diff --git a/dev-lang/tuprolog/tuprolog-3.0.0.ebuild b/dev-lang/tuprolog/tuprolog-3.1.0.ebuild similarity index 87% rename from dev-lang/tuprolog/tuprolog-3.0.0.ebuild rename to dev-lang/tuprolog/tuprolog-3.1.0.ebuild index 534133b85542..3da80e1506c2 100644 --- a/dev-lang/tuprolog/tuprolog-3.0.0.ebuild +++ b/dev-lang/tuprolog/tuprolog-3.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -14,7 +14,7 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc examples test" -RDEPEND=">=virtual/jdk-1.7:= +RDEPEND=">=virtual/jdk-1.8:= dev-java/javassist:3 dev-java/commons-lang:3.1" @@ -32,8 +32,6 @@ EANT_GENTOO_CLASSPATH="javassist:3,commons-lang-3.1" src_prepare() { epatch "${FILESDIR}"/${P}-no-ikvm.patch - epatch "${FILESDIR}"/${P}-no-dynamic-object-test.patch - epatch "${FILESDIR}"/${P}-oolibrary-unit-test.patch cp "${FILESDIR}"/build-${PV}.xml "${S}"/build.xml || die } diff --git a/dev-libs/libevdev/libevdev-1.5.6.ebuild b/dev-libs/libevdev/libevdev-1.5.6.ebuild index 500573be1409..1468a6d1e0d1 100644 --- a/dev-libs/libevdev/libevdev-1.5.6.ebuild +++ b/dev-libs/libevdev/libevdev-1.5.6.ebuild @@ -10,6 +10,7 @@ inherit python-any-r1 xorg-2 EGIT_REPO_URI="https://anongit.freedesktop.org/git/libevdev.git" DESCRIPTION="Handler library for evdev events" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/libevdev/" if [[ ${PV} == 9999* ]] ; then SRC_URI="" diff --git a/dev-libs/libevdev/libevdev-1.5.7.ebuild b/dev-libs/libevdev/libevdev-1.5.7.ebuild index 0bb3a1d67211..4c1855eb9015 100644 --- a/dev-libs/libevdev/libevdev-1.5.7.ebuild +++ b/dev-libs/libevdev/libevdev-1.5.7.ebuild @@ -10,6 +10,7 @@ inherit python-any-r1 xorg-2 EGIT_REPO_URI="https://anongit.freedesktop.org/git/libevdev.git" DESCRIPTION="Handler library for evdev events" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/libevdev/" if [[ ${PV} == 9999* ]] ; then SRC_URI="" diff --git a/dev-libs/libmcs/metadata.xml b/dev-libs/libmcs/metadata.xml index 1cd805e9936a..097975e3adc2 100644 --- a/dev-libs/libmcs/metadata.xml +++ b/dev-libs/libmcs/metadata.xml @@ -1,5 +1,4 @@ - diff --git a/dev-libs/tvision/tvision-2.1.0_pre2-r3.ebuild b/dev-libs/tvision/tvision-2.1.0_pre2-r3.ebuild deleted file mode 100644 index 7c979b1df733..000000000000 --- a/dev-libs/tvision/tvision-2.1.0_pre2-r3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils multilib - -DESCRIPTION="Text User Interface that implements the well known CUA widgets" -HOMEPAGE="http://tvision.sourceforge.net/" -SRC_URI="mirror://sourceforge/tvision/rhtvision_${PV/_pre/-}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -S=${WORKDIR}/${PN} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gcc41.patch - epatch "${FILESDIR}"/${P}-outb.patch - epatch "${FILESDIR}"/${P}-underflow.patch - epatch "${FILESDIR}"/${P}-asneeded.patch - epatch "${FILESDIR}"/${P}-gcc44.patch - epatch "${FILESDIR}"/${P}-ldconfig.patch - epatch "${FILESDIR}"/${P}-flags.patch -} - -src_compile() { - ./configure \ - --prefix=/usr \ - --fhs \ - || die - emake || die -} - -src_install() { - einstall libdir="\$(prefix)/$(get_libdir)"|| die - dosym rhtvision /usr/include/tvision - dodoc readme.txt THANKS TODO - dohtml -r www-site -} diff --git a/dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild b/dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild index a301041fe624..1bac9ca9f3f8 100644 --- a/dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild +++ b/dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild @@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/tvision/rhtvision_${PV/_pre/-}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ppc ~x86" +KEYWORDS="amd64 ppc x86" IUSE="" DOCS=( readme.txt THANKS TODO ) diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild index eb1a89c6b5f9..bff440548364 100644 --- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild +++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild @@ -20,15 +20,6 @@ DEPEND="virtual/commonlisp dev-lisp/flexi-streams" RDEPEND="dev-lisp/cl-ppcre" -COMMONLISPS="sbcl clisp clozurecl cmucl ecls" - -find-lisp-impl() { - for lisp in ${COMMONLISPS} ; do - [[ "$(best_version dev-lisp/${lisp})" ]] && echo "${lisp}" && return - done - die "No CommonLisp implementation found" -} - src_configure() { xdg_environment_reset } @@ -38,7 +29,7 @@ src_compile() { # is compiled, so we compile it here. local initclunicode="(progn (push \"${S}/\" asdf:*central-registry*) (require :${PN}))" - common-lisp-export-impl-args "$(find-lisp-impl)" + common-lisp-export-impl-args "$(common-lisp-find-lisp-impl)" ${CL_BINARY} ${CL_EVAL} "${initclunicode}" } diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild new file mode 100644 index 000000000000..b7338a37775d --- /dev/null +++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild @@ -0,0 +1,97 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=TURNSTEP +inherit perl-module + +DESCRIPTION="PostgreSQL database driver for the DBI module" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND=" + virtual/perl-version + >=dev-perl/DBI-1.614.0 + dev-db/postgresql:* +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker +" +src_prepare() { + postgres_include="$(readlink -f "${EPREFIX}"/usr/include/postgresql)" + postgres_lib="${postgres_include//include/lib}" + # Fall-through case is the non-split postgresql + # The active cases instead get us the matching libdir for the includedir. + for i in lib lib64 ; do + if [ -d "${postgres_lib}/${i}" ]; then + postgres_lib="${postgres_lib}/${i}" + break + fi + done + + # env variables for compilation: + export POSTGRES_INCLUDE="${postgres_include}" + export POSTGRES_LIB="${postgres_lib}" + perl-module_src_prepare +} + +src_test() { + local MODULES=( + # Compile failure: https://rt.cpan.org/Ticket/Display.html?id=123218 + # "Bundle::DBD::Pg v${PV}" + "DBD::Pg v${PV}" + ) + local failed=() + for dep in "${MODULES[@]}"; do + ebegin "Compile testing ${dep}" + perl -Mblib="${S}" -M"${dep} ()" -e1 #|| + #die "Could not load ${dep}" + eend $? || failed+=( "$dep" ) + done + if [[ ${failed[@]} ]]; then + echo + eerror "One or more modules failed compile:"; + for dep in "${failed[@]}"; do + eerror " ${dep}" + done + die "Failing due to module compilation errors"; + fi + + local LIVEDB_TESTS=( + "t/01connect.t" + "t/02attribs.t" + "t/03dbmethod.t" + "t/03smethod.t" + "t/04misc.t" + "t/06bytea.t" + "t/07copy.t" + "t/08async.t" + "t/09arrays.t" + "t/12placeholders.t" + "t/20savepoints.t" + "t/30unicode.t" + ) + local SKIP_TESTS=( + "t/00_signature.t" + ); + if [[ ! -v DBI_DSN ]]; then + ewarn "Functional database tests disabled due to lack of configuration." + ewarn "Please set the following environment variables values pertaining to a" + ewarn "pre-configured Postgres installation in order for tests to work:" + ewarn " DBI_DSN - A DBI-compatible connection string for a Postgres Database" + ewarn " ( eg: dbi:Pg:dbname=testdb )" + ewarn " DBI_USER - A Postgres Database Username" + ewarn " DBI_PASS - A Postgres Database Password" + ewarn "" + ewarn "For details, visit:" + ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg" + SKIP_TESTS+=( "${LIVEDB_TESTS[@]}" ) + fi + perl_rm_files "${SKIP_TESTS[@]}" + # Parallel testing breaks database access + DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test + +} diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest index 0d26187baeec..81e5232e7c0b 100644 --- a/dev-perl/DBD-Pg/Manifest +++ b/dev-perl/DBD-Pg/Manifest @@ -1,2 +1,3 @@ DIST DBD-Pg-3.5.3.tar.gz 256570 SHA256 7e98a9b975256a4733db1c0e974cad5ad5cb821489323e395ed97bd058e0a90e SHA512 7a564e5c86fa41719289f6e391f0cd39f01df7d088892fca11175c60fec8a3af884f9204ae834caac2024ff0d45dcc013e314ec0c09a07fe7ee76170ec3a634f WHIRLPOOL 6f4091284c2c91b8c2126e06a2727b65e672db91ce5f265841ef3c02b977f48712e84ad013980bbe4a2e127f5003906bf315d7b6a86787440a9cc6688aa14cd8 DIST DBD-Pg-3.6.2.tar.gz 258640 SHA256 4b1d2edea07cfaadbb710ac138f41346752bb62f5d29cd0363f11cb4f7c3c4ae SHA512 1f55bd463d90cd0d9933acde0a79462a57f11e7ed9519943cc2cb4487b4b69edd7d16ffa3d666c50aca797f9756ff4e6a0d67b58bc100f4920da36169d73b7b4 WHIRLPOOL 8d28fe8f64b952f57ede925d20a88aca1631462e85b59112ddf073753892053fd59b4802d293fdd745a1c047ff436bb7192b5cf5839436c5d288d4b1b403bc73 +DIST DBD-Pg-3.7.0.tar.gz 260083 SHA256 e36e0459c9cf0f12edafb74f4cef685876d0460dbe6b411e7109070c67e56459 SHA512 edd4d3448dac1b563899c5fd4a1bad6cb810afdbbbf57b558bbe6710aa3e58530a6cf0932e35c3316c7f4f59763764d75ce1049f13c8c13deeb2e8a7c60ff73e WHIRLPOOL 75b41813d3888fa673a1225fbd78454bac0e24fa27a3acbd368f751a9004e3dea8b2bda4907c97b0ffcbc4db832c7fce8f814a07393c27ea28bca7768f826c75 diff --git a/dev-perl/DBI-Shell/DBI-Shell-11.950.0-r2.ebuild b/dev-perl/DBI-Shell/DBI-Shell-11.950.0-r2.ebuild new file mode 100644 index 000000000000..5f323225be7c --- /dev/null +++ b/dev-perl/DBI-Shell/DBI-Shell-11.950.0-r2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=TLOWERY +DIST_VERSION=11.95 +inherit perl-module + +DESCRIPTION="Interactive command shell for the DBI" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-perl/IO-Tee + dev-perl/Text-Reform + dev-perl/DBI + dev-perl/Text-CSV_XS" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}/${P}-perl526.patch" + "${FILESDIR}/${P}-local-scalar.patch" + "${FILESDIR}/${P}-nochrdir.patch" + "${FILESDIR}/${P}-sprintf-warn.patch" +) diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-local-scalar.patch b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-local-scalar.patch new file mode 100644 index 000000000000..1d305f542d9e --- /dev/null +++ b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-local-scalar.patch @@ -0,0 +1,26 @@ +From ef8efc5b80c9395c01f23e5acd28bb3ee7810b54 Mon Sep 17 00:00:00 2001 +From: Kent Fredric +Date: Sun, 8 Oct 2017 13:08:20 +1300 +Subject: Fix useless localization of scalar assignment + +Bug: https://rt.cpan.org/Ticket/Display.html?id=73873 +--- + lib/DBI/Format.pm | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/DBI/Format.pm b/lib/DBI/Format.pm +index 49cd7dd..bc985f9 100755 +--- a/lib/DBI/Format.pm ++++ b/lib/DBI/Format.pm +@@ -374,7 +374,7 @@ sub header { + + sub row { + my($self, $rowref) = @_; +- local( $^W = 0 ); ++ local ($^W) = 0; + my @row = @$rowref; + my $fh = $self->{'fh'}; + print $fh (join($self->{sep}, @row), "\n"); +-- +2.14.1 + diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-nochrdir.patch b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-nochrdir.patch new file mode 100644 index 000000000000..b79649da4f5c --- /dev/null +++ b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-nochrdir.patch @@ -0,0 +1,26 @@ +From 9fb29d16514530245965b932040bb4fc37ffa9bf Mon Sep 17 00:00:00 2001 +From: Kent Fredric +Date: Sun, 8 Oct 2017 13:11:29 +1300 +Subject: Fix no_chrdir warning + +Bug: https://rt.cpan.org/Ticket/Display.html?id=123215 +--- + lib/DBI/Shell/FindSqlFile.pm | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/DBI/Shell/FindSqlFile.pm b/lib/DBI/Shell/FindSqlFile.pm +index e604290..2b56ccc 100644 +--- a/lib/DBI/Shell/FindSqlFile.pm ++++ b/lib/DBI/Shell/FindSqlFile.pm +@@ -62,7 +62,7 @@ sub look_for_file { + File::Find::find( + { + wanted => \&wanted +- , no_chrdir => 1 ++ , no_chdir => 1 + , bydepth => 0 + }, + @search_path); +-- +2.14.1 + diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-perl526.patch b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-perl526.patch new file mode 100644 index 000000000000..cd8258480d70 --- /dev/null +++ b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-perl526.patch @@ -0,0 +1,39 @@ +From 792cf15cb387e58cec1ef3c6d538689d02ab44c3 Mon Sep 17 00:00:00 2001 +From: Kent Fredric +Date: Sun, 8 Oct 2017 12:46:17 +1300 +Subject: Fix '.' removal from @INC in Perl 5.26 + +Configuration files were always assumed to be explicit paths given +by outsiders, not random entries in @INC + +Bug: https://bugs.gentoo.org/615592 +Bug: https://rt.cpan.org/Ticket/Display.html?id=121136 +--- + lib/DBI/Shell.pm | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/lib/DBI/Shell.pm b/lib/DBI/Shell.pm +index 03dd958..7869f0f 100755 +--- a/lib/DBI/Shell.pm ++++ b/lib/DBI/Shell.pm +@@ -133,6 +133,7 @@ use Text::Abbrev (); + use Term::ReadLine; + use Getopt::Long 2.17; # upgrade from CPAN if needed: http://www.perl.com/CPAN + use IO::File; ++use File::Spec (); + + use DBI 1.00 qw(:sql_types :utils); + use DBI::Format; +@@ -544,7 +545,8 @@ sub configuration { + $sh->{config_file} = $ENV{DBISH_CONFIG} || "$homedir/.dbish_config"; + my $config; + if ($sh->{config_file} && -f $sh->{config_file}) { +- $config = require $sh->{config_file}; ++ my $full = File::Spec->rel2abs( $sh->{config_file} ); ++ $config = require $full; + # allow for custom configuration options. + if (exists $config->{'options'} ) { + $sh->install_options( $config->{'options'} ); +-- +2.14.1 + diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-sprintf-warn.patch b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-sprintf-warn.patch new file mode 100644 index 000000000000..46943c1266ba --- /dev/null +++ b/dev-perl/DBI-Shell/files/DBI-Shell-11.950.0-sprintf-warn.patch @@ -0,0 +1,25 @@ +From f44b8ba9d8cf954c76a967cbfb5d4182f109f8cf Mon Sep 17 00:00:00 2001 +From: Kent Fredric +Date: Sun, 8 Oct 2017 13:30:36 +1300 +Subject: Silence warnings about reduntant sprintf args + +Bug: https://rt.cpan.org/Ticket/Display.html?id=123216 +--- + lib/DBI/Format/SQLMinus.pm | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/lib/DBI/Format/SQLMinus.pm b/lib/DBI/Format/SQLMinus.pm +index c3a9ba2..7b240c9 100755 +--- a/lib/DBI/Format/SQLMinus.pm ++++ b/lib/DBI/Format/SQLMinus.pm +@@ -155,6 +155,7 @@ sub header { + + if ( exists $cf->{format} and defined $cf->{format} ) { + $format_names = $cf->{format}; ++ no warnings 'redundant'; + $width = length sprintf( $format_names, " " ); + } + +-- +2.14.1 + diff --git a/dev-perl/DBIx-SearchBuilder/DBIx-SearchBuilder-1.670.0.ebuild b/dev-perl/DBIx-SearchBuilder/DBIx-SearchBuilder-1.670.0.ebuild new file mode 100644 index 000000000000..baf04c988808 --- /dev/null +++ b/dev-perl/DBIx-SearchBuilder/DBIx-SearchBuilder-1.670.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=BPS +DIST_VERSION=1.67 +DIST_EXAMPLES=("ex/*") +inherit perl-module + +DESCRIPTION="Encapsulate SQL queries and rows in simple Perl objects" + +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="test" + +RDEPEND=" + >=dev-perl/Cache-Simple-TimedExpiry-0.210.0 + >=dev-perl/capitalization-0.30.0 + >=dev-perl/Class-ReturnValue-0.400.0 + dev-perl/Class-Accessor + dev-perl/Clone + dev-perl/DBI + dev-perl/DBIx-DBSchema + dev-perl/Want + >=virtual/perl-Encode-1.990.0 + virtual/perl-Scalar-List-Utils +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.360.0 + test? ( + >=virtual/perl-Test-Simple-0.520.0 + dev-perl/DBD-SQLite + virtual/perl-File-Temp + ) +" + +PATCHES=( "${FILESDIR}/${PN}"-1.66-no-dot-inc.patch ) + +src_prepare() { + use test && perl_rm_files t/pod.t + perl-module_src_prepare +} diff --git a/dev-perl/DBIx-SearchBuilder/Manifest b/dev-perl/DBIx-SearchBuilder/Manifest index 4672e1388dae..5d6d7da6fb49 100644 --- a/dev-perl/DBIx-SearchBuilder/Manifest +++ b/dev-perl/DBIx-SearchBuilder/Manifest @@ -1 +1,2 @@ DIST DBIx-SearchBuilder-1.66.tar.gz 114777 SHA256 e2703c3f4b38cf232dec48be98aeab6d2dbee077dcf059369b825629c4be702e SHA512 e27513701a0712a9d7926c8e0966ee23d60163996c40a83e8d45164af8f9008bb7cf6a567ca1cb8d0226bb8fcf7bf9f1570277fb849c55095d8532ac356d5d95 WHIRLPOOL ae208460d4cb567521424287b932227bca491da4d3d72bd092e92d52b8bef068fcdc5f506465b88c367bb9d3726183af1411dc99790b9cb5f917ab154c9fd7ff +DIST DBIx-SearchBuilder-1.67.tar.gz 115193 SHA256 453179c22a61af573e502c8396f3f28daea03dfdc162094b90f9b3c331d563da SHA512 8cade12f01da749356a3c1b167f46e0377934e01832548baebfa629e71c3199ce473a63077ee5ac5ed58f805f7cb883bd8d0886d2ecf27f4740eafbb30f91bae WHIRLPOOL f06092c2246f2ffdc604a43b885a6ac1a6d212d665d1c7dcfa0eb1ea22fd0a8883a941fb654085ae6ac671fa9722780a76c98d69e97e2c84bd925d952d70362a diff --git a/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch b/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch index e8cbca88fa95..93ccd89c28e7 100644 --- a/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch +++ b/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch @@ -1,8 +1,11 @@ -From 239c1bdefee7ce82d9ea6b26931e8b64a5b3d322 Mon Sep 17 00:00:00 2001 +From 859d5403887df584af7e88e7bea7899ea6549fd0 Mon Sep 17 00:00:00 2001 From: Kent Fredric Date: Sun, 25 Jun 2017 19:16:42 +1200 -Subject: [PATCH] Fix for '.' removal from @INC in Perl 5.26 +Subject: Fix for '.' removal from @INC in Perl 5.26 +Bug: https://rt.cpan.org/Ticket/Display.html?id=121140 +Bug: https://bugs.gentoo.org/615602 +Bug: https://github.com/bestpractical/dbix-searchbuilder/pull/5 --- Makefile.PL | 1 + t/01basics.t | 2 +- @@ -334,5 +337,5 @@ index 943f76a..d22b1ee 100644 use constant TESTS_PER_DRIVER => 20; -- -2.13.1 +2.14.1 diff --git a/dev-perl/DBIx-SearchBuilder/metadata.xml b/dev-perl/DBIx-SearchBuilder/metadata.xml index 8e6957e2649e..4ee03e9dd57d 100644 --- a/dev-perl/DBIx-SearchBuilder/metadata.xml +++ b/dev-perl/DBIx-SearchBuilder/metadata.xml @@ -22,5 +22,6 @@ DBIx::SearchBuilder::SchemaGenerator DBIx::SearchBuilder::Union DBIx::SearchBuilder::Unique + DBIx::SearchBuilder::Util diff --git a/dev-perl/Devel-SmallProf/Devel-SmallProf-2.20.0-r3.ebuild b/dev-perl/Devel-SmallProf/Devel-SmallProf-2.20.0-r3.ebuild new file mode 100644 index 000000000000..4dd621fc738a --- /dev/null +++ b/dev-perl/Devel-SmallProf/Devel-SmallProf-2.20.0-r3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=SALVA +DIST_VERSION=2.02 +inherit perl-module + +DESCRIPTION="Per-line Perl profiler" + +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="" + +PATCHES=( + "${FILESDIR}/${P}-defined.patch" + "${FILESDIR}/${P}-perl526.patch" +) +# note: dont use parallel here +# tests need each others exit state +DIST_TEST="do" diff --git a/dev-perl/Devel-SmallProf/files/Devel-SmallProf-2.20.0-perl526.patch b/dev-perl/Devel-SmallProf/files/Devel-SmallProf-2.20.0-perl526.patch new file mode 100644 index 000000000000..538387562a62 --- /dev/null +++ b/dev-perl/Devel-SmallProf/files/Devel-SmallProf-2.20.0-perl526.patch @@ -0,0 +1,67 @@ +From 70d450555b1792530c4230cecf84a044b2c3f9ce Mon Sep 17 00:00:00 2001 +From: Kent Fredric +Date: Sun, 8 Oct 2017 11:45:25 +1300 +Subject: Fix Perl 5.26 support without '.' in @INC + +1. Tests rely on "do $LOCALFILE" syntax +2. Runtime conditionally can load a local file ('./.smallprof') + +Bug: https://bugs.gentoo.org/615590 +Bug: https://rt.cpan.org/Ticket/Display.html?id=121134 +--- + lib/Devel/SmallProf.pm | 4 ++-- + t/part1.t | 2 +- + t/part2.t | 2 +- + t/part3.t | 2 +- + 4 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/lib/Devel/SmallProf.pm b/lib/Devel/SmallProf.pm +index 2b5d091..4fdd66a 100644 +--- a/lib/Devel/SmallProf.pm ++++ b/lib/Devel/SmallProf.pm +@@ -55,8 +55,8 @@ BEGIN { + $drop_zeros = 0; + $profile = 1; + $grep_format = 0; +- if (-e '.smallprof') { +- do '.smallprof'; ++ if (-e './.smallprof') { ++ do './.smallprof'; + } + my $env=$ENV{SMALLPROF_CONFIG}||''; + $drop_zeros = 1 if $env=~/z/; +diff --git a/t/part1.t b/t/part1.t +index 805ebe4..483f203 100644 +--- a/t/part1.t ++++ b/t/part1.t +@@ -6,4 +6,4 @@ + # doesn't have it's contents put into the symbol table. Thus this shim which + # invokes the real part1 so that its contents are visible. + +-do 't/part1.b' or die "$!"; ++do './t/part1.b' or die "$!"; +diff --git a/t/part2.t b/t/part2.t +index c808010..335d032 100644 +--- a/t/part2.t ++++ b/t/part2.t +@@ -9,7 +9,7 @@ unless (open(OUT,'smallprof.out')) { + undef $/; + $_ = ; + close OUT; +-print +(/Profile of \(eval/ && m!Profile of t.part1\.b!) ++print +(/Profile of \(eval/ && m!Profile of \./t.part1\.b!) + ? "ok 1\n" : "not ok 1\n"; + my (@matches) = /Profile of/g; + print +(@matches == 3) ? "ok 2\n" : "not ok 2\n"; +diff --git a/t/part3.t b/t/part3.t +index 652b306..135d4ca 100644 +--- a/t/part3.t ++++ b/t/part3.t +@@ -1,3 +1,3 @@ + #!perl -d:SmallProf + +-do 't/part3.b' or die "$!"; ++do './t/part3.b' or die "$!"; +-- +2.14.1 + diff --git a/dev-python/cached-property/Manifest b/dev-python/cached-property/Manifest index 68f3f45dbc21..1b2887e1ede0 100644 --- a/dev-python/cached-property/Manifest +++ b/dev-python/cached-property/Manifest @@ -1,4 +1,4 @@ DIST cached-property-0.1.5.tar.gz 7434 SHA256 2d07bd19af2ba5eb1d3c042e2b81c2cd02dc5b0890253cb14ae10f1d34f7f86b SHA512 f5a01e64eed78cc3377bd053b0662dc4f904db7c1ea47b155e1613e6ed413fb6693e4893916518f9e53589373ebe099724d296306a9854d8d8df66b62ed9ce1b WHIRLPOOL cd5faae8024124ddd50f77fd6ee6dd6599756c7e5509d73ebcf4dea2867b066f61c40cc7f9be3144ff3295cd590f3b35925e586f1d9bbf97f40a0416ea7a5f8d DIST cached-property-1.0.0.tar.gz 8210 SHA256 041a60a616d59b13026c98b8e1f2b82b7f4ea049bcff44a86d4a0253ba1e2768 SHA512 771615418853d3a2a24567fa3f6dc931a02d0013abd38c26a2822cc0ab3228972e7f03e51a69478defc617491f81b76040d34a0e6683719b09b485c85196d948 WHIRLPOOL d557cadfa246a62feebac8eb81eed52d5087d38ccb0528a37492a4b83fe93278df458589cadab4238527c421e270d841c971e40c2a4ff25d8cf875f709799922 DIST cached-property-1.2.0.tar.gz 9162 SHA256 e3081a8182d3d4b7283eeade76c382bcfd4dfd644ca800598229c2ef798abb53 SHA512 0d05bad187d30b4354d8fa93d181d753c6e27e43a84891bd3bcc1c1449fe6d57d7fc1eecdbdc097f8c25e4cfa331811db5a6e23f77891848edc2817162259cd6 WHIRLPOOL 21667352edb4a763cabfbdc73dec7d6d464632207eb960eb5fa80b97b93aa964e09ba01bb226465ef6edc2737757ee57369fe0048520a22d5f91d5267baf436f -DIST cached-property-1.3.0.tar.gz 9320 SHA256 458e78b1c7286ece887d92c9bee829da85717994c5e3ddd253a40467f488bc81 SHA512 96746718c3ddf6dd01c9c617a6c52a667fa4b02419e6d8631130dbe17ff97accb78e583783bec5d77459abd42c9e29695cff15ef71ab79ed346d334517e99fb8 WHIRLPOOL 268ba723d9845fdcfe161d03bab9a114269f61830657db2340079659ce8d213df43286a0e4ee04a0e7ea771b32a97e3eb3bd049d391e153cc024804cae910e98 +DIST cached-property-1.3.1.tar.gz 9648 SHA256 6562f0be134957547421dda11640e8cadfa7c23238fc4e0821ab69efdb1095f3 SHA512 3349751d442ca6e7d4e792c8b076735d5308d68244af9c03044f3d72d619a5c3d7d5dbef434caa954db4b983245bfe646d4a25c99aec39f32d99751edd9e233f WHIRLPOOL 75f0c2f8ff2b5892ad93825b8d02c18bc5e58199d13209b7e1fe3bf7ff9dfe17d5579c1748676614b4699ca8693a29dbb8e919c626afd7f8ef4e0a9fd2f5b226 diff --git a/dev-python/cached-property/cached-property-1.3.0.ebuild b/dev-python/cached-property/cached-property-1.3.1.ebuild similarity index 98% rename from dev-python/cached-property/cached-property-1.3.0.ebuild rename to dev-python/cached-property/cached-property-1.3.1.ebuild index 6992602353ce..e4264f287693 100644 --- a/dev-python/cached-property/cached-property-1.3.0.ebuild +++ b/dev-python/cached-property/cached-property-1.3.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) inherit distutils-r1 diff --git a/dev-python/chardet/Manifest b/dev-python/chardet/Manifest index f7ad10b570b2..b6ea68331dd6 100644 --- a/dev-python/chardet/Manifest +++ b/dev-python/chardet/Manifest @@ -1,4 +1 @@ -DIST chardet-2.3.0.tar.gz 164346 SHA256 e53e38b3a4afe6d1132de62b7400a4ac363452dc5dfcf8d88e8e0cce663c68aa SHA512 d554c9b4564905a2b6c6971aaea2a812174d86b58137c6a2f9d54e2abd2395e6529968b2ce3ca2d97c717d2bd0bd80ab5b98cae9afac1a4add9ea305145030dd WHIRLPOOL af17bac2778a86d6fe9643a512a307cbcf92e4b43238b2d3d2bae53e646fccbdf40f31f41f9452e7d4f4c84d1ee637199af841a828d49f3452190749fee284c1 -DIST chardet-3.0.2.tar.gz 1872630 SHA256 3b92afd82ddea09d30832fac141840d6569c34f27633e4ad273c66172246116f SHA512 9466e8bdd4d49ca51664fefa170e2887bebf17d017d49056a0efe9baef4dc58e2a9e0766d41c1fcb06254e1346021d1d86b1eb55d4b71a061da93ea830f1dfce WHIRLPOOL 4010a838619b3f04d1266bdee49e26169724f1c83c38a3a9cc081fc8f2166e46ecf9544bc25e276a7dec4af7a64f469a74aabc8ecdc745fd10d364db331ee704 -DIST chardet-3.0.3.tar.gz 1872668 SHA256 99cc5d0c13fb0ec02bc4c8a35b35ff698ba1ebdb6d065b53276f0d10d59c2cdc SHA512 7769d80178fb9ded7f04c32969da1a73938b04ffcc9d8de2e593135731e29fbf1e2c21e39ca92d3789e08c9a800f9ec0aafc3c1d12580f4f1efb82e697700264 WHIRLPOOL 9ab8951cdcc69cc05974e67c421a5524bbdf18c96a5f272502b4ae22583520cbc7a82eb499de67cc5aac846af9db1279bc27581f3ce0afd73de2ead861663268 DIST chardet-3.0.4.tar.gz 1872214 SHA256 d5620025cfca430f6c2e28ddbc87c3c66a5c82fa65570ae975c92911c2190189 SHA512 b433ea0e15e200df968e6d61c671c42fbd77e519eb033035c4a5c241e1f98e1dfaea6747af632788507583b3ef85b00d510b3f6ef5cf58589ceca1b3a088b357 WHIRLPOOL cece99a2ed4a48f66232efc5d91ce228fcd83d3012a90099054bf214ad6f39e2b6250b139fb21b66469ccfd5b4bf8845846b50097f6fffda74c39fb742198355 diff --git a/dev-python/chardet/chardet-2.3.0.ebuild b/dev-python/chardet/chardet-2.3.0.ebuild deleted file mode 100644 index 709c76a767cd..000000000000 --- a/dev-python/chardet/chardet-2.3.0.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Universal encoding detector" -HOMEPAGE="https://github.com/chardet/chardet https://pypi.python.org/pypi/chardet" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" diff --git a/dev-python/chardet/chardet-3.0.2.ebuild b/dev-python/chardet/chardet-3.0.2.ebuild deleted file mode 100644 index 93934bd438aa..000000000000 --- a/dev-python/chardet/chardet-3.0.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Universal encoding detector" -HOMEPAGE="https://github.com/chardet/chardet https://pypi.python.org/pypi/chardet" -# SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" -# PyPI tarball is missing test.py: https://github.com/chardet/chardet/pull/118 -SRC_URI="https://github.com/chardet/chardet/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND} - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/hypothesis[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}"/disable-pytest-runner.patch -) - -python_test() { - py.test -v || die "Tests fail with ${EPYTHON}" -} diff --git a/dev-python/chardet/chardet-3.0.3.ebuild b/dev-python/chardet/chardet-3.0.3.ebuild deleted file mode 100644 index b57346e262b8..000000000000 --- a/dev-python/chardet/chardet-3.0.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Universal encoding detector" -HOMEPAGE="https://github.com/chardet/chardet https://pypi.python.org/pypi/chardet" -SRC_URI="https://github.com/chardet/chardet/archive/${PV}.tar.gz -> ${P}.tar.gz" - -# SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" -# PyPI tarball is missing test.py: https://github.com/chardet/chardet/pull/118 - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] -" - -DEPEND="${RDEPEND} - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/hypothesis[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}"/disable-pytest-runner.patch -) - -python_test() { - py.test -v || die "Tests fail with ${EPYTHON}" -} diff --git a/dev-python/chardet/files/disable-pytest-runner.patch b/dev-python/chardet/files/disable-pytest-runner.patch deleted file mode 100644 index affbc1341484..000000000000 --- a/dev-python/chardet/files/disable-pytest-runner.patch +++ /dev/null @@ -1,44 +0,0 @@ -From b874c25b08edd6bdbdd70a439c6cd603d6830226 Mon Sep 17 00:00:00 2001 -From: Zac Medico -Date: Fri, 21 Apr 2017 08:36:14 -0700 -Subject: [PATCH] setup.py: require pytest-runner only when necessary (#119) - -This optimizes setup.py for cases when pytest-runner is not needed, -using the approach that is suggested upstream: - -https://pypi.python.org/pypi/pytest-runner#conditional-requirement ---- - setup.py | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/setup.py b/setup.py -index 28a080a..c214352 100755 ---- a/setup.py -+++ b/setup.py -@@ -1,9 +1,14 @@ - #!/usr/bin/env python - import re -+import sys - - from setuptools import find_packages, setup - - -+needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv) -+pytest_runner = ['pytest-runner'] if needs_pytest else [] -+ -+ - # Get version without importing, which avoids dependency issues - def get_version(): - with open('chardet/version.py') as version_file: -@@ -46,7 +51,7 @@ setup(name='chardet', - "Modules"), - "Topic :: Text Processing :: Linguistic"], - packages=find_packages(), -- setup_requires=['pytest-runner'], -+ setup_requires=pytest_runner, - tests_require=['pytest', 'hypothesis'], - entry_points={'console_scripts': - ['chardetect = chardet.cli.chardetect:main']}) --- -2.12.2 - diff --git a/dev-python/feedparser/feedparser-5.2.1.ebuild b/dev-python/feedparser/feedparser-5.2.1.ebuild index 5a7768ae6bcd..d137f86feb0f 100644 --- a/dev-python/feedparser/feedparser-5.2.1.ebuild +++ b/dev-python/feedparser/feedparser-5.2.1.ebuild @@ -3,9 +3,9 @@ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) -inherit distutils-r1 eutils +inherit distutils-r1 DESCRIPTION="Parse RSS and Atom feeds in Python" HOMEPAGE="https://github.com/kurtmckee/feedparser https://pypi.python.org/pypi/feedparser" diff --git a/dev-python/flaky/flaky-3.4.0.ebuild b/dev-python/flaky/flaky-3.4.0.ebuild index 5de8876cee9d..9f67738122dc 100644 --- a/dev-python/flaky/flaky-3.4.0.ebuild +++ b/dev-python/flaky/flaky-3.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) inherit distutils-r1 diff --git a/dev-python/html2text/Manifest b/dev-python/html2text/Manifest index 617f01e63955..792ae8abc56e 100644 --- a/dev-python/html2text/Manifest +++ b/dev-python/html2text/Manifest @@ -1,2 +1,3 @@ DIST html2text-2016.5.29.tar.gz 46879 SHA256 7f59fb29083a7819063b227c24a8dd5e25aeef74b68bf2318a68cc1e3e653add SHA512 58b71fda6ea6fd1a71dec757c91cf342265a2c89ff5c45e752436068419fb6c1faa1ca0d5a6baafaaa60186a85aefdd840989177ce30e55bcda1c6209fc375be WHIRLPOOL 23f8625952dbd3543687976fa2595a0859d18376e716e83848aec29f7f704e40c71142c3d01bdcbdc8f8542b1e03a5ee695da40d4b6b9d436108a10b1ad57456 DIST html2text-2016.9.19.tar.gz 48003 SHA256 21c0237fae4f640eef53343a2965f44bfd907f0e1b956cd1171fb3884541767a SHA512 bfa7d051e49bea592413bc6e335aad34f6b10d3e718170e709dd9d4bb55cc26b7da4c3f64f512022efe41df80a1157b542ab2ca897612b702f9285cef3b44f40 WHIRLPOOL 7b39ab2351d057aa82b63cef0bcce71bb8d2ac053a940b01e9dcfb6ff4909d5cfb79ee52ebd6cd6f2998785808e9a925107c1f9cc7b3d4a2ea5aacd180af2f8c +DIST html2text-2017.10.4.tar.gz 50527 SHA256 e32553658cfe504db084a98ccc11758727107acc4c12c5fe464f6a8cdccc938f SHA512 c7f9b765572b5eac72837aa757f0be07df0270b49f9b3a3ec8c3c65ff929505166b0510c106116ffdca484b56120b6c162f86b600d88a5a35e86d06cd6b6fa19 WHIRLPOOL d31adbec5475afb3955173d4ea90a877d21e79611c60fd6609015291e999165e78ea3191c222ea4ce4df2d0a959e85aa6ed05b2e86b8cbf945889fc71eb2064c diff --git a/dev-python/html2text/html2text-2017.10.4.ebuild b/dev-python/html2text/html2text-2017.10.4.ebuild new file mode 100644 index 000000000000..9eee8c70ea91 --- /dev/null +++ b/dev-python/html2text/html2text-2017.10.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy{,3} ) + +inherit distutils-r1 + +DESCRIPTION="Turn HTML into equivalent Markdown-structured text" +HOMEPAGE="https://github.com/Alir3z4/html2text https://pypi.python.org/pypi/html2text" +SRC_URI="https://github.com/Alir3z4/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${CDEPEND} + dev-python/chardet[${PYTHON_USEDEP}] + dev-python/feedparser[${PYTHON_USEDEP}]" +DEPEND="${CDEPEND}" + +DOCS=( AUTHORS.rst ChangeLog.rst README.md ) + +src_prepare() { + default + + # naming conflict with app-text/html2text, bug 421647 + sed -i 's/html2text=html2text.cli:main/py\0/' setup.py || die +} + +python_test() { + "${PYTHON}" test/test_html2text.py -v || die "tests failed with ${EPYTHON}" +} diff --git a/dev-python/incremental/metadata.xml b/dev-python/incremental/metadata.xml index ec7a23b84f59..5c541d1fb5b0 100644 --- a/dev-python/incremental/metadata.xml +++ b/dev-python/incremental/metadata.xml @@ -17,5 +17,4 @@ incremental hawkowl/incremental - diff --git a/dev-python/pyopenssl/Manifest b/dev-python/pyopenssl/Manifest index 80d23bd0d5b4..2558e91e7ff5 100644 --- a/dev-python/pyopenssl/Manifest +++ b/dev-python/pyopenssl/Manifest @@ -2,3 +2,4 @@ DIST pyOpenSSL-0.15.1.tar.gz 149887 SHA256 f0a26070d6db0881de8bcc7846934b7c3c930 DIST pyOpenSSL-16.2.0.tar.gz 167305 SHA256 7779a3bbb74e79db234af6a08775568c6769b5821faecf6e2f4143edb227516e SHA512 c1b068137a492564fe958603712d401b7ee0def94c01a28be55f5c89e07c25684ecb0f465f3c56f35924bde038894f2914ac49539144845fb586d12b80307078 WHIRLPOOL 60f2fe38ba773ed52bcfe88da57bd78f2114d7018a6184ec1c0fa2a8ae6dab4cf2495cd2aa75d7a5b2beee49477dbb6b4256034cec83752db0a3c7e5f7c4debb DIST pyOpenSSL-17.0.0.tar.gz 167121 SHA256 48abfe9d2bb8eb8d8947c8452b0223b7b1be2383b332f3b4f248fe59ef0bafdd SHA512 819be95f920a70b40ae48ed6740bd1d8cd3bf2fc080f682db8978946929994cb87ac467e220267dcdafc40aa7ed2cce51a334a49b06c1e2665d295157181ddad WHIRLPOOL 8256ad13d35d7c7d1678bd6c35140e13a1f601f149bc38633b3f04eaec7e302853abcb5df857a04fd04dc8ac3feeb35d4247dc979cee0969dafc538ec9b70d5c DIST pyOpenSSL-17.2.0.tar.gz 170816 SHA256 5d617ce36b07c51f330aa63b83bf7f25c40a0e95958876d54d1982f8c91b4834 SHA512 aef1628665353445760a0c869c5b88ba1f61a3ade7471bfd1ad9e57672573501574dab5a2491aaac1dc283893fcac1a81dd9b972f43d53fe7ef1aa48e3f0e88a WHIRLPOOL aab3617e825237032efa44d5b89603bcd6b33095f76bb04b53140138066d9c6e96b64bb6def4425b3cf3aa279691142c66bf5c6b9a89ef5e5c64eb83459dc5a9 +DIST pyOpenSSL-17.3.0.tar.gz 168119 SHA256 29630b9064a82e04d8242ea01d7c93d70ec320f5e3ed48e95fcabc6b1d0f6c76 SHA512 2b58a652b8d6e2adadbc620a6b3411cd44169940ef1839fd3365cd343ebe1e630ddbb580d8d4dc79e738e0b4f91db0bdbbaecf18aea74204499c737eebb3fae8 WHIRLPOOL 154cb8beedd57c24aced9c0a37b2395a9c25a0696b803c70d40bc4df98802587e73602c7c74aebd03c60dd54849c293eede1366c0b2f5ccb0967331235754bc0 diff --git a/dev-python/pyopenssl/pyopenssl-17.3.0.ebuild b/dev-python/pyopenssl/pyopenssl-17.3.0.ebuild new file mode 100644 index 000000000000..d873a6b97ce3 --- /dev/null +++ b/dev-python/pyopenssl/pyopenssl-17.3.0.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 flag-o-matic + +MY_PN=pyOpenSSL +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Python interface to the OpenSSL library" +HOMEPAGE=" + http://pyopenssl.sourceforge.net/ + https://launchpad.net/pyopenssl + https://pypi.python.org/pypi/pyOpenSSL +" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86" +IUSE="doc examples test" + +RDEPEND=" + >=dev-python/six-1.5.2[${PYTHON_USEDEP}] + >=dev-python/cryptography-1.9[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + doc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] + ) + test? ( + virtual/python-cffi[${PYTHON_USEDEP}] + dev-python/flaky[${PYTHON_USEDEP}] + dev-python/pretend[${PYTHON_USEDEP}] + >=dev-python/pytest-3.0.1[${PYTHON_USEDEP}] )" + +S=${WORKDIR}/${MY_P} + +python_prepare_all() { + # Requires network access + sed -i -e 's/test_set_default_verify_paths/_&/' tests/test_ssl.py || die + distutils-r1_python_prepare_all +} + +python_compile_all() { + use doc && emake -C doc html +} + +python_test() { + # FIXME: for some reason, no-ops on PyPy + py.test -v || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/_build/html/. ) + if use examples ; then + docinto examples + dodoc -r examples/* + docompress -x /usr/share/doc/${PF}/examples + fi + + distutils-r1_python_install_all +} diff --git a/dev-python/python-stdnum/Manifest b/dev-python/python-stdnum/Manifest index 2554054fc8e4..e5a9f409daa2 100644 --- a/dev-python/python-stdnum/Manifest +++ b/dev-python/python-stdnum/Manifest @@ -1,2 +1,3 @@ DIST python-stdnum-1.5.tar.gz 268416 SHA256 10fe3db303aec532057484668ca9a4f421c2e5b3b1caee670b26b047bcbc737e SHA512 8d6394d7039fc5a2e3785eb95ef1793038ae75443224fc5af7f1cae2cb575c2f4e5451bd9668304ba95d3ee3f87dc0103ccf6c35837220f9729cbe1a3e13f656 WHIRLPOOL 530d5b5b5f9ca3d1d6b0a9c2078d90112180724ec05750be1e5d30990cf1fff067e0342c221bbb52fdfc902ab1efc09adb1ab7fce2833d35368e53ae16de8ec1 DIST python-stdnum-1.6.tar.gz 399518 SHA256 157a0aef01b1e846ddd11252dc516637da6b3347e32f0130825b7fae1d8b4655 SHA512 dc2fba2563e4de658a09b7afc7d0d663f21b5528da9061f126d581e8deb2a88569c83304bde834c0da376dc65ee09274aed82d55abb60b0fe0a181e1b5cfe88f WHIRLPOOL 2bd6203adde32bda1c2971d743fcb9db02c49a65c944e57a3d58d4ca7f3e16c08d82ee018208aff45e1e7c7c347580396aa02fbb2dc0f7cc7608c3b26fb83d9f +DIST python-stdnum-1.7.tar.gz 411134 SHA256 987c25e1047e8742131bcf29dac7a406987adb1463465749e2daaba8cb19d264 SHA512 323f5e37087e95143eb59345c4ddb5fb1529a136c234c8e9c957cf9914984e758b256facbfbc5de379000b8939460ea25e8105428d67f7052a23676c334a002a WHIRLPOOL 8cff46c9f7406f3f8783ab522c14a3fe43d7469759eccd99dfe1ffe900313c687d378d14e99110219b51783d7786d0efa2df8a66cb52158d8943214eb0dfcd40 diff --git a/dev-python/python-stdnum/python-stdnum-1.7.ebuild b/dev-python/python-stdnum/python-stdnum-1.7.ebuild new file mode 100644 index 000000000000..6bb1b062dfbf --- /dev/null +++ b/dev-python/python-stdnum/python-stdnum-1.7.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="A module to handle standardized numbers and codes" +HOMEPAGE="http://arthurdejong.org/python-stdnum/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="vies test" + +RDEPEND="vies? ( dev-python/suds )" +DEPEND="${DEPEND} + dev-python/setuptools + test? ( dev-python/nose )" + +DOCS=( ChangeLog NEWS README ) + +python_test() { + nosetests || die +} diff --git a/dev-python/sphinx-py3doc-enhanced-theme/metadata.xml b/dev-python/sphinx-py3doc-enhanced-theme/metadata.xml index 78dd7a79b2ca..3a8ee7aef942 100644 --- a/dev-python/sphinx-py3doc-enhanced-theme/metadata.xml +++ b/dev-python/sphinx-py3doc-enhanced-theme/metadata.xml @@ -17,5 +17,4 @@ sphinx-py3doc-enhanced-theme ionelmc/sphinx-py3doc-enhanced-theme - diff --git a/dev-python/sphinxcontrib-blockdiag/metadata.xml b/dev-python/sphinxcontrib-blockdiag/metadata.xml index 4eb72c2bd9b6..c0b469c17c97 100644 --- a/dev-python/sphinxcontrib-blockdiag/metadata.xml +++ b/dev-python/sphinxcontrib-blockdiag/metadata.xml @@ -11,5 +11,4 @@ blockdiag/sphinxcontrib-blockdiag - diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest index 1aae0fde51a4..3f06f5b7cfc3 100644 --- a/dev-python/stripe/Manifest +++ b/dev-python/stripe/Manifest @@ -1 +1 @@ -DIST stripe-1.62.0.tar.gz 190349 SHA256 03136c5ce8fad86e265629daf4adae9dc6e1a44b6e4a08e731783764bf970fb8 SHA512 b90b96c3d76dfddc39659dbbf055da3d93cdbeb600267fceb4fa6f82b4f993e63f9da9bc49373fd3fbe4db575d214a333169f19fc30bbc4563a6451f29dcf8ca WHIRLPOOL cca3861360d2ec0408c57a45e45d4e3a77f23c29f71ab6a72380d043fcd237785b05766d2fcff95799716f8c54d048fe0577aeef4e4744a7e254aff3823eb86e +DIST stripe-1.66.0.tar.gz 191304 SHA256 d9fe9527de58ddcf05b6cfd07c444c43d53811a7fc0d58bd7a82ed4006cdbbc6 SHA512 bb98837a662f36ed4d25f45bfff6614962552abeab1240890c139333064effd911b8cb20c181f54fb540ed5315b98172aebc2785d8bc215ea61d421ad49b1ee5 WHIRLPOOL 8b8ba83a5f109f28e033d1df6157209982a33527b76cf15d7a6ad0c57b928e5778f8785be691db25c5df16b4cfe37e8676f47a270c2a8da6b09bd6da08a95af8 diff --git a/dev-python/stripe/stripe-1.62.0.ebuild b/dev-python/stripe/stripe-1.66.0.ebuild similarity index 100% rename from dev-python/stripe/stripe-1.62.0.ebuild rename to dev-python/stripe/stripe-1.66.0.ebuild diff --git a/dev-python/uncompyle6/metadata.xml b/dev-python/uncompyle6/metadata.xml index 4a5ea0130980..c768e2c81e16 100644 --- a/dev-python/uncompyle6/metadata.xml +++ b/dev-python/uncompyle6/metadata.xml @@ -17,5 +17,4 @@ uncompyle6 rocky/python-uncompyle6 - diff --git a/dev-qt/assistant/Manifest b/dev-qt/assistant/Manifest index 5627d6bc1ea3..0611be6f664c 100644 --- a/dev-qt/assistant/Manifest +++ b/dev-qt/assistant/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/assistant/assistant-5.9.2.ebuild b/dev-qt/assistant/assistant-5.9.2.ebuild new file mode 100644 index 000000000000..6342c0fd7069 --- /dev/null +++ b/dev-qt/assistant/assistant-5.9.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Tool for viewing on-line documentation in Qt help file format" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" +fi + +IUSE="webkit" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qthelp-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtprintsupport-${PV} + ~dev-qt/qtsql-${PV}[sqlite] + ~dev-qt/qtwidgets-${PV} + webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/assistant/assistant +) + +src_prepare() { + qt_use_disable_mod webkit webkitwidgets \ + src/assistant/assistant/assistant.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/designer/Manifest b/dev-qt/designer/Manifest index 5627d6bc1ea3..0611be6f664c 100644 --- a/dev-qt/designer/Manifest +++ b/dev-qt/designer/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/designer/designer-5.9.2.ebuild b/dev-qt/designer/designer-5.9.2.ebuild new file mode 100644 index 000000000000..d59ecd6964b9 --- /dev/null +++ b/dev-qt/designer/designer-5.9.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="WYSIWYG tool for designing and building Qt-based GUIs" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="declarative webkit" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtprintsupport-${PV} + ~dev-qt/qtwidgets-${PV} + ~dev-qt/qtxml-${PV} + declarative? ( ~dev-qt/qtdeclarative-${PV}[widgets] ) + webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/designer +) + +src_prepare() { + qt_use_disable_mod declarative quickwidgets \ + src/designer/src/plugins/plugins.pro + + qt_use_disable_mod webkit webkitwidgets \ + src/designer/src/plugins/plugins.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/linguist-tools/Manifest b/dev-qt/linguist-tools/Manifest index 1612ac07b67d..f545c6287ed4 100644 --- a/dev-qt/linguist-tools/Manifest +++ b/dev-qt/linguist-tools/Manifest @@ -1,2 +1,3 @@ DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/linguist-tools/linguist-tools-5.9.2.ebuild b/dev-qt/linguist-tools/linguist-tools-5.9.2.ebuild new file mode 100644 index 000000000000..b22c78fdb479 --- /dev/null +++ b/dev-qt/linguist-tools/linguist-tools-5.9.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Tools for working with Qt translation data files" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="qml" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtxml-${PV} + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/linguist +) + +src_prepare() { + sed -i -e '/SUBDIRS += linguist/d' \ + src/linguist/linguist.pro || die + + qt_use_disable_mod qml qmldevtools-private \ + src/linguist/lupdate/lupdate.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/linguist/Manifest b/dev-qt/linguist/Manifest index 5627d6bc1ea3..0611be6f664c 100644 --- a/dev-qt/linguist/Manifest +++ b/dev-qt/linguist/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/linguist/linguist-5.9.2.ebuild b/dev-qt/linguist/linguist-5.9.2.ebuild new file mode 100644 index 000000000000..163c6cf68e1d --- /dev/null +++ b/dev-qt/linguist/linguist-5.9.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Graphical tool for translating Qt applications" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/designer-${PV} + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtprintsupport-${PV} + ~dev-qt/qtwidgets-${PV} + ~dev-qt/qtxml-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/linguist/linguist +) diff --git a/dev-qt/pixeltool/Manifest b/dev-qt/pixeltool/Manifest index 5627d6bc1ea3..0611be6f664c 100644 --- a/dev-qt/pixeltool/Manifest +++ b/dev-qt/pixeltool/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/pixeltool/pixeltool-5.9.2.ebuild b/dev-qt/pixeltool/pixeltool-5.9.2.ebuild new file mode 100644 index 000000000000..84c3091587bd --- /dev/null +++ b/dev-qt/pixeltool/pixeltool-5.9.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Qt screen magnifier" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtwidgets-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/pixeltool +) diff --git a/dev-qt/qdbus/Manifest b/dev-qt/qdbus/Manifest index 1612ac07b67d..f545c6287ed4 100644 --- a/dev-qt/qdbus/Manifest +++ b/dev-qt/qdbus/Manifest @@ -1,2 +1,3 @@ DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/qdbus/qdbus-5.9.2.ebuild b/dev-qt/qdbus/qdbus-5.9.2.ebuild new file mode 100644 index 000000000000..ebe1074372ad --- /dev/null +++ b/dev-qt/qdbus/qdbus-5.9.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Interface to Qt applications communicating over D-Bus" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdbus-${PV} + ~dev-qt/qtxml-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/qdbus/qdbus +) diff --git a/dev-qt/qdbusviewer/Manifest b/dev-qt/qdbusviewer/Manifest index 5627d6bc1ea3..0611be6f664c 100644 --- a/dev-qt/qdbusviewer/Manifest +++ b/dev-qt/qdbusviewer/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/qdbusviewer/qdbusviewer-5.9.2.ebuild b/dev-qt/qdbusviewer/qdbusviewer-5.9.2.ebuild new file mode 100644 index 000000000000..d1f5a5edc7c2 --- /dev/null +++ b/dev-qt/qdbusviewer/qdbusviewer-5.9.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Graphical tool that lets you introspect D-Bus objects and messages" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdbus-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtwidgets-${PV} + ~dev-qt/qtxml-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/qdbus/qdbusviewer +) diff --git a/dev-qt/qdoc/Manifest b/dev-qt/qdoc/Manifest index 1612ac07b67d..f545c6287ed4 100644 --- a/dev-qt/qdoc/Manifest +++ b/dev-qt/qdoc/Manifest @@ -1,2 +1,3 @@ DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/qdoc/metadata.xml b/dev-qt/qdoc/metadata.xml index 32568f62fb8e..2184bb18c0d0 100644 --- a/dev-qt/qdoc/metadata.xml +++ b/dev-qt/qdoc/metadata.xml @@ -5,6 +5,9 @@ qt@gentoo.org Gentoo Qt Project + + Enable QML/JS parsing support + https://bugreports.qt.io/ https://doc.qt.io/ diff --git a/dev-qt/qdoc/qdoc-5.9.2.ebuild b/dev-qt/qdoc/qdoc-5.9.2.ebuild new file mode 100644 index 000000000000..fff12942dd12 --- /dev/null +++ b/dev-qt/qdoc/qdoc-5.9.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Qt documentation generator" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="qml" + +DEPEND=" + ~dev-qt/qtcore-${PV} + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/qdoc +) + +src_prepare() { + qt_use_disable_mod qml qmldevtools-private \ + src/qdoc/qdoc.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qt-creator/Manifest b/dev-qt/qt-creator/Manifest index 02794c636e0f..c9f6ab78e97d 100644 --- a/dev-qt/qt-creator/Manifest +++ b/dev-qt/qt-creator/Manifest @@ -1 +1,2 @@ DIST qt-creator-opensource-src-4.3.1.tar.xz 17298892 SHA256 060a8843f988c158ef01bd90221e390f0d4be3ccc8da95abaeb12c7477e7a4ad SHA512 9fd89cee4a3b17662ac83bd63065f66f6b446774eb28ab4e56b85b82dc8c6b9b7be512014e5096dd343d913688700c3297b49bf4abe920429ca72cc665c95226 WHIRLPOOL 86965524785f68836a7a55a2ce9ede109e3314b9778d68eb92588cd1d3844be5ad47ae4e484f285dc74844729e8c254a11fe705ed3600476ed1c8ef4000b4e24 +DIST qt-creator-opensource-src-4.4.1.tar.xz 20822304 SHA256 0664de3dea239f8be797d2745f3d06b2c4207ebc4edc36898d7d24b6bf98c14e SHA512 f0e836fd2106f909cb405f75457e0d4158ecdd134ec5cfa97b373e5818b5f715245ac8454a657801251302ef817c1de66580f2e45b12b3e23d3107ccf3985336 WHIRLPOOL bc202a42d7fb69f9a033448a456eb0d2d09d27f338f5555296c79ab40167ea3c917df40444d318818edcf87ab4fe5b2667b37a84c4e0590f52e15c6780e58ede diff --git a/dev-qt/qt-creator/qt-creator-4.3.1.ebuild b/dev-qt/qt-creator/qt-creator-4.3.1.ebuild index fbfc4412faa9..5be7d95dd51e 100644 --- a/dev-qt/qt-creator/qt-creator-4.3.1.ebuild +++ b/dev-qt/qt-creator/qt-creator-4.3.1.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 +LLVM_MAX_SLOT=4 PLOCALES="cs de fr ja pl ru sl uk zh_CN zh_TW" inherit l10n llvm qmake-utils toolchain-funcs virtualx xdg @@ -51,7 +52,10 @@ CDEPEND=" >=dev-qt/qtwidgets-${QT_PV} >=dev-qt/qtx11extras-${QT_PV} >=dev-qt/qtxml-${QT_PV} - clangcodemodel? ( >=sys-devel/clang-3.9:= ) + clangcodemodel? ( + =sys-devel/clang-3.9:0 ) + ) designer? ( >=dev-qt/designer-${QT_PV} ) qbs? ( >=dev-util/qbs-1.8.1-r1 ) systemd? ( sys-apps/systemd:= ) @@ -71,7 +75,10 @@ RDEPEND="${CDEPEND} sys-devel/gdb[client,python] autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) - clangstaticanalyzer? ( >=sys-devel/clang-3.9:* ) + clangstaticanalyzer? ( + =sys-devel/clang-3.9:0 ) + ) cmake? ( dev-util/cmake[server(+)] ) cvs? ( dev-vcs/cvs ) git? ( dev-vcs/git ) @@ -153,7 +160,7 @@ src_prepare() { src_configure() { eqmake5 IDE_LIBRARY_BASENAME="$(get_libdir)" \ IDE_PACKAGE_MODE=1 \ - $(use clangcodemodel && echo LLVM_INSTALL_DIR="$(get_llvm_prefix)") \ + $(use clangcodemodel && echo LLVM_INSTALL_DIR="$(get_llvm_prefix ${LLVM_MAX_SLOT})") \ $(use qbs && echo QBS_INSTALL_DIR="${EPREFIX}/usr") \ CONFIG+=qbs_disable_rpath \ CONFIG+=qbs_enable_project_file_updates \ diff --git a/dev-qt/qt-creator/qt-creator-4.4.1.ebuild b/dev-qt/qt-creator/qt-creator-4.4.1.ebuild new file mode 100644 index 000000000000..322f20850b87 --- /dev/null +++ b/dev-qt/qt-creator/qt-creator-4.4.1.ebuild @@ -0,0 +1,183 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PLOCALES="cs de fr ja pl ru sl uk zh_CN zh_TW" + +inherit l10n llvm qmake-utils toolchain-funcs virtualx xdg + +DESCRIPTION="Lightweight IDE for C++/QML development centering around Qt" +HOMEPAGE="https://doc.qt.io/qtcreator/" +LICENSE="GPL-3" +SLOT="0" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://code.qt.io/${PN}/${PN}.git" +else + MY_PV=${PV/_/-} + MY_P=${PN}-opensource-src-${MY_PV} + [[ ${MY_PV} == ${PV} ]] && MY_REL=official || MY_REL=development + SRC_URI="https://download.qt.io/${MY_REL}_releases/${PN/-}/${PV%.*}/${MY_PV}/${MY_P}.tar.xz" + KEYWORDS="~amd64 ~arm ~x86" + S=${WORKDIR}/${MY_P} +fi + +# TODO: unbundle sqlite + +QTC_PLUGINS=('android:android|qmakeandroidsupport' autotools:autotoolsprojectmanager baremetal bazaar + 'clangcodemodel:clangcodemodel|clangrefactoring|clangpchmanager' clangstaticanalyzer clearcase + cmake:cmakeprojectmanager cvs designer git glsl:glsleditor ios mercurial modeling:modeleditor + nim perforce python:pythoneditor qbs:qbsprojectmanager qnx scxml:scxmleditor subversion valgrind + winrt) +IUSE="doc systemd test +webengine ${QTC_PLUGINS[@]%:*}" + +# minimum Qt version required +QT_PV="5.6.2:5" + +CDEPEND=" + =dev-libs/botan-1.10*[-bindist,threads] + >=dev-qt/qtconcurrent-${QT_PV} + >=dev-qt/qtcore-${QT_PV} + >=dev-qt/qtdeclarative-${QT_PV}[widgets] + >=dev-qt/qtgui-${QT_PV} + >=dev-qt/qthelp-${QT_PV} + >=dev-qt/qtnetwork-${QT_PV}[ssl] + >=dev-qt/qtprintsupport-${QT_PV} + >=dev-qt/qtquickcontrols-${QT_PV} + >=dev-qt/qtscript-${QT_PV} + >=dev-qt/qtsql-${QT_PV}[sqlite] + >=dev-qt/qtsvg-${QT_PV} + >=dev-qt/qtwidgets-${QT_PV} + >=dev-qt/qtx11extras-${QT_PV} + >=dev-qt/qtxml-${QT_PV} + clangcodemodel? ( >=sys-devel/clang-3.9:= ) + designer? ( >=dev-qt/designer-${QT_PV} ) + qbs? ( >=dev-util/qbs-1.9.1 ) + systemd? ( sys-apps/systemd:= ) + webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets] ) +" +DEPEND="${CDEPEND} + >=dev-qt/linguist-tools-${QT_PV} + virtual/pkgconfig + doc? ( >=dev-qt/qdoc-${QT_PV} ) + test? ( + >=dev-qt/qtdeclarative-${QT_PV}[localstorage,xml] + >=dev-qt/qtquickcontrols2-${QT_PV} + >=dev-qt/qttest-${QT_PV} + ) +" +RDEPEND="${CDEPEND} + sys-devel/gdb[client,python] + autotools? ( sys-devel/autoconf ) + bazaar? ( dev-vcs/bzr ) + clangstaticanalyzer? ( >=sys-devel/clang-3.9:* ) + cmake? ( dev-util/cmake[server(+)] ) + cvs? ( dev-vcs/cvs ) + git? ( dev-vcs/git ) + mercurial? ( dev-vcs/mercurial ) + subversion? ( dev-vcs/subversion ) + valgrind? ( dev-util/valgrind ) +" +# qt translations must also be installed or qt-creator translations won't be loaded +for x in ${PLOCALES}; do + RDEPEND+=" linguas_${x}? ( >=dev-qt/qttranslations-${QT_PV} )" +done +unset x + +pkg_setup() { + use clangcodemodel && llvm_pkg_setup +} + +src_unpack() { + if tc-is-gcc; then + if [[ $(gcc-major-version) -lt 4 ]] || \ + [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 9 ]]; then + eerror "GCC version 4.9 or later is required to build Qt Creator ${PV}" + die "GCC >= 4.9 required" + fi + fi + + if [[ ${PV} == *9999 ]]; then + git-r3_src_unpack + else + default + fi +} + +src_prepare() { + default + + # disable unwanted plugins + for plugin in "${QTC_PLUGINS[@]#[+-]}"; do + if ! use ${plugin%:*}; then + einfo "Disabling ${plugin%:*} plugin" + sed -i -re "/(^\s+|SUBDIRS\s*\+=\s*)(${plugin#*:})\>/d" \ + src/plugins/plugins.pro || die "failed to disable ${plugin%:*} plugin" + fi + done + + # avoid building unused support libraries + if ! use clangcodemodel; then + sed -i -e '/clangbackendipc/d' src/libs/libs.pro || die + fi + if ! use glsl; then + sed -i -e '/glsl/d' src/libs/libs.pro || die + fi + if ! use modeling; then + sed -i -e '/modelinglib/d' src/libs/libs.pro || die + fi + + # automagic dep on qtwebengine + if ! use webengine; then + sed -i -e 's/isEmpty(QT\.webenginewidgets\.name)/true/' src/plugins/help/help.pro || die + fi + + # disable broken or unreliable tests + sed -i -e 's/\(manual\|tools\|unit\)//g' tests/tests.pro || die + sed -i -e '/sdktool/ d' tests/auto/auto.pro || die + sed -i -e '/\(dumpers\|offsets\)\.pro/ d' tests/auto/debugger/debugger.pro || die + sed -i -e '/CONFIG -=/ s/$/ testcase/' tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin?/plugin?.pro || die + sed -i -e '/timeline\(items\|notes\|selection\)renderpass/ d' tests/auto/timeline/timeline.pro || die + sed -i -e 's/\//' tests/auto/valgrind/valgrind.pro || die + + # fix path to some clang headers + sed -i -e "/^CLANG_RESOURCE_DIR\s*=/ s:\$\${LLVM_LIBDIR}:${EPREFIX}/usr/lib:" src/shared/clang/clang_defines.pri || die + + # fix translations + sed -i -e "/^LANGUAGES\s*=/ s:=.*:= $(l10n_get_locales):" share/qtcreator/translations/translations.pro || die + + # remove bundled qbs + rm -rf src/shared/qbs || die +} + +src_configure() { + eqmake5 IDE_LIBRARY_BASENAME="$(get_libdir)" \ + IDE_PACKAGE_MODE=1 \ + $(use clangcodemodel && echo LLVM_INSTALL_DIR="$(get_llvm_prefix)") \ + $(use qbs && echo QBS_INSTALL_DIR="${EPREFIX}/usr") \ + CONFIG+=qbs_disable_rpath \ + CONFIG+=qbs_enable_project_file_updates \ + $(use systemd && echo CONFIG+=journald) \ + $(use test && echo BUILD_TESTS=1) \ + USE_SYSTEM_BOTAN=1 +} + +src_test() { + cd tests/auto && virtx default +} + +src_install() { + emake INSTALL_ROOT="${ED}usr" install + + dodoc dist/{changes-*,known-issues} + + # install documentation + if use doc; then + emake docs + # don't use ${PF} or the doc will not be found + insinto /usr/share/doc/qtcreator + doins share/doc/qtcreator/qtcreator{,-dev}.qch + docompress -x /usr/share/doc/qtcreator/qtcreator{,-dev}.qch + fi +} diff --git a/dev-qt/qt-creator/qt-creator-9999.ebuild b/dev-qt/qt-creator/qt-creator-9999.ebuild index 5982bff15ef3..322f20850b87 100644 --- a/dev-qt/qt-creator/qt-creator-9999.ebuild +++ b/dev-qt/qt-creator/qt-creator-9999.ebuild @@ -33,7 +33,7 @@ QTC_PLUGINS=('android:android|qmakeandroidsupport' autotools:autotoolsprojectman IUSE="doc systemd test +webengine ${QTC_PLUGINS[@]%:*}" # minimum Qt version required -QT_PV="5.6.0:5" +QT_PV="5.6.2:5" CDEPEND=" =dev-libs/botan-1.10*[-bindist,threads] @@ -53,7 +53,7 @@ CDEPEND=" >=dev-qt/qtxml-${QT_PV} clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-${QT_PV} ) - qbs? ( >=dev-util/qbs-1.8.1-r1 ) + qbs? ( >=dev-util/qbs-1.9.1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets] ) " @@ -134,8 +134,9 @@ src_prepare() { fi # disable broken or unreliable tests + sed -i -e 's/\(manual\|tools\|unit\)//g' tests/tests.pro || die sed -i -e '/sdktool/ d' tests/auto/auto.pro || die - sed -i -e '/dumpers\.pro/ d' tests/auto/debugger/debugger.pro || die + sed -i -e '/\(dumpers\|offsets\)\.pro/ d' tests/auto/debugger/debugger.pro || die sed -i -e '/CONFIG -=/ s/$/ testcase/' tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin?/plugin?.pro || die sed -i -e '/timeline\(items\|notes\|selection\)renderpass/ d' tests/auto/timeline/timeline.pro || die sed -i -e 's/\//' tests/auto/valgrind/valgrind.pro || die diff --git a/dev-qt/qt-docs/Manifest b/dev-qt/qt-docs/Manifest index 75403d764673..260beac7c33a 100644 --- a/dev-qt/qt-docs/Manifest +++ b/dev-qt/qt-docs/Manifest @@ -1,2 +1,3 @@ DIST 5.6.2-0qt-everywhere-documentation-5.6.2.7z 125390155 SHA256 3421b5a2fba1f6e134137e4c9f747303bc2218c46b314dae858499aab850931c SHA512 40026c69e6b2de8f84fc974bc307519016982cafe4006ef3663839c9bcf74f7c28679cf8f4ca5a82bfafc3cb455433fe3360c11a60192d8c6b75a8b1b56e7141 WHIRLPOOL edd591be964208467700c91a02eb345f73f4104820b3f605b8e2d4c2704faccc681320bcfef5bfa70cc084b10cf2ada09d5771b0ac578193fd7eaafe0ee86477 DIST 5.7.1-0qt-everywhere-documentation-5.7.1.7z 173336041 SHA256 44eb231b5f961a9f11d05648431121bbdaa32ac65e6b563543d147c3b88eec41 SHA512 4fcbfcd29aa48937229d01d47569a5fcd81459b9444058c725bdbac14dd2b9c67c9e04944c74d351f4bca7d972e23c3832ba2dd8e979cc4e9fe677e2d51561e0 WHIRLPOOL 8a6e1857866e43f7f40ed4382e0d5b4f27520404a77f3a014834045117f207bb40a0a81aaa00afa39a4684584499f6957bf739a1f25d06c04019ef21dac1adfd +DIST 5.9.2-0-201710050733qt-everywhere-documentation.7z 200249125 SHA256 eb6c5ad1cc12c6a921acb458725ae06f0b078857ec72b10c498833ea59f2fac0 SHA512 3cc73bec1a1310923206cbecfe95fe80d28195ae38251d04f07881dbd42ff1223f1353ac34787065ac3e09c4aceca76d2be407558204b8920fba65c04ee0594e WHIRLPOOL 4e1f4c7d0cee30e339aca5795e15af33762850b06bfa7a4da0259bac0425bf631bf622fba6557a77741db160b268f89a18c998020b4c9b4a720e879f5cc9ab7b diff --git a/dev-qt/qt-docs/qt-docs-5.9.2_p201710050733.ebuild b/dev-qt/qt-docs/qt-docs-5.9.2_p201710050733.ebuild new file mode 100644 index 000000000000..cdaa734e952b --- /dev/null +++ b/dev-qt/qt-docs/qt-docs-5.9.2_p201710050733.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit versionator + +MY_PV=$(get_version_component_range 1)$(get_version_component_range 2)$(get_version_component_range 3) +MY_REV=0$(get_version_component_range 4) +MY_P=$(get_version_component_range 1-3)-${MY_REV/p/-}qt-everywhere-documentation + +DESCRIPTION="Documentation for Qt5, for use with Qt Creator and other tools" +HOMEPAGE="https://www.qt.io/" +SRC_URI="https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_${MY_PV}_src_doc_examples/qt.${MY_PV}.doc/${MY_P}.7z" + +LICENSE="FDL-1.3" +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +DEPEND="app-arch/p7zip" + +S=${WORKDIR}/Docs/Qt-$(get_version_component_range 1-3) + +src_prepare() { + default + + # bug 597026 + rm -r global || die + + # bug 602750 + rm Makefile || die +} + +src_install() { + # ${PV} instead of ${PF} is intentional + local dest=/usr/share/doc/qt-${PV%%_p*} + insinto "${dest}" + doins -r * + docompress -x "${dest}" +} diff --git a/dev-qt/qt3d/Manifest b/dev-qt/qt3d/Manifest index 6c34d3295e97..33239e2d8614 100644 --- a/dev-qt/qt3d/Manifest +++ b/dev-qt/qt3d/Manifest @@ -1 +1,2 @@ DIST qt3d-opensource-src-5.7.1.tar.xz 19474848 SHA256 1d74cf431777b8086d771ab0d4d2c01f9c28eb14cc2d73d7f838a665d1f707ea SHA512 fe124b939709185d9ac755d017f850a3f3d97f7f58c863a3da3df5dcac25391ca79e97830142fb263618e7afcb4bf43f363511539d508ec2a45a8a99f0e1a8a7 WHIRLPOOL 8d9a60a36917095fe95be5d6d96cb84ec6cc33a275ea80375a7c8acb29caff0935715aaef83b56e860b73669475d325c6ac849fafdc863fd3cf17b0f87e29c5f +DIST qt3d-opensource-src-5.9.2.tar.xz 28007160 SHA256 c955a92fe2f3f2f03493ae0e9d973ebe1c4b1e037b58f18092fa2040f5b50783 SHA512 1c7dbd4e557cdd183ec6e929aae5727ce2ffcb519517942b588594bb81a78cb3d732cde4dae58085a70ec2968a8c2443eae96536125c25938222ff7c89f4f9a2 WHIRLPOOL 644c3074cbbafbbcd5d9d81f1fa8909e5dfb5fffe50b2eb3c624d39610f13f0aa0859c1ae38610b5658e7cafe9c3bafe49c472475efbdd84fafa5603435faadd diff --git a/dev-qt/qt3d/qt3d-5.9.2.ebuild b/dev-qt/qt3d/qt3d-5.9.2.ebuild new file mode 100644 index 000000000000..02ffa8ef61d7 --- /dev/null +++ b/dev-qt/qt3d/qt3d-5.9.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="The 3D module for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +# TODO: gamepad, tools +IUSE="gles2 qml" + +DEPEND=" + ~dev-qt/qtconcurrent-${PV} + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtnetwork-${PV} + >=media-libs/assimp-4.0.0 + qml? ( ~dev-qt/qtdeclarative-${PV}[gles2=] ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + rm -r src/3rdparty/assimp/{code,contrib,include} || die + + qt_use_disable_mod qml quick src/src.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtbluetooth/Manifest b/dev-qt/qtbluetooth/Manifest index 8df603950502..b34980f63fd1 100644 --- a/dev-qt/qtbluetooth/Manifest +++ b/dev-qt/qtbluetooth/Manifest @@ -1,2 +1,3 @@ DIST qtconnectivity-opensource-src-5.6.2.tar.xz 2639772 SHA256 1b672923e0703d62f605ccec97b454b1a04c1f0db47f54b687d009e84eabedf9 SHA512 4cef0afa38679ca11550693ae9bb9ca70835ed129ba7aa3db868a06743d406cdf473173cc55bda7b1171499b58bdc860bc64838ae8d1f2a171c85a2b64756ff1 WHIRLPOOL 62b97e947af738ff80aa62ae1eb954968b520073e126dc8b33d84a105bf3d51397fc8e7f1d4ca3a4c1efa7f090d1105d1fe6abbd4e8a85c0382ef8bda0c4c310 DIST qtconnectivity-opensource-src-5.7.1.tar.xz 2690688 SHA256 b3e8b9068304dc5605a8fdf0695102032fd1a216f2c2d4d53a7e4d4dda3ab966 SHA512 3550be2ce365c7eea2adb41b6db63d0867ff1eaae15d6f4d22345bfdd8e4ac9c2f3983e5d3e897d5c4d7d32e466929c2cfdfac0921c0927c3955f021d37d9e61 WHIRLPOOL 18776531aa22a060c73f6b3534060e38a6d5b7acb14834d7a531a22a246389753ce44e8de3dc3be476a21e2ddd6ca38746eee8a7e1e96c6a817f339fe9966051 +DIST qtconnectivity-opensource-src-5.9.2.tar.xz 2723028 SHA256 2c759597ec959d54f29a3f628896d9208cf1f4e2269d8e01a9d3036f6995f3cc SHA512 c7a32ca45464670bb461139e48721c80859d2ef2eb5e30b61062578c07dfe1cf9cceb0bfe01304f4661a6b80cc7c2769399e0745a165596440a896bd1e1d0893 WHIRLPOOL 85d1f7313f2721796c2afbc96d185fcbd051ac71edc686bde34feed1c24da8c785958c56bb651f01bd168cf5da6ee7b0a781c637b26bf449043f4369e3e28e87 diff --git a/dev-qt/qtbluetooth/qtbluetooth-5.9.2.ebuild b/dev-qt/qtbluetooth/qtbluetooth-5.9.2.ebuild new file mode 100644 index 000000000000..e7665bb6b262 --- /dev/null +++ b/dev-qt/qtbluetooth/qtbluetooth-5.9.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtconnectivity" +inherit qt5-build + +DESCRIPTION="Bluetooth support library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +IUSE="qml" + +RDEPEND=" + ~dev-qt/qtconcurrent-${PV} + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdbus-${PV} + >=net-wireless/bluez-5:= + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +DEPEND="${RDEPEND} + ~dev-qt/qtnetwork-${PV} +" + +src_prepare() { + sed -i -e 's/nfc//' src/src.pro || die + + qt_use_disable_mod qml quick src/src.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtcharts/Manifest b/dev-qt/qtcharts/Manifest index 08ef2a63417f..c281a2fd6adf 100644 --- a/dev-qt/qtcharts/Manifest +++ b/dev-qt/qtcharts/Manifest @@ -1 +1,2 @@ DIST qtcharts-opensource-src-5.7.1.tar.xz 4086256 SHA256 85feee6992cdef1ab42947a83cbf806a29224d704ee5dc97ee5038c75b633fe3 SHA512 2db2c5a956e84b4e080df71f6ba8bdf48ad3a456d334f59d50525a10cb7358129d7cf7855a11342192d03c10ab1cb84d94faaf94ce02f6786d32fe655bc8558c WHIRLPOOL e793229b4483c41cfcd86c59402635caf2f40566147e09b28e75f60c30ad6540a15f7d28903f5551eb785931a8097d2d9ef3312d34c5f6455d102f778ad24c10 +DIST qtcharts-opensource-src-5.9.2.tar.xz 4157644 SHA256 4e7af70a73828ee1eb9606bd2c071cc7347c5f928aaf07b420dce7376b1c6aa4 SHA512 297547b565dd71b05237bb05ecc1abf1a774a4909668417e78bd65e805c1e47a456a5a06898fe06d4c4614118e4129e19893d4c77598667a9354ab969307a293 WHIRLPOOL c2b423484e8335bb1140233e68d13f94b4bac114d8256efaa5e87a8a1dabcf704714f6d8f35b23d0c6f51b095b87dd87064aeab77ea7095e48e737870b95185e diff --git a/dev-qt/qtcharts/qtcharts-5.9.2.ebuild b/dev-qt/qtcharts/qtcharts-5.9.2.ebuild new file mode 100644 index 000000000000..87959af467ec --- /dev/null +++ b/dev-qt/qtcharts/qtcharts-5.9.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Chart component library for the Qt5 framework" +LICENSE="GPL-3" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="qml" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtwidgets-${PV} + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_mod qml quick \ + src/src.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtconcurrent/Manifest b/dev-qt/qtconcurrent/Manifest index 61d921a97dfe..3f9b168e930c 100644 --- a/dev-qt/qtconcurrent/Manifest +++ b/dev-qt/qtconcurrent/Manifest @@ -1,2 +1,3 @@ DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtconcurrent/qtconcurrent-5.9.2.ebuild b/dev-qt/qtconcurrent/qtconcurrent-5.9.2.ebuild new file mode 100644 index 000000000000..2886524bfa18 --- /dev/null +++ b/dev-qt/qtconcurrent/qtconcurrent-5.9.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +inherit qt5-build + +DESCRIPTION="Multi-threading concurrence support library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/concurrent +) diff --git a/dev-qt/qtcore/Manifest b/dev-qt/qtcore/Manifest index 0774197e895c..a897f1af9c27 100644 --- a/dev-qt/qtcore/Manifest +++ b/dev-qt/qtcore/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtcore/qtcore-5.9.2.ebuild b/dev-qt/qtcore/qtcore-5.9.2.ebuild new file mode 100644 index 000000000000..779bc30c7b90 --- /dev/null +++ b/dev-qt/qtcore/qtcore-5.9.2.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +inherit qt5-build + +DESCRIPTION="Cross-platform application development framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="icu systemd" + +DEPEND=" + dev-libs/double-conversion:= + dev-libs/glib:2 + dev-libs/libpcre2[pcre16,unicode] + sys-libs/zlib + icu? ( dev-libs/icu:= ) + !icu? ( virtual/libiconv ) + systemd? ( sys-apps/systemd:= ) +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/tools/bootstrap + src/tools/moc + src/tools/rcc + src/tools/qfloat16-tables + src/corelib + src/tools/qlalr + doc +) + +src_configure() { + local myconf=( + $(qt_use icu) + $(qt_use !icu iconv) + $(qt_use systemd journald) + ) + qt5-build_src_configure +} + +src_install() { + qt5-build_src_install + + local flags=( + ALSA CUPS DBUS EGL EGLFS EGL_X11 EVDEV FONTCONFIG FREETYPE + HARFBUZZ IMAGEFORMAT_JPEG IMAGEFORMAT_PNG LIBPROXY MITSHM + OPENGL OPENSSL OPENVG PULSEAUDIO SHAPE SSL TSLIB XCURSOR + XFIXES XKB XRANDR XRENDER XSYNC ZLIB + ) + + for flag in ${flags[@]}; do + cat >> "${D%/}"/${QT5_HEADERDIR}/QtCore/qconfig.h <<- _EOF_ || die + + #if defined(QT_NO_${flag}) && defined(QT_${flag}) + # undef QT_NO_${flag} + #elif !defined(QT_NO_${flag}) && !defined(QT_${flag}) + # define QT_NO_${flag} + #endif + _EOF_ + done +} diff --git a/dev-qt/qtdatavis3d/Manifest b/dev-qt/qtdatavis3d/Manifest index e27d90c93dea..a7702f9be50c 100644 --- a/dev-qt/qtdatavis3d/Manifest +++ b/dev-qt/qtdatavis3d/Manifest @@ -1 +1,2 @@ DIST qtdatavis3d-opensource-src-5.7.1.tar.xz 5155740 SHA256 1bff85dcdeed98ad8f0e191f77e7c0e9d57af719c51791044b9c15e939b800f8 SHA512 2739f7ddcf81fa53a2673e7073c1dac54ea15b70175e19697c7711d652101f0f9a41dc5f89ea33bc5675605ba760667ead8cfde10940dbad8ec75f6897c67b5a WHIRLPOOL 4bc4d7bd5ccf4dcdc74a9ad6d953b0c236c0d3bc0b23bc238b24a600d34e5d5de4b39ba22541b65084fe33a511a97c907c5c6e0e5c62f65440f4f59928238727 +DIST qtdatavis3d-opensource-src-5.9.2.tar.xz 5163316 SHA256 06ae5699872d048e8bb99464c420db3749c8b7601e9f855ce8b1e156d792b2b2 SHA512 5f173401ba2f0ebb4bbb1ff65053f1ece44a97a8bf1d9fc8d81540709c588e140c533d5f317d6a9109d538e38aa742d42bf00906f63d433811bc1c8526788dc3 WHIRLPOOL 308cb9573bb57b9597e048401dcdebbd28ac6b93fad16098b558f39fa594b5e155b1ee6764bb9f525cf7e5344d4252a6abebb8f56045116386e50ec728c5c26c diff --git a/dev-qt/qtdatavis3d/qtdatavis3d-5.9.2.ebuild b/dev-qt/qtdatavis3d/qtdatavis3d-5.9.2.ebuild new file mode 100644 index 000000000000..4ce3a82a3a95 --- /dev/null +++ b/dev-qt/qtdatavis3d/qtdatavis3d-5.9.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="3D data visualization library for the Qt5 framework" +LICENSE="GPL-3" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="gles2 qml" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=] + qml? ( ~dev-qt/qtdeclarative-${PV}[gles2=] ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + # eliminate bogus dependency on qtwidgets + sed -i -e '/requires.*widgets/d' qtdatavis3d.pro || die + + qt_use_disable_mod qml quick \ + src/src.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtdbus/Manifest b/dev-qt/qtdbus/Manifest index 0774197e895c..a897f1af9c27 100644 --- a/dev-qt/qtdbus/Manifest +++ b/dev-qt/qtdbus/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtdbus/qtdbus-5.9.2.ebuild b/dev-qt/qtdbus/qtdbus-5.9.2.ebuild new file mode 100644 index 000000000000..d7d8945c5257 --- /dev/null +++ b/dev-qt/qtdbus/qtdbus-5.9.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +inherit qt5-build + +DESCRIPTION="Qt5 module for inter-process communication over the D-Bus protocol" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + >=sys-apps/dbus-1.4.20 +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/dbus + src/tools/qdbusxml2cpp + src/tools/qdbuscpp2xml +) + +QT5_GENTOO_CONFIG=( + :dbus + :dbus-linked: +) + +src_configure() { + local myconf=( + -dbus-linked + ) + qt5-build_src_configure +} diff --git a/dev-qt/qtdeclarative/Manifest b/dev-qt/qtdeclarative/Manifest index 9d5973275b0a..bb1af78bcad7 100644 --- a/dev-qt/qtdeclarative/Manifest +++ b/dev-qt/qtdeclarative/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtdeclarative-opensource-src-5.6.2.tar.xz 18813016 SHA256 0086a986bc36b398ba518c404d08cdff0a0d7978c30aa3fa2ab73d71654209da SHA512 30870f6c40b8c8ecd3b960ece8175f98a42aebc3f4fcada06b4dcc0f844c4acfd955d550d7014fb441f65d7010ced8a6ef394ec3887dc543306b5ef15570c88d WHIRLPOOL ef4ae3f6cebd44528917bd571b1eaa55d07b96f3b005e25eb201ef52477a6dff742fe85b30f491793ea8256489349780adb79a93ccb7d64e1787a7d5d388041e DIST qtdeclarative-opensource-src-5.7.1.tar.xz 18976920 SHA256 fd13dd3059d20694a857ed30ee56a2ade908c0cb93246f9804a65f7a2d775d56 SHA512 8c56099a13103f4831a7ceb29223722c1f8efb0e9a87a4c1fdf0b55a3c5b4cedfdac6e06960ea5d03df4184b3d1c6bc3f21bdcdbd2400591143930aa8e32a2ab WHIRLPOOL 36fdf7de44aaef1b5f6a6b7719705422cc4593da1a79e156a797bc86389f96b0bd5658b00ebc7177ecb2e5e17c3beead4205ccb7fb0d0eb2ec8679c5a58ae6fa +DIST qtdeclarative-opensource-src-5.9.2.tar.xz 21435732 SHA256 0d40fd4de9c73b9173d8308c0dc37952bf5c747d87ff221962dd2f848d820b08 SHA512 49b8b50932b73ea39da14ac3425044193dfd64eabceadba379aa01cf2fc141177f9870c387caf1cf93ce09e8b197828a54b8d9fcefc4d9cdf400a6c6dd9a9e90 WHIRLPOOL 64b9f7d8c1c7930c3695d7cf24c2f6d61556fd9fb69347e04b5c47c8542fbefce385a436e7c68b0a3ee355c301ea8f5c9316256fbc0ac540a4c2e46acdd9012c diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.9.2.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.9.2.ebuild new file mode 100644 index 000000000000..23c47148b11e --- /dev/null +++ b/dev-qt/qtdeclarative/qtdeclarative-5.9.2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) +inherit python-any-r1 qt5-build + +DESCRIPTION="The QML and Quick modules for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="gles2 +jit localstorage +widgets xml" + +# qtgui[gles2=] is needed because of bug 504322 +COMMON_DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=] + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qttest-${PV} + localstorage? ( ~dev-qt/qtsql-${PV} ) + widgets? ( ~dev-qt/qtwidgets-${PV}[gles2=] ) + xml? ( + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtxmlpatterns-${PV} + ) +" +DEPEND="${COMMON_DEPEND} + ${PYTHON_DEPS} +" +RDEPEND="${COMMON_DEPEND} + !qt@gentoo.org Gentoo Qt Project + + Report network information + Report widget style information + https://bugreports.qt.io/ https://doc.qt.io/ diff --git a/dev-qt/qtdiag/qtdiag-5.9.2.ebuild b/dev-qt/qtdiag/qtdiag-5.9.2.ebuild new file mode 100644 index 000000000000..18a8d907b609 --- /dev/null +++ b/dev-qt/qtdiag/qtdiag-5.9.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Tool for reporting diagnostic information about Qt and its environment" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" +fi + +IUSE="+network +widgets" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + network? ( ~dev-qt/qtnetwork-${PV}[ssl] ) + widgets? ( ~dev-qt/qtwidgets-${PV} ) +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/qtdiag +) + +src_prepare() { + qt_use_disable_mod network network \ + src/qtdiag/qtdiag.pro + + qt_use_disable_mod widgets widgets \ + src/qtdiag/qtdiag.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtgraphicaleffects/Manifest b/dev-qt/qtgraphicaleffects/Manifest index 1257724e94fb..38347000460a 100644 --- a/dev-qt/qtgraphicaleffects/Manifest +++ b/dev-qt/qtgraphicaleffects/Manifest @@ -1,2 +1,3 @@ DIST qtgraphicaleffects-opensource-src-5.6.2.tar.xz 14751100 SHA256 1e9f0fac2c72a812d396db74b2d9d12f513d2ec9135d5982ca85aee7f00be75e SHA512 2d2e9e9c4895bed92d3751038371fe653f40878388956585d058e5a87a32f88a4a41f8cc696d11a661cc845c3224b6f1ffa93adabc5a3d8758acc7297cf09e96 WHIRLPOOL 5056c59c3459fae131e73a545be61544690b847fa6804da6b6885c0bf9dcd564c8bfd696a0dddcb3f6cf4f433123834444f4c88d43a3f6d732874e8ad3fd988a DIST qtgraphicaleffects-opensource-src-5.7.1.tar.xz 14486948 SHA256 2c68fabe599fa2f318562dc22003df6797e91d00761dbf1f337cdc7fbacd4dc8 SHA512 2eb5fa078be65fbf1b57aca7106cd77c840aea3f13671445552ea4a5e0c6ff1625e30f58ca4919ea6dd76229931a307a77f172b604a55fc115569c4e446b5a3d WHIRLPOOL 33d2579a11da46a6564f6859f36681aead50ec7b4515f73834076e9c830126025de82f12942854272006de99bd3a5ab57528e363ed5b3ee7d01dc81c39d7bb5c +DIST qtgraphicaleffects-opensource-src-5.9.2.tar.xz 14480256 SHA256 14594e7eb4b704dd69bf336828306fe8e6537c321d49ee0b701b3b1cdd8bfb76 SHA512 66464c26c9cc78763fda18898cd9c424bc4c0a5cbffc83d68d388e53327aeb77ae0e3c2c4cea947c3b6b7ec5af7bf5124492fc9642ff3c4ba75b06b9fa3883a4 WHIRLPOOL 065c257cbf7ff22735b365bf53d102bf6437a48aeb3301d9af57dd8ba5e1d9b8bc3051b51b53775c55272d171e6f0ea44f8bcfde1a347245f5ccccfec9653615 diff --git a/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.9.2.ebuild b/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.9.2.ebuild new file mode 100644 index 000000000000..d98f845ccc99 --- /dev/null +++ b/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.9.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +VIRTUALX_REQUIRED="test" +inherit qt5-build + +DESCRIPTION="Set of QML types for adding visual effects to user interfaces" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} +" +DEPEND="${RDEPEND}" diff --git a/dev-qt/qtgui/Manifest b/dev-qt/qtgui/Manifest index b4cb03f0709c..ca99b2dc670a 100644 --- a/dev-qt/qtgui/Manifest +++ b/dev-qt/qtgui/Manifest @@ -2,4 +2,5 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 DIST qtgui-systemtrayicon-plugin-system.patch 51377 SHA256 e8582ebb2a5db99bf85789585516459ace42fc2b57fc7d5ff6156a2819bda282 SHA512 0d74b61e23af2e8ef0619ee616c4b775761514f53ba79bcb25b32b7e55beab3575c0d279ba1b016498804023bb78f8cff61964ce56f80642f648406f7c303679 WHIRLPOOL 03cc247a2a0e3b77fc541fa0b47abb125c8f7b304037f2067488861f12fdab25d3b3b3a7cf90626c229aa85a2d43ae4319c0f838b6eeb5ecdfe838a365ed8a58 diff --git a/dev-qt/qtgui/qtgui-5.9.2.ebuild b/dev-qt/qtgui/qtgui-5.9.2.ebuild new file mode 100644 index 000000000000..53aa133b33be --- /dev/null +++ b/dev-qt/qtgui/qtgui-5.9.2.ebuild @@ -0,0 +1,164 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +inherit qt5-build + +DESCRIPTION="The GUI module and platform plugins for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +# TODO: linuxfb + +IUSE="accessibility dbus egl eglfs evdev +gif gles2 ibus + jpeg libinput +png tslib tuio +udev vnc +xcb" +REQUIRED_USE=" + || ( eglfs xcb ) + accessibility? ( dbus xcb ) + eglfs? ( egl ) + ibus? ( dbus ) + libinput? ( udev ) + xcb? ( gles2? ( egl ) ) +" + +RDEPEND=" + dev-libs/glib:2 + ~dev-qt/qtcore-${PV} + media-libs/fontconfig + >=media-libs/freetype-2.6.1:2 + >=media-libs/harfbuzz-1.0.6:= + >=sys-libs/zlib-1.2.5 + virtual/opengl + dbus? ( ~dev-qt/qtdbus-${PV} ) + egl? ( media-libs/mesa[egl] ) + eglfs? ( + media-libs/mesa[gbm] + x11-libs/libdrm + ) + evdev? ( sys-libs/mtdev ) + gles2? ( media-libs/mesa[gles2] ) + jpeg? ( virtual/jpeg:0 ) + libinput? ( + dev-libs/libinput:= + x11-libs/libxkbcommon + ) + png? ( media-libs/libpng:0= ) + tslib? ( x11-libs/tslib ) + tuio? ( ~dev-qt/qtnetwork-${PV} ) + udev? ( virtual/libudev:= ) + vnc? ( ~dev-qt/qtnetwork-${PV} ) + xcb? ( + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + >=x11-libs/libXi-1.7.4 + >=x11-libs/libxcb-1.10:=[xkb] + >=x11-libs/libxkbcommon-0.4.1[X] + x11-libs/xcb-util-image + x11-libs/xcb-util-keysyms + x11-libs/xcb-util-renderutil + x11-libs/xcb-util-wm + ) +" +DEPEND="${RDEPEND} + evdev? ( sys-kernel/linux-headers ) + udev? ( sys-kernel/linux-headers ) +" +PDEPEND=" + ibus? ( app-i18n/ibus ) +" + +QT5_TARGET_SUBDIRS=( + src/gui + src/openglextensions + src/platformheaders + src/platformsupport + src/plugins/generic + src/plugins/imageformats + src/plugins/platforms + src/plugins/platforminputcontexts +) + +QT5_GENTOO_CONFIG=( + accessibility:accessibility-atspi-bridge + egl + eglfs + eglfs:eglfs_egldevice: + eglfs:eglfs_gbm: + evdev + evdev:mtdev: + :fontconfig + :system-freetype:FREETYPE + !:no-freetype: + !gif:no-gif: + gles2::OPENGL_ES + gles2:opengles2:OPENGL_ES_2 + !:no-gui: + :system-harfbuzz:HARFBUZZ + !:no-harfbuzz: + jpeg:system-jpeg:IMAGEFORMAT_JPEG + !jpeg:no-jpeg: + libinput + libinput:xkbcommon-evdev: + :opengl + png:png: + png:system-png:IMAGEFORMAT_PNG + !png:no-png: + tslib + udev:libudev: + xcb:xcb: + xcb:xcb-glx: + xcb:xcb-plugin: + xcb:xcb-render: + xcb:xcb-sm: + xcb:xcb-xlib: + xcb:xinput2: + xcb::XKB +) + +src_prepare() { + # egl_x11 is activated when both egl and xcb are enabled + use egl && QT5_GENTOO_CONFIG+=(xcb:egl_x11) || QT5_GENTOO_CONFIG+=(egl:egl_x11) + + qt_use_disable_config dbus dbus \ + src/platformsupport/themes/genericunix/genericunix.pri + + qt_use_disable_config tuio udpsocket src/plugins/generic/generic.pro + + qt_use_disable_mod ibus dbus \ + src/plugins/platforminputcontexts/platforminputcontexts.pro + + use vnc || sed -i -e '/SUBDIRS += vnc/d' \ + src/plugins/platforms/platforms.pro || die + + qt5-build_src_prepare +} + +src_configure() { + local myconf=( + $(usex dbus -dbus-linked '') + $(qt_use egl) + $(qt_use eglfs) + $(usex eglfs '-gbm -kms' '') + $(qt_use evdev) + $(qt_use evdev mtdev) + -fontconfig + -system-freetype + $(usex gif '' -no-gif) + -system-harfbuzz + $(qt_use jpeg libjpeg system) + $(qt_use libinput) + $(qt_use libinput xkbcommon-evdev) + -opengl $(usex gles2 es2 desktop) + $(qt_use png libpng system) + $(qt_use tslib) + $(qt_use udev libudev) + $(qt_use xcb xcb system) + $(qt_use xcb xkbcommon-x11 system) + $(usex xcb '-xcb-xlib -xinput2 -xkb' '') + ) + qt5-build_src_configure +} diff --git a/dev-qt/qthelp/Manifest b/dev-qt/qthelp/Manifest index 5b9e6376b609..70b69cd2f156 100644 --- a/dev-qt/qthelp/Manifest +++ b/dev-qt/qthelp/Manifest @@ -4,3 +4,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/qthelp/qthelp-5.9.2.ebuild b/dev-qt/qthelp/qthelp-5.9.2.ebuild new file mode 100644 index 000000000000..05bca2693503 --- /dev/null +++ b/dev-qt/qthelp/qthelp-5.9.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Qt5 module for integrating online documentation into applications" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtsql-${PV}[sqlite] + ~dev-qt/qtwidgets-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/assistant/help + src/assistant/qcollectiongenerator + src/assistant/qhelpconverter + src/assistant/qhelpgenerator +) diff --git a/dev-qt/qtimageformats/Manifest b/dev-qt/qtimageformats/Manifest index e219c1be0203..033da101bb35 100644 --- a/dev-qt/qtimageformats/Manifest +++ b/dev-qt/qtimageformats/Manifest @@ -1,2 +1,3 @@ DIST qtimageformats-opensource-src-5.6.2.tar.xz 1909556 SHA256 4fb153be62dac393cbcebab65040b3b9d6edecd1ebbe5e543401b0e45bd147e4 SHA512 ef501cb0b6fc7f1a2fb9725d48950e87e847733bb8e296a5630cfa25365307bc5ee574cb7a69cef48b2c7c5b810d6f3363021e4e18eff0951ab0fc38c7b12c96 WHIRLPOOL 8398b30c1ad48d827550cf22d3721079856c492f5a7dde7cdf37ec820c870310398408e95ce13a8ec577f391831560bd44624b07dd798cb2b62da78c00358205 DIST qtimageformats-opensource-src-5.7.1.tar.xz 2004376 SHA256 4f97a2a2b269f8a45576256ad9f452320c9c9de6d9c7cc1751fdeac36b0f77f4 SHA512 b70fe30b20da8f613f05ae68bf879956341206005d1eff3c34fc279da6b219ff7983d41c2c0c057c85500a2c5826286c63f4c209dc2db84d03848241257be553 WHIRLPOOL b9541ce413e908dea4ac70e62a53cb82b89df4feddd566f479e32ad473b7b320fad0eb8229e97a3d040f826e2513d5ee922b796d16e06b00243b9d96579b103e +DIST qtimageformats-opensource-src-5.9.2.tar.xz 2093756 SHA256 3a626ca0ac7ffc56b59c4b3f66aac6bc76954054cedb6938b961562228eb9df3 SHA512 5f1b93c0e5fffa4c2c063d14c12ad97114a452b16814ca9ac45f00ec36308a09770b3b4d137cb5d19bd3aa3a6f576724084df5d0dad75236d49868af9243c9d2 WHIRLPOOL a1b7aa0925ab8136acdb2ba8c127a1c82b4ccb19a454b82f728099ae25704e3e564822e8fb419a0bb70b39962a271af9d27ca51974d4c33414d5526d793502b5 diff --git a/dev-qt/qtimageformats/qtimageformats-5.9.2.ebuild b/dev-qt/qtimageformats/qtimageformats-5.9.2.ebuild new file mode 100644 index 000000000000..3285265ebe1a --- /dev/null +++ b/dev-qt/qtimageformats/qtimageformats-5.9.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Additional format plugins for the Qt image I/O system" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + media-libs/jasper:= + media-libs/libmng:= + media-libs/libwebp:= + media-libs/tiff:0 +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtlocation/Manifest b/dev-qt/qtlocation/Manifest index 7d7a62ac8523..484bfc1021da 100644 --- a/dev-qt/qtlocation/Manifest +++ b/dev-qt/qtlocation/Manifest @@ -1,2 +1,3 @@ DIST qtlocation-opensource-src-5.6.2.tar.xz 3148448 SHA256 7a8995206ed0220f943a33c037527a1a8243d5386f5ca77bf88152675c28d23a SHA512 10d87e9e546d52fc1813cbe244cb592033758460129854879b0d04600bd2285c2ae499bb131de77bf66b4989b45d14e9e656a30aaeee47628e41b026908ed97e WHIRLPOOL 4c4cb895d3cd5cf2ac6ad385374d0dce6e91a9b6f3f562bff5e2715896d108f9f1a60ff13a5d360238812b34523d50f0ede92211830e2d0eef6ccc5b28d82966 DIST qtlocation-opensource-src-5.7.1.tar.xz 3194112 SHA256 f9e9e64e757008c2341504a1916a219ee0cf2b1b42bfa72156e62dfe9dfbf39f SHA512 a3e0318ad348edd6d9cb4762d4fc6230a47984fcf526f55cc2c9bc00e2e70fdb1380866ec8906e3f58669c62464f8747c948d85107a2d30be1e98da27c7739d4 WHIRLPOOL be30847a33b1bb356d6725202968e189abf4a5bcdc5c2decf9a7ffc14b2d3875dfde827b41b97bf11c9497ec584f351c567150d84bb93fedeb3cb15ce0ac0075 +DIST qtlocation-opensource-src-5.9.2.tar.xz 5369548 SHA256 c81a42e44ebd4e9c33f7195e86af3deab9fde72ef0ad8dcb04acee250d356b0c SHA512 da2e011d37b1c30395360987d66978c842aae41491ce3201316ebe1acf453fb31626575e3c3d65836aa6ac80e3d4324a613f0245e90598b507a89d13ea241786 WHIRLPOOL 2a2dd20d9fc5ae75e469438587dd1d57b65a5a5e642a6806bc067b0cfa914ef0309a63b37163b0fb349134bb3b6a1fb4785691c1a8d2ef681c624df29a1df67a diff --git a/dev-qt/qtlocation/qtlocation-5.9.2.ebuild b/dev-qt/qtlocation/qtlocation-5.9.2.ebuild new file mode 100644 index 000000000000..420e3c9ba782 --- /dev/null +++ b/dev-qt/qtlocation/qtlocation-5.9.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="The Location module for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +IUSE="" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtpositioning-${PV} + ~dev-qt/qtsql-${PV} + sys-libs/zlib +" +DEPEND="${RDEPEND} + ~dev-qt/qtconcurrent-${PV} +" + +QT5_TARGET_SUBDIRS=( + src/3rdparty/clipper + src/3rdparty/poly2tri + src/3rdparty/clip2tri + src/3rdparty/mapbox-gl-native + src/location + src/imports/location + src/plugins/geoservices +) diff --git a/dev-qt/qtmultimedia/Manifest b/dev-qt/qtmultimedia/Manifest index 02b41ce76727..9533dbc86201 100644 --- a/dev-qt/qtmultimedia/Manifest +++ b/dev-qt/qtmultimedia/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtmultimedia-opensource-src-5.6.2.tar.xz 3492628 SHA256 cb9a70a7c6c0eb5be4a3fcaf9590863479e95a255308bbf07d5b7aa303bb8caf SHA512 e4750b1033f4ffbc139c14475fa07019bbb51a373d72a608035da583e88979fc7cc8694be90661c3977f6a1e0be2c27a98b348a632f62b2d40c224af927f9ccc WHIRLPOOL 1a9872996146371e4bf7d877c18a829986db63fca3ce57b250d9282d884a1479a7309b981c29c7bfedd4d965c5b76e94cafd11ea9c0e3c1d07852ebabb58365d DIST qtmultimedia-opensource-src-5.7.1.tar.xz 3563676 SHA256 a52b177fbf02600a0c8bd995ce7c2041c673bc1332c02b60e0e95bb9ebab7def SHA512 1415a4c29416ead2528ddb040a3c69480408509c6ba573f44295513bfe2aa62b8e8bb97cbd33713e605f094e1c1e1337507904d2b0c6480ddf9cf75393d8e97f WHIRLPOOL 6d37e06443b6e6d3d55e35ccebe08bc2a7a4423afe3728db5b297f15e682af31f6085ab2ebf92f63d4bff4ec69b772b6e545149b260245d3d076d4c619b8d46f +DIST qtmultimedia-opensource-src-5.9.2.tar.xz 3594960 SHA256 c9a62700024871f204e5f107894c3a339bd645bf6dbac2bcf1bff8ce46842520 SHA512 b9fab874706440e97185475bfd0ad769c23d5ddbff5086cc0da9783777e81ed8140fb06fa0e7536ebfb67f2c9db39e1b9f3c2241834e74a9e1fb6ffd5cb7af11 WHIRLPOOL 6adf8241a45e02720167ceb6c739396a08be8e5790c64eb31e281aa83cb2c1448dcff537aa829474704594c0d9d4bd616acbebaadd824610c24ec2f56a454b94 diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.9.2.ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.9.2.ebuild new file mode 100644 index 000000000000..d0626551922b --- /dev/null +++ b/dev-qt/qtmultimedia/qtmultimedia-5.9.2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Multimedia (audio, video, radio, camera) library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="alsa gles2 gstreamer openal pulseaudio qml widgets" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=] + ~dev-qt/qtnetwork-${PV} + alsa? ( media-libs/alsa-lib ) + gstreamer? ( + dev-libs/glib:2 + media-libs/gstreamer:1.0 + media-libs/gst-plugins-bad:1.0 + media-libs/gst-plugins-base:1.0 + ) + pulseaudio? ( media-sound/pulseaudio ) + qml? ( + ~dev-qt/qtdeclarative-${PV} + gles2? ( ~dev-qt/qtgui-${PV}[egl] ) + openal? ( media-libs/openal ) + ) + widgets? ( + ~dev-qt/qtopengl-${PV} + ~dev-qt/qtwidgets-${PV}[gles2=] + ) +" +DEPEND="${RDEPEND} + gstreamer? ( x11-proto/videoproto ) +" + +src_prepare() { + qt_use_disable_config openal openal \ + src/imports/imports.pro + + qt_use_disable_mod qml quick \ + src/src.pro \ + src/plugins/plugins.pro + + qt_use_disable_mod widgets widgets \ + src/src.pro \ + src/gsttools/gsttools.pro \ + src/plugins/gstreamer/common.pri + + qt5-build_src_prepare +} + +src_configure() { + local myqmakeargs=( + -- + $(qt_use alsa) + $(qt_use gstreamer) + $(qt_use pulseaudio) + ) + qt5-build_src_configure +} diff --git a/dev-qt/qtnetwork/Manifest b/dev-qt/qtnetwork/Manifest index 61d921a97dfe..3f9b168e930c 100644 --- a/dev-qt/qtnetwork/Manifest +++ b/dev-qt/qtnetwork/Manifest @@ -1,2 +1,3 @@ DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtnetwork/qtnetwork-5.9.2.ebuild b/dev-qt/qtnetwork/qtnetwork-5.9.2.ebuild new file mode 100644 index 000000000000..48c13b15cd29 --- /dev/null +++ b/dev-qt/qtnetwork/qtnetwork-5.9.2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +inherit qt5-build + +DESCRIPTION="Network abstraction library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="bindist connman libproxy networkmanager +ssl" + +DEPEND=" + ~dev-qt/qtcore-${PV} + >=sys-libs/zlib-1.2.5 + connman? ( ~dev-qt/qtdbus-${PV} ) + libproxy? ( net-libs/libproxy ) + networkmanager? ( ~dev-qt/qtdbus-${PV} ) + ssl? ( dev-libs/openssl:0=[bindist=] ) +" +RDEPEND="${DEPEND} + connman? ( net-misc/connman ) + networkmanager? ( net-misc/networkmanager ) +" + +QT5_TARGET_SUBDIRS=( + src/network + src/plugins/bearer/generic +) + +QT5_GENTOO_CONFIG=( + libproxy + ssl::SSL + ssl::OPENSSL + ssl:openssl-linked:LINKED_OPENSSL +) + +pkg_setup() { + use connman && QT5_TARGET_SUBDIRS+=(src/plugins/bearer/connman) + use networkmanager && QT5_TARGET_SUBDIRS+=(src/plugins/bearer/networkmanager) +} + +src_configure() { + local myconf=( + $(use connman || use networkmanager && echo -dbus-linked) + $(qt_use libproxy) + $(usex ssl -openssl-linked '') + ) + qt5-build_src_configure +} diff --git a/dev-qt/qtnetworkauth/Manifest b/dev-qt/qtnetworkauth/Manifest new file mode 100644 index 000000000000..b317a5b90bb3 --- /dev/null +++ b/dev-qt/qtnetworkauth/Manifest @@ -0,0 +1 @@ +DIST qtnetworkauth-opensource-src-5.9.2.tar.xz 112344 SHA256 a003f05aaa330605c6572212b4df869c026eabbbeb241c991031fad2511d239a SHA512 2e83eefd5db62aa1cdbe451b432ba1937541e435dcc35205d3bb9b947f2ac7e31663dc069a6cfad5bbf34e1fa799d519820f7ed61b9c247016611a533385bebf WHIRLPOOL 2f87f02b3b25369847e694ab8e8638f3e7a99f8e355beb53952d4f33deec8fe41251c1bb757737bd1b0f1049684f0a5c4c617dedd81d6c3a6fbba7b6fbd61100 diff --git a/dev-qt/qtnetworkauth/metadata.xml b/dev-qt/qtnetworkauth/metadata.xml new file mode 100644 index 000000000000..32568f62fb8e --- /dev/null +++ b/dev-qt/qtnetworkauth/metadata.xml @@ -0,0 +1,17 @@ + + + + + qt@gentoo.org + Gentoo Qt Project + + + https://bugreports.qt.io/ + https://doc.qt.io/ + + + + Must only be used by packages that are known to use private parts of the Qt API. + + + diff --git a/dev-qt/qtnetworkauth/qtnetworkauth-5.9.2.ebuild b/dev-qt/qtnetworkauth/qtnetworkauth-5.9.2.ebuild new file mode 100644 index 000000000000..ec54a2f00cf7 --- /dev/null +++ b/dev-qt/qtnetworkauth/qtnetworkauth-5.9.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Network authorization library for the Qt5 framework" +LICENSE="GPL-3" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtnetwork-${PV} +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtopengl/Manifest b/dev-qt/qtopengl/Manifest index 0774197e895c..a897f1af9c27 100644 --- a/dev-qt/qtopengl/Manifest +++ b/dev-qt/qtopengl/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtopengl/qtopengl-5.9.2.ebuild b/dev-qt/qtopengl/qtopengl-5.9.2.ebuild new file mode 100644 index 000000000000..7e85dc2c3591 --- /dev/null +++ b/dev-qt/qtopengl/qtopengl-5.9.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +VIRTUALX_REQUIRED="test" +inherit qt5-build + +DESCRIPTION="OpenGL support library for the Qt5 framework (deprecated)" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="gles2" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=] + ~dev-qt/qtwidgets-${PV}[gles2=] + virtual/opengl +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/opengl +) + +src_configure() { + local myconf=( + -opengl $(usex gles2 es2 desktop) + ) + qt5-build_src_configure +} diff --git a/dev-qt/qtpaths/Manifest b/dev-qt/qtpaths/Manifest index 1612ac07b67d..f545c6287ed4 100644 --- a/dev-qt/qtpaths/Manifest +++ b/dev-qt/qtpaths/Manifest @@ -1,2 +1,3 @@ DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/qtpaths/qtpaths-5.9.2.ebuild b/dev-qt/qtpaths/qtpaths-5.9.2.ebuild new file mode 100644 index 000000000000..c6c9ac70a54a --- /dev/null +++ b/dev-qt/qtpaths/qtpaths-5.9.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Command line client to QStandardPaths" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/qtpaths +) diff --git a/dev-qt/qtplugininfo/Manifest b/dev-qt/qtplugininfo/Manifest index 1612ac07b67d..f545c6287ed4 100644 --- a/dev-qt/qtplugininfo/Manifest +++ b/dev-qt/qtplugininfo/Manifest @@ -1,2 +1,3 @@ DIST qttools-opensource-src-5.6.2.tar.xz 9794512 SHA256 db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7 SHA512 3b2a0d098e09353978ff1e54cfcc293b8c7b4ada323c3c98e6ce8d62cea4574d285fc169f9758ec019206184db0df39ac99971be0bcb335672b7f4f86c787327 WHIRLPOOL 7e4ab96eb762d4ea13fc19f5816f3b7633601746d6f4c83b7eefa7b9cecc65db0837bc85f9b69c6a69f13b0fac243d3491b6990a85d72ee24bee4d05a262e1fd DIST qttools-opensource-src-5.7.1.tar.xz 10011108 SHA256 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac SHA512 10e4e060943596602bae0f99091de0923d3ebc761d44a5d193bfd17b77cf8fdf3c4466fb19363bbd3a354955ed09db9132b23833557f5216c7b4df758c17406e WHIRLPOOL af661baeafa85e7af56bb8859415306d26fe7c0de8238d399a520623643de0e6c6ff6056715013d202285c6ef068f4c4c21fdf28098cb42ac6ec97cbfde127b2 +DIST qttools-opensource-src-5.9.2.tar.xz 9778248 SHA256 2bb996118b68e9939c185a593837e5a41bb3667bf5d4d5134fac02598bd2d81a SHA512 afce063e167de96dfa264cfd27dc8d80c23ef091a30f4f8119575cae83f39716c3b332427630b340f518b82d6396cca1893f28e00f3c667ba201d7e4fc2aefe1 WHIRLPOOL 747a9c7ee7914ae613373c810891c0a4147b3c5614801677014fa1fadebc3bb985b120e855380ef05bb8c452968d6dd9d54db9ac2b4c530d5c0d0453226f378b diff --git a/dev-qt/qtplugininfo/qtplugininfo-5.9.2.ebuild b/dev-qt/qtplugininfo/qtplugininfo-5.9.2.ebuild new file mode 100644 index 000000000000..f411fc0cb905 --- /dev/null +++ b/dev-qt/qtplugininfo/qtplugininfo-5.9.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Qt5 plugin metadata dumper" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/qtplugininfo +) diff --git a/dev-qt/qtpositioning/Manifest b/dev-qt/qtpositioning/Manifest index 7d7a62ac8523..484bfc1021da 100644 --- a/dev-qt/qtpositioning/Manifest +++ b/dev-qt/qtpositioning/Manifest @@ -1,2 +1,3 @@ DIST qtlocation-opensource-src-5.6.2.tar.xz 3148448 SHA256 7a8995206ed0220f943a33c037527a1a8243d5386f5ca77bf88152675c28d23a SHA512 10d87e9e546d52fc1813cbe244cb592033758460129854879b0d04600bd2285c2ae499bb131de77bf66b4989b45d14e9e656a30aaeee47628e41b026908ed97e WHIRLPOOL 4c4cb895d3cd5cf2ac6ad385374d0dce6e91a9b6f3f562bff5e2715896d108f9f1a60ff13a5d360238812b34523d50f0ede92211830e2d0eef6ccc5b28d82966 DIST qtlocation-opensource-src-5.7.1.tar.xz 3194112 SHA256 f9e9e64e757008c2341504a1916a219ee0cf2b1b42bfa72156e62dfe9dfbf39f SHA512 a3e0318ad348edd6d9cb4762d4fc6230a47984fcf526f55cc2c9bc00e2e70fdb1380866ec8906e3f58669c62464f8747c948d85107a2d30be1e98da27c7739d4 WHIRLPOOL be30847a33b1bb356d6725202968e189abf4a5bcdc5c2decf9a7ffc14b2d3875dfde827b41b97bf11c9497ec584f351c567150d84bb93fedeb3cb15ce0ac0075 +DIST qtlocation-opensource-src-5.9.2.tar.xz 5369548 SHA256 c81a42e44ebd4e9c33f7195e86af3deab9fde72ef0ad8dcb04acee250d356b0c SHA512 da2e011d37b1c30395360987d66978c842aae41491ce3201316ebe1acf453fb31626575e3c3d65836aa6ac80e3d4324a613f0245e90598b507a89d13ea241786 WHIRLPOOL 2a2dd20d9fc5ae75e469438587dd1d57b65a5a5e642a6806bc067b0cfa914ef0309a63b37163b0fb349134bb3b6a1fb4785691c1a8d2ef681c624df29a1df67a diff --git a/dev-qt/qtpositioning/qtpositioning-5.9.2.ebuild b/dev-qt/qtpositioning/qtpositioning-5.9.2.ebuild new file mode 100644 index 000000000000..ccf6ea6d6bc3 --- /dev/null +++ b/dev-qt/qtpositioning/qtpositioning-5.9.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtlocation" +inherit qt5-build + +DESCRIPTION="Physical position determination library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" +fi + +IUSE="geoclue qml" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + geoclue? ( ~dev-qt/qtdbus-${PV} ) + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +DEPEND="${RDEPEND}" +PDEPEND=" + geoclue? ( app-misc/geoclue:0 ) +" + +QT5_TARGET_SUBDIRS=( + src/3rdparty/clipper + src/3rdparty/poly2tri + src/3rdparty/clip2tri + src/positioning + src/plugins/position/positionpoll +) + +pkg_setup() { + use geoclue && QT5_TARGET_SUBDIRS+=(src/plugins/position/geoclue) + use qml && QT5_TARGET_SUBDIRS+=(src/imports/positioning) +} diff --git a/dev-qt/qtprintsupport/Manifest b/dev-qt/qtprintsupport/Manifest index 61d921a97dfe..3f9b168e930c 100644 --- a/dev-qt/qtprintsupport/Manifest +++ b/dev-qt/qtprintsupport/Manifest @@ -1,2 +1,3 @@ DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.9.2.ebuild b/dev-qt/qtprintsupport/qtprintsupport-5.9.2.ebuild new file mode 100644 index 000000000000..71b61e387963 --- /dev/null +++ b/dev-qt/qtprintsupport/qtprintsupport-5.9.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +VIRTUALX_REQUIRED="test" +inherit qt5-build + +DESCRIPTION="Printing support library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="cups gles2" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=] + ~dev-qt/qtwidgets-${PV}[gles2=] + cups? ( >=net-print/cups-1.4 ) +" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtnetwork-${PV} ) +" + +QT5_TARGET_SUBDIRS=( + src/printsupport + src/plugins/printsupport +) + +QT5_GENTOO_CONFIG=( + cups +) + +src_configure() { + local myconf=( + $(qt_use cups) + -opengl $(usex gles2 es2 desktop) + ) + qt5-build_src_configure +} diff --git a/dev-qt/qtquickcontrols/Manifest b/dev-qt/qtquickcontrols/Manifest index 4ab93f1f9069..dc57a4603bba 100644 --- a/dev-qt/qtquickcontrols/Manifest +++ b/dev-qt/qtquickcontrols/Manifest @@ -1,2 +1,3 @@ DIST qtquickcontrols-opensource-src-5.6.2.tar.xz 5952696 SHA256 5ed0f2292be10222dfb1b57a05472798fd759279f65455d91c02ef4fb746102c SHA512 19bf092e984bc5ccbc328726f10e6c4d1980f68772b85591c7f62025552fc38bb25b71974f4e71258456c85be37cc72636c6dd035f5b57e573fdf5c99e028a7a WHIRLPOOL 17bc1be69bdf28821b2e72e4406079a2dca0d346b0aaa4c5f4642ba37a99326142ebbd5f89fac219b6b9c452622b6a3ce33c2fa68012d6fcce8bdefcf614e400 DIST qtquickcontrols-opensource-src-5.7.1.tar.xz 5943024 SHA256 6feb1a736bf93af98c40d04cde6b36c113e4cdf84ccb9b306ca92ef9b1779e9d SHA512 7f5d3a2fcb1da3ba5299f57935156e34dd61d019b29892794927148c7bda99e8e298522f1a7d807f2c2b9746efcc9418a9f89c6322257749036b046e03471368 WHIRLPOOL f0863a5b88057ffbbd5059b3a61d7ae98b8291a96383936e8acf70b64ad91b8da3a7d2837377141041ea2f3051638dad530ad83b089a9aa18a8e11ee54b6d289 +DIST qtquickcontrols-opensource-src-5.9.2.tar.xz 5945332 SHA256 5f09ecf8648acd8abed20d727b8517e0c53cf945e83a992ee58d4baadd84bd1f SHA512 fd5833bd3823e3a53b54ac542857af5bb109952035869ad0a151e807abc9d304ef5d3fa04b75df3b59faf0b95412f593d86b56198f96734f3a75b1620688ba4f WHIRLPOOL 79d373dcdbbb176d966b7c0c5a207384325680e766d71c49af008da6f33373b4ea0b8c0c0b51b6ac1493c7046bec0b829f703d5a29b72e996b6642897cb3703a diff --git a/dev-qt/qtquickcontrols/qtquickcontrols-5.9.2.ebuild b/dev-qt/qtquickcontrols/qtquickcontrols-5.9.2.ebuild new file mode 100644 index 000000000000..ac6ab02eea2a --- /dev/null +++ b/dev-qt/qtquickcontrols/qtquickcontrols-5.9.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Set of controls used in conjunction with Qt Quick to build complete interfaces" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="+widgets" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} + widgets? ( ~dev-qt/qtwidgets-${PV} ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_mod widgets widgets \ + src/src.pro \ + src/controls/Private/private.pri \ + tests/auto/activeFocusOnTab/activeFocusOnTab.pro \ + tests/auto/controls/controls.pro \ + tests/auto/testplugin/testplugin.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtquickcontrols2/Manifest b/dev-qt/qtquickcontrols2/Manifest index 2da46085bf2a..3d40fd20bdf7 100644 --- a/dev-qt/qtquickcontrols2/Manifest +++ b/dev-qt/qtquickcontrols2/Manifest @@ -1 +1,2 @@ DIST qtquickcontrols2-opensource-src-5.7.1.tar.xz 2212812 SHA256 f2e8acd0badbf604f28258b063c94ba71e28147c53c435ae9eb484497cf3e7ec SHA512 24b142f60f3dbc52084906249e261ea8b788135a3dc2e45bb3fc885fe14f9281178025433b28e227891070adff3fe4b64c8a1f83ac4c9bde7f4a6048ea44370e WHIRLPOOL c9a943762f28025169de1d17a94c6849cd51afa5f26538f3943fb343e04fd1282a4b28f595c96106bcac57c744d2cfc8beb0d8c77ab07952a03feb316344ba94 +DIST qtquickcontrols2-opensource-src-5.9.2.tar.xz 4121004 SHA256 2b55dd3dd53b4a6abb0ceb74b7fb98a5e52e9056c71a6cdbaead5cdf9d1ac8d2 SHA512 e283320aabbaa153067c909804cb34bbcbf6fcb7246bb214957b6092ceb0f01c4fae2efd9d7a6cb011274deafff4aaf0a45dbda06a3fdce1154622e48740048c WHIRLPOOL 12b53b8b43a6d839faa41551ac580617c8a4b8ea1328da9a7e5b686eec04be4e012f935c3c62d79672d39ac01c723840b8836f711bdfccd2960a129d86e8baeb diff --git a/dev-qt/qtquickcontrols2/metadata.xml b/dev-qt/qtquickcontrols2/metadata.xml index 32568f62fb8e..cc8ed92a390e 100644 --- a/dev-qt/qtquickcontrols2/metadata.xml +++ b/dev-qt/qtquickcontrols2/metadata.xml @@ -5,6 +5,9 @@ qt@gentoo.org Gentoo Qt Project + + Enable QtWidgets support + https://bugreports.qt.io/ https://doc.qt.io/ diff --git a/dev-qt/qtquickcontrols2/qtquickcontrols2-5.9.2.ebuild b/dev-qt/qtquickcontrols2/qtquickcontrols2-5.9.2.ebuild new file mode 100644 index 000000000000..af1973c274ad --- /dev/null +++ b/dev-qt/qtquickcontrols2/qtquickcontrols2-5.9.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Set of next generation Qt Quick controls for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~x86" +fi + +IUSE="widgets" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} + widgets? ( ~dev-qt/qtwidgets-${PV} ) +" +RDEPEND="${DEPEND} + ~dev-qt/qtgraphicaleffects-${PV} +" + +src_prepare() { + qt_use_disable_mod widgets widgets \ + src/imports/platform/platform.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtscript/Manifest b/dev-qt/qtscript/Manifest index cbebf93fb65b..951fd36eaf69 100644 --- a/dev-qt/qtscript/Manifest +++ b/dev-qt/qtscript/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtscript-opensource-src-5.6.2.tar.xz 2587484 SHA256 e06ef6b271cae2187b57cd4ffdd6759428fd47f94a060e2ed2af024a8c14110e SHA512 3636b214f0573e471a1e44cf33097adcd104df7b74e5abedbc75fd9c44e804bb47172b6ab4c41513e8162e27850bf64067ca11196396b60c3bd2c968e15d3113 WHIRLPOOL 1375ddaac79ef2a99a0193696a64f3c16d03c404231ed641a45692e4be8cf26d65b9c199cf73fb8b2152486355ca8279b64d723b94dbb504fc585011c969c795 DIST qtscript-opensource-src-5.7.1.tar.xz 2608180 SHA256 5bf91a1c53020d91d454d4bb0f930ada98c5fc008fda78f2d7171152920da426 SHA512 6bde4add16745475d42c0fda0d3451a77717b14dca12b40a4e3cebc9e2b6edb04da23ebf9af46010135066524dd8ea0453a07420cf42228fd7ed5249b633a95c WHIRLPOOL 971db46b5f469a123e2727318017f42726db53251d5637e0804ce35905d1006322681362fe0f1d8f92f15f2f5f88e9a85862374a97256fe797223d2cabc55636 +DIST qtscript-opensource-src-5.9.2.tar.xz 2611900 SHA256 47807db5c2684609a0252601fda0a153530a2c97abb8c96df30f4e7897cd40f1 SHA512 3ce2e57a0a6b2382614f689edca0deed87afe944c1c41decb3b9f420449fa59f2b79e6330e78e01a950761a95903113eaa7fbf261886361114acf5015d93254c WHIRLPOOL 6c7c1d4eb25a3bc8e4c4a47512788d1e7183eb7c3928ab2c892f8cfe7b7ed9e7ef1bc7f93e5e3be1ecd23635e6b118ae008270e6b8877e5746980e5492bfd9c3 diff --git a/dev-qt/qtscript/qtscript-5.9.2.ebuild b/dev-qt/qtscript/qtscript-5.9.2.ebuild new file mode 100644 index 000000000000..d04b08861560 --- /dev/null +++ b/dev-qt/qtscript/qtscript-5.9.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Application scripting library for the Qt5 framework (deprecated)" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="+jit scripttools" + +DEPEND=" + ~dev-qt/qtcore-${PV} + scripttools? ( + ~dev-qt/qtgui-${PV} + ~dev-qt/qtwidgets-${PV} + ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_mod scripttools widgets \ + src/src.pro + + qt5-build_src_prepare +} + +src_configure() { + local myqmakeargs=( + JAVASCRIPTCORE_JIT=$(usex jit 'yes' 'no') + ) + qt5-build_src_configure +} diff --git a/dev-qt/qtscxml/Manifest b/dev-qt/qtscxml/Manifest index 9155a08337ed..4fd7e2b9bb1a 100644 --- a/dev-qt/qtscxml/Manifest +++ b/dev-qt/qtscxml/Manifest @@ -1 +1,2 @@ DIST qtscxml-opensource-src-5.7.1.tar.xz 346948 SHA256 9dad4ab220a715b6a63df1d4a196bfa963a1ce7e6e57e7b36462c5dab09db38c SHA512 f5e2d6882a36dc08470502ede82862f4cd95f21b5b354e20ef5a2f9b458dbfdd35c1629a89217606aea5aead1d76d03c80e76387e1ee202bf73fe5c2022f1bb7 WHIRLPOOL 5ff40e079afd5299f61d5445f333ea0a573945780aa05f8df30ac71d645377dc054d0f807bdcc1ae57b0b2f0fbf3ce01a83a0a6be934ba01655026c69edb216e +DIST qtscxml-opensource-src-5.9.2.tar.xz 414152 SHA256 9d2b1292bc632305aa1963bfbfc06e8b4489ca0f9ed380ea6410c9dc38aeb15d SHA512 c33db992ab456e5dd8b9be65c5619c503048106bbb1839b0930f2d4df36eed0780dfa1fc2912d7758aa72195269e59cbe8826cbaa414c2f339ca66c565809c88 WHIRLPOOL b22618b2387e67256f423e2aa267ffcb9dd965e6b0af2cb8fe18effc2fbd23011b0f1d9d22b6108ea022c07fa1369dab7ce77586c52788e375c591a1b8293f9b diff --git a/dev-qt/qtscxml/qtscxml-5.9.2.ebuild b/dev-qt/qtscxml/qtscxml-5.9.2.ebuild new file mode 100644 index 000000000000..e8f77a2e9a86 --- /dev/null +++ b/dev-qt/qtscxml/qtscxml-5.9.2.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="State Chart XML (SCXML) support library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtsensors/Manifest b/dev-qt/qtsensors/Manifest index 214e21812cfd..2e55c1d208df 100644 --- a/dev-qt/qtsensors/Manifest +++ b/dev-qt/qtsensors/Manifest @@ -1,2 +1,3 @@ DIST qtsensors-opensource-src-5.6.2.tar.xz 1973888 SHA256 a7809081aab4f2f0d7a4f40c3abb02e1690bb390d1dd410d7c6c5019a5053427 SHA512 18cbf232e157942e9a3452921761c45f96334d8f628e2c5331b2670dfeb46eb018819f586e126404dc0426687bbfa1fdc4cd4557ee8bca1e74a21037383c73db WHIRLPOOL 8fe8d7f52df6d95ef0d9dac76cecebf98e95d26c83056192265ea3ccb128ce2a610f936519b73abca407f685dfcdb89bb36208e83189c3f395c882311db1343c DIST qtsensors-opensource-src-5.7.1.tar.xz 1987144 SHA256 ccb3942edb5e615e9a43c147d87a09f19690eafbc56be0cdf4f73b7e510f3b10 SHA512 5dff126e59f0bae4e5a8b1d3b971dc1c7318169f82dcb05907bad5dd460f2edadb317ffd111047af5a2d1db3a2c3adc204e5f8ec2b792c912a8e7e987f596914 WHIRLPOOL ccefbcebf8bad0df76f00aafc23fe119664fd253e96e07784d7977192651b36a1143afcbf9d069a908f79c259ee0325d1fa272dd1673d9458328171f90d10b6d +DIST qtsensors-opensource-src-5.9.2.tar.xz 1994772 SHA256 79441588c9c8bd1b34b91481441614077ea335a0005e79a1dc68ad964284b5d3 SHA512 c03c7d531c3a17a51ac41cd1623ffbbb24e8b2bef739d44db3115a70fe75ce831f50de037752a09bccd069416c4c939e31b663bf405c7cc8bf642e88399771a7 WHIRLPOOL 418ffd97a6a8ac4a273bc56242d84541a7562135b51197b9844b30e93cfb4dd2ee335e73efed678cacc596931b1cad54d8922679829ac03c9a04c5264833e3c7 diff --git a/dev-qt/qtsensors/qtsensors-5.9.2.ebuild b/dev-qt/qtsensors/qtsensors-5.9.2.ebuild new file mode 100644 index 000000000000..c09362836fcf --- /dev/null +++ b/dev-qt/qtsensors/qtsensors-5.9.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Hardware sensor access library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" +fi + +# TODO: simulator +IUSE="qml" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdbus-${PV} + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +DEPEND="${RDEPEND}" + +src_prepare() { + qt_use_disable_mod qml quick \ + src/src.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtserialbus/Manifest b/dev-qt/qtserialbus/Manifest new file mode 100644 index 000000000000..6e3e0146b845 --- /dev/null +++ b/dev-qt/qtserialbus/Manifest @@ -0,0 +1 @@ +DIST qtserialbus-opensource-src-5.9.2.tar.xz 278632 SHA256 bbc24bdafd0191fc808e08b19f378e74bedbb79faf4e396b66ba7ca9fed9be08 SHA512 978f93c485509d70e2e2590f98d38ad76f03b31fac1508594a0802acf1a022e4f531fc9294826bacdc7292b3c8f9f740e4cd3e2996bb9b3deb401350aae8136d WHIRLPOOL 5df266d70c312c354c2bf52428d19bf5c95aa22ef7fe85142d73cd5278187490b3b51889f97d93d3f93aa19d7a4e1011690d7abdccb0f24a9c1848ff104ce4b4 diff --git a/dev-qt/qtserialbus/metadata.xml b/dev-qt/qtserialbus/metadata.xml new file mode 100644 index 000000000000..32568f62fb8e --- /dev/null +++ b/dev-qt/qtserialbus/metadata.xml @@ -0,0 +1,17 @@ + + + + + qt@gentoo.org + Gentoo Qt Project + + + https://bugreports.qt.io/ + https://doc.qt.io/ + + + + Must only be used by packages that are known to use private parts of the Qt API. + + + diff --git a/dev-qt/qtserialbus/qtserialbus-5.9.2.ebuild b/dev-qt/qtserialbus/qtserialbus-5.9.2.ebuild new file mode 100644 index 000000000000..60ddee17fe51 --- /dev/null +++ b/dev-qt/qtserialbus/qtserialbus-5.9.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Support for CAN and other serial buses" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtserialport-${PV} +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtserialport/Manifest b/dev-qt/qtserialport/Manifest index 7c7b06f98960..33708f5327e9 100644 --- a/dev-qt/qtserialport/Manifest +++ b/dev-qt/qtserialport/Manifest @@ -1,2 +1,3 @@ DIST qtserialport-opensource-src-5.6.2.tar.xz 256852 SHA256 af76281bad2c2bd283189635316b46091f6712134b845ae1b9e3016eec94f376 SHA512 fb4544ce295c771216a5dad6f7800c85554c67852c42b965a2139cffd00241f7d4f86ab9db2a88c62a76561db74829f5c6b291cfc847d5d290373edd420dc42f WHIRLPOOL e93d799fdac0474b8106e3948120f4d8db30da9ab1a97d282be594d07e04fa4f48a2ff83f24fa3deaea26d6b94cfdf61f182233eb1607282cb604a1e6354d8ad DIST qtserialport-opensource-src-5.7.1.tar.xz 265616 SHA256 76d5e19bd392b72602ba3bfe3c0d03c10962674604cf814efa2c910f98cf5a26 SHA512 090015dc2652399bee7c7d30c9f127be695e4c002b18dba1089d4bec555513774a587864989f33ad4059ff7b9b2bf24c387394c03a4024e2640b3642bc89ccbf WHIRLPOOL 08709c502758081faad0bf12bf34c16d216ef2cb3ac8e7c6c438d1f429249c3388ed264817f921f83deae1817c58458b38d0cbe7e70b556a22cc74a57fce4007 +DIST qtserialport-opensource-src-5.9.2.tar.xz 272996 SHA256 50ed9cc22db1615bc00267d24b0819813b854af3651ab6e5ffaa7f7c7e62cd42 SHA512 cc8899c1ae2ed9fd8cf1c213ab7efaec12b3b16836006fdbf74cb7ea457705505a13e82c2f2873ee9426ae66473ec42259f4e728de64576ee44420f116cc433d WHIRLPOOL 6d73738131cc7a32931b4050a96309a5b86d6e32a28d5b598b29b15aface8e41be57eb3fb9b0d62f1c846b8b7403c7de41392f524b146e0b1e8e745cecae2101 diff --git a/dev-qt/qtserialport/qtserialport-5.9.2.ebuild b/dev-qt/qtserialport/qtserialport-5.9.2.ebuild new file mode 100644 index 000000000000..f0e771072aef --- /dev/null +++ b/dev-qt/qtserialport/qtserialport-5.9.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Serial port abstraction library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + virtual/libudev:= +" +RDEPEND="${DEPEND}" + +src_prepare() { + # make sure we link against libudev + sed -i -e 's/:qtConfig(libudev)//' \ + src/serialport/serialport-lib.pri || die + + qt5-build_src_prepare +} diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest new file mode 100644 index 000000000000..42b7e34bf574 --- /dev/null +++ b/dev-qt/qtspeech/Manifest @@ -0,0 +1 @@ +DIST qtspeech-opensource-src-5.9.2.tar.xz 80896 SHA256 ef7a84ec5a30c7c79d390b5cc56d476baa7c8b9f3b36f8b76d079fe85c1b0333 SHA512 8213ad13d33732fee3fc5b5e408b870970a3003d461be24195222e1d1209210039d1d0cd2f3c537a0db62629fb297d88b33ed4734ecb6c8d74f5406a87e7e0c0 WHIRLPOOL 353dd1b863e57f67763857fd63bcde59dddc73ee0de2f702e81b960e848fbc0a1947675bd5853062961eed97ecd0e5b0c72a2549f2dc93144ee124f79d9acf31 diff --git a/dev-qt/qtspeech/metadata.xml b/dev-qt/qtspeech/metadata.xml new file mode 100644 index 000000000000..32568f62fb8e --- /dev/null +++ b/dev-qt/qtspeech/metadata.xml @@ -0,0 +1,17 @@ + + + + + qt@gentoo.org + Gentoo Qt Project + + + https://bugreports.qt.io/ + https://doc.qt.io/ + + + + Must only be used by packages that are known to use private parts of the Qt API. + + + diff --git a/dev-qt/qtspeech/qtspeech-5.9.2.ebuild b/dev-qt/qtspeech/qtspeech-5.9.2.ebuild new file mode 100644 index 000000000000..c121d92e8235 --- /dev/null +++ b/dev-qt/qtspeech/qtspeech-5.9.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Text-to-speech library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +# TODO: flite plugin - needs 2.0.0 (not yet in tree) +IUSE="" + +RDEPEND=" + app-accessibility/speech-dispatcher + ~dev-qt/qtcore-${PV} +" +DEPEND="${RDEPEND}" diff --git a/dev-qt/qtsql/Manifest b/dev-qt/qtsql/Manifest index 0774197e895c..a897f1af9c27 100644 --- a/dev-qt/qtsql/Manifest +++ b/dev-qt/qtsql/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtsql/qtsql-5.9.2.ebuild b/dev-qt/qtsql/qtsql-5.9.2.ebuild new file mode 100644 index 000000000000..0560c4a2739a --- /dev/null +++ b/dev-qt/qtsql/qtsql-5.9.2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +inherit qt5-build + +DESCRIPTION="SQL abstraction library for the Qt5 tooolkit" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="freetds mysql oci8 odbc postgres +sqlite" + +REQUIRED_USE=" + || ( freetds mysql oci8 odbc postgres sqlite ) +" + +DEPEND=" + ~dev-qt/qtcore-${PV} + freetds? ( dev-db/freetds ) + mysql? ( virtual/libmysqlclient:= ) + oci8? ( dev-db/oracle-instantclient-basic ) + odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) + postgres? ( dev-db/postgresql:* ) + sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/sql + src/plugins/sqldrivers +) + +src_configure() { + local myconf=( + $(qt_use freetds sql-tds plugin) + $(qt_use mysql sql-mysql plugin) + $(qt_use oci8 sql-oci plugin) + $(qt_use odbc sql-odbc plugin) + $(qt_use postgres sql-psql plugin) + $(qt_use sqlite sql-sqlite plugin) + $(usex sqlite -system-sqlite '') + ) + + use mysql && myconf+=("-I${EPREFIX}/usr/include/mysql" "-L${EPREFIX}/usr/$(get_libdir)/mysql") + use oci8 && myconf+=("-I${ORACLE_HOME}/include" "-L${ORACLE_HOME}/$(get_libdir)") + use odbc && myconf+=("-I${EPREFIX}/usr/include/iodbc") + use postgres && myconf+=("-I${EPREFIX}/usr/include/postgresql/pgsql") + + qt5-build_src_configure +} diff --git a/dev-qt/qtsvg/Manifest b/dev-qt/qtsvg/Manifest index b6e7df0b74ac..4904408ed461 100644 --- a/dev-qt/qtsvg/Manifest +++ b/dev-qt/qtsvg/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtsvg-opensource-src-5.6.2.tar.xz 1723056 SHA256 f7a361bf661b31ae7779513559dd0b774171911bc57f5cfb6bed6878ddc8bc4e SHA512 ff78a75d0452de56dfe5b33f64d611c9e75e1a46c2ca168f9d3467ef3bb32f17ef256b45df275ed45bc2215d31dbf321d9cacb3f428096354041481276683958 WHIRLPOOL 12079ed91289cd8096b3119de8d936e3be4f5997754c4274791b0325874db837ea8427503e5d39d9ed68a63bf12ac3ad64d81aaea5a82312013fc062346c2f1e DIST qtsvg-opensource-src-5.7.1.tar.xz 1751536 SHA256 b0f017db8cf18e655e8a6635bc4ddbdbad6f8ef839857451b78942630a4c3947 SHA512 b4ba18a81ddf381f635c608f2ca6f339859b964aedf310fea9b4845d50154b5256759583abe14126e6bb86a9daad8a6e597910ce2036af26ae221b925817e260 WHIRLPOOL 34c018be5a8c8e9d3bec46a1e3680cc8c4d094f0a99336b6245be146feb8a4f76aeb2c752d9af4c597965e25b92f254c9f12709f688eee7b77e2e3785ed5a480 +DIST qtsvg-opensource-src-5.9.2.tar.xz 1777392 SHA256 ba96ebfbb60d2793547295b7122a127d21ba44cf586bfd3c8212c59d68661108 SHA512 c21c5a12fa10ff9f91deda88c99c995ee2138bdffa21c793b0c42f25155f01f87ede5206624b9d82713649f8cf1cfdb95f1d5b7e792de62f3848d3a9ec665fdd WHIRLPOOL 1682dbf75852c15517e6f4101d87d553fa6667243a59a0c5eff8a28367d2f971f66294d1cfe88f7061e397220b59b337b08a98f805305f3b3732623f4788025c diff --git a/dev-qt/qtsvg/qtsvg-5.9.2.ebuild b/dev-qt/qtsvg/qtsvg-5.9.2.ebuild new file mode 100644 index 000000000000..2667ef7e76df --- /dev/null +++ b/dev-qt/qtsvg/qtsvg-5.9.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="SVG rendering library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtwidgets-${PV} + >=sys-libs/zlib-1.2.5 +" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtxml-${PV} ) +" diff --git a/dev-qt/qttest/Manifest b/dev-qt/qttest/Manifest index 0774197e895c..a897f1af9c27 100644 --- a/dev-qt/qttest/Manifest +++ b/dev-qt/qttest/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qttest/qttest-5.9.2.ebuild b/dev-qt/qttest/qttest-5.9.2.ebuild new file mode 100644 index 000000000000..1db027438864 --- /dev/null +++ b/dev-qt/qttest/qttest-5.9.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +VIRTUALX_REQUIRED="test" +inherit qt5-build + +DESCRIPTION="Unit testing library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +RDEPEND=" + ~dev-qt/qtcore-${PV} +" +DEPEND="${RDEPEND} + test? ( + ~dev-qt/qtgui-${PV} + ~dev-qt/qtxml-${PV} + ) +" + +QT5_TARGET_SUBDIRS=( + src/testlib +) diff --git a/dev-qt/qttranslations/Manifest b/dev-qt/qttranslations/Manifest index 2c2b08315a2f..6002d3a0fe57 100644 --- a/dev-qt/qttranslations/Manifest +++ b/dev-qt/qttranslations/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qttranslations-opensource-src-5.6.2.tar.xz 1204148 SHA256 7d793b447c1673206e0c5512883ad1435554dbaebf2152475b6d4a7ba6efa421 SHA512 7b2cf7cc1560866a8172ca6478f94b3f737e5b71d60afe1b4dbe302c7f589a42a4156bb886bedc1d9339de7d70e71a28ab96785ba597d050161aac28d16e40a8 WHIRLPOOL e35729644293235e22c1607651ae46e0840d380737a7bba43d958f85ee1e8d8f82842b8124108a64240ecdf5271c9bed2f8ef7d1543ab74457b506316eb015b0 DIST qttranslations-opensource-src-5.7.1.tar.xz 1206116 SHA256 16ecdb09532724e80fa6202e5604d80877923b652b771b6020cea36bee0258e7 SHA512 8d7705d1fb2569f90bb7fbb9bdfe7ffdbf7a8746ee4da634f66fb7f70c14b91f7257165b6ac041cbe4918b88e6ec344c8e554f1e7339257e7e1b9a06e78ba837 WHIRLPOOL 61486e72f2ff43649e61cda6f8ab98f8c85636f4e96ea6c648dc204fdb998f0a60114faa2a75e7f6b2e5bc45a8ef2205923a62436b11616fb8fe2d2693104d30 +DIST qttranslations-opensource-src-5.9.2.tar.xz 1412128 SHA256 5df16ddf9da0f42a3040aef2a92ad7da67381e2e4c132632fddf3a7a8026d12f SHA512 e84e9741cc6f938556c4fd423fef4852b039ebe4afc12db8570a6540717297541f632a07d750ee25c46eea9ae858a78fba18be49597c47cb8c9165b961e0ee94 WHIRLPOOL 1ccf4921c795053aaf86d89dda9f995a3708de8344250256d5557dcc471a5083540b0166fdf4f3f900c10fe2b38031b79011711fe7b9b871d853632c44f704e0 diff --git a/dev-qt/qttranslations/qttranslations-5.9.2.ebuild b/dev-qt/qttranslations/qttranslations-5.9.2.ebuild new file mode 100644 index 000000000000..2cd296662734 --- /dev/null +++ b/dev-qt/qttranslations/qttranslations-5.9.2.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Translation files for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/linguist-tools-${PV} + ~dev-qt/qtcore-${PV} +" +RDEPEND="" diff --git a/dev-qt/qtvirtualkeyboard/Manifest b/dev-qt/qtvirtualkeyboard/Manifest index 9a92fce1df80..5f92a69e96ee 100644 --- a/dev-qt/qtvirtualkeyboard/Manifest +++ b/dev-qt/qtvirtualkeyboard/Manifest @@ -1 +1,2 @@ DIST qtvirtualkeyboard-opensource-src-5.7.1.tar.xz 10014088 SHA256 b28b8b937ed15d794c5ebc93e9556d08a0c9761a434864ebf2b454554e652add SHA512 31481a88b91ef936437e54c863d39a63917496bd5701670ed38f1695c7cc6d867b8cc0eede62a523d5fea3819bc2688845277c9737349a0982de711cc464f00f WHIRLPOOL 9a99dd194e69b68cf4144f9f6349caf747b177ddf23330ab1b66e189d37943c18fe8a1a4da94550d6034b5919c619e7c53f0c869eb8b99f938b7786e75ebb029 +DIST qtvirtualkeyboard-opensource-src-5.9.2.tar.xz 10036440 SHA256 e836ca0348b21df28635e541713726444abed7b53a0acf3358cc90532e64c6fc SHA512 f8c39b789e877e60389ee9aab4a5c17e6018093f72fc57f526ce2584183135206306d4d5a7c7551a6de45969aa6f55444bb39f4ea3324cdf10611533f0bc2b22 WHIRLPOOL c6171b98c8e36a09c7d752cbada93b2cdccfa6b875ceca502faa16c1ae9eb4025562929c08db279857cb7fdb0ae4172ed19dff5f2450c0029a58d1b7fa67c4f4 diff --git a/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.9.2.ebuild b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.9.2.ebuild new file mode 100644 index 000000000000..2cbcca31ea53 --- /dev/null +++ b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.9.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Virtual keyboard plugin for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +# TODO: unbudle libraries for more layouts +IUSE="handwriting +spell +xcb" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtsvg-${PV} + spell? ( app-text/hunspell:= ) + xcb? ( x11-libs/libxcb:= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local myqmakeargs=( + $(usex handwriting CONFIG+=lipi-toolkit "") + $(usex spell "" CONFIG+=disable-hunspell) + $(usex xcb "" CONFIG+=disable-desktop) + CONFIG+="lang-ar_AR lang-da_DK lang-de_DE lang-en_GB \ + lang-es_ES lang-fa_FA lang-fi_FI lang-fr_FR \ + lang-hi_IN lang-it_IT lang-nb_NO lang-pl_PL \ + lang-pt_PT lang-ro_RO lang-ru_RU lang-sv_SE" + ) + + qt5-build_src_configure +} diff --git a/dev-qt/qtwayland/Manifest b/dev-qt/qtwayland/Manifest index 822a1c63e872..edd2e48aa504 100644 --- a/dev-qt/qtwayland/Manifest +++ b/dev-qt/qtwayland/Manifest @@ -1,2 +1,3 @@ DIST qtwayland-opensource-src-5.6.2.tar.xz 267028 SHA256 035c3199f4719627b64b7020f0f4574da2b4cb78c6981aba75f27b872d8e6c86 SHA512 193c1ef58282bf9597303996d8e03853d95c2e4f79a62bdcfc6ad48f397dbb71f8f2e94f8ab334c7fae0a6a0e5b79e8f762468be6a3b66eb3636c465fabff51d WHIRLPOOL e870e8be2ef393b8f5ba248e0f51e30297aa6bb0864c821c217c79e727d778751f89067913f0b7db0e0075d12843653529ce2c8cce37f429cf24265639db1e55 DIST qtwayland-opensource-src-5.7.1.tar.xz 291776 SHA256 f23fc5e180c8af5b38419d84e44f1f342904a197c2382a7b03f83de2136201c7 SHA512 41a6699b9048a859bb0cb1e37cd0a3977f52a5a223d4f6a4ce5e1402c5b829cc907593ce2b70f4ec24dfad147251bb2f20e889eae26072cf53e774b4585f2921 WHIRLPOOL 959fb40ce79d9d09ee3c3ec436d3be229b614da15712494d943dd2cded12f0e29f9750b6e103307bb4e27e00a28f5b2ac508a29dff4f25e1b677f2f2519de98d +DIST qtwayland-opensource-src-5.9.2.tar.xz 311052 SHA256 f6434d03f933867dfb219abec2cf19e2c1d1ef23d46d12cb9333c8066027f6c6 SHA512 28b6f77be5289cb9eba0e3e6b220d2c99d2ab4dbae8e02caecd7651b5ae33c09f117545664b01649ca52b27025cc15853806ece8dc10713c3d90832416c7def6 WHIRLPOOL 2d0c1ea872dbe4bd48dd1564062310eb2933e44dafe9c4547137f3b63aaddfe9a70aca806e48120abdbfa0de4eef9424258012afe2debe4c01012f3a94bcd932 diff --git a/dev-qt/qtwayland/metadata.xml b/dev-qt/qtwayland/metadata.xml index 5aa0b525d009..9bd59538a9fe 100644 --- a/dev-qt/qtwayland/metadata.xml +++ b/dev-qt/qtwayland/metadata.xml @@ -6,6 +6,7 @@ Gentoo Qt Project + Enable support for input devices via dev-libs/libinput Build QML/QtQuick bindings Build Qt compositor for wayland diff --git a/dev-qt/qtwayland/qtwayland-5.9.2.ebuild b/dev-qt/qtwayland/qtwayland-5.9.2.ebuild new file mode 100644 index 000000000000..43c33faf510b --- /dev/null +++ b/dev-qt/qtwayland/qtwayland-5.9.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Wayland platform plugin for Qt" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="+libinput xcomposite" + +DEPEND=" + >=dev-libs/wayland-1.6.0 + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV}[egl,libinput?] + media-libs/mesa[egl] + >=x11-libs/libxkbcommon-0.2.0 + xcomposite? ( + x11-libs/libX11 + x11-libs/libXcomposite + ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_config libinput xkbcommon-evdev \ + src/client/client.pro \ + src/compositor/wayland_wrapper/wayland_wrapper.pri \ + src/plugins/shellintegration/ivi-shell/ivi-shell.pro \ + tests/auto/compositor/compositor/compositor.pro + + use xcomposite || rm -r config.tests/xcomposite || die + + qt5-build_src_prepare +} diff --git a/dev-qt/qtwebchannel/Manifest b/dev-qt/qtwebchannel/Manifest index bf237d21ac85..b1ca4ad2c456 100644 --- a/dev-qt/qtwebchannel/Manifest +++ b/dev-qt/qtwebchannel/Manifest @@ -1,2 +1,3 @@ DIST qtwebchannel-opensource-src-5.6.2.tar.xz 119792 SHA256 700efdef5f51bdb77093f4db212afe275ad35a710ea08ba0e9e9cbc8f09f1a52 SHA512 76963aea9a287b360110086ffa146f0b93eac963e6a4adcd6ff6fec83fc5416aee1e374d50a4a47dd86edf25eb486f6f8ef23becdba46d891f5484ec5f336de4 WHIRLPOOL 62076abdec83d872abde159b923ab0a403ac659346824b0e7637cc2c6400fca8a97f1652df25faf0b08ce4cd89e801a5e2fdfda67c3555cdb04e44fbf8262b09 DIST qtwebchannel-opensource-src-5.7.1.tar.xz 122436 SHA256 63ab3ac76ff993009cfa978162a764e05b763cacb70d1a862893f8de4492319b SHA512 643ca738e07c9a719d1d17ee23faf0d7bb3a62e6ee03e5b4f78e1cdf8d1b13ed71416b86bbb40c93d121a6569dc55d0373f1cb0961c8db07762c93592ca49af8 WHIRLPOOL acc3fe032452a35a765799995e9318f280cd67dd9d72ad9580254a8f645461d835ad0e6b4b9c95fe92581daee5ab298c6d195f75abd231cff8f0cab71f511b7a +DIST qtwebchannel-opensource-src-5.9.2.tar.xz 147388 SHA256 9c1b4defecadd7f9ee15d5815d464abef0961fc565cc7831720fc7c0c0d13a26 SHA512 cab160532483928d18278be9430147090fcc12ffc2b7f9c4529a9e33bcafe939b0b6bfd8e46a6467709043cd54aabc697166f74927b24f1e654b522edb6231db WHIRLPOOL 548eb5b7410e17a045566c25c88beabb2e1e52babcfaf0ca8a707893138d55a41da91361ffd66fdf85fd1cd50cda3f83c45731191587ec98f44cbf0216bb4075 diff --git a/dev-qt/qtwebchannel/qtwebchannel-5.9.2.ebuild b/dev-qt/qtwebchannel/qtwebchannel-5.9.2.ebuild new file mode 100644 index 000000000000..42caf288363f --- /dev/null +++ b/dev-qt/qtwebchannel/qtwebchannel-5.9.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Qt5 module for integrating C++ and QML applications with HTML/JavaScript clients" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +fi + +IUSE="qml" + +DEPEND=" + ~dev-qt/qtcore-${PV} + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_mod qml quick src/src.pro + qt_use_disable_mod qml qml src/webchannel/webchannel.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest index 1ada27058aab..1667ff30498f 100644 --- a/dev-qt/qtwebengine/Manifest +++ b/dev-qt/qtwebengine/Manifest @@ -1,2 +1,3 @@ DIST qtwebengine-opensource-src-5.6.2.tar.xz 143752452 SHA256 2f0a1648e1a8b22bad0134f2b37d69d185074393c398c1a3c6a83b910ff39740 SHA512 c30a270bfb254a18d4b89af8ae28789912d6157cd58010b6838461c332c32c667c15b683d290fd14615b9f0be20aca9957bd8657c4abaa8d77c28278c58f7282 WHIRLPOOL 94e627c369cfa18a7c878f75007698839aa1cd1b10df4de8e42b2f393dcd2dedec33930c1fa41c50bfa39e63089d66c7c5d0861ea7093356b1cc2e93a605893e DIST qtwebengine-opensource-src-5.7.1.tar.xz 163782564 SHA256 2101883e3d632b50133a14e3bbdc1d4d649e405c9618f2eef1b72a7b821ccc2b SHA512 4f53e51141d8e3479d22062a80af0359d3d7ab6bc0d2d6530c6af2d3e5b625f7192cda2a9eb85c657864ec3b30bdc797d3bff57db4c71211e71bb4ee5ac9c71a WHIRLPOOL cebf17fc3e5c75406789c36e12dd32b0b6e6111dad6bf8f48bb07fd5d8ea76d78cd2cc5c3ad3021c8de9b91974afd7688ea384626d7e308dedd67664f1eec104 +DIST qtwebengine-opensource-src-5.9.2.tar.xz 217353592 SHA256 cab069e4589f806640bebe4077c70e5cd5ffeb146c6e8caca6c4454fc0c4a108 SHA512 9139533b8b384519cb49a909ed678344c94cdeeed40048d0cf8482506defaea0ea8f06396576fae9f51e4b073a04ee63d1b1b42b8cd82a6d4592bc0db983c715 WHIRLPOOL 5435e594dc304305b8ca2b9b61a06b0477d8539df818a5fc1faefd1b6a95f11cf385391c6e3ea8e41d8e75149d1bc5b37f7ca49f14203fe2213a4f0de55a547b diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.9.0-paxmark-mksnapshot.patch b/dev-qt/qtwebengine/files/qtwebengine-5.9.0-paxmark-mksnapshot.patch new file mode 100644 index 000000000000..5eb8ce12cff3 --- /dev/null +++ b/dev-qt/qtwebengine/files/qtwebengine-5.9.0-paxmark-mksnapshot.patch @@ -0,0 +1,46 @@ +--- a/src/3rdparty/chromium/v8/src/v8.gyp ++++ b/src/3rdparty/chromium/v8/src/v8.gyp +@@ -36,6 +36,7 @@ + 'v8_experimental_extra_library_files%': [], + 'v8_enable_inspector%': 0, + 'mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', ++ 'mksnapshot_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot_u<(EXECUTABLE_SUFFIX)', + 'mkpeephole_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mkpeephole<(EXECUTABLE_SUFFIX)', + 'v8_os_page_size%': 0, + }, +@@ -2432,7 +2433,7 @@ + ] + }, + { +- 'target_name': 'mksnapshot', ++ 'target_name': 'mksnapshot_u', + 'type': 'executable', + 'dependencies': [ + 'v8_base', +@@ -2485,5 +2486,26 @@ + }], + ], + }, ++ { ++ 'target_name': 'mksnapshot', ++ 'type': 'executable', ++ 'dependencies': ['mksnapshot_u'], ++ 'actions': [ ++ { ++ 'action_name': 'paxmark_m_mksnapshot', ++ 'inputs': [ ++ '<(mksnapshot_u_exec)', ++ ], ++ 'outputs': [ ++ '<(mksnapshot_exec)', ++ ], ++ 'action': [ ++ 'sh', ++ '-c', ++ 'cp <(mksnapshot_u_exec) <(mksnapshot_exec) && paxmark.sh m <(mksnapshot_exec)', ++ ], ++ }, ++ ], ++ }, + ], + } diff --git a/dev-qt/qtwebengine/qtwebengine-5.9.2.ebuild b/dev-qt/qtwebengine/qtwebengine-5.9.2.ebuild new file mode 100644 index 000000000000..52d738f401f9 --- /dev/null +++ b/dev-qt/qtwebengine/qtwebengine-5.9.2.ebuild @@ -0,0 +1,114 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +inherit multiprocessing pax-utils python-any-r1 qt5-build + +DESCRIPTION="Library for rendering dynamic web content in Qt5 C++ and QML applications" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +IUSE="alsa bindist geolocation pax_kernel pulseaudio +system-ffmpeg +system-icu widgets" + +RDEPEND=" + app-arch/snappy:= + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtwebchannel-${PV}[qml] + dev-libs/expat + dev-libs/libevent:= + dev-libs/libxml2 + dev-libs/libxslt + dev-libs/protobuf:= + media-libs/fontconfig + media-libs/freetype + media-libs/harfbuzz:= + media-libs/libpng:0= + >=media-libs/libvpx-1.5:=[svc] + media-libs/libwebp:= + media-libs/mesa + media-libs/opus + net-libs/libsrtp:0= + sys-apps/dbus + sys-apps/pciutils + sys-libs/libcap + sys-libs/zlib[minizip] + virtual/jpeg:0 + virtual/libudev + x11-libs/libdrm + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXScrnSaver + x11-libs/libXtst + alsa? ( media-libs/alsa-lib ) + geolocation? ( ~dev-qt/qtpositioning-${PV} ) + pulseaudio? ( media-sound/pulseaudio:= ) + system-ffmpeg? ( media-video/ffmpeg:0= ) + system-icu? ( dev-libs/icu:= ) + widgets? ( ~dev-qt/qtwidgets-${PV} ) +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + dev-util/gperf + dev-util/ninja + dev-util/re2c + sys-devel/bison + pax_kernel? ( sys-apps/elfix ) +" + +src_prepare() { + use pax_kernel && PATCHES+=( "${FILESDIR}/${PN}-5.9.0-paxmark-mksnapshot.patch" ) + + # bug 620444 - ensure local headers are used + find "${S}" -type f -name "*.pr[fio]" | xargs sed -i -e 's|INCLUDEPATH += |&$$QTWEBENGINE_ROOT/include |' || die + + qt_use_disable_config alsa alsa src/core/config/linux.pri + qt_use_disable_config pulseaudio pulseaudio src/core/config/linux.pri + + qt_use_disable_mod geolocation positioning \ + mkspecs/features/configure.prf \ + src/core/core_chromium.pri \ + src/core/core_common.pri + + qt_use_disable_mod widgets widgets src/src.pro + + qt5-build_src_prepare +} + +src_configure() { + export NINJA_PATH=/usr/bin/ninja + export NINJAFLAGS="${NINJAFLAGS:--j$(makeopts_jobs) -l$(makeopts_loadavg "${MAKEOPTS}" 0) -v}" + + local myqmakeargs=( + $(usex bindist '' 'WEBENGINE_CONFIG+=use_proprietary_codecs') + $(usex system-ffmpeg 'WEBENGINE_CONFIG+=use_system_ffmpeg' '') + $(usex system-icu 'WEBENGINE_CONFIG+=use_system_icu' '') + ) + qt5-build_src_configure +} + +src_install() { + qt5-build_src_install + + # bug 601472 + if [[ ! -f ${D%/}${QT5_LIBDIR}/libQt5WebEngine.so ]]; then + die "${CATEGORY}/${PF} failed to build anything. Please report to https://bugs.gentoo.org/" + fi + + pax-mark m "${D%/}${QT5_LIBEXECDIR}"/QtWebEngineProcess +} diff --git a/dev-qt/qtwebkit/Manifest b/dev-qt/qtwebkit/Manifest index ade63187dcf1..547c7cbac1cb 100644 --- a/dev-qt/qtwebkit/Manifest +++ b/dev-qt/qtwebkit/Manifest @@ -3,3 +3,4 @@ DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe DIST qtwebkit-2.3.4.tar.gz 51648808 SHA256 c6cfa9d068f7eb024fee3f6c24f5b8b726997f669007587f35ed4a97d40097ca SHA512 f7aa3762f84b8ef6c75ceb40beaad750b5c09bb3f14964cda17b42f489ff2c876e35678b57404057e909948160450a144de67ad1337a42992dc5a1d4b796bec4 WHIRLPOOL 1d8e78a8d7f920b132ed79dbc6a6a71b784080d8aa4b9123f22797efa6062eb4f85236ab66f3232900a131049d7c78fc5fc333511b161dc72c30434cd7fef542 DIST qtwebkit-opensource-src-5.6.2.tar.xz 35306252 SHA256 528a6b8b1c5095367b26e8ce4f3a46bb739e2e9913ff4dfc6ef58a04fcd73966 SHA512 d3f795463c957b4927d61280df831d08282bf6c9e624cf1db2709ab56ab218eb028192a4efaef21e0bdb28edd42de8ec08995f37fc828bde99000cf6919c33c3 WHIRLPOOL 9667f2f68bb832fdf3f5de14da641afd3b71a0c270e436257bc37ae86ed7d8d3434cdcada3b8818ab73ac6866bd4a69892ae682618d6d6a00cccccd287bda4bf DIST qtwebkit-opensource-src-5.7.1.tar.xz 35298736 SHA256 a46cf7c89339645f94a5777e8ae5baccf75c5fc87ab52c9dafc25da3327b5f03 SHA512 538928ada8fd25c01f0b78efac79e004904e6e4ec110108c492877e334acd5d9253653d3b207e535d1e08d092af2833a7566cebb2bf8b90069944634bf24f60a WHIRLPOOL d2dce72777a6babb1c35025ff6d882b7f48895dca4425b9e29b099e45282e8538548a653f0757998d6a619d706544fad0363199d8979ccca94762ba39b6516bd +DIST qtwebkit-opensource-src-5.9.1.tar.xz 35300628 SHA256 28a560becd800a4229bfac317c2e5407cd3cc95308bc4c3ca90dba2577b052cf SHA512 79316ab746a230fdb290e28629d7cec5fca75119ba8868060742c682ab86490de9ffd8e517569aa7412f35fd709568dbb5f7d2d467bdb4461e192f8b05d6f1e5 WHIRLPOOL 85bb21fb4ed3895c8d78d86a0725d650179b6d2bfea418cf8a54b98d8dac91f98a1423c78058feed54349ebb25fc934ecd82122413f22338b6d49083e21d41b9 diff --git a/dev-qt/qtwebkit/files/qtwebkit-5.8.0-disable-gstreamer.patch b/dev-qt/qtwebkit/files/qtwebkit-5.8.0-disable-gstreamer.patch new file mode 100644 index 000000000000..867e8dcb8ef9 --- /dev/null +++ b/dev-qt/qtwebkit/files/qtwebkit-5.8.0-disable-gstreamer.patch @@ -0,0 +1,15 @@ +--- a/Tools/qmake/mkspecs/features/features.prf ++++ b/Tools/qmake/mkspecs/features/features.prf +@@ -101,12 +101,6 @@ defineTest(detectFeatures) { + + # HTML5 Media Support for builds with GStreamer + unix:!mac:qtConfig(pkg-config) { +- packagesExist("glib-2.0 gio-2.0 gstreamer-1.0 gstreamer-plugins-base-1.0") { +- WEBKIT_CONFIG += video use_gstreamer +- } else: packagesExist("glib-2.0 gio-2.0 \'gstreamer-0.10 >= 0.10.30\' \'gstreamer-plugins-base-0.10 >= 0.10.30\'") { +- WEBKIT_CONFIG += video use_gstreamer use_gstreamer010 +- } +- use?(gstreamer): WEBKIT_CONFIG += use_native_fullscreen_video + } + + !enable?(video):qtHaveModule(multimediawidgets) { diff --git a/dev-qt/qtwebkit/metadata.xml b/dev-qt/qtwebkit/metadata.xml index cd82bd3bc06c..885ad268a503 100644 --- a/dev-qt/qtwebkit/metadata.xml +++ b/dev-qt/qtwebkit/metadata.xml @@ -9,6 +9,7 @@ Add support for exceptions - like catching them inside the event loop (recommended by upstream) Enable physical position determination via dev-qt/qtpositioning + Use GLES 2.0 or later instead of full OpenGL Enable HTML5 audio/video support via media-libs/gstreamer using SLOT 1.0 Enable HTML5 audio/video support via media-libs/gstreamer using SLOT 0.10 Enable HTML5 audio/video support via dev-qt/qtmultimedia diff --git a/dev-qt/qtwebkit/qtwebkit-5.9.1.ebuild b/dev-qt/qtwebkit/qtwebkit-5.9.1.ebuild new file mode 100644 index 000000000000..af4f3594111b --- /dev/null +++ b/dev-qt/qtwebkit/qtwebkit-5.9.1.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +QT_MIN_VER="5.9.1:5" +inherit python-any-r1 qt5-build + +DESCRIPTION="WebKit rendering library for the Qt5 framework (deprecated)" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +fi + +# TODO: qttestlib + +IUSE="geolocation gstreamer gles2 +jit multimedia opengl orientation printsupport qml test webchannel webp" +REQUIRED_USE="?? ( gstreamer multimedia )" + +RDEPEND=" + dev-db/sqlite:3 + dev-libs/icu:= + >=dev-libs/leveldb-1.18-r1 + dev-libs/libxml2:2 + dev-libs/libxslt + >=dev-qt/qtcore-${QT_MIN_VER}[icu] + >=dev-qt/qtgui-${QT_MIN_VER} + >=dev-qt/qtnetwork-${QT_MIN_VER} + >=dev-qt/qtsql-${QT_MIN_VER} + >=dev-qt/qtwidgets-${QT_MIN_VER} + media-libs/fontconfig:1.0 + media-libs/libpng:0= + >=sys-libs/zlib-1.2.5 + virtual/jpeg:0 + virtual/opengl + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXrender + geolocation? ( >=dev-qt/qtpositioning-${QT_MIN_VER} ) + gstreamer? ( + dev-libs/glib:2 + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + ) + multimedia? ( >=dev-qt/qtmultimedia-${QT_MIN_VER}[widgets] ) + opengl? ( + >=dev-qt/qtgui-${QT_MIN_VER}[gles2=] + >=dev-qt/qtopengl-${QT_MIN_VER} + ) + orientation? ( >=dev-qt/qtsensors-${QT_MIN_VER} ) + printsupport? ( >=dev-qt/qtprintsupport-${QT_MIN_VER} ) + qml? ( >=dev-qt/qtdeclarative-${QT_MIN_VER} ) + webchannel? ( >=dev-qt/qtwebchannel-${QT_MIN_VER} ) + webp? ( media-libs/libwebp:0= ) +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + dev-lang/ruby + dev-util/gperf + sys-devel/bison + sys-devel/flex + virtual/rubygems + test? ( >=dev-qt/qttest-${QT_MIN_VER} ) +" + +PATCHES=( + "${FILESDIR}/${PN}-5.4.2-system-leveldb.patch" +) + +src_prepare() { + # ensure bundled library cannot be used + rm -r Source/ThirdParty/leveldb || die + + # force using system library + sed -i -e 's/qtConfig(system-jpeg)/true/' \ + -e 's/qtConfig(system-png)/true/' \ + Tools/qmake/mkspecs/features/features.prf || die + + # bug 466216 + sed -i -e '/CONFIG +=/s/rpath//' \ + Source/WebKit/qt/declarative/{experimental/experimental,public}.pri \ + Tools/qmake/mkspecs/features/{force_static_libs_as_shared,unix/default_post}.prf \ + || die + + qt_use_disable_config opengl opengl Tools/qmake/mkspecs/features/features.prf + + qt_use_disable_mod geolocation positioning Tools/qmake/mkspecs/features/features.prf + qt_use_disable_mod multimedia multimediawidgets Tools/qmake/mkspecs/features/features.prf + qt_use_disable_mod orientation sensors Tools/qmake/mkspecs/features/features.prf + qt_use_disable_mod printsupport printsupport Tools/qmake/mkspecs/features/features.prf + qt_use_disable_mod qml quick Tools/qmake/mkspecs/features/features.prf + qt_use_disable_mod webchannel webchannel \ + Source/WebKit2/Target.pri \ + Source/WebKit2/WebKit2.pri + + if ! use gstreamer; then + PATCHES+=("${FILESDIR}/${PN}-5.8.0-disable-gstreamer.patch") + fi + + # bug 562396 + use jit || PATCHES+=("${FILESDIR}/${PN}-5.5.1-disable-jit.patch") + + use webp || sed -i -e '/config_libwebp: WEBKIT_CONFIG += use_webp/d' \ + Tools/qmake/mkspecs/features/features.prf || die + + # bug 458222 + sed -i -e '/SUBDIRS += examples/d' Source/QtWebKit.pro || die + + qt5-build_src_prepare +} + +src_install() { + qt5-build_src_install + + # bug 572056 + if [[ ! -f ${D%/}${QT5_LIBDIR}/libQt5WebKit.so ]]; then + eerror "${CATEGORY}/${PF} could not build due to a broken ruby environment." + die 'Check "eselect ruby" and ensure you have a working ruby in your $PATH' + fi +} diff --git a/dev-qt/qtwebsockets/Manifest b/dev-qt/qtwebsockets/Manifest index bb57eff5d4af..c10a3bf29457 100644 --- a/dev-qt/qtwebsockets/Manifest +++ b/dev-qt/qtwebsockets/Manifest @@ -1,2 +1,3 @@ DIST qtwebsockets-opensource-src-5.6.2.tar.xz 171004 SHA256 3cd9d4bbff8e6be5e252f00fc9ecb9ac2d8a193020288c7d1e82583daeb5ba35 SHA512 6b4adc5a2ba3403b6a733b84bb9bb7a696db50c264b26841f67b6cc20bff44bf9743d3fd2d95f94b3e68127be6f411c3398ed7e910480658c3065549302b1958 WHIRLPOOL cb26a843312bffc75cbf1f7742e96ba78ab1363970e692e78daedd165a525dc96d1ee1d898f762c7bb5d1bccb3c09011d8f1d569ef4a7255e0f18fd0649d71d5 DIST qtwebsockets-opensource-src-5.7.1.tar.xz 193204 SHA256 5c2a75b68e7f2e98530659b33bb08edee83013832dbf99cc5b40afc8a90652d1 SHA512 3cca317d71513a0b11d5b46d6caee44d77a7f65eff09dbd6c180ad682a0271924e05efc28e6d31c9e982b6ab0b3fe1370606eea372e2fefd4525237496d2c7c9 WHIRLPOOL 036bbe99c69e4ec71198b2691583c240f3255c27408413e0962dea6addd70a1f1a4d132eda05e7ec3c9350c796137c764fc7b5742d0a0817c63be2dde7ffb8b7 +DIST qtwebsockets-opensource-src-5.9.2.tar.xz 199312 SHA256 afddc1bd915ea47ccbec968a7af02e2a5405c717830e4671924fe35b55e81674 SHA512 9330d6806251bc77d4c2a497a31b1b0e42a1e6bfe3ea7c00cee123052e9e1f9080e33cf4dfcd6ee6e4732c62f41257a77ec25ad607528f4e8ebe61ccaee3e159 WHIRLPOOL 64a2ff34b6798a7d64c2f12d5925a18cf9c95079c931060a3d906fc33ce9bd7efa208fffdfba9f3399c8198df51ac303412811acca90a74ea9231c1251f89598 diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.9.2.ebuild b/dev-qt/qtwebsockets/qtwebsockets-5.9.2.ebuild new file mode 100644 index 000000000000..edf0d08a8c4f --- /dev/null +++ b/dev-qt/qtwebsockets/qtwebsockets-5.9.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Implementation of the WebSocket protocol for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" +fi + +IUSE="qml +ssl" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtnetwork-${PV}[ssl=] + qml? ( ~dev-qt/qtdeclarative-${PV} ) + +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_mod qml quick src/src.pro + + qt5-build_src_prepare +} diff --git a/dev-qt/qtwebview/Manifest b/dev-qt/qtwebview/Manifest index cfa4b2cb736b..4c764220cf2b 100644 --- a/dev-qt/qtwebview/Manifest +++ b/dev-qt/qtwebview/Manifest @@ -1 +1,2 @@ DIST qtwebview-opensource-src-5.7.1.tar.xz 107388 SHA256 b3bcf9693e0205263f5d227f2204cf12c3a3d1e200b3114723511ee3bdf2159f SHA512 a0ed2c203e3638b3fa1e8fc051bc8dec51ca32b16da684fbf73c6f342e579c11a382c799797c593abb35df438699124fa169d1463affa1a2d0b55af57f05a011 WHIRLPOOL 6fa80d034344b3915ad32c323f36be27cea96f149b63fb785f4ab68349784c81ddd51d0796ef64d0b2b35da9cb5c5419a86fe3736e99051eb4cdb0092148e18f +DIST qtwebview-opensource-src-5.9.2.tar.xz 108060 SHA256 fccaec79c73c62010f90bdd1a85b31d5caa63e0a1a28983bb74f6127afe1b8b1 SHA512 2b141977fc5219321715aa66042eea7c4a9ce913fe50e9d8e84f62ebf0316aa13c5b2f1a4349c3ad8a47850930e5c1dd5f56e1c3dada97730afe65d69d1efbfb WHIRLPOOL 6309bbc8f96574cd92cc4fad0ee5e782a31a6c05bb9b4d400c5514fd638c48e07eeed9b34edc9999d85468f9a560e67570965d25db2fbdf7bfa87af6dec4b4f4 diff --git a/dev-qt/qtwebview/qtwebview-5.9.2.ebuild b/dev-qt/qtwebview/qtwebview-5.9.2.ebuild new file mode 100644 index 000000000000..95f5a9dc76be --- /dev/null +++ b/dev-qt/qtwebview/qtwebview-5.9.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Module for displaying web content in a QML application using the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtwebengine-${PV} +" +RDEPEND="${DEPEND}" diff --git a/dev-qt/qtwidgets/Manifest b/dev-qt/qtwidgets/Manifest index 61d921a97dfe..3f9b168e930c 100644 --- a/dev-qt/qtwidgets/Manifest +++ b/dev-qt/qtwidgets/Manifest @@ -1,2 +1,3 @@ DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtwidgets/qtwidgets-5.9.2.ebuild b/dev-qt/qtwidgets/qtwidgets-5.9.2.ebuild new file mode 100644 index 000000000000..ed7f16fb8999 --- /dev/null +++ b/dev-qt/qtwidgets/qtwidgets-5.9.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +inherit qt5-build + +DESCRIPTION="Set of components for creating classic desktop-style UIs for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +# keep IUSE defaults in sync with qtgui +IUSE="gles2 gtk +png +xcb" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=,png=,xcb?] + gtk? ( + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/pango + ) +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/tools/uic + src/widgets + src/plugins/platformthemes +) + +QT5_GENTOO_CONFIG=( + gtk:gtk3: + !:no-widgets: +) + +src_configure() { + local myconf=( + -opengl $(usex gles2 es2 desktop) + $(qt_use gtk) + $(qt_use png libpng system) + $(qt_use xcb xcb system) + $(qt_use xcb xkbcommon system) + $(usex xcb '-xcb-xlib -xinput2 -xkb' '') + ) + qt5-build_src_configure +} diff --git a/dev-qt/qtx11extras/Manifest b/dev-qt/qtx11extras/Manifest index d267b1640401..7ac13cde0541 100644 --- a/dev-qt/qtx11extras/Manifest +++ b/dev-qt/qtx11extras/Manifest @@ -1,2 +1,3 @@ DIST qtx11extras-opensource-src-5.6.2.tar.xz 33640 SHA256 71ffde1cfaeec310677b69ecd16cb5992e8885cf3e73b4cec7d6e7a115b40ced SHA512 52158b0de2d30ad629e066b34dff0665a70cb9ab895773f3bc129c15ca8072b82ec6759f4d7b9f5d893355e28f1a916a015c6726db289845d1854f9544336f31 WHIRLPOOL 2f0b09992a9a477eb4a40ea04ba05dbf1db08c2df745662c7d05d7abc3886aa51eb2cf7fec79a4dac6f1055fa636839a064cff7479835c5218e9d40574ef16cb DIST qtx11extras-opensource-src-5.7.1.tar.xz 59656 SHA256 5f5a0c2cc66ec01c2f2f31eff32fea26bd0bc03741a5dfd803b13870aa4ce427 SHA512 04359d85fad3dd51d6364c5218d5f76a384ec0d2082cefc7c67c5a8899cb19df3c9ce750b6707acfecf0a5ea57fb8cb737e5a8d2af3c63345f167f24712aaaee WHIRLPOOL 1f8bbb1583b2919a10f0684d09c420165b1919409aee662cff0037827e1231df2edac3d0f9f51e6dc7e57d028c8dc8e967c2bb4883d85668b9a7b29686b03593 +DIST qtx11extras-opensource-src-5.9.2.tar.xz 76624 SHA256 db85450ad4851816a4fade1ffc10d078d28f2cca174cffa6cbd6d1220b395ac5 SHA512 eb41aa76186e6ecea4caafc4c318c58d0f173331895c4e76e0eed8d7654b575c64dd35ed924b7c4d6a3c4e0d4d998c78aef1c484888e44b6fe87cbdd8aaf4181 WHIRLPOOL 10f6423ea20c5faa40818cb8c8bbcb55d6e6154f588718e143a8f345d3adec40c15f4ee5b9e4e8dc50d34e6d6105545b1707c92d15fc2fa044a25a59fbf9dde6 diff --git a/dev-qt/qtx11extras/qtx11extras-5.9.2.ebuild b/dev-qt/qtx11extras/qtx11extras-5.9.2.ebuild new file mode 100644 index 000000000000..545409027ab6 --- /dev/null +++ b/dev-qt/qtx11extras/qtx11extras-5.9.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Linux/X11-specific support library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[xcb] +" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtwidgets-${PV} ) +" diff --git a/dev-qt/qtxml/Manifest b/dev-qt/qtxml/Manifest index 61d921a97dfe..3f9b168e930c 100644 --- a/dev-qt/qtxml/Manifest +++ b/dev-qt/qtxml/Manifest @@ -1,2 +1,3 @@ DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.1.tar.xz 44992616 SHA256 edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e SHA512 0506a3a856f76e5ba182e3382a515282b6096f3900fbdc14cd5aec425105ab61922e0ada0361234387335ceb80b3c69e39cd34d75476c2946c4371e7b8c0827f WHIRLPOOL de5ff1380b3fd9cbcca741d212ac516e3f8a31366219605730cf5525a04e4efc9965a9b3cf8e99f50a2912bc7add83f61e7f90a85e176ad2830e4c1422b5d682 +DIST qtbase-opensource-src-5.9.2.tar.xz 45148744 SHA256 7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b SHA512 a2f965871645256f3d019f71f3febb875455a29d03fccc7a3371ddfeb193b0af12394e779df05adf69fd10fe7b0d966f3915a24528ec7eb3bc36c2db6af2b6e7 WHIRLPOOL aed0b8aac590fad17b4f9067b46097e81d9991307b296428a9592d66a7c11967ee3e9a50b1d05afdeb7503470e658b016ec5af5c71e71059bd4c0d391b845f95 diff --git a/dev-qt/qtxml/qtxml-5.9.2.ebuild b/dev-qt/qtxml/qtxml-5.9.2.ebuild new file mode 100644 index 000000000000..d19aa52bbb5a --- /dev/null +++ b/dev-qt/qtxml/qtxml-5.9.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +inherit qt5-build + +DESCRIPTION="Implementation of SAX and DOM for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +RDEPEND=" + ~dev-qt/qtcore-${PV} +" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtnetwork-${PV} ) +" + +QT5_TARGET_SUBDIRS=( + src/xml +) diff --git a/dev-qt/qtxmlpatterns/Manifest b/dev-qt/qtxmlpatterns/Manifest index 98909e5b0bcd..d83a4ca1c898 100644 --- a/dev-qt/qtxmlpatterns/Manifest +++ b/dev-qt/qtxmlpatterns/Manifest @@ -2,3 +2,4 @@ DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e0 DIST qt-everywhere-opensource-src-4.8.7.tar.gz 241075567 SHA256 e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0 SHA512 f9f81a2e7205e1fd05c8d923dc73244f29aa33f951fa6b7c5c8193449328b37084796b9b71ad0c317e4e6fd00017c10ea5d67b1b2032551cde00548522218125 WHIRLPOOL ad8f01172f5bdb3a3a69fe7b03862c4c411bc8d95211053ad66ed1d60a3c0577d073d1075a1e0a80b25d9b2721addda55a2967e6ccf5e194cec8d08770ac5fc2 DIST qtxmlpatterns-opensource-src-5.6.2.tar.xz 1323576 SHA256 7c6df3eebf188d8ce6822a22cebbc63da5ac27047cf1bd7236d5b988244782cc SHA512 780864b839f312143975973b0a63f3d4ad105e8b87f5c71d8fb120c3e249578846e855693cea070510767c6680c2249589f7ad1bcc63488da979f4d8da8910ae WHIRLPOOL fb60edab215e053abd54b978c13e232167782d170db1528c234ccc83882a9bf6690769d037f159b7bdc8c315396a1c91bb2becaa3b329099dd2ea93903cbaf9f DIST qtxmlpatterns-opensource-src-5.7.1.tar.xz 1352472 SHA256 a805938c2ab1379d7dc83dcec606edd7950b5155c073b9eb53c53e62deb5f8e5 SHA512 2acdee1e49a154dd111be6afcb7f765d98fc17c49f79cf08c5fc03cda7e0cab7537e2dd57d976ee13b72c46a577bad2ac8466444ec46b3f14130f71756ac63a2 WHIRLPOOL 9d240d03ecbc1a68803e60cff49680bbac31054fca9a283b0f54aebae551bff7420ca6b648b6904d96b4315994232fbfe1a819b14f3a8d8a402dddecc762cbcd +DIST qtxmlpatterns-opensource-src-5.9.2.tar.xz 1360696 SHA256 0aa6aa83087d5754cfefaa3d119454009fc2dd5f266c1eb2ea7a434cef22d34e SHA512 c14dbd97988473ba73b4e21352c5560278aa4dbfdf2be1d12e9119c0b5dbe8a0e4eff9a682052024a01bb21dcf52d40ba00da98947901fb91518af92a225da83 WHIRLPOOL 98102620b664d4b9469fc40b642f628e0733cc32e2799bc0090e358c4ef01eca0f0d62d05769c77bf024877038a8aacda29a4bc454b082ba0745c3ceeb8790d8 diff --git a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.9.2.ebuild b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.9.2.ebuild new file mode 100644 index 000000000000..4cd0f9311e9c --- /dev/null +++ b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.9.2.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="XPath, XQuery, XSLT, and XML Schema validation library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtnetwork-${PV} +" +RDEPEND="${DEPEND}" diff --git a/dev-ros/roslisp/Manifest b/dev-ros/roslisp/Manifest index 1db01fdae3e1..2742e957fff0 100644 --- a/dev-ros/roslisp/Manifest +++ b/dev-ros/roslisp/Manifest @@ -1,3 +1 @@ -DIST roslisp-1.9.19.tar.gz 115845 SHA256 041a8f143faa6aad8d45961a113a9d258f9e2ed86f06dce045f7fd878b4f6f36 SHA512 1eb7cf6b6e6f3d82321da8caecba97ae3793213faeb0c9723ffa66448e88f819168b63246cb9362373717b65b79e26e0233440719d4805f19767d9152c664bd6 WHIRLPOOL b7b18dc537254e5112a62109bd0a2edc624446309f3221c1192ede69d50657144def74143dbc9ed17e4a0945a85f137c9688ebcc660881e8a4f2c82331bca8d5 -DIST roslisp-1.9.20.tar.gz 115983 SHA256 8bc6f9577162e079eaab43abf52df0a48e5d7393e4c54e9c7786052beb74da8d SHA512 586f881db5412dc7c8f04fd9704f4e01249b04d043937d49f5f9844dbfa072ddd529931289f8824a7a9c3a97b1b1ab855925bf1f97581239643cf1a13c88b02c WHIRLPOOL ef64a24e3a04842b75772fabdfcf2845f51738dfe341aae88bcc02375194b13f08446c0e85f1c12b126992770b1c198749e5310868cd558f9c99912902ee152c DIST roslisp-1.9.21.tar.gz 116725 SHA256 cc47259f9d35856cdc0470e0181f9fcfc02bbd00c894eef624bc451320131794 SHA512 f9988d9da8c80b75e57f764082a372e260f0a6fd5837ef30855b78dc8cf22a1f6eefd08a70136d29602bd163793201f3e4d6204e5d433069c58b8d751dd458e1 WHIRLPOOL 5c5f76e7f38f91c96baa4ae602d3a04de2743214ccf548d94fd109055a02a121399ee20896990de469f1109ff0e9d7e656890e9f374d283b40a296bbb5734e0d diff --git a/dev-ros/roslisp/roslisp-1.9.19.ebuild b/dev-ros/roslisp/roslisp-1.9.19.ebuild deleted file mode 100644 index 13e083962d01..000000000000 --- a/dev-ros/roslisp/roslisp-1.9.19.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -ROS_REPO_URI="https://github.com/ros/roslisp" -KEYWORDS="~amd64" - -inherit ros-catkin - -DESCRIPTION="Lisp client library for ROS" -LICENSE="BSD" -SLOT="0" -IUSE="" - -RDEPEND=" - dev-ros/roslang - dev-lisp/sbcl - dev-ros/rospack - dev-ros/rosgraph_msgs - dev-ros/std_srvs -" -DEPEND="${RDEPEND}" diff --git a/dev-ros/roslisp/roslisp-1.9.20.ebuild b/dev-ros/roslisp/roslisp-1.9.20.ebuild deleted file mode 100644 index 13e083962d01..000000000000 --- a/dev-ros/roslisp/roslisp-1.9.20.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -ROS_REPO_URI="https://github.com/ros/roslisp" -KEYWORDS="~amd64" - -inherit ros-catkin - -DESCRIPTION="Lisp client library for ROS" -LICENSE="BSD" -SLOT="0" -IUSE="" - -RDEPEND=" - dev-ros/roslang - dev-lisp/sbcl - dev-ros/rospack - dev-ros/rosgraph_msgs - dev-ros/std_srvs -" -DEPEND="${RDEPEND}" diff --git a/dev-ruby/acts_as_list/Manifest b/dev-ruby/acts_as_list/Manifest index c0fc2d31c167..66da00efeaab 100644 --- a/dev-ruby/acts_as_list/Manifest +++ b/dev-ruby/acts_as_list/Manifest @@ -1,4 +1,3 @@ -DIST acts_as_list-0.9.4.gem 33280 SHA256 3f3263b2f80924ddb58d65755752eae721400d65415d1d74befb2ea718e56d72 SHA512 c49a27ae806fb974922431c4615e721c5106a20b8595f93fa29376d4470f76788314788635c7616320177c016b1c6829da737f82fd79e14e52d4891769a5a6e3 WHIRLPOOL c15e187dbd18cf820950ad74f0153a8b8a15c40b0609d47b66da0f263482fba2457882dd2f098bc36e20125af2a081834ff7b6a94abbc262c5ba8f5fe4b35e8f -DIST acts_as_list-0.9.5.gem 33280 SHA256 a3041ea13a92491b3821f4e81795ccdaf2b9d214e7a65287e311585fbde18c59 SHA512 6826ad821e889f2ea1ccfb1dd12ce64211e173fcd4970d81ddc6115a8ca08606cc5591cf0f395891cf381f0006b137649072704683134fe68762379b9e22e467 WHIRLPOOL df8d16508cf28391aa7981d3598e5969b648c68ab4c670156731ed267d9be573d473547d5d41a7a97ba2e75600a40030e9891d68d89a74bdbe5bab9786073358 DIST acts_as_list-0.9.7.gem 33792 SHA256 791d2510fe3391df7c830b8e55235cd0537b948892f08d77f158aade00badbc7 SHA512 7a361616d550e765b3ed075d7c01ac11e6c87dd4b0b7353f0751ab42020b075899e7c4d3632143c73b6de35dbcb6dfdaa0215e4f10467d3b1276fd04ae7e6f38 WHIRLPOOL 7d4060b76444728e4530af3d8fde42b312141ac9f44f731d249d449cc04fe785e04b406aacd73b4c658dbe03027fd5a04fcd660c3083cd89e4b3adb59aeb14eb DIST acts_as_list-0.9.8.gem 33792 SHA256 974280e1124a98fa12872932866f2f37470a8778bfe3c0e1143e9f94160513e2 SHA512 dac3651643c764433488f15a5396e7b4d4f0667e7e353546ace54feb6714c4d45cc5fb2a50d2c4472f4b60172193779b2b5be8cb840c783b9751e6227bb8ed42 WHIRLPOOL a100191b3bd5cc83c8001a6972851d76ec034acaa8e3e77d903badbde5cb7d0327652d36748ce94cebd02465a1f3c80236a84eb4f6ec657f9e0fa04bfafb6c0d +DIST acts_as_list-0.9.9.gem 34304 SHA256 e9c406a7bf6be0aaae6d43f9b644ef13d645d95bba142e022db8ecc6346d70ab SHA512 fb2a47d62af0de69b7dfc456466e19dac0ab4124141405ccd326fd9d0111d3fba1a6f33580e41b99b84a6d54016289f5b446d7bb5edee596079518811469027f WHIRLPOOL 9e5bc3a85d7ec8c6a6759ae621d4d0cbb9fa6c6f80686bb781f40e8496f9c69c7f4f1d96809df9045459625e0be85f17e5c2c3cb3fc57ee29c103d2dc808a845 diff --git a/dev-ruby/acts_as_list/acts_as_list-0.9.4.ebuild b/dev-ruby/acts_as_list/acts_as_list-0.9.4.ebuild deleted file mode 100644 index 2e96d6492a4e..000000000000 --- a/dev-ruby/acts_as_list/acts_as_list-0.9.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" - -inherit ruby-fakegem - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" -RUBY_FAKEGEM_EXTRAINSTALL="init.rb" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -DESCRIPTION="Capabilities for sorting and reordering a number of objects in a list" -HOMEPAGE="https://github.com/swanandp/acts_as_list" - -LICENSE="MIT" -SLOT="3" -KEYWORDS="~amd64 ~x86-macos" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/activerecord-3:*" - -ruby_add_bdepend " - test? ( - dev-ruby/test-unit:2 - dev-ruby/activerecord[sqlite] - )" - -all_ruby_prepare() { - rm Gemfile || die - sed -i -e '/[Bb]undler/d' Rakefile || die - sed -i -e '/bundler/,/^end/ s:^:#:' test/helper.rb || die - sed -i -e '/git ls/d' ${RUBY_FAKEGEM_GEMSPEC} || die - sed -i -e '/github_changelog/,$ s:^:#:' Rakefile || die -} diff --git a/dev-ruby/acts_as_list/acts_as_list-0.9.5.ebuild b/dev-ruby/acts_as_list/acts_as_list-0.9.9.ebuild similarity index 95% rename from dev-ruby/acts_as_list/acts_as_list-0.9.5.ebuild rename to dev-ruby/acts_as_list/acts_as_list-0.9.9.ebuild index 2e96d6492a4e..1ab4686b4cb9 100644 --- a/dev-ruby/acts_as_list/acts_as_list-0.9.5.ebuild +++ b/dev-ruby/acts_as_list/acts_as_list-0.9.9.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -USE_RUBY="ruby21 ruby22 ruby23" +EAPI=6 +USE_RUBY="ruby22 ruby23 ruby24" RUBY_FAKEGEM_RECIPE_DOC="rdoc" diff --git a/dev-ruby/arel-helpers/Manifest b/dev-ruby/arel-helpers/Manifest index a35f5e8f7e83..12c5a2ebba46 100644 --- a/dev-ruby/arel-helpers/Manifest +++ b/dev-ruby/arel-helpers/Manifest @@ -1,2 +1,3 @@ DIST arel-helpers-2.3.0.gem 11776 SHA256 592390ebfcf096c2c8173e368abd18c85611371550aa67f8d062155084c2104d SHA512 658494d50fb94b598d015370a118541d4409f1adbc90489793ab219d55444681e0ba52c4525d3c064f8f28311b8ed5dee9a611fd803b2750c99250e37434b7d3 WHIRLPOOL 6643ad194ebdba274d6c981821e851ed38a08623f9950f3c3f84fcba6e97138bb710fc9539003c4dab7ec0b5a9e3ea9d72717602ed8e2eb89e63a3513b9fbc0a DIST arel-helpers-2.4.0.gem 11776 SHA256 2cf93f1ebd6f7eae48474d8f9d0561d7860dc7cf53dc72424a6a340affc2a4eb SHA512 3f1517b4b027728c2939314ecdd283af98d3616ebcfe2de8d819d64d78ec68dbdfbc2d26b07fb5df5345721cba8db446e2bea135f38c656e6366b560eedb8fd2 WHIRLPOOL 39dc25c1b117a669daca4a6afbb23cd56bb3ab925cb4825398ca9284453e8c17d5c64c2cf2e979a1ccacffb00bba53bc7bbeb318899c3afa3364697d2e075e0a +DIST arel-helpers-2.5.0.gem 11776 SHA256 7e245dfdda17e15f7f5750cdf5e58edeeddddff5926122b86da6c2590f8512c1 SHA512 501d2820d69419c732edef1d9dbfa136d27f886a55a8d10f0dd351dfe7f0b06f0b338b665487afc87d6a34769b1ac2d55a70081529262bcc75d7cd73d98cce4e WHIRLPOOL 52001274b088bf26e8cb5dbfe391e8c12537eacba7eb915c01f2b431d5fed8324a205a7d62d9eaf4f575489184aebbb48058b73a2ced6a3b156a342e54e6655c diff --git a/dev-ruby/arel-helpers/arel-helpers-2.5.0.ebuild b/dev-ruby/arel-helpers/arel-helpers-2.5.0.ebuild new file mode 100644 index 000000000000..d0166f9420ff --- /dev/null +++ b/dev-ruby/arel-helpers/arel-helpers-2.5.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby22 ruby23 ruby24" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +inherit ruby-fakegem + +DESCRIPTION="Tools to help construct database queries" +HOMEPAGE="https://github.com/camertron/arel-helpers" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm" +IUSE="" + +ruby_add_rdepend "|| ( + dev-ruby/activerecord:5.1 + dev-ruby/activerecord:5.0 + dev-ruby/activerecord:4.2 )" + +ruby_add_bdepend "test? ( + dev-ruby/rr + dev-ruby/activerecord[sqlite] +)" + +all_ruby_prepare() { + sed -i -e '/pry-nav/ s:^:#:' spec/spec_helper.rb || die +} diff --git a/dev-ruby/capybara/Manifest b/dev-ruby/capybara/Manifest index de3cdaf40fdb..d1f563f01464 100644 --- a/dev-ruby/capybara/Manifest +++ b/dev-ruby/capybara/Manifest @@ -1,6 +1,5 @@ DIST capybara-1.1.4.gem 72192 SHA256 33073d7e4920a3e74c61ec46d1afe655eb0f3361187113c5e146df498e4611ed SHA512 102738031281d0fabd645fa6d941cf0a9ddd56f90d53d7cc1c8a7b03a37b6af8f4cddd178e6fc07d6751a539a5039cf20502eabdd49e8001793601bb312b47a3 WHIRLPOOL 81eff318acfdc0806c9f8d4e212068edd57694d44db1e29bbefaa7a4db162f3a2354374d6ab97ad7c2372ff9e6f6bb864ed483050facad5c298c2223a39c63cc -DIST capybara-2.13.0.gem 257024 SHA256 09d574e170b8042914c08630382ed784694c1b2bd1c04af482fbfd71cd56994d SHA512 35e096fa4aed8fea1456d3271bb0dbeb14215ab856a52071243e76d27aaa25f34b256edf8e391cfe024368555aeb2b68dafc896269d231c01e58c247e7a10ac2 WHIRLPOOL 723a4090cc4a438c45c23a491967043e7a2a9a996df6097b88ce7dd7eb69697f19fdbaa63d4b12c7dea317dbd90456c5ae8dde89899d1888fe0633675daa231f DIST capybara-2.14.4.gem 265728 SHA256 bbdfd40c542c790dab81032e23bbc7438a562bbe440b4712abcad67f10d17d7d SHA512 d3ebbd8d96e4d2026327b1c70ff723225ce052fff510a909111b8cc7e02b12fec9e00acddc0bc2565371cc5eb0b590abef43d42a99c3938a929ea25930fdefd1 WHIRLPOOL e4829ed0895af9b80c936ffe7f274e0637ab0b1cc2e790e261089fae14a0f8544fd178409e1420527d5eec69104a96aa4ab87e0f6f088e94bad9371e4c260ce2 -DIST capybara-2.15.1.gem 270336 SHA256 22718339815ad16a26b9832f496f8c9fdee41af8fe941e2283eee6d03287502d SHA512 03295b5008889523930898b51d943cd0976e0c3a771acb2d54a899009d77ab8248d94153089283cb73813e3397e656c3bc1ee7deee0d0cd001f8e15a79c45119 WHIRLPOOL f246bce1ff16f748f3628c8382e0c6a520e56a90b36ed4e8cf3432ab9de79711890952356b412f3e23b0a1d9526690955c706c4b061c94f09ceb2425035d8497 DIST capybara-2.15.2.gem 270848 SHA256 11223a4f98942913a67520c8e1126ae6f544b48f26844a9098f5f440caf12b50 SHA512 8c7eec2d23dcf82b1c41144fcaf5151330c220277bf2fe2a4713a79c6b065789465a9e867936a25d00bce727ab218cd3ff9934a67158552a04f552d734ee5387 WHIRLPOOL 519d6c841e8a1edd5372086f76400856525c7f6daa3c97616ab2c6ef4a382d0a66718137b29295af44292608a35d699f1977bf313f628f1abf50a0c619ac7050 DIST capybara-2.15.3.gem 271360 SHA256 b67bcaa5ed9082c14179d9ea5268ff1b3455ece0a52f21bee4e203fe6fc791bf SHA512 8248f29e2da570b693092136850f6a4b8e06451c502493177884a9306bd8704843ddc2d3caa8c530c39909257e308bda86cedf263bcf5eded83d734229de6bca WHIRLPOOL 8777ed1248d8edd36bbb6b142806900d9a2c5785f892e249d27ec1c09bc3537b8b9a686a0475132c1c46bf427055f6644a83dc5ffc72fb76839ae5d6b5adc103 +DIST capybara-2.15.4.gem 271360 SHA256 051d8518c42c20900950b34868c4edb07fd4d116d82175f84c7b96aa1a6b371f SHA512 405f5d9aeafe98e8aafe26d1f563c42ebe737b88efb9a52fbd38aec6b2418e1d7701368c75b6ea4946bf4eee0c1471e9af7be63dda3238ac5c4129fec8e3f999 WHIRLPOOL 7298f246bd465ff45830d2a55247f69f9aee342b128c121cf77c4ce47ccedb607c86310a03f6cb3b6c34c16a787f76a419a81154efea6d8ce160f8453a014f32 diff --git a/dev-ruby/capybara/capybara-2.13.0.ebuild b/dev-ruby/capybara/capybara-2.13.0.ebuild deleted file mode 100644 index 7b655b55223e..000000000000 --- a/dev-ruby/capybara/capybara-2.13.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_EXTRADOC="History.md README.md" - -# Rake tasks are not distributed in the gem. -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="" - -inherit virtualx ruby-fakegem - -DESCRIPTION="Capybara aims to simplify the process of integration testing Rack applications" -HOMEPAGE="https://github.com/jnicklas/capybara" -LICENSE="MIT" - -KEYWORDS="~amd64 ~x86" -SLOT="2" -IUSE="test" - -DEPEND="${DEPEND} test? ( www-client/firefox )" - -ruby_add_bdepend "test? ( dev-ruby/rspec:3 dev-ruby/launchy >=dev-ruby/selenium-webdriver-2.0 dev-ruby/sinatra )" - -ruby_add_rdepend " - dev-ruby/addressable - >=dev-ruby/mime-types-1.16:* - >=dev-ruby/nokogiri-1.3.3 - >=dev-ruby/rack-1.0.0:* - >=dev-ruby/rack-test-0.5.4 - >=dev-ruby/xpath-2.0.0:2" - -all_ruby_prepare() { - sed -i -e '/bundler/d' -e '/pry/d' -e '1igem "sinatra"' spec/spec_helper.rb || die - - # Avoid window-manager specific tests (sizes are specific for fluxbox) - sed -i -e '/#maximize/,/^ end/ s:^:#:' lib/capybara/spec/session/window/window_spec.rb || die - - # Avoid spec that requires unpackaged geckodriver - sed -i -e '/register_server/,/^ end/ s:^:#:' spec/capybara_spec.rb || die -} - -each_ruby_test() { - VIRTUALX_COMMAND=${RUBY} - virtualmake -Ilib -S rspec-3 spec || die "Tests failed." -} diff --git a/dev-ruby/capybara/capybara-2.15.1.ebuild b/dev-ruby/capybara/capybara-2.15.4.ebuild similarity index 97% rename from dev-ruby/capybara/capybara-2.15.1.ebuild rename to dev-ruby/capybara/capybara-2.15.4.ebuild index e997f6df31e1..e978384153dc 100644 --- a/dev-ruby/capybara/capybara-2.15.1.ebuild +++ b/dev-ruby/capybara/capybara-2.15.4.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -USE_RUBY="ruby21 ruby22 ruby23 ruby24" +USE_RUBY="ruby22 ruby23 ruby24" RUBY_FAKEGEM_EXTRADOC="History.md README.md" diff --git a/dev-ruby/facter/facter-3.9.2.ebuild b/dev-ruby/facter/facter-3.9.2.ebuild index 247eed1af456..9517c4b3746e 100644 --- a/dev-ruby/facter/facter-3.9.2.ebuild +++ b/dev-ruby/facter/facter-3.9.2.ebuild @@ -14,7 +14,7 @@ S="${S}/all/${P}" LICENSE="Apache-2.0" SLOT="0" IUSE="debug test" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86" BDEPEND=" >=sys-devel/gcc-4.8:* diff --git a/dev-ruby/hashdiff/Manifest b/dev-ruby/hashdiff/Manifest index 813c4cb2b935..5796994c5e64 100644 --- a/dev-ruby/hashdiff/Manifest +++ b/dev-ruby/hashdiff/Manifest @@ -1,3 +1,4 @@ DIST hashdiff-0.3.4.gem 15872 SHA256 0aac86b2486ad06e5496ac404b3c2f115b31d5ba1e110998fa0aa675e691d0d8 SHA512 d1315b4010d2ed444ab257f13d949bb46924ad2d6b6d397cd496a297a502ceabc1518d077e137992443234f292489150cc21dcbc348358b22ef6d6741144b7b6 WHIRLPOOL 9532227e8cb9dc6951cca15c5762e1aecb89e913bbfb74c10b7164367147f129bd09d5191ec029bc20dc7b74abe10f2fdd0b6d58d131ca58e09bab9260927298 DIST hashdiff-0.3.5.gem 16896 SHA256 e71f28e8c1b1dabf049d59a994e3ccadc7400673bb545eaf1628c5a5da02e310 SHA512 f1ab73ec017c82ec1494e81c3c362244bd43734b295061e5220492b93517ac3a7f8e18a11b595160aca79f9016783291a10cde0a6a6218b08f9ff2f231f9f328 WHIRLPOOL c63b7dcb5cccbaa0cbe8f5bdac16ae41c1970ce79fd7f537be1b9662055ecdbf64299fb467baddb236b87cb385ba5b8e2e0ccfd1c4e3163d19dfc5c92d40a333 DIST hashdiff-0.3.6.gem 18432 SHA256 816ce4c22faeb0df029170dd101e34d238b90b388556ecde77413c373d5e1870 SHA512 3f8c96bdeff00a8b45f7f065274fee6510b22bc2ca98cc20b84b2b9804ce9d81e730519591448179ff3ca763312eb238680baddc212392e8640205ecd9ba24c3 WHIRLPOOL 6ac3b45d062ea774b00907173c21520c0fa37ab4905dcd0504dfd6eb7c5d1a3c7826adc9b805e00994558436dfddff6916971f4ad7b7601a9451407bccd65c97 +DIST hashdiff-0.3.7.gem 18944 SHA256 e94a08689f724a571556b78d5ca35214033d3961972d58c4611245c4b3a0457a SHA512 62cbbd1631127f98be214ab5c849d4a78c9f9aa762e372412a68f843df09caa9bb3b8ff096952ff4fe5b401dc8fefff7e42c2d1beb7e647ed9216550ecd06d93 WHIRLPOOL 7bc55e3ccb7de11e478138f6e824c1a0e6b21080b974a47737e3aa64568281f8e8def0df88b6d5afe3ec444ec8ca08c85edcee750fe5b43f5e287b54d6b485ef diff --git a/dev-ruby/hashdiff/hashdiff-0.3.7.ebuild b/dev-ruby/hashdiff/hashdiff-0.3.7.ebuild new file mode 100644 index 000000000000..34fd7ed94fcb --- /dev/null +++ b/dev-ruby/hashdiff/hashdiff-0.3.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby22 ruby23 ruby24" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="changelog.md README.md" + +inherit ruby-fakegem + +DESCRIPTION="Simple Hash extension to make working with nested hashes easier" +HOMEPAGE="https://github.com/liufengyun/hashdiff" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die +} diff --git a/dev-ruby/rubygems/Manifest b/dev-ruby/rubygems/Manifest index 37579beb9439..c23071d279d5 100644 --- a/dev-ruby/rubygems/Manifest +++ b/dev-ruby/rubygems/Manifest @@ -1,3 +1 @@ -DIST rubygems-2.5.2.tgz 475434 SHA256 5171ce6fa04c74606991f9c318a924f095241d7ce18c21a00455c8ebe4aeecca SHA512 43544619799ac6f0b22285954a3b46a2d8aea425ef16a26de4ebb5ea1b3a4f2d3a2031ac53bb890554fe935ca1d03101a5d4d9eae4619aaab72a079650fd8921 WHIRLPOOL 59806bd34ab0bfa66bd770c02054c16bd5c5bb836d0213018151339fda422780e5ace4bfecfad408075ae25d6c74e40d0925dccdc7a46aff545b93cc21faa4b2 -DIST rubygems-2.6.12.tgz 767895 SHA256 37b745cc1f957170cff4f698f473531e607827b1a6407d12c55c338257990d8d SHA512 ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 WHIRLPOOL 2134274719415087e1fffda4d648dc489c1363bf1564ec07859c5d22e8b0485a329ce8e14e1bf6bcbff81ee65cf43c2fdd5318faba07b6a912dbdca6a1224c1a DIST rubygems-2.6.13.tgz 768906 SHA256 d041502ae77e8d49e0a436483fb91f9ad6cc1489e49e0735e7c4a7cf10e728c9 SHA512 c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 WHIRLPOOL b03b7fcc9b4e84f1692afcc5d7111e75ade5fe777ec73f6006580e65be1f23101f0c29b9d2e9f9af5d66bb5f46ab3919cd11e37126758e9edd66609a47085739 diff --git a/dev-ruby/rubygems/rubygems-2.5.2.ebuild b/dev-ruby/rubygems/rubygems-2.5.2.ebuild deleted file mode 100644 index e2c5ecdf9d7a..000000000000 --- a/dev-ruby/rubygems/rubygems-2.5.2.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -inherit ruby-ng prefix - -DESCRIPTION="Centralized Ruby extension management system" -HOMEPAGE="https://rubygems.org/" -LICENSE="|| ( Ruby MIT )" - -SRC_URI="https://rubygems.org/rubygems/${P}.tgz" - -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="server test" - -PDEPEND="server? ( >=dev-ruby/builder-2.1 )" - -ruby_add_bdepend " - test? ( - >=dev-ruby/minitest-4:0 - dev-ruby/rdoc - )" - -all_ruby_prepare() { - - mkdir -p lib/rubygems/defaults || die - cp "${FILESDIR}/gentoo-defaults.rb" lib/rubygems/defaults/operating_system.rb || die - - eprefixify lib/rubygems/defaults/operating_system.rb - - # Disable broken tests when changing default values: - sed -i -e '/test_default_path/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die - - # Skip tests for default gems that all fail - sed -i -e '/test_default_gems_use_full_paths/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die - sed -i -e '/test_execute_ignore_default_gem_verbose/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_cleanup_command.rb || die - sed -i -e '/test_execute_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_contents_command.rb test/rubygems/test_gem_commands_pristine_command.rb || die - sed -i -e '/test_execute_default_details/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_query_command.rb || die - sed -i -e '/test_execute_all/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_uninstall_command.rb || die - sed -i -e '/\(test_default_gem\|test_check_executable_overwrite\|test_require_works_after_cleanup\)/,/^ end/ s:^:#:' \ - test/rubygems/test_{gem_installer,require}.rb || die - sed -i -e '/test_\(load_default_gem\|default_spec_stub\)/,/^ end/ s:^:#:' test/rubygems/test_gem_specification.rb || die - sed -i -e '/test_uninstall_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_uninstaller.rb || die - rm -f test/rubygems/test_gem_indexer.rb || die - - # Avoid tests playing tricks with ruby engine that don't seem to - # work for us. - rm test/rubygems/test_gem_request_set_gem_dependency_api.rb || die - - # Avoid test requiring network access - sed -i -e '/test_download_to_cache/askip "requires network access"' test/rubygems/test_gem_remote_fetcher.rb || die -} - -each_ruby_compile() { - # Not really a build but... - sed -i -e 's:#!.*:#!'"${RUBY}"':' bin/gem -} - -each_ruby_test() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - #unset RUBYOPT - - if [[ "${EUID}" -ne "0" ]]; then - RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" ${RUBY} -I.:lib:test \ - -e 'Dir["test/**/test_*.rb"].each { |tu| require tu }' || die "tests failed" - else - ewarn "The userpriv feature must be enabled to run tests, bug 408951." - eerror "Testsuite will not be run." - fi -} - -each_ruby_install() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - unset RUBYOPT - export RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" - - pushd lib &>/dev/null - doruby -r * - popd &>/dev/null - - local sld=$(ruby_rbconfig_value 'sitelibdir') - insinto "${sld#${EPREFIX}}" # bug #320813 - newins "${FILESDIR}/auto_gem.rb.ruby19" auto_gem.rb || die - - newbin bin/gem $(basename ${RUBY} | sed -e 's:ruby:gem:') || die -} - -all_ruby_install() { - dodoc History.txt README.rdoc - - if use server; then - newinitd "${FILESDIR}/init.d-gem_server2" gem_server || die "newinitd failed" - newconfd "${FILESDIR}/conf.d-gem_server" gem_server || die "newconfd failed" - fi -} - -pkg_postinst() { - if [[ ! -n $(readlink "${ROOT}"usr/bin/gem) ]] ; then - eselect ruby set $(eselect --brief --colour=no ruby show | head -n1) - fi - - ewarn - ewarn "To switch between available Ruby profiles, execute as root:" - ewarn "\teselect ruby set ruby(20|21|...)" - ewarn -} diff --git a/dev-ruby/rubygems/rubygems-2.6.12.ebuild b/dev-ruby/rubygems/rubygems-2.6.12.ebuild deleted file mode 100644 index 12480bd75408..000000000000 --- a/dev-ruby/rubygems/rubygems-2.6.12.ebuild +++ /dev/null @@ -1,111 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby21 ruby22 ruby23 ruby24" - -inherit ruby-ng prefix - -DESCRIPTION="Centralized Ruby extension management system" -HOMEPAGE="https://rubygems.org/" -LICENSE="|| ( Ruby MIT )" - -SRC_URI="https://rubygems.org/rubygems/${P}.tgz" - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="server test" - -PDEPEND="server? ( >=dev-ruby/builder-2.1 )" - -ruby_add_bdepend " - test? ( - >=dev-ruby/minitest-4:0 - dev-ruby/rdoc - )" - -all_ruby_prepare() { - - mkdir -p lib/rubygems/defaults || die - cp "${FILESDIR}/gentoo-defaults.rb" lib/rubygems/defaults/operating_system.rb || die - - eprefixify lib/rubygems/defaults/operating_system.rb - - # Disable broken tests when changing default values: - sed -i -e '/test_default_path/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die - - # Skip tests for default gems that all fail - sed -i -e '/test_default_gems_use_full_paths/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die - sed -i -e '/test_execute_ignore_default_gem_verbose/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_cleanup_command.rb || die - sed -i -e '/test_execute_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_contents_command.rb test/rubygems/test_gem_commands_pristine_command.rb || die - sed -i -e '/test_execute_\(default_details\|show_default_gems\)/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_query_command.rb || die - sed -i -e '/test_execute_all/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_uninstall_command.rb || die - sed -i -e '/\(test_default_gem\|test_check_executable_overwrite\|test_require_works_after_cleanup\)/,/^ end/ s:^:#:' \ - test/rubygems/test_{gem_installer,require}.rb || die - sed -i -e '/test_\(load_default_gem\|default_spec_stub\)/,/^ end/ s:^:#:' test/rubygems/test_gem_specification.rb || die - sed -i -e '/test_uninstall_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_uninstaller.rb || die - rm -f test/rubygems/test_gem_indexer.rb || die - sed -i -e '/test_\(require_when_gem_defined\|realworld_default_gem\)/,/^ end/ s:^:#:' test/rubygems/test_require.rb || die - - # Avoid tests playing tricks with ruby engine that don't seem to - # work for us. - rm test/rubygems/test_gem_request_set_gem_dependency_api.rb || die - - # Avoid test requiring network access - sed -i -e '/test_download_to_cache/askip "requires network access"' test/rubygems/test_gem_remote_fetcher.rb || die -} - -each_ruby_compile() { - # Not really a build but... - sed -i -e 's:#!.*:#!'"${RUBY}"':' bin/gem -} - -each_ruby_test() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - #unset RUBYOPT - - if [[ "${EUID}" -ne "0" ]]; then - RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" ${RUBY} -I.:lib:test \ - -e 'Dir["test/**/test_*.rb"].each { |tu| require tu }' || die "tests failed" - else - ewarn "The userpriv feature must be enabled to run tests, bug 408951." - eerror "Testsuite will not be run." - fi -} - -each_ruby_install() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - unset RUBYOPT - export RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" - - pushd lib &>/dev/null - doruby -r * - popd &>/dev/null - - local sld=$(ruby_rbconfig_value 'sitelibdir') - insinto "${sld#${EPREFIX}}" # bug #320813 - newins "${FILESDIR}/auto_gem.rb.ruby19" auto_gem.rb || die - - newbin bin/gem $(basename ${RUBY} | sed -e 's:ruby:gem:') || die -} - -all_ruby_install() { - dodoc History.txt README.rdoc - - if use server; then - newinitd "${FILESDIR}/init.d-gem_server2" gem_server || die "newinitd failed" - newconfd "${FILESDIR}/conf.d-gem_server" gem_server || die "newconfd failed" - fi -} - -pkg_postinst() { - if [[ ! -n $(readlink "${ROOT}"usr/bin/gem) ]] ; then - eselect ruby set $(eselect --brief --colour=no ruby show | head -n1) - fi - - ewarn - ewarn "To switch between available Ruby profiles, execute as root:" - ewarn "\teselect ruby set ruby(21|22|...)" - ewarn -} diff --git a/dev-texlive/texlive-context/texlive-context-2015.ebuild b/dev-texlive/texlive-context/texlive-context-2015.ebuild index 825fe8f92dda..3deaa2af7ddb 100644 --- a/dev-texlive/texlive-context/texlive-context-2015.ebuild +++ b/dev-texlive/texlive-context/texlive-context-2015.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="TeXLive ConTeXt and packages" LICENSE=" BSD GPL-1 GPL-2 GPL-3 public-domain TeX-other-free " SLOT="0" -KEYWORDS="alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=dev-texlive/texlive-basic-2015 >=dev-texlive/texlive-latex-2010 diff --git a/dev-texlive/texlive-formatsextra/texlive-formatsextra-2015.ebuild b/dev-texlive/texlive-formatsextra/texlive-formatsextra-2015.ebuild index 27933168c91e..363aefb141cf 100644 --- a/dev-texlive/texlive-formatsextra/texlive-formatsextra-2015.ebuild +++ b/dev-texlive/texlive-formatsextra/texlive-formatsextra-2015.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="TeXLive Additional formats" LICENSE=" GPL-2 GPL-3 LPPL-1.3 public-domain TeX " SLOT="0" -KEYWORDS="alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=dev-texlive/texlive-basic-2015 >=dev-texlive/texlive-latex-2008 diff --git a/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2015-r1.ebuild b/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2015-r1.ebuild index 1a04f22ce83b..519d46f55378 100644 --- a/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2015-r1.ebuild +++ b/dev-texlive/texlive-langczechslovak/texlive-langczechslovak-2015-r1.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="TeXLive Czech/Slovak" LICENSE=" GPL-1 GPL-2 LPPL-1.3 TeX-other-free " SLOT="0" -KEYWORDS="alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=dev-texlive/texlive-basic-2015 >=dev-texlive/texlive-latex-2015 diff --git a/dev-texlive/texlive-luatex/texlive-luatex-2015.ebuild b/dev-texlive/texlive-luatex/texlive-luatex-2015.ebuild index 2a5219a146b7..c997ff8d01f7 100644 --- a/dev-texlive/texlive-luatex/texlive-luatex-2015.ebuild +++ b/dev-texlive/texlive-luatex/texlive-luatex-2015.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="TeXLive LuaTeX packages" LICENSE=" BSD FDL-1.1 GPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX-other-free " SLOT="0" -KEYWORDS="alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=dev-texlive/texlive-basic-2015 " diff --git a/dev-texlive/texlive-xetex/texlive-xetex-2015.ebuild b/dev-texlive/texlive-xetex/texlive-xetex-2015.ebuild index f42daf9c2ba6..71115349dc92 100644 --- a/dev-texlive/texlive-xetex/texlive-xetex-2015.ebuild +++ b/dev-texlive/texlive-xetex/texlive-xetex-2015.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="TeXLive XeTeX and packages" LICENSE=" Apache-2.0 GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 OFL public-domain TeX-other-free " SLOT="0" -KEYWORDS="alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=dev-texlive/texlive-basic-2015 !=app-text/texlive-core-2007* diff --git a/dev-vcs/mercurial/mercurial-4.3.ebuild b/dev-vcs/mercurial/mercurial-4.3.ebuild index d1df834782f0..54d04647c438 100644 --- a/dev-vcs/mercurial/mercurial-4.3.ebuild +++ b/dev-vcs/mercurial/mercurial-4.3.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://www.mercurial-scm.org/release/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="bugzilla emacs gpg test tk" RDEPEND="bugzilla? ( dev-python/mysql-python[${PYTHON_USEDEP}] ) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index f08a6560425e..d933767b4a52 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -69,7 +69,7 @@ case ${PV} in QT5_BUILD_TYPE="live" EGIT_BRANCH="dev" ;; - 5.?.9999) + 5.?.9999|5.??.9999|5.???.9999) # git stable branch QT5_BUILD_TYPE="live" EGIT_BRANCH=${PV%.9999} @@ -92,9 +92,8 @@ esac readonly QT5_BUILD_TYPE EGIT_REPO_URI=( - "git://code.qt.io/qt/${QT5_MODULE}.git" - "https://code.qt.io/git/qt/${QT5_MODULE}.git" - "https://github.com/qtproject/${QT5_MODULE}.git" + "https://code.qt.io/qt/${QT5_MODULE}.git" + "https://github.com/qt/${QT5_MODULE}.git" ) [[ ${QT5_BUILD_TYPE} == live ]] && inherit git-r3 @@ -115,7 +114,7 @@ DEPEND=" dev-lang/perl virtual/pkgconfig " -if [[ ${PN} != qttest ]]; then +if [[ ${PN} != qttest && (${PN} != qtwebkit && ${QT5_MINOR_VERSION} -ge 9) ]]; then DEPEND+=" test? ( ~dev-qt/qttest-${PV} )" fi RDEPEND=" @@ -172,8 +171,14 @@ qt5-build_src_prepare() { qt5_symlink_tools_to_build_dir # Avoid unnecessary qmake recompilations - sed -i -re "s|^if true;.*(\[ '\!').*(\"\\\$outpath/bin/qmake\".*)|if \1 -e \2 then|" \ - configure || die "sed failed (skip qmake bootstrap)" + if [[ ${QT5_MINOR_VERSION} -ge 8 ]]; then + sed -i -e "/Creating qmake/i if [ '!' -e \"\$outpath/bin/qmake\" ]; then" \ + -e '/echo "Done."/a fi' \ + configure || die "sed failed (skip qmake bootstrap)" + else + sed -i -re "s|^if true;.*(\[ '\!').*(\"\\\$outpath/bin/qmake\".*)|if \1 -e \2 then|" \ + configure || die "sed failed (skip qmake bootstrap)" + fi # Respect CC, CXX, *FLAGS, MAKEOPTS and EXTRA_EMAKE when bootstrapping qmake sed -i -e "/outpath\/qmake\".*\"\$MAKE\")/ s:): \ @@ -188,9 +193,11 @@ qt5-build_src_prepare() { sed -i -e "/^QMAKE_CONF_COMPILER=/ s:=.*:=\"$(tc-getCXX)\":" \ configure || die "sed failed (QMAKE_CONF_COMPILER)" - # Respect toolchain and flags in config.tests - find config.tests/unix -name '*.test' -type f -execdir \ - sed -i -e 's/-nocache //' '{}' + || die + if [[ ${QT5_MINOR_VERSION} -le 7 ]]; then + # Respect toolchain and flags in config.tests + find config.tests/unix -name '*.test' -type f -execdir \ + sed -i -e 's/-nocache //' '{}' + || die + fi # Don't inject -msse/-mavx/... into CXXFLAGS when detecting # compiler support for extended instruction sets (bug 552942) @@ -370,6 +377,29 @@ qt_use_compile_test() { fi } +# @FUNCTION: qt_use_disable_config +# @USAGE: +# @DESCRIPTION: +# is the name of a flag in IUSE. +# is the (lowercase) name of a Qt5 config entry. +# is a list of one or more qmake project files. +# +# This function patches to treat as disabled +# when is disabled, otherwise it does nothing. +# This can be useful to avoid an automagic dependency when the config entry +# is enabled on the system but the corresponding USE flag is disabled. +qt_use_disable_config() { + [[ $# -ge 3 ]] || die "${FUNCNAME}() requires at least three arguments" + + local flag=$1 + local config=$2 + shift 2 + + if ! use "${flag}"; then + echo "$@" | xargs sed -i -e "s/qtConfig(${config})/false/g" || die + fi +} + # @FUNCTION: qt_use_disable_mod # @USAGE: # @DESCRIPTION: @@ -568,8 +598,8 @@ qt5_base_configure() { -glib # disable everything to prevent automagic deps (part 2) - -no-pulseaudio -no-alsa $([[ ${QT5_MINOR_VERSION} -ge 7 ]] && echo -no-gtk || echo -no-gtkstyle) + $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-pulseaudio -no-alsa) # exclude examples and tests from default build -nomake examples @@ -583,7 +613,8 @@ qt5_base_configure() { -verbose # always enable iconv support - -iconv + # since 5.8 this is handled in qtcore + $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -iconv) # disable everything to prevent automagic deps (part 3) -no-cups -no-evdev -no-tslib -no-icu -no-fontconfig -no-dbus @@ -610,7 +641,8 @@ qt5_base_configure() { # disable undocumented X11-related flags, override in qtgui # (not shown in ./configure -help output) - -no-xkb -no-xrender + -no-xkb + $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-xrender) # disable obsolete/unused X11-related flags $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-mitshm -no-xcursor -no-xfixes -no-xrandr -no-xshape -no-xsync) @@ -630,7 +662,7 @@ qt5_base_configure() { -no-libinput # disable gstreamer by default, override in qtmultimedia - -no-gstreamer + $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-gstreamer) # respect system proxies by default: it's the most natural # setting, and it'll become the new upstream default in 5.8 @@ -648,7 +680,14 @@ qt5_base_configure() { einfo "Configuring with: ${conf[@]}" "${S}"/configure "${conf[@]}" || die "configure failed" + if [[ ${QT5_MINOR_VERSION} -ge 8 ]]; then + # a forwarding header is no longer created since 5.8, causing the system + # config to always be used. bug 599636 + cp src/corelib/global/qconfig.h include/QtCore/ || die + fi + popd >/dev/null || die + } # @FUNCTION: qt5_qmake diff --git a/mail-client/thunderbird-bin/Manifest b/mail-client/thunderbird-bin/Manifest index 40219704b226..ab85d822c9fb 100644 --- a/mail-client/thunderbird-bin/Manifest +++ b/mail-client/thunderbird-bin/Manifest @@ -1,59 +1,59 @@ DIST lightning-5.4.1.tar.xz 1891296 SHA256 2c7eb418eeb54919542cb097c76af8c61ada1738b30562a54dfdc1091a416e7f SHA512 d5e6197f53443f7baf2c8487293e59ce825bd835870c2b38c64feefcf3a20ee46a41e9c2320f55157bed1a647ef51e97b74efc1d1ad41be34caefc943bfdaaca WHIRLPOOL 5e046c862e4fe9ac47a7be4d7fc3342ccb67b8f76c1f8b542f75a8b81816ef7edff9b478525e2fe0efb7d21eb0fe8cec3ee28185a73338ba59e84de3dd622c4a -DIST thunderbird-52.3.0-ar.xpi 604235 SHA256 a96dbaed8c14e113c2e2295422c4346ed97cbba349f6464532d4585ab6a5be88 SHA512 c8a4c362499f9f4c2babe878c67e85675d65a88b8d57cae2c1c11ea0a36afa8f21ba200c848f883ad46d1c94a468395e2aa3f9c23a68f6360e9ece73fb9ecea8 WHIRLPOOL 81c02925d19fc8cae32b7469431805eec80a8fba360a21ce2a1283ce97caaf33cdf5ab94f87002173477dcb779b5ac168047f2fd02c41b9c3c16efd348d89f7f -DIST thunderbird-52.3.0-ast.xpi 541173 SHA256 eb2614092cebafb0d326ac318bbd76d5e35a6865fe4f0be72bad871bc703584f SHA512 fa42be4913a6a27c94a7c8cb2c2c53dbc8bec8d0de8410883f16cfdd26cf51321dc58494abf1ce2d3c7b9c6b84eb2911c475c0ca7a5d5bd0f7e36a7995f8a1b4 WHIRLPOOL bff8aa8a9e5a4d268754d771fe72d08a27e18d68b09d109adcb1f8d0d8e26f5dc02e29a2a1842ed1d429f7a107c64f60fa5a9d10708e88b461d6875a632d4d78 -DIST thunderbird-52.3.0-be.xpi 570932 SHA256 b412a5cb7f2752d1d72325356b9d0fa124af03f29e45ceeafe3b0b9fc0c7e28b SHA512 afa4232ac6ce70d896f87a267234fdecbba8a037064b7a603264ca5e4e5098da906328568c5002ef1c05053a8470b04118a23ac6cb2b0335de85a29bc8c7429d WHIRLPOOL 624daab5d0e26dca644eef7a72c4e1345a7d532a6ba8663c36afce986d0a970f2eab69533462692dd1e94c5adcc9a52dfeade616ff41438b35bb7a842a4511c5 -DIST thunderbird-52.3.0-bg.xpi 634897 SHA256 ff093e353378ae63727aca8b95578d89d369c6b86e48a030d893a9cd8ad77922 SHA512 6685e2152a06b171de0866ccf9f5eb4c5f8d6cc300075d85f9dbc2ca8116ff94325390f9e4ad96c8953d8c9cce66d4db55a5b61427f1fc7dc841a35d2d225ea6 WHIRLPOOL 868eafaecde6e95f007492ef9f1f913deef92c40d39d35023830d41d18ae0df0a26b33ad856baaa999db299d9eda0d7fdf94d4463ac2ffcd6c283a4e6e377253 -DIST thunderbird-52.3.0-bn-BD.xpi 676900 SHA256 eaebfde95c33aafa0c7aa649fca093a25ed93db58e8fed3485589b9326806270 SHA512 908376496df97922a31ec60d6ac25ad6db0abca098737d581914148ae21b924027502ca71230d0b4d208dae61d37df90c1bd14f1d12b02dfcd3aed9d95f7783f WHIRLPOOL 20d056edb28f183ef821a60b099798577b4a84bf6c730a80e298f11cd0984b3d177e3c4fa7424dcd7d8cd15b054da2f4096196576f777fe28e28cc93b1d055bb -DIST thunderbird-52.3.0-br.xpi 559380 SHA256 87819d6762d57ce02564ec3cdb195158eed635ba27a3165dfc862553f53f188a SHA512 62d9b9ebcc3fdbad653a227a612278ada74927f37f737f15272142eb62888792f2808eebef436418f301c4e9d45eaaf7ec74c4de408a05f2bb96859af09336db WHIRLPOOL a29d9b3508c920c60aaf66df0d87c8a905528a5d65c72c5dc741d7d498a90d6603cdc0ec2f3ad955286e43f8ed2293beb0a9e364e706d8c738c1295afead2f8d -DIST thunderbird-52.3.0-ca.xpi 569910 SHA256 9dffc936fd1dda855d19eb464ce01b22bfb667585b983b3c7b0a74ea10e298ce SHA512 3f2e3a07af1e02c5e3b8e2cec63bdcaaa6158dd983b4611fa0628c87ce4dd5b6f6e9b74e2b065611edd616279fc652950143242b1d1608dd10e6667105b75f4b WHIRLPOOL 567880a1147707c8708a34a50318a9271525e7c3e0c0bb9cb46cd2987cdf89bff47958a14e376a2eaa5e8b6c01c3d81c0268ddf0182fbfaac065a558fe409458 -DIST thunderbird-52.3.0-cs.xpi 579150 SHA256 eb0412f1fcf7a7c96e434d114d5763c56322317633bb8790dfa3362df03be870 SHA512 718b33a338d262aaf680f4ec9cc98ae43aed7fb24d56d05a376ff66a6d4d436244176383d81158153169ee2bb992aa35ab1891befd80ebd88686825bf3dffbb2 WHIRLPOOL 34e093f48e31c8884cfeb08474545c276fd6807fd74bed1615c49fd3621e32924c11a624e9f66be00e52cfc382b0d3da062816b29c6640361115487f8d8fc3dd -DIST thunderbird-52.3.0-cy.xpi 554858 SHA256 1a000f677941f4c28186d4e58bf6df79f4d8a47e2a7a338005bad91604e8c388 SHA512 0a2d4ccdc25ef6b189eb134c92288aec62cba40197170c02449df4f78d16718cd56952b1806936e391daaf764e42260c1318f76a7b99e2bda54701ff3b606eca WHIRLPOOL d6efc909390b1677c5f457a6fe0dcd93fe82bf01d50b55a9920601be30916640097ef45e4ac28351e9a39128d691e819013a22e4a5ea57dd5f16d32b474da235 -DIST thunderbird-52.3.0-da.xpi 543335 SHA256 583fd8b1d6034739477cc5d935a766242b7d1e4bdb869545645f893d4d80cd70 SHA512 547eb6c99b95e8736e2ad70933d8a1ff9653ae2c08bd4602259c2e545c17a0f36b2486dbc7150a0412f4d887c737ad4f65cb6fe08212aa0068e118b1f60fb8e9 WHIRLPOOL 7e127270795167710b8c1c26c40ba3d49c6cec73a3a67352ceb8de74138afb23e2d3a54541edb4bb904a8fb8f28c6cf9984f7569040a656bcc9b68146e5bd439 -DIST thunderbird-52.3.0-de.xpi 555744 SHA256 48cf4ae0856b286f4f5788abcfec66b8817dbd836102236907e826cb2ed555b3 SHA512 fb18c7eb492cb573ee61cdea3270905936e1503c550f9e50e26a404aa2122a4993faf1df58cd4d31973e6271d88ec621c5a93b0004f879d902761ae0059ccc68 WHIRLPOOL 587de0c23e355f02b74a556978de5f873a536d245ae410b8b44e9e12c362797b9b889db2e561aaf925e8b1dd14e858a33c97fb9883fbe3ec4b59c02fa7555060 -DIST thunderbird-52.3.0-el.xpi 662964 SHA256 554a62ec5d5ae4cca3d093273b8df7357b649f0b853a05714a7990667d1e8e7c SHA512 ab44992c012e47e388ccb4e54476e7d260de8b206ed920ef48a30b7ccdf4543ac194fc8a29a050001f1717258f17bdf69be2f84be38ef845e3ed920376edfcc5 WHIRLPOOL 253d20854c879b2482f50782d218d7983d37f67bf1474ddc2d46abea3203df62ccd9195a60e666b2f9f90401873d14e64355f55b73ebb8961d3fdbdd8d542524 -DIST thunderbird-52.3.0-en-GB.xpi 531234 SHA256 2cf73f099a49cba6301ac60da05e6bafa495e9363d6c0bf84caecc1a928bde8e SHA512 336712bd9c40ca8390ddfded8c4d48bc830505a8b943456253c140a38e75603eaa5e2a3750d555a03771539cf4eecbd2114743d3be81253ed32c040f388a229e WHIRLPOOL afe1506b6d69af0d2afe5e0b8df2456c0e26334a0f1198d5f2a061db760962393bd7dc9200ef92c20bb4b26c6283e551b3ade0a599b14128855115f62f803e38 -DIST thunderbird-52.3.0-es-AR.xpi 565995 SHA256 f4b32effba6b458346067eb3ccf1c0de6d30cc4170d0918b013e43cac476037f SHA512 d11d344463851d64056e1177981895cf2427d038d08e5b59b7b9f167df3047cfeb8325d7a328f19041872a4857ca1fd70949b6cdd92028f56b18b40d03da55bd WHIRLPOOL d98dfd480f0b359c3cdcbe0e213578d662fd68860155d9ce1ecfcc20f31ac8cefa61f618c3340e13652edcdcefeda0f3aba1e3d00b21afc8f06b25e4fb53d3cb -DIST thunderbird-52.3.0-es-ES.xpi 445464 SHA256 ba01837ab8f6e520fab791c65b9897e7194e2297a073c9c1388e45f02f2cd9a4 SHA512 85eb8c006fa2d75c2318413ff50c58b472e8cf58252731feabf5f8502164798ce3c1881e5d5f6a84a587c182bc0fd362c011c03d21c013a0a435777fe5650a6d WHIRLPOOL 3d824cc55ca17c79d868f14831f37ef19b49033807fde16f55d028e306ea0572b1e2d6272edddd9d03a518294375b599c6169993f0613a05e9adb9dc815879a3 -DIST thunderbird-52.3.0-et.xpi 551661 SHA256 1fab98e403dae9cc5a890b5f36759e6c9c10c88d150f5c0d1fa97dc5f822b0df SHA512 2fd382735b401bee7fe40e0c5d9bb3b837b2a01b8692e03e5fcd6924be4cc18b26080d2ff117930616bf43d474b300f89bb9924232a4831a9f2043f8cc24bbe9 WHIRLPOOL 601d82995ce3ea23fbf683f268322cf5e34e964efd6f6fb7696af6b90f46f4b15bd6a2e8fb1f877f91e333a85456aa9bbbb5f2fecad8e014884a52d9994249d9 -DIST thunderbird-52.3.0-eu.xpi 555537 SHA256 891ca411246628ac63e41cc5e1316afcf9ace1c62eaf69e2a23777f24f4b2c29 SHA512 eaa05855ee668f01f0e99184a4d1be728e94409caae376e7ea6af38386f4c9e786f31d6ca48247a934f99c525cf4315e53682b5d6dc2c65fdf624b84e9c3db0b WHIRLPOOL c6c4c69250b50e018e3abe78c6a00906fee09aabed30f0d58949f53167ef758f9d0dd46286b38945e131d800de3991e0b36ec90e76cc49fd9b3c107d2f5d2473 -DIST thunderbird-52.3.0-fi.xpi 550669 SHA256 83944d311d4230f8e17682f1a1248cab3713e7825b87ab0511d5293772c053bf SHA512 c3fbf8c1ba80911e35c5e943fca845afa77135809d42bdd25308d6926c166f6c5a2fe910ab7acb77080743429b4e9b5025f23eb41935bdb7fa373f91774144e2 WHIRLPOOL 9ce4465b202fc28fd596c3dae92a392cbb98f667a763fa306b2b3ac5e94182cd57dbb41c708c8fc5ea8514e7de66d36d8dfa900a09c7a8c7ece70bd7d6e0bfa0 -DIST thunderbird-52.3.0-fr.xpi 577561 SHA256 e9a81424c9af8e0fe21abc94deb53a20f83d6ec7f4484ae4ab2816cd4aa9022f SHA512 4ef32439dfddaf0f8a73466c28568b8447b38326b552bc8c539f484b8a734315d73fa5a972d66864fd0e7fd46607d40107f1d2157df5c500884c32fbab77506e WHIRLPOOL 276d181065e5ec9be64b3e489050e3a62840b3f02a7bf4104d1349b94db33c501f9596f4c72e302737a0cf808523991609533434496a24b47c88190871cd1bac -DIST thunderbird-52.3.0-fy-NL.xpi 563632 SHA256 671f0d00c544b500b420375c385e8232354fe364f4e78dbf027ba319745ed61b SHA512 2bd3d931c073f4aa490afc44c941fa901c5d2055a03dd9ec41919b384cbb0153494cbdb79808d7e55da1db59b6833e8cc9bdd40f6a498774ae813ae8c1c9b75e WHIRLPOOL f2fb5b0cde62d989b638f47e4266d9eaf06552cf1b887c44bc6a683764d61b93b5262813953788f131da8d5de7e498ddebf71882ea43216e61ef3d022929b2b0 -DIST thunderbird-52.3.0-ga-IE.xpi 583556 SHA256 5fbc249bff62b9cd732fd3ed26af3308ac25bb7ca71e5522e1b9213e22ff8e21 SHA512 197c743ceef1da05673a82b91640488300b8cb034a89ef9332e586e25d35b1d799eb44b14a526d283656ad798f4eed2a4ab3373e885b398d6809c0298d33d3b6 WHIRLPOOL a4fac472f6aa702a91a0814eaa4fc99a2b1e7cc6b81d9ee12029d4a9b755c6024f3e3d1a43206b20c1e79bb1bccfb8a71c08e7a0684d3b0ca0fb9d2e72325495 -DIST thunderbird-52.3.0-gd.xpi 574065 SHA256 fc384ea05422569d075e13c8e4063fc613f37cec50e99a63deb8c0b88c12af8a SHA512 ff1ba740c3ef11d001c651515749e1c6bedb4f1f43f455315178f51b356c0b45bfc45073f8225b1396d9aac1658247d2e3e6be58eb8576d69b87c0ac789215da WHIRLPOOL cee1f77736fd0496f471255880fd799e405224a4602f34114db2fedbb4d9c38b52ca11e757af17eb14cbaf46661fa3c849ab772f65140848385ed896a15d2e50 -DIST thunderbird-52.3.0-gl.xpi 575150 SHA256 c4d9c4c7ab51985e265b7f4aaa9af7f7f798923dc9cc2796409cd912a437526e SHA512 9c968dc170c1da3e8e8f11b0f0e86764b97e6aea6739f64b2748b2e24a7974b8d0272392dd0902b0430cfd4ce7964031ee887684f48b7ec1f57efaaca26ec925 WHIRLPOOL ebe3890a5538813aaa1deaf6e42b7bbe2c44777448bdbeed0b1dc4e4fbf38b85bb8e3ce6e4ff038615dc6a2153e26a44edb15eb34d27b41f2d6f467b30a888fa -DIST thunderbird-52.3.0-he.xpi 592566 SHA256 d9d6cc59c40257d7b4f47ffec7e0f8b7025f219ac08a45e5b30f645c68ebce9e SHA512 22f589ce62c5ab0ad579f3853bd8f953be319751b5e1e732e2e241a421ef535599553654d396675b695535558b9bbac8bec5b86079672e5112fee6aecc896681 WHIRLPOOL 56435d4ba1559ba607cf36e829060a83c150aa07c091d83bbffd169004e0fc58a5fb4e3af70635d5e681a94a02bad278db5a23ee361a856c56d9967398798219 -DIST thunderbird-52.3.0-hr.xpi 564779 SHA256 a72bfb410e1a492a1f43cfa44b851b659d275a49ea930063c977501799f3367e SHA512 4a2154da3c9f45b898fcac0928e1f968d78a0b85a44652ee4e4c957cf9fc78b2dda558be31322f1ca2483b0e81c9874155ef16562d8d401a771267f62466e273 WHIRLPOOL a7823f87322829e13a85672886ba99a2e9b831829254d9470778187ab7ba1b6c4df115835c94b3280bdaddee5077e11a33a40c43513d060c647cd6212dab4dca -DIST thunderbird-52.3.0-hsb.xpi 582241 SHA256 d9972fe797d7b30b642ef8950dbccc81f8ef4f7230df6d9f49983528edbcac84 SHA512 93e8960ef06cbdac849d09bdc95ad122238cb8736a31c0f95f21da863e01c9b20d5795acb55714c3b12a5c7dbd8c15c7ed484ac9fb89d9ca006302bc86c38bf9 WHIRLPOOL a0358c87ba45ede5a7eca551a927468c1f4d05a5dd25a437327eff4e8613d9e2e5c333415dfc56eef865455d4ff2ca32ffaa571a19d4800189a07292859ff379 -DIST thunderbird-52.3.0-hu.xpi 586446 SHA256 a10bb179def63b0795e871268396e8091583adaff141b06ae1ea84caf014814d SHA512 3f3eb8ab6f592c0a4154d180f5e6135135d4e648637e6d4a2dc617e3d9a1221a902e4efd8e1e549a54f4757fb369d04316746ba30eef5fe1daa7e41fb661f327 WHIRLPOOL 6d7d2b3df2bb1960a892fad9245b24ce07c8bb109f6736566880d9418fd4e85697ea13c0a70ed3f86f17683033ce4bd554d20b2e0a2be4c32d84bee200efb0ef -DIST thunderbird-52.3.0-hy-AM.xpi 629879 SHA256 b78d7432de20a474bcdbb847a35c60622ec48af5a9d17692b3d5d4b06514b9b5 SHA512 9719aaeb48bac752c9a1309e2b81fc69e1c7c374ddd21078c9e8ea0ea0320cff7c2b53f674e6e7b1aab21e466a3f487a9fa61160bcb3e01c914733def0949824 WHIRLPOOL b9fa6d59050755cee9feffd5499c4d895ad8fa6112bd07506a80d8bdc5c6f69e853f146298040f6a81796a69a2d822796928c934b78212c371b3c928806fe097 -DIST thunderbird-52.3.0-id.xpi 546526 SHA256 06de6a7000509f8f1a9aaf1438a5ff1133a00b513a6ef868c861256463e7fff2 SHA512 43d1a9524714171da0aed28de8d22474ff2d5d3e164729b2236ef5a6d3fa44c844580db62fa7750c5c91febb0b7ec797006df7f5c26dfc95b43f44897a80274a WHIRLPOOL 6d114d068e437b64377ee5bc643e52f4cd11ea5a982715d8f9c51827d1e43a1d87382eda2ac7e7dceee4d4a713bb95769a31fa7ebbf0f9bdced99f22f01f03c4 -DIST thunderbird-52.3.0-is.xpi 555712 SHA256 8dafb8e5fd1c967ce613893c12e553aca11d82a5880822e010941f7d02e3e457 SHA512 90f25970e26530b7a14bac27ce6c49765ec074feb94decd44d2c13d3dc849ea052b9c8a07331755731fcd679e7c075425c6d73c15d1d68a5c7b84aa641f97a68 WHIRLPOOL d5d658e8d8682dd0a0bdfb8c7cf853e44d68f4a737318876372d7c3fc4ea6eb9a3d4bd648995136e90d5d06c251d15e00e2e172f26bfae2716400a73bb3ac981 -DIST thunderbird-52.3.0-it.xpi 455408 SHA256 3987ec1092b72806eddad880b5ee25d1fd930be2ade91c8277fca50de21f8322 SHA512 854a2b9d7764b73a7b3a6a47ff3fce0bc3510ab03b52b0300bd7d503057ec39dfc21178551250ec3cf9dcf662bc6eb6c10ff6bf2506335e6014ced82a45a175a WHIRLPOOL c962d2887be5e9e63cd087d010e4ccb1607dd3454083b94c3e113b85074f5bbefe352060414572e06ef3bd0188727c46b7d213d70a6b8392e87516e18a804913 -DIST thunderbird-52.3.0-ja.xpi 630053 SHA256 7024ed0f72065e103dc72c388162f4dba5102bcb96b2fb6384b46503fdc28057 SHA512 6e2ada747a817c7c07b29133cce292dfdfadc7bf4ff3e2574ac06085ebca2b08e39f62b713548fa6fa966988d3ed8129ec1cf6d54a4b26d6f3cc837da1d95296 WHIRLPOOL 60e0bfa970c18443fb7535b92ceb4e31dc2f722f3ee203d2e28865eef6832933c49a0d96ef3d0bab725295d8dd153b547805b178142f20971302a5fa63eb239c -DIST thunderbird-52.3.0-ko.xpi 595516 SHA256 816fbb26a0a21a88633b1ffd236a73c5fb31da5a21a28d3bfb9d4cb5f9c2b7c8 SHA512 7a48d56c29f6207f5d7f53968978eebcf07d17b8ad9de7940eaf3a78850d9ce6ffb7d6c30ccd3b0cd92bcce25c5edec80de54aa68244606e1840b4fe1c604fa4 WHIRLPOOL d1dab1b505e76adddfc1de24f814614c2d9e9479c0edeac3bb5dddf420286875757cd3302d88502e1f5e5b2e51cea6c6fc0381a42d57eafe3f5b7eddb3583cb8 -DIST thunderbird-52.3.0-lt.xpi 580598 SHA256 a8505ea9138478c30e839fffe1949d63e536f2a812c2777a315a59f30bd1ddb2 SHA512 d8fd427b5f25de5eb557a445ad61a6fe13a396f0cdb8af7f49444da10f1c524ea1b8a0e893cb9c21ef72594f33a2a3fc4e15423345c4fd188457d3e4fd42ddbe WHIRLPOOL 14697db9472cf39db3dc778abf1af68dba780cb2b23859008aba51bc8352530ce2b10ac7867c7c1c530fa016a59daf74c81f321fcadf41567ee829ab980eaa56 -DIST thunderbird-52.3.0-nb-NO.xpi 551104 SHA256 c1c15dc37d85a4912ab467e9bf9aef814ae432eff338032b41c1fd49eae13010 SHA512 9ddd7240500133b84f003432f0650fd2562c50e4b3b2099b2597186e137b4d579e8dbbe70cf11c5080fa2c51c36bb9290df8da16d6589229448cafc31ec7d4fb WHIRLPOOL f1c72c9ac573ea99a61cc58b4610ab6be42cbe9c97a241fe5911c7d42a661ba6650ee6654217d97cc2b8cdd1fa57b3574d4d2c5487dddc5a9c465ad38952752f -DIST thunderbird-52.3.0-nl.xpi 557957 SHA256 c713a6dbeebb1c8dd77634dfba6b7dda3b422fb28a55329e2d8afa8ce60484ce SHA512 2f65d52b63f14883cb71d31076d14eea8db61d134cd14afb6247da45d62b7c4a53161b3ccdb2e08bf8909db373d95ad56b92c3ffe9c962630bfd370ee704502d WHIRLPOOL e25f3d204080b1518e4297e2d0c94a2cb1dbd03beadd1e79215ee9c88faf1a5c45e9592e03a1f3a5aa540043a9db275ba1441479d2fd9374115181ca6f436da9 -DIST thunderbird-52.3.0-nn-NO.xpi 551891 SHA256 a0b5cc0aa1c7017e8030fbc8c4b6573ddd3db4d6f15c97e9aa2eeeacba9c95e5 SHA512 b5f41f7ecfbde3ee95015f8da0f92cccfba2bc91c4f9278c5d1bda3372e0570b7363d47e366903692c7fce1ae3962cc1218eaeaa7dcc89667f9ca05cc2923b57 WHIRLPOOL 3b9a95917c7e670459c88f0988600e344000eb1e8429dfcdb3ece7b0726c98cae06488f0869c100a51659097bc43addc3d6332fd8501472a09240f0cb47bcb84 -DIST thunderbird-52.3.0-pa-IN.xpi 646568 SHA256 bcb38080fe3aed04631029947050f12a5c5abf3a9a8710d36ef10f2186108c52 SHA512 c853bbcf73288c702f1734cf04c2917cc0e0c6fcf6c3a2532d39bab8d707cda475d516a653fdbb3bb981e01e1b47e5f615e27de576fc2a3ac73bf4cbfcb86a83 WHIRLPOOL baa4c04d647aa0eb06101b3b95fe47ef6ea06f52ea1566bcd536706bee86f413c579f0c3847b962dc18a7285c71f7381220a751e660f17f5214443fb29a96a5a -DIST thunderbird-52.3.0-pl.xpi 469901 SHA256 b67d804febd8b5c2ac18fd1eb16e958113b8b240d69ce4b80bcd14f9b3afd220 SHA512 8da5f44b3f0f5ea5ccd3d4478d49b326daeb11388e827eee28527270129d5da973a2193d4ce26dc80b923874b6da222c25ebf88ae1f670d6e1281569c2f4a2e2 WHIRLPOOL de3dd6bddb2336b2d907d24873e240a4c9837bdeb88b43494d9082bd531cb1b4816669a9ef3493ae65391db564a4ef0da86b3cfc0c8e6ff6cd12ea57929293d3 -DIST thunderbird-52.3.0-pt-BR.xpi 558224 SHA256 01e6248cfd1939ef66a8f7f1ad682a5735392b6ee41fdefe92e7cfa5aafed5a6 SHA512 ecb7f6ca8a3c7c4558768ec9f476bd4cbbbc15ef49079204c1df1ab0780fdf49ab8d424f64f82b33c40408d8ca0b1e10f9045b50b216280f358be62041e96414 WHIRLPOOL ec28523a90abbeae16294fab1f687a7ba5fdbe31e718a02c3d2ebac52fba4f499818b12597caaae7c5da7a9244ecc069a0b7cea362432ab3034c51a86863edfe -DIST thunderbird-52.3.0-pt-PT.xpi 565623 SHA256 f02da1da4e3d5edc7b1f903470c7bf02f06026d0acfce6d064a15233a21c0e00 SHA512 3852a4c739b05112111c64a82be6666d140ae437334b14b01a001964cf1eb0bf0309c2317783ec636facc51d15a991c87ea5c580f01db6ab877b9452e3c1f6af WHIRLPOOL b5d7539be2df1d8fdac1b5da9bdc74997ec647552057b0271f1a224131c8e018b020a5fc3a880770c1f3e92b0b4bc180ab467a896d1f1a56725e419cd040a151 -DIST thunderbird-52.3.0-rm.xpi 557605 SHA256 3df2eb933ed20ccd66c8da61bdb74670e7b5e5a2def1c8a9a45fc2a25c55a03c SHA512 fa0925f39afb7da0f1499c676cd579a4e6ca18def306b00281ef82b349ec3e3b483431527adb07391d832f1ae39d0d228552b11f18b2f1c0927aa4fd0d3bc421 WHIRLPOOL e89a68c5402b167a6c0e3a7503300e6ddc2a246102d4ecf149ab64d862a65b972c1016e07d10fd36f331d98036459abe56cc358a0b1a79eac37f62c6fed5e0a3 -DIST thunderbird-52.3.0-ro.xpi 570530 SHA256 4bbeb7ea8eedfc8e0a5bf2517d38fdd9aab6a29a7d88cb68c454e3fdf80d3413 SHA512 268a509b92cb97dd513c139e180de9038344d1e486e42a2227d919124d5e5dac1ca59d503e8cd549c9d0b13198e5ffba73b34b1e8fe3b217a66c6d23dfab5d93 WHIRLPOOL 0c5d401311f4e2d955825c5a2a97d9e938d3229bfca7656ceb27ca27aa6c8514fc5d0f1f2048c1d1c2f333c6fe9c9b6d392490b67eeeb11e59ce5be24a577e87 -DIST thunderbird-52.3.0-ru.xpi 530670 SHA256 0692791c71ff37b7b1c141f68ffb985d2a565edd4085b2dc3456ef3a3c45e2e3 SHA512 7a8b797edc9f95c2bdf64e0d7449a37126113ea9a649a66844c01cbab8cd7f569f26782f1efbb34a5fc275cb38239602ce276aa9533a02b1d52e9bee9f66c7a1 WHIRLPOOL 58ebf20a5f9b5776ef3c1180f2400ff4ffbc6206a3e4d567510274c6b328231c7add432e4227a325d3d90e1af8634084ef1a6dd9d314ec73ef7570c95d55afb0 -DIST thunderbird-52.3.0-si.xpi 649011 SHA256 09af36243360b498a6352f10eb28c78f855d87ce0ef5fbfbc11f13bb45465462 SHA512 ff2fbaa5d1e798d76be650d5e3f175405b85dbe51a52e9ac34cbc0dd2ccfc5f2a3789722e63665f2fa790c900227e228219e827b28174cfd2334cdc896c255ca WHIRLPOOL e047f207f4c2a6de50524814bcaef1932dbe6ef64391b3758799855d88b31cf6266247075d947dc19be86383a4ed6f522ea3f5ab24a06945fe2a819213b6454a -DIST thunderbird-52.3.0-sk.xpi 583882 SHA256 6450c19ddad79bab8b059a992b844fd362d4e6cdd58e31d63bafe25f7e73ab31 SHA512 766d32d27ef7193e6cee548edb89e46b2969c9f108a1d291201949dc784e8a56fcfa8608b67f077698c32706de3164fb9b457d2573f4f0235d5d08ff601860dc WHIRLPOOL de269a4ed70953dd60386f16cd46c054d5f11f25677f1102865225bef73de39857c861c7f7305982f70dbea1c10af579bca77a913b11e90914b57ec980c0dc50 -DIST thunderbird-52.3.0-sl.xpi 562831 SHA256 190ed15658855a1438b46614209d723bf27fb90864ca64dc21482fb52f5718b4 SHA512 09a28933b062cf72a4c0a6ec8baa278a36b18c132abbab0381ca39b63489c3d40ab319bb9613fd78ec43deab5b05d1bd5a47699d74cf4c789035d12e300388d9 WHIRLPOOL 410e1c36e5620967afd50342e15f7cccc91145ad0d62abbe031fb80cc0e35f03a55f8ee926cf6f6ee05eb5f0d3f6babea2021052dbaeb7f73fafee2728add1c2 -DIST thunderbird-52.3.0-sq.xpi 570616 SHA256 a68c843f7d755ab2b03a8c23018f17be1664279659f9fa9bcbae207ad27d309c SHA512 10b7f73219b51f47a6873abd5b8f55eaa0282b6c705efdfa90f121a22bcf43fed015b12c26ba1bf9a4f3b5ab5d52a017c2dd978432fbd8355656724159847dca WHIRLPOOL 6ffc97cc586234674c6d269cb43bdf1636bbd92ac1bd97e7cbfb1579b793f495cc74aaa07418fbc08e9d00cb97e8a0d7a6467832ed9b7e6aa6761290394cd76e -DIST thunderbird-52.3.0-sr.xpi 609019 SHA256 194e63cc0eac946214adeb1a45b046a07ce5f7dbe3d16c1dc960dae07f3215ef SHA512 58a1d8bb3f4cf253f5e581b226d8d2fd15cd9526a16d175636841b2f3b7fd1461300640d2946b965eb9c3216f263a522214ed26bd0ab979753efd20339564f8b WHIRLPOOL 22e451493565107caa381fb0d2e70c485eeab74ca771850a2b4a3f9bcfd43bf3975707ab5b5f0e722bc720f5492e2f6c03ff1220de2d4a5dddbf556cbcc23a98 -DIST thunderbird-52.3.0-sv-SE.xpi 565777 SHA256 ab9811adb9abf588119d7854ba79a6fb6204eeef3724a0a615a3815fbe8ebfd8 SHA512 68c64309337e45bce8e20802ed33d4979303927d53e610e917226d698afc88f14608986318b912cd5ffed88329a509d49245554c8d567d80dc34f4b7a39077cb WHIRLPOOL 8c18899ee104963e60281508fbf9811b2155598ddcf23593f3484d475e34201527ef50739380b54591685d80da905d4acb3846cc09375ab984a3d1202d74a9a6 -DIST thunderbird-52.3.0-ta-LK.xpi 675039 SHA256 62d4a70fc6b8c93a44e9de6d810a3c62561eead83b8abfb545b0bb22f500fec3 SHA512 ad535a7db2e22a94c1a58cf270732e37a120b1655c19b9a45c6d030bf797acf354ba77f70bb151e85091e0afaae7433decab9a4c2876755b51b7ef7bcb233447 WHIRLPOOL 68ebffca78f6f88804a37564bba71e2786fa38520593f15c9c3fd140be5832605bc2754c27b2e1fce481b76a187ff4b1ab33c2094f160a3faa17aaad6d86b2ad -DIST thunderbird-52.3.0-tr.xpi 569926 SHA256 4ef6bcf07c756a4da0c3aabe41c8d32962b72fb224ff93ea475d2f1270ceb061 SHA512 4c240056a169cf332b730b8d660c56098c7604048f8939b533e18db76b40b3a8d184107de8245fc3de59a14c6d75f7f06ff5ce13190ca89418aff9c024202a43 WHIRLPOOL 594b1a9e8aaa9db0a2c4e67036c1c97375433d3d2e147fa0d5b0cbe4314c2eada3e488dc03e291f1ea23a7959b3f07d0d9bdf1a5e352fa4941f66da8352e8362 -DIST thunderbird-52.3.0-uk.xpi 652855 SHA256 b6eaa27d994bb265b621f5df1b288d4d97e0f543e1806d9fd988c7a563f683a1 SHA512 766a80174e60e39aaba39f1147485013265ff00daa945a9f8ecfb185d3ee03600fc0fc5027b24d5482e5c204dd71c181ffdf8bdf1d01e597e91d1a6ea960782e WHIRLPOOL f4b52b6f1f475e27fa3054021a01d5ffe19c07cafc05c550a299e2a4ae676a5146d4d1cfbcc60a2aa75d5f4f7188dd90a99e77726d62ceddd0c75b994badc6b1 -DIST thunderbird-52.3.0-vi.xpi 637163 SHA256 98fa9c475af8c5a4dfe132ef5f27bf3ae0b550cce46c6bf7125608beb965aa06 SHA512 2578680cadde87ca2aa6b295a20a5e7274508aba2d1ada716707a414314e3bb504042cb956fbc0f0883a47550aabee83dbb01ccda73fcef4e0f115aeaf464920 WHIRLPOOL ad21b2e6858de7df1b9eb9dffc0a5ddd07272bf13b8fc3a9a9180d282d9f06fb5c6dbae06f64d387e54ae419f0f2290ec6205e6ac6c6b1cb90b138405369e71d -DIST thunderbird-52.3.0-zh-CN.xpi 593612 SHA256 2c5beb3ba1bebc339ae4124fcee79fad375ebba7d97251dac83ff1eed1042bad SHA512 9db62fce3fec7e4b243c8d8998da6222251e12cd8325df1e56a5ffd9609da03f451923d2be26e47020763b8547a828b679921972e59a653a19fbd7d8ad9d1648 WHIRLPOOL f1a97bed845afb1f734caafaa7b32e4810cfe2f9082befb72d762c3ef2c801e4b65e7768c902820654215866c907c7924017e6ec6ca848729ac9baeb8f66cf6b -DIST thunderbird-52.3.0-zh-TW.xpi 595729 SHA256 2279205d7288313d59be7c2eadcc572988e063fbb570e76802cb681bdc262e0e SHA512 cff5e45a221790a081dbbda711d8706c70970d96149e63a157b5efaf720b008966572a6a21e9d4435248e20efd6c9b0ce9eb374fd4691e875f3ef9e048f0d7c6 WHIRLPOOL da26721eb2880a4d6d05f96ba2005bbb463c1951bd77e805f0bf84b397d36ef2904dd36e81f3c26e3a02a202907175e7395c11fd54d233fff3102faf53340874 -DIST thunderbird-bin_i686-52.3.0.tar.bz2 51072770 SHA256 dd7dd0be1d52bcb693a765c28a7eddad97195ac821ec9cd7bc05deb8b107643c SHA512 c436d084accd3b195f9dd0b9c96d9e45ecaec730bf5a35e35db65c7ef6328383fa82ebeb3b143f2c92bfbcb3f7983f451e35e68443f6fe24fc43baf686610207 WHIRLPOOL 3c7618e08a9dae977569dfa51971ca2c1a3808635d414f0fee5068fc2c4ac879d5352a592e5565bf33284414733ef4d0e260e4cb48344105d53b9de7bce01269 -DIST thunderbird-bin_x86_64-52.3.0.tar.bz2 49771093 SHA256 affa3209b025504ad1aa1a8357123096a3fde0320df5728da0b08aa9fb5bdf3d SHA512 ce05330aa7032f0cae542578cb49f7e8bbc7971be455817126bc77212ebd35ec701691ed91758e7c5b663f4731ed19c2864728908816e71023be36d13ba98bfb WHIRLPOOL fd599f0e90658bbaa5975bddc61861b94ccb89b98831401c5ef8e192e968c5d70996cf51e39f8cd879f84778e0f147f8ef4a4651b6db84f5d9e4b4a76ec4bb7e +DIST thunderbird-52.4.0-ar.xpi 604235 SHA256 5b17a53001f7605f9e12a9881573f93940dd5756bd54788546201c97fc323c3f SHA512 bfadc747f3b73796cc5822c81567aadd3d34a420ddd104d042d47041b03b7e62b9e1d95e117d5b9ee14897187dbee776896a2bb0c7dc62ca70cc1e1e5f33fd89 WHIRLPOOL 7ff63921c6452ffca21cba430ad45e7953083a821801d259ae987c67cc7a0113d4df8608bd787aef39392744e661d04b5fd64d3c1b14d9b3586938b9fcf27027 +DIST thunderbird-52.4.0-ast.xpi 541173 SHA256 e3f5a29ee9258e49306cd1580d603b635a5ac7c8840c838504606143c141562a SHA512 1653f6ea89fcd4bead7a06badd7ea025dc2daf6a450dfb944e7b45e7d7da9818b660bfc02218ed79246b8231e42f6678beced2f78df668cbedc3676a088d2dfa WHIRLPOOL 0f70d593e6ce37ade889e04b5e868c31cfdeea9a0cddc04eb768244651e987a07ed2af40346d01a3f483a34c3a0394fdb01de6ce8b0002cc33ca820b05d13270 +DIST thunderbird-52.4.0-be.xpi 570932 SHA256 1d5e536ebe848d9a9ac773c6e15ef895601c1754a9f0ee69a7ab229ec931dc32 SHA512 c15aab335806ab81745841b4fb2035be33bf700b86edd39fcfd49891e32b68ee91cb0e71c0cd3813e43a3ba45a912876501c97560f7f1e2568729cec5082d478 WHIRLPOOL 1578e1de28fa4704c70eefac548b5551dbaf244245059dac2088b8c49328ba7c279eb7ea8fc58bb19b6a2fd830046c44f2ba0fa8fce4be94ee0d4d52369c434f +DIST thunderbird-52.4.0-bg.xpi 634897 SHA256 18063549c65ddcfb1c438b5be60ebf27f2b6ed2b926e52ba2b9fd078510bb42d SHA512 494b6a30de08858b7fe5003c8333192c0a393ca188defd075cc75438f9885a7fc5b746e392a411eb06eee242bab27bbbbaa52bb153d66fb996f4f2db434517c5 WHIRLPOOL 5112e4b75e2d6faed09c786d8573c14ead5b34b843755c6bd592131d64b046901992cf15b9f5c9636bb9f9398abc08d7657b1dbb927c1fd7e69d7339f6912632 +DIST thunderbird-52.4.0-bn-BD.xpi 676901 SHA256 cd6a5a1c7b9ee0f688815ed2d6ebffcb5300fd1ebca9f0bc0d26c0f8d8530d12 SHA512 a8a74fdfc2d97c61eb5b09fae2cf05be9af0411ef79296ddca3c26b503c1c017c0ced7bad5e6ec1c235c1198c5793ec041c7b48b6aba90a63d09e128e1aee024 WHIRLPOOL 4842ebc2e27fd7c82008f8131e87412395d6fb835b44a1cc73a6483c65bb7581c2dc9c24573dd18ba11fc6d815714184f6f926dc6cfb5539e0c7ffee4ea8c0ff +DIST thunderbird-52.4.0-br.xpi 559380 SHA256 8ee2714cf3efc9477059047d70d3429601e2451e32d823ad48ecfacbad802edc SHA512 8c4e41295c063d5b2f5dfa0d20a202bd0b4e3577eaba2d139bca8575849a3c4387fdb0d2282b6360050c615ec336615ea04cd4304b31a5b00fa3be61f61ee45e WHIRLPOOL 31093cec2c2c102c3990a0a7c8c21eea9cf094c52884667664c8baadf138432cad2dd6a3d34684c0dc94e9a7fceefa21372ef6b5888353a6ed0e36740b2d4102 +DIST thunderbird-52.4.0-ca.xpi 569910 SHA256 8b4929329075581266bc18189660c6200f6084153530d45ca6ce2865572a392b SHA512 5dc899065913907ee8e1416ab95e9c240b856e96fbf51c1ca06344de48e96687b2901cf90e98a49f1064b000bc78c9f43e54f194c908de3f97340c5d7201de38 WHIRLPOOL 47170ab8f02db1606e859e4e46bba39dcbd973ba2c06a6dbdd33bc0eaa4e0b7727b1af426f020d36b0c08b47804cf7ccf257e6b2bedb3810d8fa735f383deedc +DIST thunderbird-52.4.0-cs.xpi 579150 SHA256 d3898778cd4aceea175c46ddc386b47cbe134a1b89322cee285e5925042032d1 SHA512 2e1973047891240f39d89c19e5f6767e735c9d7998e566c4b7e0e3243c61d887d2307ffa6c5d709e2e49639bf20b08f41d644230152150a9694b02ce6fe6d394 WHIRLPOOL 2307e556c6f7fb4dc3cddc733505e07e736bb5eb13b295e676feb32e2a3a7d13dfb53de76b3e8ef92753f016603b42550a17aad223d42a4fb00f2d78f4c5c020 +DIST thunderbird-52.4.0-cy.xpi 554858 SHA256 c95bcfee29f32aaf12dba7e835f35311eb71dc923c71dfc063b8150165e552dd SHA512 bed9d8907f4a613b0355cf4f4487359275631511a4ff8550abcc22c95699d1d513a70f90ed657e9f608c7d99667b27208909532858bd2ddda4ee47541fa26af6 WHIRLPOOL 48d79a57164c9a8f500dce18c22f32878e2b7921b638f1dfb1e8ba96ac1104c5a0f9573811a853c3d2a9554fc5d0432082cb9febe4396c6877b691c16417678b +DIST thunderbird-52.4.0-da.xpi 543336 SHA256 cf1efa5a056dbb9b98324b1b959a61467af15ea82ad586369b4b46856d89d990 SHA512 39169bac23dffdac006e4d019f5c9ac99bf1ab7c55f7b85ad9ed5f05296afc3fdfb4ff0bb48180f38ef2b968016c753c8473b10d4b6552d3783d35e84208b473 WHIRLPOOL 2c5ea8b898779d59aa152da2317950605ceaffa1d81c52ff9085ba0c2a3fd9a99873ce84ac0c27cb88e8cf0d775a373ad1026d5b533f2d8f788e63324d0cf742 +DIST thunderbird-52.4.0-de.xpi 555744 SHA256 6d8bc484a1edcdbff75d39dea9f33b85b92514058f505f2915810609796e8a1a SHA512 8ad1ff725a7a75cd691af9360e872e173b33ceb2f95c705c2cf6594b3a1fcdafa94c8892b79b1c9e694dad441482734211840cbd46522f7d284dea7a4ce7c7b9 WHIRLPOOL ee4052866ea7bab87706ea3c1f3ec4458ef15b30656b7bf7818f9d7a9e51a8a25ac6e138d05cb4a83ef251930c1d030813839c1b4f4c8020701cf4f2b0c4b86d +DIST thunderbird-52.4.0-el.xpi 662965 SHA256 c5201686e88cde81222817b006957bbee08df0745fdbfeeea067b558f9131872 SHA512 7416e98eeed2d97cff1303fab8bc1ae595bf6779c4990c59ceee8da8b00234db0f4e6b03392962d8e482da29755bfde3f655005c9346cf05446c8be654135844 WHIRLPOOL 21dabce2863d54435ed287548fbc96e740565d75333fc0bc617f9a42fea20251d61065199f449c9455267232b1cbc9c36324f1b9af2c43f16dbb7fb7f0159310 +DIST thunderbird-52.4.0-en-GB.xpi 531234 SHA256 45905f12c6053324c1ed880837fbb6b00afd631d83907d6274fc4aa53a4861a3 SHA512 e4b918bac6500b62755b13ff002de440025cf2f5a9b4d9a65c35006d0e42bb3b79ad7106935c45f7afe9d445dbefdbf539a87377b354ac2b0a813e75e84d89e0 WHIRLPOOL 4f1231af63da0fa1aba5dac46e761a735d87b424a9bfa82619f383e019921cda822618e650a5e595354c2dd36b3ffca4489eb6d61ac853c96bd9d069628c5ba0 +DIST thunderbird-52.4.0-es-AR.xpi 565995 SHA256 f6bb96a72a3a8271b9796d9516908de2b885028d7e3cf00913fa74415b7a9ce3 SHA512 3770c63f71c7b35b79797778279c7dec5240427e529da4fc6976628ce05204681da489acaa22f8c27355f7b7872ac3656261b486da62af53dcc1da0cfee4a808 WHIRLPOOL 903465f16b6715ddf8aa77f78001c72f4292d411b07e2299ed0199cbb35e97c505642e98626b26c1409cadffed8b1932a19ffd77b4bfad3ebdb5d7ffb5b62bd4 +DIST thunderbird-52.4.0-es-ES.xpi 445464 SHA256 2d49b3b67e7b0c8f99871906e65d5e3a6cd684ad3dde05a730dfc8d328205005 SHA512 165decda1107e3c48cccb68f857d606d4bb06125214088ce9ff348d53e45023a28f7a196722371e6b18f58fce51314c8277ab6b6dbc0323a32c70bd5147865a7 WHIRLPOOL 92ef0df7ceefc94f0375bd5697e4799eda952730b3fe9a39ce04fc80806ce3a0504ec495a44bd072294c16c1c2f68ab227711c9cb414017a539ae97b89eb7613 +DIST thunderbird-52.4.0-et.xpi 551661 SHA256 eee8043f3300c1fbef18d87c783de89a11e69a75e7185e0fe0ce5a73a0feca0c SHA512 507ccd9f8b9d8e8b1c43b8189d32afbece0b47340fbf14577ee4c888b883ca135b83f62f2b6ce8ed1962ba030daad3dac42b60ac26a01132578c1023c07a1b79 WHIRLPOOL f2dd79fcf3a588d5f1ebb600cfe50fb2495339bc2e1fe99c850fa751e02b9ec66311ecba1ddad987f72fcac1b1d08f24d6fd4943df4f772f31f961ee7fd2c53d +DIST thunderbird-52.4.0-eu.xpi 555536 SHA256 448a3d9d8f4babd98872e2f91c2837342e4c01fc6bbeb0bed3a4f4e14ea381b6 SHA512 3450490dd16f9bfc550fe33a4e31f7679b644e358b09b1b8ef275290d17255f8dce1c8a665b6ca8cfaa91365ce3a98bea7e3cbfbec8800aacc75ee3dcb920f23 WHIRLPOOL 914342afbe0b5291587b4866151b193b3e20c79760ee6e1d55130cf45f1923f13528b09bdf50099760f0f52905a3b899572fe4934d48678f29af6638b70565ad +DIST thunderbird-52.4.0-fi.xpi 550670 SHA256 fde89077936d1ef35642d6b451926e885f69b9636b66314c4d1d182a9b753ee0 SHA512 b40fe8131eb3be646cd8314fc664ebb4099d327ef78c8058b4054ce0266fd98c5f72bfccd8483ae950312e9310b21f4ff9bd7dbd0ab28ec3c79195436d505786 WHIRLPOOL f6da2ef24f646fbb70e9cde7be14f507413b8f0530f0dae21a27000a5e7754a2afe31e3bb7df69b3af32e3e5831b1d70a89548bef50b5e8850091eaf1322e6bd +DIST thunderbird-52.4.0-fr.xpi 577561 SHA256 98c758ebd8c286bb93a1b9b75a5af1939944c520164a5b38f1f39936529fd7bb SHA512 ac4261ecb136c0ed4b9b45caa18f796e85e8cedf374464ab425b4f4ef41cdcdb5756c509114f306d6ef027f70313aa43a498711beb7ce4462a24bb5c18628406 WHIRLPOOL 74244bec44f137ef4d26fc451988605f8ba3211dfba852fd1fc8f9dfebd974e5ed52a35cc6825e0087a20b9dbfc2a12d0c25a7414483c4870cfed29e91239722 +DIST thunderbird-52.4.0-fy-NL.xpi 563632 SHA256 1225accf01b15e7e3132ef51d9275ce573a3615360f16647c91bc078134f5002 SHA512 ba926a525a308b704733af586ec33d071961a1cd93c8090be12be844516714b419344f98d71af0a6d2d607eb3b76e64fa25ebb90ebb4657fef3960d5f2dde6e7 WHIRLPOOL 1af45abb1ed00b3948bb4a84984b82cb6884767a0081abd4927a3946e405ffa7368f82ac5ea3bf89112d8316c8c1ecc8c3dada4eb8322736008321e53781c3fb +DIST thunderbird-52.4.0-ga-IE.xpi 583556 SHA256 22d847437c25ff7aa94b9f5ca1147277c87bccb5b38afa4f0ef7fa5124a59cdf SHA512 9b081dcacfeb150e92f87577499d5716cc176ac1aedfb4aef880d2484224afeb2bf7c197e3b09ace37854a176538770b4f6afa8bf793899df0a21ee31eeb9d1c WHIRLPOOL b90b8614bfdbb834cafb1ecdc34385aab306474da96198f24ccde288a3459893e3639da0b5676415a80c74b956b30e7a88be7214c9e2c89378f4374c0c82c9e3 +DIST thunderbird-52.4.0-gd.xpi 574065 SHA256 d184019e5989bd88b8bdb7a27788535b0a3a487921d85339ad0a1bb81cf46a40 SHA512 aba8d493f75aeaadf093e1666e85f1ff794346492d91099f6a2680b95f4d8e981dfb3509b190db0e1b6e4b74a381bca38b61c7bef3f67bef2b631eac8fb49f67 WHIRLPOOL 6d511df4252ba4ccea608f10b7a84fef5d9bbe05b3daad83e25841832d42208de39ef1b06e8d38db5934ee12c973b2ca7a151a2abb387dc426fc50e6811d8425 +DIST thunderbird-52.4.0-gl.xpi 575150 SHA256 a35d8e9441219196eb90a31d1f65f08493ded91fc1ebb1b712c417827451ff13 SHA512 6f57c57825a0f3e7eb530933ff82d4c31c73cde2d5d58edd57267d1712f0606fb8511ebdab409dc0c967b1319c3ffbb8158bb6dbea308d7ae7a56af4b94650f0 WHIRLPOOL 8426c9c10ab8118933d2f09fd775727d099573633cee1c3671aad70cad56b1c084bc5f905d7eb8a7d9386909996d68cf93229168e352ce7233aad780cf9f3c5c +DIST thunderbird-52.4.0-he.xpi 592566 SHA256 8d46ec38430a1939cde04141c9f5bcfe22b81a154bebb89dc112ff199042203f SHA512 fb2ddbb62f31071b07eb6f33f7f6015c8ffee96a5a78504adf6b9a2fda3c589bfeabf263fde638eab9e103750a06eead1a6465a56e10bc3034a5b8e0cd79be3e WHIRLPOOL ccc8e56770e7a0f9a488c070379658feb8b2a94f8377ba562643d47b6acdefc56862d90c9528c361fd7b4ed30d869e6bb785f79563fbb9f3f945b617d6ac7592 +DIST thunderbird-52.4.0-hr.xpi 564780 SHA256 119c5055305b8f16b02a822b70044ff2410cc79f32a456d59c71c455002b8523 SHA512 da59389943b6427f1c1056b7712db105fcd38b5979fa47e1a62b8ff03e345f4a9d1b3dbc23c356d906b741847de274bf3a7e53c12f9935d5a749508d750f9f11 WHIRLPOOL 77e83f4917edc6aba551198c4045a8a2d25ed8e30cc83e7e951a99ad0aff599ac30312ff788d8f3c72dfeb4f8f2df6508228b4cb2b1401106361dff8b2e4d445 +DIST thunderbird-52.4.0-hsb.xpi 582242 SHA256 1444e2582233eb0ed7abc8566ea951d6938f75bc069a20b47d6f5cd8608a740c SHA512 ee03cb954bbcf507a2b8cd0ebe99242b0f7d232f46fc90725ae70089be3dfa1413584feaa5320c8ce9a4e453d3c3d932905849cf57b51aa2e2a4a164a228e710 WHIRLPOOL 8fa2aa3a4d60b9014bcd66a1ba03511cf045728126523c0cf7dfdbd930a74f478e2cb8414cc8385d67d723f1be65f03d91ca25d1941e6277f895eec989298a9c +DIST thunderbird-52.4.0-hu.xpi 586446 SHA256 b98796554589eb7ff3e30bd8fbbb27c8d2ad31bc74d96d4070df1f0eeba40544 SHA512 b9f7b628f7cc112e79eb5a7e382ada35fb6ba3d0197db33bc370a807fffc0a69cdf4187b87e9b13e460dc84e2b9663d995cb8ca831518b209efe428c32f97ead WHIRLPOOL b5a8e0a2737c1a6f6271ff353b603a6f377b1d19b954f9cf7dd368b7c8300800562563eb41e14d28fd88b20d658706c3c2ef71443d71028f3ed3185c3ca2743a +DIST thunderbird-52.4.0-hy-AM.xpi 629879 SHA256 ed1d4f05c0d4d2c8f4dc4227c43a4f08be01ec6aed92a3ede2ca83550543bbe6 SHA512 3a069934b02de31645925fb51efe16b137357571ab5376cd321d0263ec5bfac891851429deb216b78fb2c357486cb840b4aad943c0ccee690fad5bae6d39012e WHIRLPOOL 132616d303916a3b192d51bca4de9070b1ee4595cc91e70ba3d09c12fc9a55f701bab58acf44dc49046b6d1bd99a21c8d9ec035ca8a5e83f62033f00f2c5e3fa +DIST thunderbird-52.4.0-id.xpi 546527 SHA256 5bd33fd191ed602e3ab0c47e9d8106328e73dcb07e3ae10062470d1de138aec0 SHA512 3dda07d74bc47ac1d20e294c1dacaf16805113aed31ac1246647f95c2e758672154ac427ec3915b577810a8df66cce83d3984f34539ecc01375a6b347d0140f4 WHIRLPOOL 9d9f4ab5d504479ae5b347ef4162789a14ea34f5ecdf14ecbac93416f2f5098508b269cf6c003334bfc3518fb9ce6aec6b3eb6299874cdd1216168e4f8f36598 +DIST thunderbird-52.4.0-is.xpi 555712 SHA256 eed6b20e25e34b0ee1498948c8baed0060abe1b3a25f9188b123c81fd044771b SHA512 ff9e52667baeccfd829e210822355a3d995046fb807bacdb9d52e6f2c7145f96a8bda6e0ef5fadaa442cfa7985de36b09a8349cd860d55c1a131b04e4cb44d79 WHIRLPOOL ceefc490c5580fffa310241d67a389f6fea7fac443779f57243af7c2bd3745d243f57ac62b0c5fc3a21c300d82a687a3edf62fb16d310ad05ba7048b4d78ffbf +DIST thunderbird-52.4.0-it.xpi 455408 SHA256 5800130bfd912f58e6335791afde9718a59dd3428a589581fca160394a3f4b75 SHA512 a82683e66c379f84492f6b65e6ec068e472f3e9d56db5b9c393d69966a873f2ebd626d3d30ee6a5a2c47a5f82c0ac39abc39da2dd9c67a58505e4b83dab08503 WHIRLPOOL 20282abd7e95b57df459a005132f7ab056b698115f349fc22ccf7ed978c6bc3e38a4867bbd399cd0691159908cf5da6a4f997de2fd57df577cdd5ac7bc71bae3 +DIST thunderbird-52.4.0-ja.xpi 630053 SHA256 8846bd908fa6481e2ed0a2e7fa1cfbd7bbfe02a78b1cca75e9b2a1ddaffe1084 SHA512 d297d4a86e2f7f31adaf27915eb4e6ae34edadd7fa3cc903e8d64ea6aa01b449d076be5deac803d1d39c74d9c5d09818fa0e2fd670005bafd41c83028ff117c4 WHIRLPOOL eabe0b103085f42212568e02b946cf7db2385bf91d5b9cc22c0b1fe440fce1bf4431e43eaa0e39f6e25a231631c52633eac3855e11774a91634e726113ac322b +DIST thunderbird-52.4.0-ko.xpi 595517 SHA256 89192fe23dbce157aeec48168b45ac94cc47bd6d83907b3ab7dbaeabe5b7b7ef SHA512 87f663896776abdf1608a28e905cd38cf935e8ab8a8cdd7482db1ac627e95695e1d15e9e3d9b3017e30e6534154e80fcd6cd70ededbdc2ccff12b200269771a3 WHIRLPOOL c886f74a2c2d07c27b8444011808e18d46c1d5e39a68d14b97c99f39bda8b8a0db4b2aad09ae69cb7913290711beb0e24b394e3ec80fc9b3da3045c8bfcd6f6e +DIST thunderbird-52.4.0-lt.xpi 580598 SHA256 90bc80f8742b35525af3e1f4fad4c5e6fb3442423b6be7ddb8c4a5be76bcf564 SHA512 ad913ca637e7acf04255ad48d63ad7acfc317e6e55cae3f54b1338c98caf04b0aabfa18463e83d77f4aff211d21c496e98ba0ab473a57f79775f7efd8ecbed0d WHIRLPOOL dbebc4177edd3987aa3a84ee4c45e510c419c193ce9b6dc6a8e149eb7965c89fde8939b5488303caecc493eb31b33fbf0e9992462ef34a8571b219feeba5424b +DIST thunderbird-52.4.0-nb-NO.xpi 551104 SHA256 24cd76bbfab1f20c5f916bdaff001759d75bee16e6a15f56b5e66d8a8d730d0c SHA512 82b38db24f7d06cd763c3613e3ad43bd6c5070409d822b450473992e157a4f6ac72998b0beb0abe524b06de58c2f8537924a455b506fe0aa7229082588265c97 WHIRLPOOL 6fcc3b73306d81a65c2cbb9162cb4130c12a2f9a77a1a8df3776e77cad5d2cba285d0c17b898efcdb7a153b2040a1a9b6a77695100d3e3413fc93d5108f86ba1 +DIST thunderbird-52.4.0-nl.xpi 557957 SHA256 a9523e8f9cd9e653b645c1b7b8105d98f3c33c6723f07d9e6a2a1e4b9e6abdaa SHA512 fa9708def12178686e42ae96732977a0090a1765a71ee591160a634a68acb1e7da3655085bfa4b18ca1ef380d5a35600bd1c7e64bcc4d30060740b6787c93aad WHIRLPOOL 5d7a768b8fb062a6b3db4d64491d7ac7c8d14454405e50181aba26450c2a4582c8ccd8e4763bedc22d866f5c5db2aa1e4c1fe9739835da67005ea2e4fd27eebe +DIST thunderbird-52.4.0-nn-NO.xpi 551891 SHA256 22961936b2e19e95838777b24e29d3f43eab296a75958036b20c21471301f96d SHA512 e3c2691cdbfbf52045a6b41fb7f70ec8abe399399b23045438b98d1b7505c6ec7f0ea25ec70a0ad5bd189ea6f1bf1aa2a50d6e9963ce9a69e5fc2e15d2bd0765 WHIRLPOOL a5019612078a86b962bc3f0cc2d33b030db7bc0962366b65f35d1d816c197ca10614317337e6bd13fcf78cec9df262a6de817d90d40328c5489318cda6c74e30 +DIST thunderbird-52.4.0-pa-IN.xpi 646569 SHA256 c806abe05b9614690c9c8466a3b3c8e15fab6bbe6fa166e23f0dbb64f5e70be6 SHA512 673f9e7ffe4109f6bde302e01679511c4b64572c74e3e19d51b1050a979e6d417f120d5662d19155af0be9635ea85ae8f745a788547ba3519e9e3837cd48b4d9 WHIRLPOOL 1060a126616dc8fb15c352706318dd1eb5d39c3596a58f0afed50edb1dedc3eb0f10399acfe07d3cd3fbbe55833cdb411cea675a89ccf3a239e79475de2c48be +DIST thunderbird-52.4.0-pl.xpi 469901 SHA256 46cd992cd75c2216af075f5d1080f3620e1e6ead488de2e14ed56f7698669d25 SHA512 09c020644beb4dcb90d433fd61eb2e30e8333110476e2e9887e81be09d8cb9d678b65f0eb31d1c612dd8ef72203f13f7cc0500b1a3b2c2da48b4583c01c67c74 WHIRLPOOL 9bf2dac45bddad34bad4552e9930ea3eb3d8a6b83c7a280916ec1f1cbc62048fc497a6f0c023cca3ccb0468a876484b3ccb2601560781b402ab996eeaecf8ce1 +DIST thunderbird-52.4.0-pt-BR.xpi 558224 SHA256 273539724246f023b0afdf79a9dd517ab0e71606381900ca26b0844a5e30e9c9 SHA512 0e223e693de23ea02b4aef01e2d34dc1cef727864309ffb5c045a84e7a938ab88e7609e8817afd9e3fd6e5c8b66402334ab17fb10d25a87858db982e2a507a9d WHIRLPOOL 6c69cd6d8d42dde8c967291745a0ec758e971b1cc9ff710c45c910665a83c95e541d37fb6db600ff2cd0e9cb8f2e25e45e19986abc51361ed1375abcde8119f6 +DIST thunderbird-52.4.0-pt-PT.xpi 565624 SHA256 7923394ff64a094d4da561b962b694011e79c8e586c8d125cb450878d3cb53f1 SHA512 1efb35004dc9869f266abe39754940da1690d44fde574e250c1298ddce0e050c0a861c6dbd28b00d22aca2abc16acda2369d290667e305fb371a6dbe0360ce60 WHIRLPOOL 3e4629264324110ab902728f6c086aa687b958326e8c74cabfefa23e46c369404e0ae93ae49345895ce19e0b5b19b7856a42d2b268ebd339a1bc461d2e342a96 +DIST thunderbird-52.4.0-rm.xpi 557605 SHA256 91afce6ed4b6e4a52b03a83db4610685cc272e829a5da10db79c371ef9b00e2f SHA512 bdb2f713890d65a219f4081a1d4025ec3f5fbab7697ca0cea116e423a6f90aafb80f7f0e88a468d575dd1ca7168f7c90d24fb1b79397dcd85622400843a86c16 WHIRLPOOL 4f2bbb09d41e98314da1cb740b325aa68b65e81660c801e56349ece024ff1b4c8d71f57c847f97c99c285d36e8e6107a8b518c229d9b9223a24940390abcb57f +DIST thunderbird-52.4.0-ro.xpi 570529 SHA256 0972682e3c8b1767dd45efd8dfc1d5fe664731d4a7786a12104452ba29b449c9 SHA512 7dd9b5797357c8fcdd78cc215c9ba875e31974681043552b7ab2e35adf8e4b991e12e0668afbd6a5887801cfb7e5fa868b40470f3a60d7bcabbd72df482b8488 WHIRLPOOL e5071e44a1ab3f3ce78e73f67c0de62fa44e3af31ba41f83612612d2204b52cb9e6d93834607e66fa92863e5a01e61aab3d5f824f31bcc88c52ffa33342b59a7 +DIST thunderbird-52.4.0-ru.xpi 530669 SHA256 662fdebfb7b71ac6136e1ce707234440672a9b019f2a4b3337bf24338349b7a5 SHA512 866934f8fe86bc53965d8da845bd06f5c07fece1704d4012a652457f06094466f7cb32a36643f9d720fd11fb1c1915eaffb794f68a565387dca80dd0388a5135 WHIRLPOOL dda85fc58ce8cf59bef0f9a949c498e108a5f273eec05c02b073712aa5acf5dbef527fb706841da599f18a605dd8d691d02ee8093ab375ea5b9ce7496e264ad1 +DIST thunderbird-52.4.0-si.xpi 649010 SHA256 027776f83ce747dac6bf7bc939a6c53495022131bdb283496e0bff9deaa2a0b4 SHA512 d2fb213774b235bfee38f99263f67fc41ab8083b721762ee500b5f3c964713422436a53c1f3072a33bb3fc1259207bbf7cacabe0652ebd97c71889265a230fd4 WHIRLPOOL 0433db5af229f92d44cc4d96ccc52236a8cd9f17da88401a52f831f4718dba0d818069f7a115340de7662f5baabe439c156db298660d517bbd3117b4bc0f3bb8 +DIST thunderbird-52.4.0-sk.xpi 583882 SHA256 ddeb2172f620877f95b69cfbe8d1bda1dc77b1829ad491189e9cf5f5ddbdd8de SHA512 579777c8f776d86602c3b5eff112c5df1fe009462e2477577dd13c28435144b180165b4c6eef2b94997f4a3153730d8a8527b2656f84ef5d4f8545c3b8f550f6 WHIRLPOOL 322035c6fd5a21b0958e3a8a31dc32d6164712381bcf86c565452ff0909440b3cd43b7eb6e496d354a137d0e68ebe5fd11b180213358853efea81adb5fe108e7 +DIST thunderbird-52.4.0-sl.xpi 562834 SHA256 e36184d7264bcdd4bf7dbd9e8e547ccce50d2eb057cddd8589752f03df1a1f06 SHA512 636a7eef7caebc7598bc224ed3516e9b6a799d3806515196832012cefb85dbfa97a59bc2c76dd34835014045f8dc42c9943b1a1f885c5fe6595eafc5417314f8 WHIRLPOOL 7309ee52ac09a390a9c3f501d6b4e57516d51d521cf876a963e3015180412d76663ddeedd91b1bcd22bfd80717fe80577d42d683c31966a7d9cae8db0f6351ee +DIST thunderbird-52.4.0-sq.xpi 570617 SHA256 e721f6e1ba3818c5ef258dddf19d5d7cdd635c485d620d4fda2107bcb0fb67c8 SHA512 580cf48c5a22c1701ea2b7a28805bd1749c1a3d6aaa8dc9838b51bb13d4d5982967d090c84766c1945f3d9c0818f52234286f5767b6dc46dd24c0322b93a02ee WHIRLPOOL 48db0e8845b68704f198ccde4d2fc466c2023f56d7189824f77f1ce0e479db2316d651fc9d802f43c7aca18a5dfa3f7ceaa799d38407e0355e09f859589827ad +DIST thunderbird-52.4.0-sr.xpi 609020 SHA256 d17e021710ecb696ec97a339e579ecf67d0397b26ac2a7b578358a40fbcea3f8 SHA512 c5a64856d1eaf132fcd67f43589a2c0facffe43fc9fa9942935cb52a076ea266cf78348093118dc2e5afe7b0030dfde6fd0f04b875a801f3d75173c73904dfb3 WHIRLPOOL 5d49355a858bb1b2c43e878a2bd5934477dafe1580182bf3134ec739359fc4c64b00a9ee9e0acaf3f462b6438d55bf90576b5f5d69023bbbe4d8c96f4cd4540c +DIST thunderbird-52.4.0-sv-SE.xpi 565777 SHA256 708c1093cf817a0502cb65014e73c0881f94dabead931c71beb4b563e948575e SHA512 5c983dbdc349482f4822abdd9c5870bb4838970cb24003c4aee328188bffff279124b299057566bc061b98aadf25e4078e52e888e30beeba9a437d07b4cc8a25 WHIRLPOOL 7845e9d47c5512e2bf6efa1a91de79d2d3ff1dd01ab1665a54304a73d6de23d11c4e5664b8313003db7e6c31f0a493941881194670593aa143d25d9ad7e527a2 +DIST thunderbird-52.4.0-ta-LK.xpi 675039 SHA256 875114b08adbe2783dcefbc56334bc4bc4c3da8c8b3300f37f2cf67ebc04df7a SHA512 34476582251c95ff6a1cb190b4dd26c9167b5232d5d6e4a48256ffecf126e9a75ebdd723ca8ed578274c54f428a7ed5f9c5bb00444c12da5f0e40e7fc9c03021 WHIRLPOOL 2e952d15e51e5e04f3f946bb9c3eb730cae08a422096dab737a0ccf048436230ea64708e75a8fb18af39c098130813172db248d0ea4c0389cca7f7f754b84c69 +DIST thunderbird-52.4.0-tr.xpi 569926 SHA256 9824c64701faa3f24c69e19801cc98b313b26582eda0ad46c8c78a3452f7ba33 SHA512 fd8dd034d17fc4d1a6628bbf2889d15f22b5a8beed256e901ad27af1a870efa1c92a307c85bb07fef29708e72b5cb48dfe8838e5e49161e464982768c259b443 WHIRLPOOL 647819d003859ecfe9ae8a651c69b35962170cb5aa99ee676993546fb0303e1fef8f4d779bf042bdd3f2cc74c667c2af825db3a86b8e71101b8c5d195aa8bec6 +DIST thunderbird-52.4.0-uk.xpi 652855 SHA256 d3e3a3cb60e7f6fba14759590df00e85456c17cf071cebcc358744abcd2b1ac3 SHA512 72550a7d2e8d639308172b7cbaf9487f909d22d86673d7900a3b2874cbb7b8bb882fcef27d2f79b1e5ebec7f7a5e24496e4b6837681a11d5b425b56baa195557 WHIRLPOOL 228111dec1a9c3b3531cb18aac21f02a378b3eb85f42ac3bc32c2c860fa1f78ba8f7b44635a24388daaf51f9d4378af68dea8cb4e719e7d15edc4de15813b53d +DIST thunderbird-52.4.0-vi.xpi 637164 SHA256 7541bfec6716ae705afc51f66578100662aacdd92f8c1d8e9a33c82ad33c2872 SHA512 df5aa6f5af5b1178d66b078a06a919b2b5234505c97eb1916e82b59c9ab1287dbeaeb5a4f776a345430c36f128023241e157889c5669b76c28f60751da615eda WHIRLPOOL 580866f3e140730c683947fef305cc3d8573a1b832c5ebc7c945d90ff066d3c37817859236a0c6865fa05a089d0a692dc7dd4d8207a8d3839ea73917af231314 +DIST thunderbird-52.4.0-zh-CN.xpi 593612 SHA256 c1ef258d0b0b3ec1016c7878ec20c7af8a1d1cdfdad785389172b30739b674d6 SHA512 90611cca3af7e142a1800749e368ab9974aa470963b6c2f5f53937efc6b0e06cc29ec3f86922eee82e3603f7084ee1fdd146926fc972e722e160c2696df3f413 WHIRLPOOL 5b6755bf1ad8d5dfa5b93f7f74c3e97c09b9caf8ef0f63dd0888d0c00e482abf74e355e2ede4c578c0111eaccfc2d6933aa7eb93e6151441b46dbeda2ee6244f +DIST thunderbird-52.4.0-zh-TW.xpi 595729 SHA256 7a1dc6483c83b43852c892f5b26b29fbdb0794c81bca4ecb5d1080e8cc371da4 SHA512 0dc359b4cc57972425c175175c257134da68a207f96f127c38758e3fb6f5d8797db9ab14cbc87518b2f855a09215d96eeec6cfe0213b1d1e548798c2d5d6449b WHIRLPOOL d1d7f515bc799f3f3456517479935322b34650025caef473ffb8e6fde347f4c977ae30d10f71862c53b32d6ed7d2ffab8d4153ccfc5cd0ce2a4d83af1be91440 +DIST thunderbird-bin_i686-52.4.0.tar.bz2 51097421 SHA256 674e49996a122eb9815f72be8bdbab685b7b430a014481ede8da25fb71a20370 SHA512 1f3a640d140fa305e115158d98aadf95d180b396aa3935de4505f0f94f510d206ae6e45adf36572cb160175383d0aaad11c3244003e4a99dae613e1a749430cf WHIRLPOOL 9e4bdf1a3e365e5a9f6f3065671bb0cd0a0ffc50ed4cd23951bd5bbe5c3b8029c3016b75353c5a091ff1333546d8be6fd4f11e8d01317a6d55dd1d60415f95fe +DIST thunderbird-bin_x86_64-52.4.0.tar.bz2 49797823 SHA256 0f2ba37a577012d0acce76f915cf003fc5f987e4ee1a857606eb1a1c022b334b SHA512 edf130b3b061f15137e6eb83c9674642f0f475de56b293d4acde60f1e7ebcf0d262085fa2a513787ac201ceec5552c029167cec5ad0556baa7b0dd3b52ae4c3f WHIRLPOOL 259c97444162dec76d91ec2a9342950d995435a188e2dc7cf61fd968b2869cf642d74d74ecaebead8770b1db90f6d629cf372830bc9e1111599dae6c23932b15 diff --git a/mail-client/thunderbird-bin/thunderbird-bin-52.3.0.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-52.4.0.ebuild similarity index 100% rename from mail-client/thunderbird-bin/thunderbird-bin-52.3.0.ebuild rename to mail-client/thunderbird-bin/thunderbird-bin-52.4.0.ebuild diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest index e8679802abc2..a8245a216886 100644 --- a/mail-client/thunderbird/Manifest +++ b/mail-client/thunderbird/Manifest @@ -1,11 +1,13 @@ DIST firefox-45.0-patches-12.tar.xz 22040 SHA256 563d7bbe67aa4379ab0a9b460aa397aa2a8e9d1cadcf776490beb7349230c6c1 SHA512 be9981818e549d79f8557427dd506b9c473922c0043384563c1fd92e4c6c96c91afb8bb01d4499a3a61b463ecf2875bc776fef0f279c0f2fc3625602cb47880b WHIRLPOOL 4f100eadb5aae49731344d526ba482c97dfecebfd20de533e4986e3a0463ebe31853bf1f9faf914a6fcfab82936a52cbda2add84c019fd6ab15ea086115e5bef DIST firefox-52.2-patches-01.tar.xz 10400 SHA256 18dbd0d6bbab50918ef3341b739710d45a45efb4aa6cee86b4b8a620cc590b93 SHA512 85cc57e27c46c3243deedcc21d248babbd9ac6c144332ac70dd6e00161fb46584d090683bc1e066c0e9136d6ede5a4e30ccb68d83cad448f6b0d8223c726dafc WHIRLPOOL 65d351f5919b897af516754df0df57b65789d8030280a35d9ab1c2e7790b2713aaac8ad1caaa1ee42007aed17f971355d7f478d134930d0e1a6148a254dd9bba DIST firefox-52.2-patches-03.tar.xz 13148 SHA256 e2ab0acf173ef06874c6204a7ea77d11404dc70deca5d9edcee2e3a092ff4e60 SHA512 420dbeded3ff2f81250554416115a674ece1847db4449af9d09fa3ea5861037da9bd8525ce5bceede2abab1b58e06485e95417644c0ba8332eb076fbfed7cecd WHIRLPOOL be22652ab1fad0c55d3f3876d50f624d18b6472e7c292e96b5cb1f0e3672ef58fd41afbffd5ead912be1c15031595563eeacc2bea19673785fdde039f799e968 +DIST firefox-52.4-patches-02.tar.xz 14412 SHA256 28e63a625cb22cec73fe5efd952566d6bd965dc453f205b0c00b2fb3b580dcdc SHA512 6befeaefc118bc161ad05eed619142814e5cf31aaeede3fb5618b1f5ace887e9e1fa6914320b513404380a426cfb0f45107435f92b2d7e95d95cd7c44e03ad96 WHIRLPOOL 40323ecada75c7ee05ae19cd98bb262937a0d70f5fd7a25ec9454227f33ce81f363b602222b8f0bea879224e9f7c0132de982b2c551e40a0c7c63b8106efca69 DIST gdata-provider-2.6-r1.tar.xz 83836 SHA256 e181d5fe69e66f34719295790301e0d265c855be5f30df516c52dd3708d82158 SHA512 e5fcf60c221590d1d904ce8c6a74da7208b118c2872a26267f4ee6d3e68eea466d44b979b7259a012a21e48eb5b470d52cc9e58584226fe04ce88ff698da495b WHIRLPOOL 0e85fbb321edec0397b42808fd6320e245de35ddd1cf772545c432dbf26d8c28b042ba2c61bbde2abdbf4d5cca076436e6d678d6d636d3bcc562470d485df6c1 DIST gdata-provider-3.3.tar.xz 85628 SHA256 1a1751a5dd3d941bb28051c1d3af5d96c6c06b00c1b2d6b2442e312ec14644bd SHA512 ae0c0e6fd42d6e7088256ca8a4be5b0bac84b2f331b51afdc982354caef60b6ba631d4f76bfba7523000b49235c8f8c63704d90acf24b34b14696b709be9342b WHIRLPOOL 2b77c9343437633dc8b26365b6f172999364b81b4928744e0eba0d0de50179fbd845085cc4fbf95a0c068a9b76bd2280db8f9f349ded680686ab6cac949bbcc6 DIST lightning-4.7.8.tar.xz 1951252 SHA256 b31acd34aa38eff8b8043922794f9ef6e2dc67740e7689462991bf9517f15756 SHA512 37decaf4010e48cf242e76c5d73caf96f7b1e34c67fd465fb8b33055a6986d5fa7b1557862526224ab4ac421df3441e974d297ec4a9454dd63a039683ec46fe6 WHIRLPOOL 7494f30e08e74097179de6f44502b91efb2b65cd9bad4f3961678496c1fa376e0f5a77dbff670d66225e49a7ad11f24d8097498678fb128409e9295fc9323292 DIST lightning-5.4.1.tar.xz 1891296 SHA256 2c7eb418eeb54919542cb097c76af8c61ada1738b30562a54dfdc1091a416e7f SHA512 d5e6197f53443f7baf2c8487293e59ce825bd835870c2b38c64feefcf3a20ee46a41e9c2320f55157bed1a647ef51e97b74efc1d1ad41be34caefc943bfdaaca WHIRLPOOL 5e046c862e4fe9ac47a7be4d7fc3342ccb67b8f76c1f8b542f75a8b81816ef7edff9b478525e2fe0efb7d21eb0fe8cec3ee28185a73338ba59e84de3dd622c4a DIST lightning-5.4.3.tar.xz 1891484 SHA256 77185d29bddefa121e27cdd061f0cc227b1da1097b59493ee4138ba573a527d1 SHA512 e7903ffbe729c9608647c883202e668bb0a502ad55bd5330d073a92f336a2be427e364829a609912a32432c9a6eaa2390f6b8bfff4e61e87d03f72a4ac2aad03 WHIRLPOOL 9c7765221196080ffc69a3b0a8f1d77f59a3c9a742151049ff121c9f99adfe134165f3fafa6fa950196a809fa5103d5ef6527ca23f51af3394e74b87f95bc50d +DIST lightning-5.4.4.tar.xz 1872584 SHA256 8f330202f348734228ad5fc599a7a626506a3517393cc35708129084cd70262a SHA512 2168766a1fb3c4c77a3d13552518ac9b3e78f23a016a37a439b885b6eb56de369de85d2ba4fdbd201b54dc210493e94cdfd8d7dbe0573ae6d9d145ad97771ddd WHIRLPOOL b802126524d6aad3cd2399f2631c9898557a7b8491172ae29aef5f23d9f9f3e271de07accecd3bc1cf992e1a9c1944d02bc9091b8de94cde7fcebd3f7266bf18 DIST thunderbird-38.0-patches-0.1.tar.xz 684 SHA256 cd2a347b72a104e72d38e56bb92df3464e8820485119b4114dbd0bbda131a808 SHA512 52c83af301be959e861dfec55b3c4bc60035387c606976bd29232c4cba077230edcadef242491e699fba10027d0408dd4f33fa320bcf96727afe149166ca02de WHIRLPOOL a378a0fa1b152f17681a5e389662fedfacd45a137b224f038d3c98ab4a024bcf9e753fb2fe018cdb7126fb710ee8baabdf7882540450ead2985070d0d1f12eb0 DIST thunderbird-45.8.0-ar.xpi 490775 SHA256 4b8787643041672aad90d1297eacad510ec88d04461d19680d38e004add14f21 SHA512 95adc2355a27d916f96c43bee0d4527990a1eba8cee9e4f85cd6da9202ea0ff4fb89fde127abce03962e185b272f5bbd1d8cfb032f6f32c7895bf3dde8d35a2c WHIRLPOOL 76ce6c4ff429fe4cc51f87f297ebead9962503ca1fd68c8e0783c43d9898bf370b00a222b7b17f1ed191f30557f9181b56019dc6ac3757fc08fdd53544039864 DIST thunderbird-45.8.0-ast.xpi 428059 SHA256 0ead56ad0cd11503a60d5f75cd181c0c85eb7ccbc42fa69c76d3cd64f29a0cd9 SHA512 eccf877f29099445ef59c833929a50df7424aa475b1ceb432d6c10b28c71b4e25d840a4fedb1afb3106896da0afeb47a3af1b763553dc6ae40f7bda5b0d65040 WHIRLPOOL a370c261f19a1f1ef3da37abc7665d8f1fb0ba1bdc75e5f11dc923e08a0c7a0b891e166cf99273222d0aee92a4d8a06f38ebc5168c121c391b53909cd6e79690 @@ -178,3 +180,60 @@ DIST thunderbird-52.3.0-vi.xpi 637163 SHA256 98fa9c475af8c5a4dfe132ef5f27bf3ae0b DIST thunderbird-52.3.0-zh-CN.xpi 593612 SHA256 2c5beb3ba1bebc339ae4124fcee79fad375ebba7d97251dac83ff1eed1042bad SHA512 9db62fce3fec7e4b243c8d8998da6222251e12cd8325df1e56a5ffd9609da03f451923d2be26e47020763b8547a828b679921972e59a653a19fbd7d8ad9d1648 WHIRLPOOL f1a97bed845afb1f734caafaa7b32e4810cfe2f9082befb72d762c3ef2c801e4b65e7768c902820654215866c907c7924017e6ec6ca848729ac9baeb8f66cf6b DIST thunderbird-52.3.0-zh-TW.xpi 595729 SHA256 2279205d7288313d59be7c2eadcc572988e063fbb570e76802cb681bdc262e0e SHA512 cff5e45a221790a081dbbda711d8706c70970d96149e63a157b5efaf720b008966572a6a21e9d4435248e20efd6c9b0ce9eb374fd4691e875f3ef9e048f0d7c6 WHIRLPOOL da26721eb2880a4d6d05f96ba2005bbb463c1951bd77e805f0bf84b397d36ef2904dd36e81f3c26e3a02a202907175e7395c11fd54d233fff3102faf53340874 DIST thunderbird-52.3.0.source.tar.xz 228532004 SHA256 050acc320a9c50365a53e4faa6538a0ad7f9a302d5f2cfb6edf0c6fe1b573b18 SHA512 10e6495d207328aae325a797be1de5e535b5d967df929b0af9d7554d0473b5a7931c8f9cb1793e843b1913f441f790169dd4ac1ad9e0e53e66bc8e1c1dd60e66 WHIRLPOOL cd097157eb99a9b98aca63b259b77edcd1ceea5c150869fe485ab1219c1c84bcfbc7d70ecedca4b8733e8adf015ad0d5503db985b098207cd3b18497602c4223 +DIST thunderbird-52.4.0-ar.xpi 604235 SHA256 5b17a53001f7605f9e12a9881573f93940dd5756bd54788546201c97fc323c3f SHA512 bfadc747f3b73796cc5822c81567aadd3d34a420ddd104d042d47041b03b7e62b9e1d95e117d5b9ee14897187dbee776896a2bb0c7dc62ca70cc1e1e5f33fd89 WHIRLPOOL 7ff63921c6452ffca21cba430ad45e7953083a821801d259ae987c67cc7a0113d4df8608bd787aef39392744e661d04b5fd64d3c1b14d9b3586938b9fcf27027 +DIST thunderbird-52.4.0-ast.xpi 541173 SHA256 e3f5a29ee9258e49306cd1580d603b635a5ac7c8840c838504606143c141562a SHA512 1653f6ea89fcd4bead7a06badd7ea025dc2daf6a450dfb944e7b45e7d7da9818b660bfc02218ed79246b8231e42f6678beced2f78df668cbedc3676a088d2dfa WHIRLPOOL 0f70d593e6ce37ade889e04b5e868c31cfdeea9a0cddc04eb768244651e987a07ed2af40346d01a3f483a34c3a0394fdb01de6ce8b0002cc33ca820b05d13270 +DIST thunderbird-52.4.0-be.xpi 570932 SHA256 1d5e536ebe848d9a9ac773c6e15ef895601c1754a9f0ee69a7ab229ec931dc32 SHA512 c15aab335806ab81745841b4fb2035be33bf700b86edd39fcfd49891e32b68ee91cb0e71c0cd3813e43a3ba45a912876501c97560f7f1e2568729cec5082d478 WHIRLPOOL 1578e1de28fa4704c70eefac548b5551dbaf244245059dac2088b8c49328ba7c279eb7ea8fc58bb19b6a2fd830046c44f2ba0fa8fce4be94ee0d4d52369c434f +DIST thunderbird-52.4.0-bg.xpi 634897 SHA256 18063549c65ddcfb1c438b5be60ebf27f2b6ed2b926e52ba2b9fd078510bb42d SHA512 494b6a30de08858b7fe5003c8333192c0a393ca188defd075cc75438f9885a7fc5b746e392a411eb06eee242bab27bbbbaa52bb153d66fb996f4f2db434517c5 WHIRLPOOL 5112e4b75e2d6faed09c786d8573c14ead5b34b843755c6bd592131d64b046901992cf15b9f5c9636bb9f9398abc08d7657b1dbb927c1fd7e69d7339f6912632 +DIST thunderbird-52.4.0-bn-BD.xpi 676901 SHA256 cd6a5a1c7b9ee0f688815ed2d6ebffcb5300fd1ebca9f0bc0d26c0f8d8530d12 SHA512 a8a74fdfc2d97c61eb5b09fae2cf05be9af0411ef79296ddca3c26b503c1c017c0ced7bad5e6ec1c235c1198c5793ec041c7b48b6aba90a63d09e128e1aee024 WHIRLPOOL 4842ebc2e27fd7c82008f8131e87412395d6fb835b44a1cc73a6483c65bb7581c2dc9c24573dd18ba11fc6d815714184f6f926dc6cfb5539e0c7ffee4ea8c0ff +DIST thunderbird-52.4.0-br.xpi 559380 SHA256 8ee2714cf3efc9477059047d70d3429601e2451e32d823ad48ecfacbad802edc SHA512 8c4e41295c063d5b2f5dfa0d20a202bd0b4e3577eaba2d139bca8575849a3c4387fdb0d2282b6360050c615ec336615ea04cd4304b31a5b00fa3be61f61ee45e WHIRLPOOL 31093cec2c2c102c3990a0a7c8c21eea9cf094c52884667664c8baadf138432cad2dd6a3d34684c0dc94e9a7fceefa21372ef6b5888353a6ed0e36740b2d4102 +DIST thunderbird-52.4.0-ca.xpi 569910 SHA256 8b4929329075581266bc18189660c6200f6084153530d45ca6ce2865572a392b SHA512 5dc899065913907ee8e1416ab95e9c240b856e96fbf51c1ca06344de48e96687b2901cf90e98a49f1064b000bc78c9f43e54f194c908de3f97340c5d7201de38 WHIRLPOOL 47170ab8f02db1606e859e4e46bba39dcbd973ba2c06a6dbdd33bc0eaa4e0b7727b1af426f020d36b0c08b47804cf7ccf257e6b2bedb3810d8fa735f383deedc +DIST thunderbird-52.4.0-cs.xpi 579150 SHA256 d3898778cd4aceea175c46ddc386b47cbe134a1b89322cee285e5925042032d1 SHA512 2e1973047891240f39d89c19e5f6767e735c9d7998e566c4b7e0e3243c61d887d2307ffa6c5d709e2e49639bf20b08f41d644230152150a9694b02ce6fe6d394 WHIRLPOOL 2307e556c6f7fb4dc3cddc733505e07e736bb5eb13b295e676feb32e2a3a7d13dfb53de76b3e8ef92753f016603b42550a17aad223d42a4fb00f2d78f4c5c020 +DIST thunderbird-52.4.0-cy.xpi 554858 SHA256 c95bcfee29f32aaf12dba7e835f35311eb71dc923c71dfc063b8150165e552dd SHA512 bed9d8907f4a613b0355cf4f4487359275631511a4ff8550abcc22c95699d1d513a70f90ed657e9f608c7d99667b27208909532858bd2ddda4ee47541fa26af6 WHIRLPOOL 48d79a57164c9a8f500dce18c22f32878e2b7921b638f1dfb1e8ba96ac1104c5a0f9573811a853c3d2a9554fc5d0432082cb9febe4396c6877b691c16417678b +DIST thunderbird-52.4.0-da.xpi 543336 SHA256 cf1efa5a056dbb9b98324b1b959a61467af15ea82ad586369b4b46856d89d990 SHA512 39169bac23dffdac006e4d019f5c9ac99bf1ab7c55f7b85ad9ed5f05296afc3fdfb4ff0bb48180f38ef2b968016c753c8473b10d4b6552d3783d35e84208b473 WHIRLPOOL 2c5ea8b898779d59aa152da2317950605ceaffa1d81c52ff9085ba0c2a3fd9a99873ce84ac0c27cb88e8cf0d775a373ad1026d5b533f2d8f788e63324d0cf742 +DIST thunderbird-52.4.0-de.xpi 555744 SHA256 6d8bc484a1edcdbff75d39dea9f33b85b92514058f505f2915810609796e8a1a SHA512 8ad1ff725a7a75cd691af9360e872e173b33ceb2f95c705c2cf6594b3a1fcdafa94c8892b79b1c9e694dad441482734211840cbd46522f7d284dea7a4ce7c7b9 WHIRLPOOL ee4052866ea7bab87706ea3c1f3ec4458ef15b30656b7bf7818f9d7a9e51a8a25ac6e138d05cb4a83ef251930c1d030813839c1b4f4c8020701cf4f2b0c4b86d +DIST thunderbird-52.4.0-el.xpi 662965 SHA256 c5201686e88cde81222817b006957bbee08df0745fdbfeeea067b558f9131872 SHA512 7416e98eeed2d97cff1303fab8bc1ae595bf6779c4990c59ceee8da8b00234db0f4e6b03392962d8e482da29755bfde3f655005c9346cf05446c8be654135844 WHIRLPOOL 21dabce2863d54435ed287548fbc96e740565d75333fc0bc617f9a42fea20251d61065199f449c9455267232b1cbc9c36324f1b9af2c43f16dbb7fb7f0159310 +DIST thunderbird-52.4.0-en-GB.xpi 531234 SHA256 45905f12c6053324c1ed880837fbb6b00afd631d83907d6274fc4aa53a4861a3 SHA512 e4b918bac6500b62755b13ff002de440025cf2f5a9b4d9a65c35006d0e42bb3b79ad7106935c45f7afe9d445dbefdbf539a87377b354ac2b0a813e75e84d89e0 WHIRLPOOL 4f1231af63da0fa1aba5dac46e761a735d87b424a9bfa82619f383e019921cda822618e650a5e595354c2dd36b3ffca4489eb6d61ac853c96bd9d069628c5ba0 +DIST thunderbird-52.4.0-es-AR.xpi 565995 SHA256 f6bb96a72a3a8271b9796d9516908de2b885028d7e3cf00913fa74415b7a9ce3 SHA512 3770c63f71c7b35b79797778279c7dec5240427e529da4fc6976628ce05204681da489acaa22f8c27355f7b7872ac3656261b486da62af53dcc1da0cfee4a808 WHIRLPOOL 903465f16b6715ddf8aa77f78001c72f4292d411b07e2299ed0199cbb35e97c505642e98626b26c1409cadffed8b1932a19ffd77b4bfad3ebdb5d7ffb5b62bd4 +DIST thunderbird-52.4.0-es-ES.xpi 445464 SHA256 2d49b3b67e7b0c8f99871906e65d5e3a6cd684ad3dde05a730dfc8d328205005 SHA512 165decda1107e3c48cccb68f857d606d4bb06125214088ce9ff348d53e45023a28f7a196722371e6b18f58fce51314c8277ab6b6dbc0323a32c70bd5147865a7 WHIRLPOOL 92ef0df7ceefc94f0375bd5697e4799eda952730b3fe9a39ce04fc80806ce3a0504ec495a44bd072294c16c1c2f68ab227711c9cb414017a539ae97b89eb7613 +DIST thunderbird-52.4.0-et.xpi 551661 SHA256 eee8043f3300c1fbef18d87c783de89a11e69a75e7185e0fe0ce5a73a0feca0c SHA512 507ccd9f8b9d8e8b1c43b8189d32afbece0b47340fbf14577ee4c888b883ca135b83f62f2b6ce8ed1962ba030daad3dac42b60ac26a01132578c1023c07a1b79 WHIRLPOOL f2dd79fcf3a588d5f1ebb600cfe50fb2495339bc2e1fe99c850fa751e02b9ec66311ecba1ddad987f72fcac1b1d08f24d6fd4943df4f772f31f961ee7fd2c53d +DIST thunderbird-52.4.0-eu.xpi 555536 SHA256 448a3d9d8f4babd98872e2f91c2837342e4c01fc6bbeb0bed3a4f4e14ea381b6 SHA512 3450490dd16f9bfc550fe33a4e31f7679b644e358b09b1b8ef275290d17255f8dce1c8a665b6ca8cfaa91365ce3a98bea7e3cbfbec8800aacc75ee3dcb920f23 WHIRLPOOL 914342afbe0b5291587b4866151b193b3e20c79760ee6e1d55130cf45f1923f13528b09bdf50099760f0f52905a3b899572fe4934d48678f29af6638b70565ad +DIST thunderbird-52.4.0-fi.xpi 550670 SHA256 fde89077936d1ef35642d6b451926e885f69b9636b66314c4d1d182a9b753ee0 SHA512 b40fe8131eb3be646cd8314fc664ebb4099d327ef78c8058b4054ce0266fd98c5f72bfccd8483ae950312e9310b21f4ff9bd7dbd0ab28ec3c79195436d505786 WHIRLPOOL f6da2ef24f646fbb70e9cde7be14f507413b8f0530f0dae21a27000a5e7754a2afe31e3bb7df69b3af32e3e5831b1d70a89548bef50b5e8850091eaf1322e6bd +DIST thunderbird-52.4.0-fr.xpi 577561 SHA256 98c758ebd8c286bb93a1b9b75a5af1939944c520164a5b38f1f39936529fd7bb SHA512 ac4261ecb136c0ed4b9b45caa18f796e85e8cedf374464ab425b4f4ef41cdcdb5756c509114f306d6ef027f70313aa43a498711beb7ce4462a24bb5c18628406 WHIRLPOOL 74244bec44f137ef4d26fc451988605f8ba3211dfba852fd1fc8f9dfebd974e5ed52a35cc6825e0087a20b9dbfc2a12d0c25a7414483c4870cfed29e91239722 +DIST thunderbird-52.4.0-fy-NL.xpi 563632 SHA256 1225accf01b15e7e3132ef51d9275ce573a3615360f16647c91bc078134f5002 SHA512 ba926a525a308b704733af586ec33d071961a1cd93c8090be12be844516714b419344f98d71af0a6d2d607eb3b76e64fa25ebb90ebb4657fef3960d5f2dde6e7 WHIRLPOOL 1af45abb1ed00b3948bb4a84984b82cb6884767a0081abd4927a3946e405ffa7368f82ac5ea3bf89112d8316c8c1ecc8c3dada4eb8322736008321e53781c3fb +DIST thunderbird-52.4.0-ga-IE.xpi 583556 SHA256 22d847437c25ff7aa94b9f5ca1147277c87bccb5b38afa4f0ef7fa5124a59cdf SHA512 9b081dcacfeb150e92f87577499d5716cc176ac1aedfb4aef880d2484224afeb2bf7c197e3b09ace37854a176538770b4f6afa8bf793899df0a21ee31eeb9d1c WHIRLPOOL b90b8614bfdbb834cafb1ecdc34385aab306474da96198f24ccde288a3459893e3639da0b5676415a80c74b956b30e7a88be7214c9e2c89378f4374c0c82c9e3 +DIST thunderbird-52.4.0-gd.xpi 574065 SHA256 d184019e5989bd88b8bdb7a27788535b0a3a487921d85339ad0a1bb81cf46a40 SHA512 aba8d493f75aeaadf093e1666e85f1ff794346492d91099f6a2680b95f4d8e981dfb3509b190db0e1b6e4b74a381bca38b61c7bef3f67bef2b631eac8fb49f67 WHIRLPOOL 6d511df4252ba4ccea608f10b7a84fef5d9bbe05b3daad83e25841832d42208de39ef1b06e8d38db5934ee12c973b2ca7a151a2abb387dc426fc50e6811d8425 +DIST thunderbird-52.4.0-gl.xpi 575150 SHA256 a35d8e9441219196eb90a31d1f65f08493ded91fc1ebb1b712c417827451ff13 SHA512 6f57c57825a0f3e7eb530933ff82d4c31c73cde2d5d58edd57267d1712f0606fb8511ebdab409dc0c967b1319c3ffbb8158bb6dbea308d7ae7a56af4b94650f0 WHIRLPOOL 8426c9c10ab8118933d2f09fd775727d099573633cee1c3671aad70cad56b1c084bc5f905d7eb8a7d9386909996d68cf93229168e352ce7233aad780cf9f3c5c +DIST thunderbird-52.4.0-he.xpi 592566 SHA256 8d46ec38430a1939cde04141c9f5bcfe22b81a154bebb89dc112ff199042203f SHA512 fb2ddbb62f31071b07eb6f33f7f6015c8ffee96a5a78504adf6b9a2fda3c589bfeabf263fde638eab9e103750a06eead1a6465a56e10bc3034a5b8e0cd79be3e WHIRLPOOL ccc8e56770e7a0f9a488c070379658feb8b2a94f8377ba562643d47b6acdefc56862d90c9528c361fd7b4ed30d869e6bb785f79563fbb9f3f945b617d6ac7592 +DIST thunderbird-52.4.0-hr.xpi 564780 SHA256 119c5055305b8f16b02a822b70044ff2410cc79f32a456d59c71c455002b8523 SHA512 da59389943b6427f1c1056b7712db105fcd38b5979fa47e1a62b8ff03e345f4a9d1b3dbc23c356d906b741847de274bf3a7e53c12f9935d5a749508d750f9f11 WHIRLPOOL 77e83f4917edc6aba551198c4045a8a2d25ed8e30cc83e7e951a99ad0aff599ac30312ff788d8f3c72dfeb4f8f2df6508228b4cb2b1401106361dff8b2e4d445 +DIST thunderbird-52.4.0-hsb.xpi 582242 SHA256 1444e2582233eb0ed7abc8566ea951d6938f75bc069a20b47d6f5cd8608a740c SHA512 ee03cb954bbcf507a2b8cd0ebe99242b0f7d232f46fc90725ae70089be3dfa1413584feaa5320c8ce9a4e453d3c3d932905849cf57b51aa2e2a4a164a228e710 WHIRLPOOL 8fa2aa3a4d60b9014bcd66a1ba03511cf045728126523c0cf7dfdbd930a74f478e2cb8414cc8385d67d723f1be65f03d91ca25d1941e6277f895eec989298a9c +DIST thunderbird-52.4.0-hu.xpi 586446 SHA256 b98796554589eb7ff3e30bd8fbbb27c8d2ad31bc74d96d4070df1f0eeba40544 SHA512 b9f7b628f7cc112e79eb5a7e382ada35fb6ba3d0197db33bc370a807fffc0a69cdf4187b87e9b13e460dc84e2b9663d995cb8ca831518b209efe428c32f97ead WHIRLPOOL b5a8e0a2737c1a6f6271ff353b603a6f377b1d19b954f9cf7dd368b7c8300800562563eb41e14d28fd88b20d658706c3c2ef71443d71028f3ed3185c3ca2743a +DIST thunderbird-52.4.0-hy-AM.xpi 629879 SHA256 ed1d4f05c0d4d2c8f4dc4227c43a4f08be01ec6aed92a3ede2ca83550543bbe6 SHA512 3a069934b02de31645925fb51efe16b137357571ab5376cd321d0263ec5bfac891851429deb216b78fb2c357486cb840b4aad943c0ccee690fad5bae6d39012e WHIRLPOOL 132616d303916a3b192d51bca4de9070b1ee4595cc91e70ba3d09c12fc9a55f701bab58acf44dc49046b6d1bd99a21c8d9ec035ca8a5e83f62033f00f2c5e3fa +DIST thunderbird-52.4.0-id.xpi 546527 SHA256 5bd33fd191ed602e3ab0c47e9d8106328e73dcb07e3ae10062470d1de138aec0 SHA512 3dda07d74bc47ac1d20e294c1dacaf16805113aed31ac1246647f95c2e758672154ac427ec3915b577810a8df66cce83d3984f34539ecc01375a6b347d0140f4 WHIRLPOOL 9d9f4ab5d504479ae5b347ef4162789a14ea34f5ecdf14ecbac93416f2f5098508b269cf6c003334bfc3518fb9ce6aec6b3eb6299874cdd1216168e4f8f36598 +DIST thunderbird-52.4.0-is.xpi 555712 SHA256 eed6b20e25e34b0ee1498948c8baed0060abe1b3a25f9188b123c81fd044771b SHA512 ff9e52667baeccfd829e210822355a3d995046fb807bacdb9d52e6f2c7145f96a8bda6e0ef5fadaa442cfa7985de36b09a8349cd860d55c1a131b04e4cb44d79 WHIRLPOOL ceefc490c5580fffa310241d67a389f6fea7fac443779f57243af7c2bd3745d243f57ac62b0c5fc3a21c300d82a687a3edf62fb16d310ad05ba7048b4d78ffbf +DIST thunderbird-52.4.0-it.xpi 455408 SHA256 5800130bfd912f58e6335791afde9718a59dd3428a589581fca160394a3f4b75 SHA512 a82683e66c379f84492f6b65e6ec068e472f3e9d56db5b9c393d69966a873f2ebd626d3d30ee6a5a2c47a5f82c0ac39abc39da2dd9c67a58505e4b83dab08503 WHIRLPOOL 20282abd7e95b57df459a005132f7ab056b698115f349fc22ccf7ed978c6bc3e38a4867bbd399cd0691159908cf5da6a4f997de2fd57df577cdd5ac7bc71bae3 +DIST thunderbird-52.4.0-ja.xpi 630053 SHA256 8846bd908fa6481e2ed0a2e7fa1cfbd7bbfe02a78b1cca75e9b2a1ddaffe1084 SHA512 d297d4a86e2f7f31adaf27915eb4e6ae34edadd7fa3cc903e8d64ea6aa01b449d076be5deac803d1d39c74d9c5d09818fa0e2fd670005bafd41c83028ff117c4 WHIRLPOOL eabe0b103085f42212568e02b946cf7db2385bf91d5b9cc22c0b1fe440fce1bf4431e43eaa0e39f6e25a231631c52633eac3855e11774a91634e726113ac322b +DIST thunderbird-52.4.0-ko.xpi 595517 SHA256 89192fe23dbce157aeec48168b45ac94cc47bd6d83907b3ab7dbaeabe5b7b7ef SHA512 87f663896776abdf1608a28e905cd38cf935e8ab8a8cdd7482db1ac627e95695e1d15e9e3d9b3017e30e6534154e80fcd6cd70ededbdc2ccff12b200269771a3 WHIRLPOOL c886f74a2c2d07c27b8444011808e18d46c1d5e39a68d14b97c99f39bda8b8a0db4b2aad09ae69cb7913290711beb0e24b394e3ec80fc9b3da3045c8bfcd6f6e +DIST thunderbird-52.4.0-lt.xpi 580598 SHA256 90bc80f8742b35525af3e1f4fad4c5e6fb3442423b6be7ddb8c4a5be76bcf564 SHA512 ad913ca637e7acf04255ad48d63ad7acfc317e6e55cae3f54b1338c98caf04b0aabfa18463e83d77f4aff211d21c496e98ba0ab473a57f79775f7efd8ecbed0d WHIRLPOOL dbebc4177edd3987aa3a84ee4c45e510c419c193ce9b6dc6a8e149eb7965c89fde8939b5488303caecc493eb31b33fbf0e9992462ef34a8571b219feeba5424b +DIST thunderbird-52.4.0-nb-NO.xpi 551104 SHA256 24cd76bbfab1f20c5f916bdaff001759d75bee16e6a15f56b5e66d8a8d730d0c SHA512 82b38db24f7d06cd763c3613e3ad43bd6c5070409d822b450473992e157a4f6ac72998b0beb0abe524b06de58c2f8537924a455b506fe0aa7229082588265c97 WHIRLPOOL 6fcc3b73306d81a65c2cbb9162cb4130c12a2f9a77a1a8df3776e77cad5d2cba285d0c17b898efcdb7a153b2040a1a9b6a77695100d3e3413fc93d5108f86ba1 +DIST thunderbird-52.4.0-nl.xpi 557957 SHA256 a9523e8f9cd9e653b645c1b7b8105d98f3c33c6723f07d9e6a2a1e4b9e6abdaa SHA512 fa9708def12178686e42ae96732977a0090a1765a71ee591160a634a68acb1e7da3655085bfa4b18ca1ef380d5a35600bd1c7e64bcc4d30060740b6787c93aad WHIRLPOOL 5d7a768b8fb062a6b3db4d64491d7ac7c8d14454405e50181aba26450c2a4582c8ccd8e4763bedc22d866f5c5db2aa1e4c1fe9739835da67005ea2e4fd27eebe +DIST thunderbird-52.4.0-nn-NO.xpi 551891 SHA256 22961936b2e19e95838777b24e29d3f43eab296a75958036b20c21471301f96d SHA512 e3c2691cdbfbf52045a6b41fb7f70ec8abe399399b23045438b98d1b7505c6ec7f0ea25ec70a0ad5bd189ea6f1bf1aa2a50d6e9963ce9a69e5fc2e15d2bd0765 WHIRLPOOL a5019612078a86b962bc3f0cc2d33b030db7bc0962366b65f35d1d816c197ca10614317337e6bd13fcf78cec9df262a6de817d90d40328c5489318cda6c74e30 +DIST thunderbird-52.4.0-pa-IN.xpi 646569 SHA256 c806abe05b9614690c9c8466a3b3c8e15fab6bbe6fa166e23f0dbb64f5e70be6 SHA512 673f9e7ffe4109f6bde302e01679511c4b64572c74e3e19d51b1050a979e6d417f120d5662d19155af0be9635ea85ae8f745a788547ba3519e9e3837cd48b4d9 WHIRLPOOL 1060a126616dc8fb15c352706318dd1eb5d39c3596a58f0afed50edb1dedc3eb0f10399acfe07d3cd3fbbe55833cdb411cea675a89ccf3a239e79475de2c48be +DIST thunderbird-52.4.0-pl.xpi 469901 SHA256 46cd992cd75c2216af075f5d1080f3620e1e6ead488de2e14ed56f7698669d25 SHA512 09c020644beb4dcb90d433fd61eb2e30e8333110476e2e9887e81be09d8cb9d678b65f0eb31d1c612dd8ef72203f13f7cc0500b1a3b2c2da48b4583c01c67c74 WHIRLPOOL 9bf2dac45bddad34bad4552e9930ea3eb3d8a6b83c7a280916ec1f1cbc62048fc497a6f0c023cca3ccb0468a876484b3ccb2601560781b402ab996eeaecf8ce1 +DIST thunderbird-52.4.0-pt-BR.xpi 558224 SHA256 273539724246f023b0afdf79a9dd517ab0e71606381900ca26b0844a5e30e9c9 SHA512 0e223e693de23ea02b4aef01e2d34dc1cef727864309ffb5c045a84e7a938ab88e7609e8817afd9e3fd6e5c8b66402334ab17fb10d25a87858db982e2a507a9d WHIRLPOOL 6c69cd6d8d42dde8c967291745a0ec758e971b1cc9ff710c45c910665a83c95e541d37fb6db600ff2cd0e9cb8f2e25e45e19986abc51361ed1375abcde8119f6 +DIST thunderbird-52.4.0-pt-PT.xpi 565624 SHA256 7923394ff64a094d4da561b962b694011e79c8e586c8d125cb450878d3cb53f1 SHA512 1efb35004dc9869f266abe39754940da1690d44fde574e250c1298ddce0e050c0a861c6dbd28b00d22aca2abc16acda2369d290667e305fb371a6dbe0360ce60 WHIRLPOOL 3e4629264324110ab902728f6c086aa687b958326e8c74cabfefa23e46c369404e0ae93ae49345895ce19e0b5b19b7856a42d2b268ebd339a1bc461d2e342a96 +DIST thunderbird-52.4.0-rm.xpi 557605 SHA256 91afce6ed4b6e4a52b03a83db4610685cc272e829a5da10db79c371ef9b00e2f SHA512 bdb2f713890d65a219f4081a1d4025ec3f5fbab7697ca0cea116e423a6f90aafb80f7f0e88a468d575dd1ca7168f7c90d24fb1b79397dcd85622400843a86c16 WHIRLPOOL 4f2bbb09d41e98314da1cb740b325aa68b65e81660c801e56349ece024ff1b4c8d71f57c847f97c99c285d36e8e6107a8b518c229d9b9223a24940390abcb57f +DIST thunderbird-52.4.0-ro.xpi 570529 SHA256 0972682e3c8b1767dd45efd8dfc1d5fe664731d4a7786a12104452ba29b449c9 SHA512 7dd9b5797357c8fcdd78cc215c9ba875e31974681043552b7ab2e35adf8e4b991e12e0668afbd6a5887801cfb7e5fa868b40470f3a60d7bcabbd72df482b8488 WHIRLPOOL e5071e44a1ab3f3ce78e73f67c0de62fa44e3af31ba41f83612612d2204b52cb9e6d93834607e66fa92863e5a01e61aab3d5f824f31bcc88c52ffa33342b59a7 +DIST thunderbird-52.4.0-ru.xpi 530669 SHA256 662fdebfb7b71ac6136e1ce707234440672a9b019f2a4b3337bf24338349b7a5 SHA512 866934f8fe86bc53965d8da845bd06f5c07fece1704d4012a652457f06094466f7cb32a36643f9d720fd11fb1c1915eaffb794f68a565387dca80dd0388a5135 WHIRLPOOL dda85fc58ce8cf59bef0f9a949c498e108a5f273eec05c02b073712aa5acf5dbef527fb706841da599f18a605dd8d691d02ee8093ab375ea5b9ce7496e264ad1 +DIST thunderbird-52.4.0-si.xpi 649010 SHA256 027776f83ce747dac6bf7bc939a6c53495022131bdb283496e0bff9deaa2a0b4 SHA512 d2fb213774b235bfee38f99263f67fc41ab8083b721762ee500b5f3c964713422436a53c1f3072a33bb3fc1259207bbf7cacabe0652ebd97c71889265a230fd4 WHIRLPOOL 0433db5af229f92d44cc4d96ccc52236a8cd9f17da88401a52f831f4718dba0d818069f7a115340de7662f5baabe439c156db298660d517bbd3117b4bc0f3bb8 +DIST thunderbird-52.4.0-sk.xpi 583882 SHA256 ddeb2172f620877f95b69cfbe8d1bda1dc77b1829ad491189e9cf5f5ddbdd8de SHA512 579777c8f776d86602c3b5eff112c5df1fe009462e2477577dd13c28435144b180165b4c6eef2b94997f4a3153730d8a8527b2656f84ef5d4f8545c3b8f550f6 WHIRLPOOL 322035c6fd5a21b0958e3a8a31dc32d6164712381bcf86c565452ff0909440b3cd43b7eb6e496d354a137d0e68ebe5fd11b180213358853efea81adb5fe108e7 +DIST thunderbird-52.4.0-sl.xpi 562834 SHA256 e36184d7264bcdd4bf7dbd9e8e547ccce50d2eb057cddd8589752f03df1a1f06 SHA512 636a7eef7caebc7598bc224ed3516e9b6a799d3806515196832012cefb85dbfa97a59bc2c76dd34835014045f8dc42c9943b1a1f885c5fe6595eafc5417314f8 WHIRLPOOL 7309ee52ac09a390a9c3f501d6b4e57516d51d521cf876a963e3015180412d76663ddeedd91b1bcd22bfd80717fe80577d42d683c31966a7d9cae8db0f6351ee +DIST thunderbird-52.4.0-sq.xpi 570617 SHA256 e721f6e1ba3818c5ef258dddf19d5d7cdd635c485d620d4fda2107bcb0fb67c8 SHA512 580cf48c5a22c1701ea2b7a28805bd1749c1a3d6aaa8dc9838b51bb13d4d5982967d090c84766c1945f3d9c0818f52234286f5767b6dc46dd24c0322b93a02ee WHIRLPOOL 48db0e8845b68704f198ccde4d2fc466c2023f56d7189824f77f1ce0e479db2316d651fc9d802f43c7aca18a5dfa3f7ceaa799d38407e0355e09f859589827ad +DIST thunderbird-52.4.0-sr.xpi 609020 SHA256 d17e021710ecb696ec97a339e579ecf67d0397b26ac2a7b578358a40fbcea3f8 SHA512 c5a64856d1eaf132fcd67f43589a2c0facffe43fc9fa9942935cb52a076ea266cf78348093118dc2e5afe7b0030dfde6fd0f04b875a801f3d75173c73904dfb3 WHIRLPOOL 5d49355a858bb1b2c43e878a2bd5934477dafe1580182bf3134ec739359fc4c64b00a9ee9e0acaf3f462b6438d55bf90576b5f5d69023bbbe4d8c96f4cd4540c +DIST thunderbird-52.4.0-sv-SE.xpi 565777 SHA256 708c1093cf817a0502cb65014e73c0881f94dabead931c71beb4b563e948575e SHA512 5c983dbdc349482f4822abdd9c5870bb4838970cb24003c4aee328188bffff279124b299057566bc061b98aadf25e4078e52e888e30beeba9a437d07b4cc8a25 WHIRLPOOL 7845e9d47c5512e2bf6efa1a91de79d2d3ff1dd01ab1665a54304a73d6de23d11c4e5664b8313003db7e6c31f0a493941881194670593aa143d25d9ad7e527a2 +DIST thunderbird-52.4.0-ta-LK.xpi 675039 SHA256 875114b08adbe2783dcefbc56334bc4bc4c3da8c8b3300f37f2cf67ebc04df7a SHA512 34476582251c95ff6a1cb190b4dd26c9167b5232d5d6e4a48256ffecf126e9a75ebdd723ca8ed578274c54f428a7ed5f9c5bb00444c12da5f0e40e7fc9c03021 WHIRLPOOL 2e952d15e51e5e04f3f946bb9c3eb730cae08a422096dab737a0ccf048436230ea64708e75a8fb18af39c098130813172db248d0ea4c0389cca7f7f754b84c69 +DIST thunderbird-52.4.0-tr.xpi 569926 SHA256 9824c64701faa3f24c69e19801cc98b313b26582eda0ad46c8c78a3452f7ba33 SHA512 fd8dd034d17fc4d1a6628bbf2889d15f22b5a8beed256e901ad27af1a870efa1c92a307c85bb07fef29708e72b5cb48dfe8838e5e49161e464982768c259b443 WHIRLPOOL 647819d003859ecfe9ae8a651c69b35962170cb5aa99ee676993546fb0303e1fef8f4d779bf042bdd3f2cc74c667c2af825db3a86b8e71101b8c5d195aa8bec6 +DIST thunderbird-52.4.0-uk.xpi 652855 SHA256 d3e3a3cb60e7f6fba14759590df00e85456c17cf071cebcc358744abcd2b1ac3 SHA512 72550a7d2e8d639308172b7cbaf9487f909d22d86673d7900a3b2874cbb7b8bb882fcef27d2f79b1e5ebec7f7a5e24496e4b6837681a11d5b425b56baa195557 WHIRLPOOL 228111dec1a9c3b3531cb18aac21f02a378b3eb85f42ac3bc32c2c860fa1f78ba8f7b44635a24388daaf51f9d4378af68dea8cb4e719e7d15edc4de15813b53d +DIST thunderbird-52.4.0-vi.xpi 637164 SHA256 7541bfec6716ae705afc51f66578100662aacdd92f8c1d8e9a33c82ad33c2872 SHA512 df5aa6f5af5b1178d66b078a06a919b2b5234505c97eb1916e82b59c9ab1287dbeaeb5a4f776a345430c36f128023241e157889c5669b76c28f60751da615eda WHIRLPOOL 580866f3e140730c683947fef305cc3d8573a1b832c5ebc7c945d90ff066d3c37817859236a0c6865fa05a089d0a692dc7dd4d8207a8d3839ea73917af231314 +DIST thunderbird-52.4.0-zh-CN.xpi 593612 SHA256 c1ef258d0b0b3ec1016c7878ec20c7af8a1d1cdfdad785389172b30739b674d6 SHA512 90611cca3af7e142a1800749e368ab9974aa470963b6c2f5f53937efc6b0e06cc29ec3f86922eee82e3603f7084ee1fdd146926fc972e722e160c2696df3f413 WHIRLPOOL 5b6755bf1ad8d5dfa5b93f7f74c3e97c09b9caf8ef0f63dd0888d0c00e482abf74e355e2ede4c578c0111eaccfc2d6933aa7eb93e6151441b46dbeda2ee6244f +DIST thunderbird-52.4.0-zh-TW.xpi 595729 SHA256 7a1dc6483c83b43852c892f5b26b29fbdb0794c81bca4ecb5d1080e8cc371da4 SHA512 0dc359b4cc57972425c175175c257134da68a207f96f127c38758e3fb6f5d8797db9ab14cbc87518b2f855a09215d96eeec6cfe0213b1d1e548798c2d5d6449b WHIRLPOOL d1d7f515bc799f3f3456517479935322b34650025caef473ffb8e6fde347f4c977ae30d10f71862c53b32d6ed7d2ffab8d4153ccfc5cd0ce2a4d83af1be91440 +DIST thunderbird-52.4.0.source.tar.xz 228561704 SHA256 7f57b5b4d4ec42b04afcff8327abc2d3c6185c0bcc1ad138825d021a2d3f578c SHA512 6ac39cecca9e53b51754d7a8bd7cae228d197eb234b03a2386c16fd665f4f7a67f10bbdf981c20b3f7a21a5ef67e2771154a3dd9f249c6a884c48a9e59bcfc78 WHIRLPOOL 54a51c417bdb7cd8fa89643741ebd1d15e589bbf1aed5a87dbe366657287f33496014e82caa220d55477dcca6c99784811b7effb1e1d4ee60b89c4485709b93f diff --git a/mail-client/thunderbird/thunderbird-52.4.0.ebuild b/mail-client/thunderbird/thunderbird-52.4.0.ebuild new file mode 100644 index 000000000000..a63acd0bc2d7 --- /dev/null +++ b/mail-client/thunderbird/thunderbird-52.4.0.ebuild @@ -0,0 +1,362 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +WANT_AUTOCONF="2.1" +MOZ_ESR="" +MOZ_LIGHTNING_VER="5.4.4" +MOZ_LIGHTNING_GDATA_VER="3.3" + +# This list can be updated using scripts/get_langs.sh from the mozilla overlay +MOZ_LANGS=(ar ast be bg bn-BD br ca cs cy da de el en en-GB en-US es-AR +es-ES et eu fi fr fy-NL ga-IE gd gl he hr hsb hu hy-AM id is it ja ko lt +nb-NO nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr +uk vi zh-CN zh-TW ) + +# Convert the ebuild version to the upstream mozilla version, used by mozlinguas +MOZ_PV="${PV/_beta/b}" + +# Patches +PATCHFF="firefox-52.4-patches-02" + +MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases" + +# ESR releases have slightly version numbers +if [[ ${MOZ_ESR} == 1 ]]; then + MOZ_PV="${MOZ_PV}esr" +fi +MOZ_P="${PN}-${MOZ_PV}" + +MOZCONFIG_OPTIONAL_GTK2ONLY=1 +MOZCONFIG_OPTIONAL_WIFI=1 + +inherit flag-o-matic toolchain-funcs mozconfig-v6.52 makeedit autotools pax-utils check-reqs nsplugins mozlinguas-v2 xdg-utils gnome2-utils + +DESCRIPTION="Thunderbird Mail Client" +HOMEPAGE="http://www.mozilla.com/en-US/thunderbird/" + +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +SLOT="0" +LICENSE="MPL-2.0 GPL-2 LGPL-2.1" +IUSE="bindist crypt hardened ldap lightning +minimal mozdom rust selinux" +RESTRICT="!bindist? ( bindist )" + +PATCH_URIS=( https://dev.gentoo.org/~{anarchy,axs,polynomial-c}/mozilla/patchsets/${PATCHFF}.tar.xz ) +SRC_URI="${SRC_URI} + ${MOZ_HTTP_URI}/${MOZ_PV}/source/${MOZ_P}.source.tar.xz + https://dev.gentoo.org/~axs/distfiles/lightning-${MOZ_LIGHTNING_VER}.tar.xz + lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-${MOZ_LIGHTNING_GDATA_VER}.tar.xz ) + ${PATCH_URIS[@]}" + +ASM_DEPEND=">=dev-lang/yasm-1.1" + +CDEPEND=" + >=dev-libs/nss-3.28.3 + >=dev-libs/nspr-4.13.1 + crypt? ( >=x11-plugins/enigmail-1.9.7 ) + " + +DEPEND="rust? ( dev-lang/rust ) + amd64? ( ${ASM_DEPEND} + virtual/opengl ) + x86? ( ${ASM_DEPEND} + virtual/opengl )" + +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-thunderbird ) +" + +S="${WORKDIR}/${MOZ_P}" + +BUILD_OBJ_DIR="${S}/tbird" + +pkg_setup() { + moz_pkgsetup + + export MOZILLA_DIR="${S}/mozilla" + + if ! use bindist ; then + elog "You are enabling official branding. You may not redistribute this build" + elog "to any users on your network or the internet. Doing so puts yourself into" + elog "a legal problem with Mozilla Foundation" + elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag" + elog + fi +} + +pkg_pretend() { + # Ensure we have enough disk space to compile + CHECKREQS_DISK_BUILD="4G" + check-reqs_pkg_setup +} + +src_unpack() { + unpack ${A} + + # Unpack language packs + mozlinguas_src_unpack + + # this version of lightning is a .tar.xz, no xpi needed + #xpi_unpack lightning-${MOZ_LIGHTNING_VER}.xpi + + # this version of gdata-provider is a .tar.xz , no xpi needed + #use lightning && xpi_unpack gdata-provider-${MOZ_LIGHTNING_GDATA_VER}.xpi +} + +src_prepare() { + # Apply our Thunderbird patchset + epatch "${FILESDIR}"/1000_fix_gentoo_preferences.patch + + # Apply our patchset from firefox to thunderbird as well + pushd "${S}"/mozilla &>/dev/null || die + eapply "${WORKDIR}/firefox" + popd &>/dev/null || die + + # Ensure that are plugins dir is enabled as default + sed -i -e "s:/usr/lib/mozilla/plugins:/usr/lib/nsbrowser/plugins:" \ + "${S}"/mozilla/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 32bit!" + sed -i -e "s:/usr/lib64/mozilla/plugins:/usr/lib64/nsbrowser/plugins:" \ + "${S}"/mozilla/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 64bit!" + + # Don't exit with error when some libs are missing which we have in + # system. + sed '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' \ + -i "${S}"/mail/installer/Makefile.in || die + + # Don't error out when there's no files to be removed: + sed 's@\(xargs rm\)$@\1 -f@' \ + -i "${S}"/mozilla/toolkit/mozapps/installer/packager.mk || die + + # Shell scripts sometimes contain DOS line endings; bug 391889 + grep -rlZ --include="*.sh" $'\r$' . | + while read -r -d $'\0' file ; do + einfo edos2unix "${file}" + edos2unix "${file}" + done + + # Allow user to apply any additional patches without modifing ebuild + eapply_user + + # Confirm the version of lightning being grabbed for langpacks is the same + # as that used in thunderbird + local THIS_MOZ_LIGHTNING_VER=$(python "${S}"/calendar/lightning/build/makeversion.py ${PV}) + if [[ ${MOZ_LIGHTNING_VER} != ${THIS_MOZ_LIGHTNING_VER} ]]; then + eqawarn "The version of lightning used for localization differs from the version" + eqawarn "in thunderbird. Please update MOZ_LIGHTNING_VER in the ebuild from ${MOZ_LIGHTNING_VER}" + eqawarn "to ${THIS_MOZ_LIGHTNING_VER}" + fi + + eautoreconf + # Ensure we run eautoreconf in mozilla to regenerate configure + cd "${S}"/mozilla || die + eautoconf + cd "${S}"/mozilla/js/src || die + eautoconf +} + +src_configure() { + MEXTENSIONS="default" + + #################################### + # + # mozconfig, CFLAGS and CXXFLAGS setup + # + #################################### + + mozconfig_init + mozconfig_config + + # It doesn't compile on alpha without this LDFLAGS + use alpha && append-ldflags "-Wl,--no-relax" + + # Add full relro support for hardened + use hardened && append-ldflags "-Wl,-z,relro,-z,now" + + mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}" + mozconfig_annotate '' --enable-calendar + + # Other tb-specific settings + mozconfig_annotate '' --with-user-appdir=.thunderbird + + mozconfig_use_enable ldap + mozconfig_use_enable rust + + mozlinguas_mozconfig + + # Bug #72667 + if use mozdom; then + MEXTENSIONS="${MEXTENSIONS},inspector" + fi + + # Use an objdir to keep things organized. + echo "mk_add_options MOZ_OBJDIR=${BUILD_OBJ_DIR}" >> "${S}"/.mozconfig + echo "mk_add_options XARGS=/usr/bin/xargs" >> "${S}"/.mozconfig + + # Finalize and report settings + mozconfig_final + + #################################### + # + # Configure and build + # + #################################### + + # Disable no-print-directory + MAKEOPTS=${MAKEOPTS/--no-print-directory/} + + if [[ $(gcc-major-version) -lt 4 ]]; then + append-cxxflags -fno-stack-protector + fi + + # workaround for funky/broken upstream configure... + SHELL="${SHELL:-${EPREFIX}/bin/bash}" \ + emake V=1 -f client.mk configure +} + +src_compile() { + MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL:-${EPREFIX}/bin/bash}" \ + emake V=1 -f client.mk +} + +src_install() { + declare emid + cd "${BUILD_OBJ_DIR}" || die + + # Pax mark xpcshell for hardened support, only used for startupcache creation. + pax-mark m "${BUILD_OBJ_DIR}"/dist/bin/xpcshell + + # Copy our preference before omnijar is created. + cp "${FILESDIR}"/thunderbird-gentoo-default-prefs-1.js-1 \ + "${BUILD_OBJ_DIR}/dist/bin/defaults/pref/all-gentoo.js" \ + || die + + mozconfig_install_prefs \ + "${BUILD_OBJ_DIR}/dist/bin/defaults/pref/all-gentoo.js" + + # dev-db/sqlite does not have FTS3_TOKENIZER support. + # gloda needs it to function, and bad crashes happen when its enabled and doesn't work + if in_iuse system-sqlite && use system-sqlite ; then + echo "sticky_pref(\"mailnews.database.global.indexer.enabled\", false);" \ + >>"${BUILD_OBJ_DIR}/dist/bin/defaults/pref/all-gentoo.js" || die + fi + + MOZ_MAKE_FLAGS="${MAKEOPTS}" \ + emake DESTDIR="${D}" install + + # Install language packs + mozlinguas_src_install + + local size sizes icon_path icon + if ! use bindist; then + icon_path="${S}/other-licenses/branding/thunderbird" + icon="${PN}-icon" + + domenu "${FILESDIR}"/icon/${PN}.desktop + else + icon_path="${S}/mail/branding/aurora" + icon="${PN}-icon-unbranded" + + newmenu "${FILESDIR}"/icon/${PN}-unbranded.desktop \ + ${PN}.desktop + + sed -i -e "s:Mozilla\ Thunderbird:EarlyBird:g" \ + "${ED}"/usr/share/applications/${PN}.desktop + fi + + # Install a 48x48 icon into /usr/share/pixmaps for legacy DEs + newicon "${icon_path}"/mailicon48.png "${icon}".png + # Install icons for menu entry + sizes="16 22 24 32 48 256" + for size in ${sizes}; do + newicon -s ${size} "${icon_path}/mailicon${size}.png" "${icon}.png" + done + + local emid + # stage extra locales for lightning and install over existing + mozlinguas_xpistage_langpacks "${BUILD_OBJ_DIR}"/dist/xpi-stage/lightning \ + "${WORKDIR}"/lightning-${MOZ_LIGHTNING_VER} lightning calendar + + emid='{e2fda1a4-762b-4020-b5ad-a41df1933103}' + mkdir -p "${T}/${emid}" || die + cp -RLp -t "${T}/${emid}" "${BUILD_OBJ_DIR}"/dist/xpi-stage/lightning/* || die + insinto ${MOZILLA_FIVE_HOME}/distribution/extensions + doins -r "${T}/${emid}" + + if use lightning; then + # move lightning out of distribution/extensions and into extensions for app-global install + mv "${ED}"/${MOZILLA_FIVE_HOME}/{distribution,}/extensions/${emid} || die + + # stage extra locales for gdata-provider and install app-global + mozlinguas_xpistage_langpacks "${BUILD_OBJ_DIR}"/dist/xpi-stage/gdata-provider \ + "${WORKDIR}"/gdata-provider-${MOZ_LIGHTNING_GDATA_VER} + emid='{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}' + mkdir -p "${T}/${emid}" || die + cp -RLp -t "${T}/${emid}" "${BUILD_OBJ_DIR}"/dist/xpi-stage/gdata-provider/* || die + insinto ${MOZILLA_FIVE_HOME}/extensions + doins -r "${T}/${emid}" + fi + + if use crypt; then + emid=$(sed -n '//!d; s/.*\({.*}\).*/\1/; p; q' "${EROOT}"usr/share/enigmail/install.rdf) + if [[ -n ${emid} ]]; then + dosym "${EPREFIX}"/usr/share/enigmail ${MOZILLA_FIVE_HOME}/extensions/${emid} + else + eerror "${EPREFIX}/usr/share/enigmail/install.rdf: No such file or directory" + die " tag for x11-plugins/enigmail could not be found!" + fi + fi + + # Required in order to use plugins and even run thunderbird on hardened. + pax-mark pm "${ED}"${MOZILLA_FIVE_HOME}/{thunderbird,thunderbird-bin,plugin-container} + + if use minimal; then + rm -r "${ED}"/usr/include "${ED}"${MOZILLA_FIVE_HOME}/{idl,include,lib,sdk} || \ + die "Failed to remove sdk and headers" + fi +} + +pkg_preinst() { + gnome2_icon_savelist + + # Because PM's dont seem to properly merge a symlink replacing a directory + if use crypt ; then + local emid=$(sed -n '//!d; s/.*\({.*}\).*/\1/; p; q' "${EROOT}"usr/share/enigmail/install.rdf) + local emidpath="${EROOT%/}"${MOZILLA_FIVE_HOME}/extensions/${emid} + if [[ -z ${emid} ]]; then + eerror "${EROOT%/}/usr/share/enigmail/install.rdf: No such file or directory" + die "Could not find enigmail on disk during pkg_preinst()" + fi + if [[ ! -h "${emidpath}" ]] && [[ -d "${emidpath}" ]]; then + rm -Rf "${emidpath}" || ( + eerror "Could not remove enigmail directory from previous installation," + eerror "You must remove this by hand and rename the symbolic link yourself:" + eerror + eerror "\t cd ${EPREFIX}${MOZILLA_FIVE_HOME}/extensions" + eerror "\t rm -Rf ${emid}" + eerror "\t mv ${emid}.backup* ${emid}" ) + fi + fi +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update + + elog + elog "If you experience problems with plugins please issue the" + elog "following command : rm \${HOME}/.thunderbird/*/extensions.sqlite ," + elog "then restart thunderbird" + + if ! use lightning; then + elog + elog "If calendar fails to show up in extensions please open config editor" + elog "and set extensions.lastAppVersion to 38.0.0 to force a reload. If this" + elog "fails to show the calendar extension after restarting with above change" + elog "please file a bug report." + fi +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +} diff --git a/mail-mta/exim/exim-4.89-r2.ebuild b/mail-mta/exim/exim-4.89-r3.ebuild similarity index 98% rename from mail-mta/exim/exim-4.89-r2.ebuild rename to mail-mta/exim/exim-4.89-r3.ebuild index 1f2228c4f0ca..69652375c313 100644 --- a/mail-mta/exim/exim-4.89-r2.ebuild +++ b/mail-mta/exim/exim-4.89-r3.ebuild @@ -96,6 +96,7 @@ src_prepare() { epatch "${FILESDIR}"/exim-4.76-crosscompile.patch # 266591 epatch "${FILESDIR}"/exim-4.89-CVE-2017-1000369.patch # 622212 epatch "${FILESDIR}"/${P}-transport-crash.patch # from git/in next release + epatch "${FILESDIR}"/${P}-address-expando-crash.patch # from git/in next release if use maildir ; then epatch "${FILESDIR}"/exim-4.20-maildir.patch @@ -452,9 +453,9 @@ src_install () { dosym exim /usr/sbin/sendmail dosym exim /usr/sbin/rsmtp dosym exim /usr/sbin/rmail - dosym /usr/sbin/exim /usr/bin/mailq - dosym /usr/sbin/exim /usr/bin/newaliases - dosym /usr/sbin/sendmail /usr/lib/sendmail + dosym ../sbin/exim /usr/bin/mailq + dosym ../sbin/exim /usr/bin/newaliases + dosym ../sbin/sendmail /usr/lib/sendmail for i in exicyclog exim_dbmbuild exim_dumpdb exim_fixdb exim_lock \ exim_tidydb exinext exiwhat exigrep eximstats exiqsumm exiqgrep \ diff --git a/mail-mta/exim/files/exim-4.89-address-expando-crash.patch b/mail-mta/exim/files/exim-4.89-address-expando-crash.patch new file mode 100644 index 000000000000..2a868490a426 --- /dev/null +++ b/mail-mta/exim/files/exim-4.89-address-expando-crash.patch @@ -0,0 +1,85 @@ +ignoring parts which don't match due to repo reorg post release + +From 1b7cf216d933b395dee691f05becca4dd44b26f7 Mon Sep 17 00:00:00 2001 +From: "Heiko Schlittermann (HS12-RIPE)" +Date: Wed, 4 Oct 2017 22:25:45 +0200 +Subject: [PATCH] Check for proper output separator in expanding + ${addresses:STRING} (Closes 2171) + +Better yet would be to force setting the output separator literally, +and not after expansion of the STRING. But this would be an incompatible +change. +--- + doc/doc-docbook/spec.xfpt | 10 +++++++++- + src/src/expand.c | 8 +++++++- + test/scripts/0000-Basic/0002 | 1 + + test/stdout/0002 | 1 + + 4 files changed, 18 insertions(+), 2 deletions(-) + +ignored - diff --git a/doc/doc-docbook/spec.xfpt b/doc/doc-docbook/spec.xfpt +ignored - index 4a8e1d0..c140945 100644 +ignored - --- a/doc/doc-docbook/spec.xfpt +ignored - +++ b/doc/doc-docbook/spec.xfpt +ignored - @@ -10118,7 +10118,15 @@ character. For example: +ignored - .code +ignored - ${addresses:>& Chief , sec@base.ment (dogsbody)} +ignored - .endd +ignored - -expands to &`ceo@up.stairs&&sec@base.ment`&. Compare the &*address*& (singular) +ignored - +expands to &`ceo@up.stairs&&sec@base.ment`&. The string is expanded +ignored - +first, so if the expanded string starts with >, it may change the output +ignored - +separator unintentionally. This can be avoided by setting the output +ignored - +separator explicitly: +ignored - +.code +ignored - +${addresses:>:$h_from:} +ignored - +.endd +ignored - + +ignored - +Compare the &*address*& (singular) +ignored - expansion item, which extracts the working address from a single RFC2822 +ignored - address. See the &*filter*&, &*map*&, and &*reduce*& items for ways of +ignored - processing lists. +diff --git a/src/src/expand.c b/src/src/expand.c +index 353b8ea..67b3d65 100644 +--- a/src/src/expand.c ++++ b/src/src/expand.c +@@ -6797,7 +6797,13 @@ while (*s != 0) + int start, end, domain; /* Not really used */ + + while (isspace(*sub)) sub++; +- if (*sub == '>') { *outsep = *++sub; ++sub; } ++ if (*sub == '>') ++ if (*outsep = *++sub) ++sub; ++ else { ++ expand_string_message = string_sprintf("output separator " ++ "missing in expanding ${addresses:%s}", --sub); ++ goto EXPAND_FAILED; ++ } + parse_allow_group = TRUE; + + for (;;) +ignored - diff --git a/test/scripts/0000-Basic/0002 b/test/scripts/0000-Basic/0002 +ignored - index cb0bb18..dd9cea2 100644 +ignored - --- a/test/scripts/0000-Basic/0002 +ignored - +++ b/test/scripts/0000-Basic/0002 +ignored - @@ -133,6 +133,7 @@ addresses: ${addresses:>+ Exim Person (that's me),\ +ignored - addresses: ${addresses:Exim Person (that's me), \ +ignored - xyz@abc, nullgroupname:;, group: p@q, r@s; } +ignored - addresses: ${addresses:local-part@dom.ain } +ignored - +addresses: ${addresses:>} +ignored - +ignored - escape: ${escape:B7·F2ò} +ignored - excape8bit: ${escape8bit:undisturbed text\ttab\nnewline\ttab\\backslash \176tilde\177DEL\200\x81.} +ignored - diff --git a/test/stdout/0002 b/test/stdout/0002 +ignored - index 5593f06..1422289 100644 +ignored - --- a/test/stdout/0002 +ignored - +++ b/test/stdout/0002 +ignored - @@ -123,6 +123,7 @@ +ignored - > addresses: local-part@dom.ain+xyz@abc +ignored - > addresses: local-part@dom.ain:xyz@abc:p@q:r@s +ignored - > addresses: +ignored - +> Failed: output separator missing in expanding ${addresses:>} +ignored - > +ignored - > escape: B7\267F2\362 +ignored - > excape8bit: undisturbed text tab +-- +1.9.1 + diff --git a/media-gfx/feh/Manifest b/media-gfx/feh/Manifest index 47ea6ea3ea8a..71c1978a36c3 100644 --- a/media-gfx/feh/Manifest +++ b/media-gfx/feh/Manifest @@ -1,3 +1,4 @@ DIST feh-2.18.3.tar.bz2 2127924 SHA256 d82f68c7a96e1860dab3584ed58bda69446b692ae79a4ca999018507da310563 SHA512 3ffb44f8a2207c2c8725a519a23b7235a6df86aa8578b7b79a8819122e509d18dcc8263859e02cdbdeb5fb5ca56229f90aef567d53d63d763f8259fbc1fff515 WHIRLPOOL 27b5cf4cb2431f09d7e971330e53435d1dd575706d6228ee6b4bdb4e80f15806571d0435f2cca3567bbb124da715eabf59d5a9f84e52274729ce85c06e8161a8 DIST feh-2.19.3.tar.bz2 2128692 SHA256 5ec97b655afbde3f1172543d175ec67fe35cd31397a009bda3fc3d40c1de7ed0 SHA512 0a5ee36bb9536e190b8aee11c097f5efd5f95dbb74ec299b41ec4d7d8bdfa68721b312607eb8e75941c4b79f92fcdbbc31731ab543907b2f6989bcc8e36ac6e5 WHIRLPOOL 4305cd425b20fe262fdcf4acf0ecfbeab8404bd6883fc9753f93109557b845cfe0a53edebad2d088a37bbafca7240daa4f0455d86e59793fc1f0ecc48e0716cb DIST feh-2.20.tar.bz2 2129466 SHA256 4b504302099ec6dd099c84dd7e285c80dc318977ebda48949593386bc26e700b SHA512 a621bc0b1327666af4ae71f6a9c286535b7951bde10f93cc5281304a1ab30e2584f94a5eb48d74dfc40deb007d9f88256a984bcfe2469bf4e11a9d8c8aa52ffc WHIRLPOOL fb2d8827b687a5b953ad3885745c78707f217cd4f3fb26940a34971d2ec8c13c2689e570882c89283877004d45e484ee3011cb9ffd0170949102743c454ecf5b +DIST feh-2.21.tar.bz2 2129718 SHA256 520481c9908d999f8f7546103b78ff9b11f41d25b0938f0a22f10aaa48beef2b SHA512 f869d6588976973fca55714829478293bbd89fe03c7575c48847d23caec09353dc54eddf6fa41dc7f560c92eaee49ee23008258d72f4d55a49a5166625560a43 WHIRLPOOL 81db9d7b87a279468145e750392edb1e7ee477612f80e9ab51d09b313f1ee4efe0c3deffbcc3f7eb5da909a387c33bd9abe213b43f5c11601ad6e5af1ef0c10b diff --git a/media-gfx/feh/feh-2.21.ebuild b/media-gfx/feh/feh-2.21.ebuild new file mode 100644 index 000000000000..73ad8e804e44 --- /dev/null +++ b/media-gfx/feh/feh-2.21.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="A fast, lightweight imageviewer using imlib2" +HOMEPAGE="https://feh.finalrewind.org/" +SRC_URI="https://feh.finalrewind.org/${P}.tar.bz2" + +LICENSE="feh" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" +IUSE="debug curl exif test xinerama" + +COMMON_DEPEND="media-libs/imlib2[X] + >=media-libs/libpng-1.2:0= + x11-libs/libX11 + curl? ( net-misc/curl ) + exif? ( media-libs/libexif ) + xinerama? ( x11-libs/libXinerama )" +RDEPEND="${COMMON_DEPEND} + virtual/jpeg:0" +DEPEND="${COMMON_DEPEND} + x11-libs/libXt + x11-proto/xproto + test? ( + >=dev-lang/perl-5.10 + dev-perl/Test-Command + )" + +PATCHES=( "${FILESDIR}"/${PN}-2.6.2-debug-cflags.patch ) + +pkg_setup() { + use_feh() { usex $1 1 0; } + + fehopts=( + DESTDIR="${D}" + PREFIX="${EPREFIX}"/usr + doc_dir='${main_dir}'/share/doc/${PF} + example_dir='${main_dir}'/share/doc/${PF}/examples + curl=$(use_feh curl) + debug=$(use_feh debug) + xinerama=$(use_feh xinerama) + exif=$(use_feh exif) + ) +} + +src_compile() { + tc-export CC + emake "${fehopts[@]}" +} + +src_install() { + emake "${fehopts[@]}" install +} diff --git a/media-gfx/graphite2/Manifest b/media-gfx/graphite2/Manifest index 57d14930ba82..d2054c7aafc0 100644 --- a/media-gfx/graphite2/Manifest +++ b/media-gfx/graphite2/Manifest @@ -1,2 +1 @@ DIST graphite2-1.3.10.tgz 3889647 SHA256 90fde3b2f9ea95d68ffb19278d07d9b8a7efa5ba0e413bebcea802ce05cda1ae SHA512 d6d578feaa2d9304dc9bcd3926958070b8c23b27437a9fcb801e08e62f33a5549b7a6aa9636c7f8eb80a2a2c6d5cac97d58050fb30fd102b9fd0f8c558f4252b WHIRLPOOL 8a10ae32a7f02ad9e64982ece9b4b5169355f52160f8b9f00d1a892f785bbe14c2fdde24f5e84f6b8cbd7012edaf91b639beeeba400a3f6432b2436278a5df06 -DIST graphite2-1.3.8.tgz 3885841 SHA256 9f3f25b3a8495ce0782e77f69075c0dd9b7c054847b9bf9ff130bec38f4c8cc2 SHA512 df8a3a7b67b356092fe8d4f62b7cd6d45ee7fe2b614699b0f8b29dc2441e00675021fdaec24cef4629c5294b33d6b269d596bc869fae8257f8f2e935c9db3639 WHIRLPOOL 88420608db053bd4d66b852a54eeb19359910c786ef1785e303e68f0d0d5b840b4a5cdcb7e17ae6c2064563d02b03a7be43ae203184218a8ac4d9dd40c17c56f diff --git a/media-gfx/graphite2/files/graphite2-1.3.8-rule-length-test-overflow-fix.patch b/media-gfx/graphite2/files/graphite2-1.3.8-rule-length-test-overflow-fix.patch deleted file mode 100644 index 624442fbb163..000000000000 --- a/media-gfx/graphite2/files/graphite2-1.3.8-rule-length-test-overflow-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 56157cf9845d13452068c297205f96b946126cc2 Mon Sep 17 00:00:00 2001 -From: Martin Hosken -Date: Mon, 4 Apr 2016 16:04:16 +0700 -Subject: [PATCH] Resolve rule length test overflow - ---- - src/Pass.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/Pass.cpp b/src/Pass.cpp -index 7289406..1c9c73c 100644 ---- a/src/Pass.cpp -+++ b/src/Pass.cpp -@@ -635,7 +635,7 @@ bool Pass::testPassConstraint(Machine & m) const - bool Pass::testConstraint(const Rule & r, Machine & m) const - { - const uint16 curr_context = m.slotMap().context(); -- if (unsigned(r.sort - r.preContext) > m.slotMap().size() - curr_context -+ if (unsigned(r.sort + curr_context - r.preContext) > m.slotMap().size() - || curr_context - r.preContext < 0) return false; - - vm::slotref * map = m.slotMap().begin() + curr_context - r.preContext; diff --git a/media-gfx/graphite2/files/graphite2-1.3.9-increase-pDest-reservation.patch b/media-gfx/graphite2/files/graphite2-1.3.9-increase-pDest-reservation.patch deleted file mode 100644 index fdd7e7ec4f03..000000000000 --- a/media-gfx/graphite2/files/graphite2-1.3.9-increase-pDest-reservation.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 1ce331d5548b98ed8b818532b2556d6f2c7a3b83 Mon Sep 17 00:00:00 2001 -From: Martin Hosken -Date: Thu, 9 Mar 2017 22:04:04 +0000 -Subject: [PATCH] Ensure features have enough space. Fix from Mozilla - ---- - src/FeatureMap.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/FeatureMap.cpp b/src/FeatureMap.cpp -index b8c8405..83bd5f6 100644 ---- a/src/FeatureMap.cpp -+++ b/src/FeatureMap.cpp -@@ -275,7 +275,7 @@ bool FeatureRef::applyValToFeature(uint32 val, Features & pDest) const - else - if (pDest.m_pMap!=&m_pFace->theSill().theFeatureMap()) - return false; //incompatible -- pDest.reserve(m_index); -+ pDest.reserve(m_index+1); - pDest[m_index] &= ~m_mask; - pDest[m_index] |= (uint32(val) << m_bits); - return true; diff --git a/media-gfx/graphite2/graphite2-1.3.8-r1.ebuild b/media-gfx/graphite2/graphite2-1.3.8-r1.ebuild deleted file mode 100644 index 2c5dd10cac5c..000000000000 --- a/media-gfx/graphite2/graphite2-1.3.8-r1.ebuild +++ /dev/null @@ -1,120 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) - -GENTOO_DEPEND_ON_PERL="no" -inherit eutils perl-module python-any-r1 cmake-multilib - -DESCRIPTION="Library providing rendering capabilities for complex non-Roman writing systems" -HOMEPAGE="http://graphite.sil.org/" -SRC_URI="mirror://sourceforge/silgraphite/${PN}/${P}.tgz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" -IUSE="perl test" - -RDEPEND=" - perl? ( dev-lang/perl:= ) -" -DEPEND="${RDEPEND} - perl? ( - dev-perl/Module-Build - dev-perl/Locale-Maketext-Lexicon - ) - test? ( - dev-libs/glib:2 - media-libs/fontconfig - $(python_gen_any_dep ' - dev-python/fonttools[${PYTHON_USEDEP}] - ') - ${PYTHON_DEPS} - perl? ( virtual/perl-Test-Simple ) - ) -" - -PATCHES=( - "${FILESDIR}/${PN}-1.3.5-includes-libs-perl.patch" - "${FILESDIR}/${PN}-1.3.8-rule-length-test-overflow-fix.patch" - "${FILESDIR}/${PN}-1.3.9-increase-pDest-reservation.patch" -) - -pkg_setup() { - use perl && perl_set_version - use test && python-any-r1_pkg_setup -} - -python_check_deps() { - has_version "dev-python/fonttools[${PYTHON_USEDEP}]" -} - -src_prepare() { - cmake-utils_src_prepare - - # make tests optional - if ! use test; then - sed -i \ - -e '/tests/d' \ - CMakeLists.txt || die - fi -} - -multilib_src_configure() { - local mycmakeargs=( - "-DVM_MACHINE_TYPE=direct" - # https://sourceforge.net/p/silgraphite/bugs/49/ - $([[ ${CHOST} == powerpc*-apple* ]] && \ - echo "-DGRAPHITE2_NSEGCACHE:BOOL=ON") - ) - - cmake-utils_src_configure - - # fix perl linking - if multilib_is_native_abi && use perl; then - # we rely on the fact that cmake-utils_src_configure sets BUILD_DIR - sed -i \ - -e "s:@BUILD_DIR@:\"${BUILD_DIR}/src\":" \ - "${S}"/contrib/perl/Build.PL || die - fi -} - -src_compile() { - cmake-multilib_src_compile - if use perl; then - cd contrib/perl || die - perl-module_src_configure - perl-module_src_compile - fi -} - -multilib_src_test() { - if multilib_is_native_abi; then - cmake-utils_src_test - else - einfo Cannot test since python is not multilib. - fi -} - -src_test() { - cmake-multilib_src_test - if use perl; then - cd contrib/perl || die - # SRC_TEST=do - # Perl tests fail due to missing POD coverage... - perl-module_src_test - fi -} - -src_install() { - cmake-multilib_src_install - if use perl; then - cd contrib/perl || die - perl-module_src_install - perl_delete_localpod - fi - - prune_libtool_files --all -} diff --git a/media-libs/avidemux-core/avidemux-core-2.6.20-r1.ebuild b/media-libs/avidemux-core/avidemux-core-2.6.20-r2.ebuild similarity index 100% rename from media-libs/avidemux-core/avidemux-core-2.6.20-r1.ebuild rename to media-libs/avidemux-core/avidemux-core-2.6.20-r2.ebuild diff --git a/media-libs/exiftool/Manifest b/media-libs/exiftool/Manifest index 74a526ab9a88..ee81dcfb4d29 100644 --- a/media-libs/exiftool/Manifest +++ b/media-libs/exiftool/Manifest @@ -1,2 +1,3 @@ DIST Image-ExifTool-10.61.tar.gz 4270638 SHA256 a8f2b535c070f17ae6113bc1dd2e9db5a663621f1726b45f57511e374b5190eb SHA512 2d528045f24501985c326a9abf58dc1e77b9ecbef4253e1fcb456fa3c76cbe0a6ff6c6b42fc0095401bf15ac2ad90e02ae4b22cac43aae740b2d5d484c3b85c5 WHIRLPOOL 3623dbdda5a2742f7ba1268814b4a0374dd24802237a278760d5da734d21c6c40352a6bc250831bc0d9b4eae02d353a5539a1d90aa87a76e1943a97d44e3a175 DIST Image-ExifTool-10.62.tar.gz 4274693 SHA256 6e8ff002e3c1253e2a4d77b4dd57f69c92599b0a1b48a94531bafb20b427f52e SHA512 3dce72f7c181eba94513924e3d914a6947ae74789064c96339010929b94bd44a35b5fafeaa5700b511ca4a3a498776a5b5d7c0dd5d459dabb57462a0ae9b32a1 WHIRLPOOL 780cc905ca1fccba418183df635d160a7460608d23e780cf3f95de0dccda80efac5b541d8682341dfc7c22c7755c7a394a26a5c05b9238e47d12c1ce83d706cd +DIST Image-ExifTool-10.63.tar.gz 4277554 SHA256 84d63972e9172cd18fce54fef862f0d818c91c29a79c95689557be31747b9fde SHA512 84b62b73c3df22e69fddb6c5513461a2fa6086dd3bb8c3747fb495803771d307c664393e655b7892666ba74e51332558e353e64a620c55ecba86011b1a3b5675 WHIRLPOOL 300fe1984d3d5ecc014b4676c18a82c08bfc1d3b90ececf41b50911d3cc7073a5b53484abf2ff29993b3e3db7ef7820e3a2afd2e1789e8d363e69096346fe93c diff --git a/media-libs/exiftool/exiftool-10.63.ebuild b/media-libs/exiftool/exiftool-10.63.ebuild new file mode 100644 index 000000000000..22e52f948459 --- /dev/null +++ b/media-libs/exiftool/exiftool-10.63.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_NAME=Image-ExifTool +inherit perl-module + +DESCRIPTION="Read and write meta information in image, audio and video files" +HOMEPAGE="https://www.sno.phy.queensu.ca/~phil/exiftool/ ${HOMEPAGE}" +SRC_URI="https://www.sno.phy.queensu.ca/~phil/exiftool/${DIST_P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x64-macos" +IUSE="doc" + +SRC_TEST="do" + +src_install() { + perl-module_src_install + use doc && dodoc -r html/ +} diff --git a/media-libs/libcdr/Manifest b/media-libs/libcdr/Manifest index 1325555971df..07f956e3f1ba 100644 --- a/media-libs/libcdr/Manifest +++ b/media-libs/libcdr/Manifest @@ -1 +1,2 @@ DIST libcdr-0.1.3.tar.xz 596772 SHA256 66e28e502abef7f6f494ce03de037d532f5e7888cfdee62c01203c8325b33f22 SHA512 9811efb13f7dd72c69a98e81b44a261e913ffe87200486c8e07200d75790004d4fdf30e29f779b0ddd2ad09e3d1e8813ef501e9448c1789f89256f71bdb5fadd WHIRLPOOL 6772ac928a66f21c689f39a3abc762d043baf89d009d86ce79d68aa8b1354a4965a2f489bf8bd754c4a76bee3ac3695658ee4ec14ed7cf19986e48c22b0e4f97 +DIST libcdr-0.1.4.tar.xz 609592 SHA256 e7a7e8b00a3df5798110024d7061fe9d1c3330277d2e4fa9213294f966a4a66d SHA512 769b0319b5a904ce9f727b7076f82cd915ecd8c9e5e2456416e3e6739c6403bbd4108787ab124d36efb1b47d5c9e37c48b0e12d096eb440ae8f9979ec06048a6 WHIRLPOOL 30dd5538e2b1d5e4749c838902e04b5f59cd5a5376468209307850ab5bb2807822d8b6aeab44e3559227bdc5011b7ecba5a150c255f57c63e3cacfe577a04f7f diff --git a/media-libs/libcdr/libcdr-0.1.4.ebuild b/media-libs/libcdr/libcdr-0.1.4.ebuild new file mode 100644 index 000000000000..a7f1ed801fda --- /dev/null +++ b/media-libs/libcdr/libcdr-0.1.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libcdr.git" +[[ ${PV} == 9999 ]] && inherit autotools git-r3 + +DESCRIPTION="Library parsing the Corel cdr documents" +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libcdr" +[[ ${PV} == 9999 ]] || SRC_URI="https://dev-www.libreoffice.org/src/libcdr/${P}.tar.xz" + +LICENSE="MPL-2.0" +SLOT="0" +[[ ${PV} == 9999 ]] || \ +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +IUSE="doc static-libs test" + +RDEPEND=" + dev-libs/icu:= + dev-libs/librevenge + media-libs/lcms:2 + sys-libs/zlib +" +DEPEND="${RDEPEND} + dev-libs/boost + sys-devel/libtool + virtual/pkgconfig + doc? ( app-doc/doxygen ) + test? ( dev-util/cppunit ) +" + +src_prepare() { + default + [[ -d m4 ]] || mkdir "m4" + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure() { + econf \ + --disable-werror \ + $(use_with doc docs) \ + $(use_enable static-libs static) \ + $(use_enable test tests) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/media-libs/libcdr/libcdr-9999.ebuild b/media-libs/libcdr/libcdr-9999.ebuild index ef4b7f810ec2..a7f1ed801fda 100644 --- a/media-libs/libcdr/libcdr-9999.ebuild +++ b/media-libs/libcdr/libcdr-9999.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libcdr" LICENSE="MPL-2.0" SLOT="0" [[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" IUSE="doc static-libs test" RDEPEND=" diff --git a/media-libs/libfreehand/Manifest b/media-libs/libfreehand/Manifest index de26a63acf8f..590b5402a926 100644 --- a/media-libs/libfreehand/Manifest +++ b/media-libs/libfreehand/Manifest @@ -1 +1,2 @@ DIST libfreehand-0.1.1.tar.xz 492916 SHA256 ec6676d0c63f7feac7801a1fe18dd7abe9044b39c3882fc99b9afef39bdf1d30 SHA512 552b6b8c00aabe0d557fdacf4bfe8b0b4c2d34ec6f15820f3a54da76b4f24ca5842ba38ea756d05b947a0e8cf48d351429abef64b25508ea032a92965e9c91e2 WHIRLPOOL 2b82b4a3790df93fb52ec872ed38c1c991ce63b35fd25c87c60c2816f3275b6fa8f7d607fc6f9bd41c6bcbc0fca44efc11e5486b4d0bd47077543ce5e69d9fd8 +DIST libfreehand-0.1.2.tar.xz 516132 SHA256 0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac SHA512 4112a76ac99999801d97d1b282596d631d8496a5bf65778ab26aa06da86637b1e2b630648a67ea01bf3316ecec9f2715546baff27af090b900267c87a011b963 WHIRLPOOL 54ae55cc80304f15244d0eac671264afdf2d30c589ddc917eb9db4ce7409b95f7bbbfe17b9d97b3b0954f0ab1e1a3342f09df435d93c3945dedd4767e81d1038 diff --git a/media-libs/libfreehand/libfreehand-0.1.2.ebuild b/media-libs/libfreehand/libfreehand-0.1.2.ebuild new file mode 100644 index 000000000000..3ce6e903de14 --- /dev/null +++ b/media-libs/libfreehand/libfreehand-0.1.2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libfreehand.git" +[[ ${PV} == 9999 ]] && inherit autotools git-r3 + +DESCRIPTION="Library for import of FreeHand drawings" +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand" +[[ ${PV} == 9999 ]] || SRC_URI="https://dev-www.libreoffice.org/src/libfreehand/${P}.tar.xz" + +LICENSE="MPL-2.0" +SLOT="0" +[[ ${PV} == 9999 ]] || \ +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="doc static-libs" + +RDEPEND=" + dev-libs/librevenge + sys-libs/zlib +" +DEPEND="${RDEPEND} + dev-libs/icu:= + dev-util/gperf + media-libs/lcms + sys-devel/libtool + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" + +src_prepare() { + default + [[ -d m4 ]] || mkdir "m4" + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure() { + econf \ + --disable-werror \ + $(use_with doc docs) \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/media-libs/libfreehand/libfreehand-9999.ebuild b/media-libs/libfreehand/libfreehand-9999.ebuild index 609ba81503ad..3ce6e903de14 100644 --- a/media-libs/libfreehand/libfreehand-9999.ebuild +++ b/media-libs/libfreehand/libfreehand-9999.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand" LICENSE="MPL-2.0" SLOT="0" [[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="doc static-libs" RDEPEND=" diff --git a/media-libs/libraw/Manifest b/media-libs/libraw/Manifest index f270ad6d8040..2ef09561592f 100644 --- a/media-libs/libraw/Manifest +++ b/media-libs/libraw/Manifest @@ -1,12 +1,6 @@ -DIST LibRaw-0.17.2.tar.gz 1472714 SHA256 92b0c42c7666eca9307e5e1f97d6fefc196cf0b7ee089e22880259a76fafd15c SHA512 e27227850b09e291802c089c826778579420a4af3f4b94dddf488bfc7eb84335d7a944445287d5993c5a574c192df5117c022d1b3d0372b3539a4553612988f4 WHIRLPOOL 55ab9980dc789a0f8c08043a93c1004e268ac3e0902f789a808a47f50e9294eb2f3755f71ecc0310e80cdf440aa60d9ed0e389b27d184e81db6f90f144257436 -DIST LibRaw-0.18.2.tar.gz 1281674 SHA256 ce366bb38c1144130737eb16e919038937b4dc1ab165179a225d5e847af2abc6 SHA512 87d3e5a0ecf7fc7c35a32f3963d108553b2d21a89aa75e4f2d9fab939aa14aa267ccf2a29e75e12d613c39798eb222b55da80371e699e913a58a7ae0fd47a2bc WHIRLPOOL 04493eb20169091b1782f5f7d5988c142c612e726f3225c4394779aa4caae678792ac080fcf43bf25bffa698b1ab7353a4eaf226d15125db2254d7b1bc16045b DIST LibRaw-0.18.4.tar.gz 1281104 SHA256 eaf4931b46e65861e88bbe704ccf370381e94d63e9a898b889ded4e0cb3b0c97 SHA512 e71db23a70f0cda745ae862f4cb6a0c51c968e4c7399f28e86de8beb894526fa76cd337c1406e2eaee3f287f15e8912d1a0f7217493c6444a491ca3329f63776 WHIRLPOOL c7bfecfe51280088b8be35a226e765b2a3f810d120150a74326b4ee9662f10b170fa8cca7b4ef7191431b7b08df4f83df5dbe6da1811915405b4d2d72b988e38 DIST LibRaw-0.18.5.tar.gz 1280046 SHA256 fa2a7d14d9dfaf6b368f958a76d79266b3f58c2bc367bebab56e11baa94da178 SHA512 751a1c54507b7408d0d36c3f1fb0e31928f5ae540fae42eb2b57d8fcebcd44134dc452a4f3838dd31dbc8fb3978a6cac6129429a3350f8be5dc44146309aff81 WHIRLPOOL b35227120e140abbd59b6587296fc81e7737a32cce82b8d4b2c240d448c786040302d1737c614168b5e8f797a760a396cfc353929afa7aba48af3f3e70cd1b8d -DIST LibRaw-demosaic-pack-GPL2-0.17.2.tar.gz 31190 SHA256 a2e5e9cc04fa8f3e94070110dce8a06aa3b0b2f573ed99c5fc3e327d15f014b7 SHA512 634fcd62433bc9a9aebccd113ef95a070609edee2520b7a609bab1b9612cc472b77295deb84e43ffcf002a2cdb57bb92a39d1e4b1bb8fed77a221b370074edea WHIRLPOOL a10d7921a9f20b088e2e0d773315bd00b2c4105c1a9e6890386fe53a08af2e698441e6abf9ab445099962e500502618fb687974126a4345422a759fb174e591c -DIST LibRaw-demosaic-pack-GPL2-0.18.2.tar.gz 31777 SHA256 f467689182728240c6358c1b890e9fe4ee08667c74433f6bd6a4710e3ae2aab6 SHA512 d979671769bb9a4695ace5c5478d6fefea2d9efd1ed30b25e3d6e3e517b86b551cbe9df7db75f735b130e1baf98b5d3485478f59379265fc4376c195ac6c1125 WHIRLPOOL e03fd53af54e0b86811273c1900764fbad5be7d259445031f9b178bc82aba53880a0f26916b86fbe0e8b12fe4eba78f594a7abbeaa1d77fa86379cf664f28a38 DIST LibRaw-demosaic-pack-GPL2-0.18.4.tar.gz 33129 SHA256 8961b0a90d4b1a5d00a13d9ed2f23e8f2c651b4a68c0470e01ba7668cc98145f SHA512 05bef76530f9237e1d1bfe08014f30de328b68319f88d126aaffa8baf3b89615d160bac36a6ad2cc38cab0faeb8c4bf86714dd568e7f01cfd1ee2513ac175a5d WHIRLPOOL 70fd4d7d5503d4edf985be7afe0635d8f54e3680a6be0384c0036480001d2fcb32cd6faa02f6219a5c28192448b2ea50bffae324b83d77509712887d7f02ccf4 DIST LibRaw-demosaic-pack-GPL2-0.18.5.tar.gz 30449 SHA256 2ae7923868c3e927eee72cf2e4d91384560b7cfe76a386ecf319c069d343c674 SHA512 1599695394717558e61844e32d76bf653741592d81691c9f55bfb72c8c5d485bce4eab3fc0eefd37640254c431bd78706fe04ca547e42566dda789f0b6559af5 WHIRLPOOL 880f95a95d61b9832ef0a5115aeb9d3ca27dd8de893265b86073fc30e22224a3fea125fb0d9a26d9af01cfb1a8aa4d21a93a5574599ffddf2d1b69e9349fa093 -DIST LibRaw-demosaic-pack-GPL3-0.17.2.tar.gz 38908 SHA256 b00cd0f54851bd3c8a66be4cacbf049e4508f1bac8ff85cb4528d8979739ed36 SHA512 fda6e22a8e4eb5614c6878ed77990f8f558ea54b9ec63ca77fb279543efa334c60d0fc48c1c5029c17216a1f7ed0e84db73675bd9d7308f869d11218184e19ad WHIRLPOOL 545d5fc29ccc01f862868675b12ea5dab8fad5bd59781e744344fee62d446697529cc9ac169f2167d81feea8dbbb56f57cb4883d02e4e472fa81e992f3a7f73f -DIST LibRaw-demosaic-pack-GPL3-0.18.2.tar.gz 39290 SHA256 01080bc2448de87339f086229319c9e1cca97ac0621416feb537b96f0dba4a57 SHA512 0fcfd89ea7607e9a5c0594f09ec49ae3be749efeaa4a30a05d45926610609ef23ff416075fae153efe20b62ab020c0433525761025613d585acffbcd7c663d51 WHIRLPOOL 8be882be0ca70a2b6885397442d3e656553ae79946f39cf878a048f447e60a0d47d10ee219ab7c59c01b1c7997b392a942fe1ed1ac572a115e440e6a1d3f0b1b DIST LibRaw-demosaic-pack-GPL3-0.18.4.tar.gz 38622 SHA256 9aa8ad60581b9c6a0ed81d96f897804cac832c7eeb087a38ca61fcd54838966c SHA512 158d951d0e1c35f1ebdde8849f0b51e23332c8b5b13a4b0ab0677a3d4a1682afd6e7c5dec4194072b4588699bf49a023591fa1b05d2a8f4c54cd1a44e65e3ad9 WHIRLPOOL da402afa54a6b3a10f17a3e2ea92475433a8baeb02c9be95d107fbb740f8e3448cba7183ef161ef04613f815af9c97196a7d9d3b14cca643ffabf329df7d9de5 DIST LibRaw-demosaic-pack-GPL3-0.18.5.tar.gz 38899 SHA256 b0ec998c4884cedd86a0627481a18144f0024a35c7a6fa5ae836182c16975c2b SHA512 c00193b64673e093c33a9d1316448eea4eb7e2b274d5d3bd39cef02b7269e56ce72f9b47831039e00b2feb8344b5266f9c03b5f11212d520809674db253cb028 WHIRLPOOL 78dfc95e23c4570f604262911747f751177e35d489875c1c1de21afeead4f902774e75387fc37b49a7800012fdb8bb872340faf15607e2b206677bb8fd236c6c diff --git a/media-libs/libraw/files/libraw-0.17.2-gcc6.patch b/media-libs/libraw/files/libraw-0.17.2-gcc6.patch deleted file mode 100644 index de5eb4881c43..000000000000 --- a/media-libs/libraw/files/libraw-0.17.2-gcc6.patch +++ /dev/null @@ -1,189 +0,0 @@ -Backport upstream patch to compile against GCC 6 from -https://github.com/LibRaw/LibRaw/commit/eba7a66e23f2f62cc4c8115af8066f2df5da085a - -Patch by Peter Levine -See also: https://bugs.gentoo.org/show_bug.cgi?id=582852 - ---- a/dcraw/dcraw.c -+++ b/dcraw/dcraw.c -@@ -5788,30 +5788,37 @@ void CLASS lin_interpolate() - */ - void CLASS vng_interpolate() - { -- static const signed char *cp, terms[] = { -- -2,-2,+0,-1,0,0x01, -2,-2,+0,+0,1,0x01, -2,-1,-1,+0,0,0x01, -- -2,-1,+0,-1,0,0x02, -2,-1,+0,+0,0,0x03, -2,-1,+0,+1,1,0x01, -- -2,+0,+0,-1,0,0x06, -2,+0,+0,+0,1,0x02, -2,+0,+0,+1,0,0x03, -- -2,+1,-1,+0,0,0x04, -2,+1,+0,-1,1,0x04, -2,+1,+0,+0,0,0x06, -- -2,+1,+0,+1,0,0x02, -2,+2,+0,+0,1,0x04, -2,+2,+0,+1,0,0x04, -- -1,-2,-1,+0,0,0x80, -1,-2,+0,-1,0,0x01, -1,-2,+1,-1,0,0x01, -- -1,-2,+1,+0,1,0x01, -1,-1,-1,+1,0,0x88, -1,-1,+1,-2,0,0x40, -- -1,-1,+1,-1,0,0x22, -1,-1,+1,+0,0,0x33, -1,-1,+1,+1,1,0x11, -- -1,+0,-1,+2,0,0x08, -1,+0,+0,-1,0,0x44, -1,+0,+0,+1,0,0x11, -- -1,+0,+1,-2,1,0x40, -1,+0,+1,-1,0,0x66, -1,+0,+1,+0,1,0x22, -- -1,+0,+1,+1,0,0x33, -1,+0,+1,+2,1,0x10, -1,+1,+1,-1,1,0x44, -- -1,+1,+1,+0,0,0x66, -1,+1,+1,+1,0,0x22, -1,+1,+1,+2,0,0x10, -- -1,+2,+0,+1,0,0x04, -1,+2,+1,+0,1,0x04, -1,+2,+1,+1,0,0x04, -- +0,-2,+0,+0,1,0x80, +0,-1,+0,+1,1,0x88, +0,-1,+1,-2,0,0x40, -- +0,-1,+1,+0,0,0x11, +0,-1,+2,-2,0,0x40, +0,-1,+2,-1,0,0x20, -- +0,-1,+2,+0,0,0x30, +0,-1,+2,+1,1,0x10, +0,+0,+0,+2,1,0x08, -- +0,+0,+2,-2,1,0x40, +0,+0,+2,-1,0,0x60, +0,+0,+2,+0,1,0x20, -- +0,+0,+2,+1,0,0x30, +0,+0,+2,+2,1,0x10, +0,+1,+1,+0,0,0x44, -- +0,+1,+1,+2,0,0x10, +0,+1,+2,-1,1,0x40, +0,+1,+2,+0,0,0x60, -- +0,+1,+2,+1,0,0x20, +0,+1,+2,+2,0,0x10, +1,-2,+1,+0,0,0x80, -- +1,-1,+1,+1,0,0x88, +1,+0,+1,+2,0,0x08, +1,+0,+2,-1,0,0x40, -- +1,+0,+2,+1,0,0x10 -- }, chood[] = { -1,-1, -1,0, -1,+1, 0,+1, +1,+1, +1,0, +1,-1, 0,-1 }; -+ struct interpolate_terms { -+ signed char y1, x1, y2, x2, weight; -+ unsigned char grads; -+ }; -+ static const interpolate_terms terms[] = { -+ {-2,-2,+0,-1,0,0x01}, {-2,-2,+0,+0,1,0x01}, {-2,-1,-1,+0,0,0x01}, -+ {-2,-1,+0,-1,0,0x02}, {-2,-1,+0,+0,0,0x03}, {-2,-1,+0,+1,1,0x01}, -+ {-2,+0,+0,-1,0,0x06}, {-2,+0,+0,+0,1,0x02}, {-2,+0,+0,+1,0,0x03}, -+ {-2,+1,-1,+0,0,0x04}, {-2,+1,+0,-1,1,0x04}, {-2,+1,+0,+0,0,0x06}, -+ {-2,+1,+0,+1,0,0x02}, {-2,+2,+0,+0,1,0x04}, {-2,+2,+0,+1,0,0x04}, -+ {-1,-2,-1,+0,0,0x80}, {-1,-2,+0,-1,0,0x01}, {-1,-2,+1,-1,0,0x01}, -+ {-1,-2,+1,+0,1,0x01}, {-1,-1,-1,+1,0,0x88}, {-1,-1,+1,-2,0,0x40}, -+ {-1,-1,+1,-1,0,0x22}, {-1,-1,+1,+0,0,0x33}, {-1,-1,+1,+1,1,0x11}, -+ {-1,+0,-1,+2,0,0x08}, {-1,+0,+0,-1,0,0x44}, {-1,+0,+0,+1,0,0x11}, -+ {-1,+0,+1,-2,1,0x40}, {-1,+0,+1,-1,0,0x66}, {-1,+0,+1,+0,1,0x22}, -+ {-1,+0,+1,+1,0,0x33}, {-1,+0,+1,+2,1,0x10}, {-1,+1,+1,-1,1,0x44}, -+ {-1,+1,+1,+0,0,0x66}, {-1,+1,+1,+1,0,0x22}, {-1,+1,+1,+2,0,0x10}, -+ {-1,+2,+0,+1,0,0x04}, {-1,+2,+1,+0,1,0x04}, {-1,+2,+1,+1,0,0x04}, -+ {+0,-2,+0,+0,1,0x80}, {+0,-1,+0,+1,1,0x88}, {+0,-1,+1,-2,0,0x40}, -+ {+0,-1,+1,+0,0,0x11}, {+0,-1,+2,-2,0,0x40}, {+0,-1,+2,-1,0,0x20}, -+ {+0,-1,+2,+0,0,0x30}, {+0,-1,+2,+1,1,0x10}, {+0,+0,+0,+2,1,0x08}, -+ {+0,+0,+2,-2,1,0x40}, {+0,+0,+2,-1,0,0x60}, {+0,+0,+2,+0,1,0x20}, -+ {+0,+0,+2,+1,0,0x30}, {+0,+0,+2,+2,1,0x10}, {+0,+1,+1,+0,0,0x44}, -+ {+0,+1,+1,+2,0,0x10}, {+0,+1,+2,-1,1,0x40}, {+0,+1,+2,+0,0,0x60}, -+ {+0,+1,+2,+1,0,0x20}, {+0,+1,+2,+2,0,0x10}, {+1,-2,+1,+0,0,0x80}, -+ {+1,-1,+1,+1,0,0x88}, {+1,+0,+1,+2,0,0x08}, {+1,+0,+2,-1,0,0x40}, -+ {+1,+0,+2,+1,0,0x10} -+ }; -+ const interpolate_terms *cpt; -+ signed char *cp; -+ signed char chood[] = { -1,-1, -1,0, -1,+1, 0,+1, +1,+1, +1,0, +1,-1, 0,-1 }; - ushort (*brow[5])[4], *pix; - int prow=8, pcol=2, *ip, *code[16][16], gval[8], gmin, gmax, sum[4]; - int row, col, x, y, x1, x2, y1, y2, t, weight, grads, color, diag; -@@ -5829,11 +5836,11 @@ void CLASS vng_interpolate() - for (row=0; row < prow; row++) /* Precalculate for VNG */ - for (col=0; col < pcol; col++) { - code[row][col] = ip; -- for (cp=terms, t=0; t < 64; t++) { -- y1 = *cp++; x1 = *cp++; -- y2 = *cp++; x2 = *cp++; -- weight = *cp++; -- grads = *cp++; -+ for (cpt=&terms[0], t=0; t < 64, cpt = &terms[t]; t++) { -+ y1 = cpt->y1; x1 = cpt->x1; -+ y2 = cpt->y2; x2 = cpt->x2; -+ weight = cpt->weight; -+ grads = cpt->grads; - color = fcol(row+y1,col+x1); - if (fcol(row+y2,col+x2) != color) continue; - diag = (fcol(row,col+1) == color && fcol(row+1,col) == color) ? 2:1; -@@ -16289,7 +16296,7 @@ void CLASS tiff_head (struct tiff_hdr *th, int full) - strncpy (th->desc, desc, 512); - strncpy (th->make, make, 64); - strncpy (th->model, model, 64); -- strcpy (th->soft, "dcraw v"DCRAW_VERSION); -+ strcpy (th->soft, "dcraw v" DCRAW_VERSION); - t = localtime (×tamp); - sprintf (th->date, "%04d:%02d:%02d %02d:%02d:%02d", - t->tm_year+1900,t->tm_mon+1,t->tm_mday,t->tm_hour,t->tm_min,t->tm_sec); ---- a/internal/dcraw_common.cpp -+++ b/internal/dcraw_common.cpp -@@ -4618,30 +4618,37 @@ void CLASS lin_interpolate() - */ - void CLASS vng_interpolate() - { -- static const signed char *cp, terms[] = { -- -2,-2,+0,-1,0,0x01, -2,-2,+0,+0,1,0x01, -2,-1,-1,+0,0,0x01, -- -2,-1,+0,-1,0,0x02, -2,-1,+0,+0,0,0x03, -2,-1,+0,+1,1,0x01, -- -2,+0,+0,-1,0,0x06, -2,+0,+0,+0,1,0x02, -2,+0,+0,+1,0,0x03, -- -2,+1,-1,+0,0,0x04, -2,+1,+0,-1,1,0x04, -2,+1,+0,+0,0,0x06, -- -2,+1,+0,+1,0,0x02, -2,+2,+0,+0,1,0x04, -2,+2,+0,+1,0,0x04, -- -1,-2,-1,+0,0,0x80, -1,-2,+0,-1,0,0x01, -1,-2,+1,-1,0,0x01, -- -1,-2,+1,+0,1,0x01, -1,-1,-1,+1,0,0x88, -1,-1,+1,-2,0,0x40, -- -1,-1,+1,-1,0,0x22, -1,-1,+1,+0,0,0x33, -1,-1,+1,+1,1,0x11, -- -1,+0,-1,+2,0,0x08, -1,+0,+0,-1,0,0x44, -1,+0,+0,+1,0,0x11, -- -1,+0,+1,-2,1,0x40, -1,+0,+1,-1,0,0x66, -1,+0,+1,+0,1,0x22, -- -1,+0,+1,+1,0,0x33, -1,+0,+1,+2,1,0x10, -1,+1,+1,-1,1,0x44, -- -1,+1,+1,+0,0,0x66, -1,+1,+1,+1,0,0x22, -1,+1,+1,+2,0,0x10, -- -1,+2,+0,+1,0,0x04, -1,+2,+1,+0,1,0x04, -1,+2,+1,+1,0,0x04, -- +0,-2,+0,+0,1,0x80, +0,-1,+0,+1,1,0x88, +0,-1,+1,-2,0,0x40, -- +0,-1,+1,+0,0,0x11, +0,-1,+2,-2,0,0x40, +0,-1,+2,-1,0,0x20, -- +0,-1,+2,+0,0,0x30, +0,-1,+2,+1,1,0x10, +0,+0,+0,+2,1,0x08, -- +0,+0,+2,-2,1,0x40, +0,+0,+2,-1,0,0x60, +0,+0,+2,+0,1,0x20, -- +0,+0,+2,+1,0,0x30, +0,+0,+2,+2,1,0x10, +0,+1,+1,+0,0,0x44, -- +0,+1,+1,+2,0,0x10, +0,+1,+2,-1,1,0x40, +0,+1,+2,+0,0,0x60, -- +0,+1,+2,+1,0,0x20, +0,+1,+2,+2,0,0x10, +1,-2,+1,+0,0,0x80, -- +1,-1,+1,+1,0,0x88, +1,+0,+1,+2,0,0x08, +1,+0,+2,-1,0,0x40, -- +1,+0,+2,+1,0,0x10 -- }, chood[] = { -1,-1, -1,0, -1,+1, 0,+1, +1,+1, +1,0, +1,-1, 0,-1 }; -+ struct interpolate_terms { -+ signed char y1, x1, y2, x2, weight; -+ unsigned char grads; -+ }; -+ static const interpolate_terms terms[] = { -+ {-2,-2,+0,-1,0,0x01}, {-2,-2,+0,+0,1,0x01}, {-2,-1,-1,+0,0,0x01}, -+ {-2,-1,+0,-1,0,0x02}, {-2,-1,+0,+0,0,0x03}, {-2,-1,+0,+1,1,0x01}, -+ {-2,+0,+0,-1,0,0x06}, {-2,+0,+0,+0,1,0x02}, {-2,+0,+0,+1,0,0x03}, -+ {-2,+1,-1,+0,0,0x04}, {-2,+1,+0,-1,1,0x04}, {-2,+1,+0,+0,0,0x06}, -+ {-2,+1,+0,+1,0,0x02}, {-2,+2,+0,+0,1,0x04}, {-2,+2,+0,+1,0,0x04}, -+ {-1,-2,-1,+0,0,0x80}, {-1,-2,+0,-1,0,0x01}, {-1,-2,+1,-1,0,0x01}, -+ {-1,-2,+1,+0,1,0x01}, {-1,-1,-1,+1,0,0x88}, {-1,-1,+1,-2,0,0x40}, -+ {-1,-1,+1,-1,0,0x22}, {-1,-1,+1,+0,0,0x33}, {-1,-1,+1,+1,1,0x11}, -+ {-1,+0,-1,+2,0,0x08}, {-1,+0,+0,-1,0,0x44}, {-1,+0,+0,+1,0,0x11}, -+ {-1,+0,+1,-2,1,0x40}, {-1,+0,+1,-1,0,0x66}, {-1,+0,+1,+0,1,0x22}, -+ {-1,+0,+1,+1,0,0x33}, {-1,+0,+1,+2,1,0x10}, {-1,+1,+1,-1,1,0x44}, -+ {-1,+1,+1,+0,0,0x66}, {-1,+1,+1,+1,0,0x22}, {-1,+1,+1,+2,0,0x10}, -+ {-1,+2,+0,+1,0,0x04}, {-1,+2,+1,+0,1,0x04}, {-1,+2,+1,+1,0,0x04}, -+ {+0,-2,+0,+0,1,0x80}, {+0,-1,+0,+1,1,0x88}, {+0,-1,+1,-2,0,0x40}, -+ {+0,-1,+1,+0,0,0x11}, {+0,-1,+2,-2,0,0x40}, {+0,-1,+2,-1,0,0x20}, -+ {+0,-1,+2,+0,0,0x30}, {+0,-1,+2,+1,1,0x10}, {+0,+0,+0,+2,1,0x08}, -+ {+0,+0,+2,-2,1,0x40}, {+0,+0,+2,-1,0,0x60}, {+0,+0,+2,+0,1,0x20}, -+ {+0,+0,+2,+1,0,0x30}, {+0,+0,+2,+2,1,0x10}, {+0,+1,+1,+0,0,0x44}, -+ {+0,+1,+1,+2,0,0x10}, {+0,+1,+2,-1,1,0x40}, {+0,+1,+2,+0,0,0x60}, -+ {+0,+1,+2,+1,0,0x20}, {+0,+1,+2,+2,0,0x10}, {+1,-2,+1,+0,0,0x80}, -+ {+1,-1,+1,+1,0,0x88}, {+1,+0,+1,+2,0,0x08}, {+1,+0,+2,-1,0,0x40}, -+ {+1,+0,+2,+1,0,0x10} -+ }; -+ const interpolate_terms *cpt; -+ signed char *cp; -+ signed char chood[] = { -1,-1, -1,0, -1,+1, 0,+1, +1,+1, +1,0, +1,-1, 0,-1 }; - ushort (*brow[5])[4], *pix; - int prow=8, pcol=2, *ip, *code[16][16], gval[8], gmin, gmax, sum[4]; - int row, col, x, y, x1, x2, y1, y2, t, weight, grads, color, diag; -@@ -4659,11 +4666,11 @@ void CLASS vng_interpolate() - for (row=0; row < prow; row++) /* Precalculate for VNG */ - for (col=0; col < pcol; col++) { - code[row][col] = ip; -- for (cp=terms, t=0; t < 64; t++) { -- y1 = *cp++; x1 = *cp++; -- y2 = *cp++; x2 = *cp++; -- weight = *cp++; -- grads = *cp++; -+ for (cpt=&terms[0], t=0; t < 64, cpt = &terms[t]; t++) { -+ y1 = cpt->y1; x1 = cpt->x1; -+ y2 = cpt->y2; x2 = cpt->x2; -+ weight = cpt->weight; -+ grads = cpt->grads; - color = fcol(row+y1,col+x1); - if (fcol(row+y2,col+x2) != color) continue; - diag = (fcol(row,col+1) == color && fcol(row+1,col) == color) ? 2:1; ---- a/libraw/libraw_const.h -+++ b/libraw/libraw_const.h -@@ -255,8 +255,7 @@ enum LibRaw_progress - - LIBRAW_PROGRESS_THUMB_LOAD = 1<<28, - LIBRAW_PROGRESS_TRESERVED1 = 1<<29, -- LIBRAW_PROGRESS_TRESERVED2 = 1<<30, -- LIBRAW_PROGRESS_TRESERVED3 = 1<<31 -+ LIBRAW_PROGRESS_TRESERVED2 = 1<<30 - }; - #define LIBRAW_PROGRESS_THUMB_MASK 0x0fffffff - diff --git a/media-libs/libraw/libraw-0.17.2.ebuild b/media-libs/libraw/libraw-0.17.2.ebuild deleted file mode 100644 index b6ae8c9c05c1..000000000000 --- a/media-libs/libraw/libraw-0.17.2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit multilib-minimal toolchain-funcs - -MY_PN=LibRaw -MY_PV=${PV/_b/-B} -MY_P=${MY_PN}-${MY_PV} - -DESCRIPTION="LibRaw is a library for reading RAW files obtained from digital photo cameras" -HOMEPAGE="https://www.libraw.org/" -SRC_URI="https://www.libraw.org/data/${MY_P}.tar.gz - demosaic? ( - https://www.libraw.org/data/LibRaw-demosaic-pack-GPL2-${MY_PV}.tar.gz - https://www.libraw.org/data/LibRaw-demosaic-pack-GPL3-${MY_PV}.tar.gz - )" - -# Libraw also has it's own license, which is a pdf file and -# can be obtained from here: -# https://www.libraw.org/data/LICENSE.LibRaw.pdf -LICENSE="LGPL-2.1 CDDL GPL-2 GPL-3" -SLOT="0/15" # subslot = libraw soname version -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="demosaic examples jpeg jpeg2k +lcms openmp" - -RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] ) - jpeg2k? ( >=media-libs/jasper-1.900.1-r6:=[${MULTILIB_USEDEP}] ) - lcms? ( >=media-libs/lcms-2.5:2[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/${MY_P} - -DOCS=( Changelog.txt README ) -PATCHES=( "${FILESDIR}"/${PN}-0.17.2-gcc6.patch ) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -multilib_src_configure() { - local myeconfargs=( - --disable-static - $(use_enable demosaic demosaic-pack-gpl2) - $(use_enable demosaic demosaic-pack-gpl3) - $(use_enable examples) - $(use_enable jpeg) - $(use_enable jpeg2k jasper) - $(use_enable lcms) - $(use_enable openmp) - ) - ECONF_SOURCE="${S}" \ - econf "${myeconfargs[@]}" -} - -multilib_src_install_all() { - einstalldocs - - # package installs .pc files - find "${D}" -name '*.la' -delete || die -} diff --git a/media-libs/libraw/libraw-0.18.2.ebuild b/media-libs/libraw/libraw-0.18.2.ebuild deleted file mode 100644 index 0aeacdf3e3ca..000000000000 --- a/media-libs/libraw/libraw-0.18.2.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit multilib-minimal toolchain-funcs - -MY_PN=LibRaw -MY_PV=${PV/_b/-B} -MY_P=${MY_PN}-${MY_PV} - -DESCRIPTION="LibRaw is a library for reading RAW files obtained from digital photo cameras" -HOMEPAGE="https://www.libraw.org/ https://github.com/LibRaw/LibRaw" -SRC_URI="https://www.libraw.org/data/${MY_P}.tar.gz - demosaic? ( - https://www.libraw.org/data/LibRaw-demosaic-pack-GPL2-${MY_PV}.tar.gz - https://www.libraw.org/data/LibRaw-demosaic-pack-GPL3-${MY_PV}.tar.gz - )" - -LICENSE="LGPL-2.1 CDDL demosaic? ( GPL-2 GPL-3 )" -SLOT="0/16" # subslot = libraw soname version -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="demosaic examples jpeg jpeg2k +lcms openmp" - -RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] ) - jpeg2k? ( >=media-libs/jasper-1.900.1-r6:=[${MULTILIB_USEDEP}] ) - lcms? ( >=media-libs/lcms-2.5:2[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/${MY_P} - -DOCS=( Changelog.txt README ) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -multilib_src_configure() { - local myeconfargs=( - --disable-static - $(use_enable demosaic demosaic-pack-gpl2) - $(use_enable demosaic demosaic-pack-gpl3) - $(use_enable examples) - $(use_enable jpeg) - $(use_enable jpeg2k jasper) - $(use_enable lcms) - $(use_enable openmp) - ) - ECONF_SOURCE="${S}" \ - econf "${myeconfargs[@]}" -} - -multilib_src_install_all() { - einstalldocs - - # package installs .pc files - find "${D}" -name '*.la' -delete || die -} diff --git a/media-libs/libzmf/Manifest b/media-libs/libzmf/Manifest index c5ceda509a88..e0b078744527 100644 --- a/media-libs/libzmf/Manifest +++ b/media-libs/libzmf/Manifest @@ -1 +1,2 @@ DIST libzmf-0.0.1.tar.xz 315060 SHA256 eaf533ea29f9b66e75c0dcb631f1616b4f3cec9474e4fa0d2835769056a0e57a SHA512 cf601974a762ddee45430c136f40231e7659884544881ab37563a97e169201bfd335bad1ddc220e882612e2480070c4a36ba3826242a48e12105e20bb6f717e2 WHIRLPOOL a6e2dae1ef2b09f77332c4eee5da17113ab034f486f93ce31484f14a31ef6db27cf69d6187541cd751d3e85fa08e88b7b2cc41703634c61a92301bd4d0ae8b6f +DIST libzmf-0.0.2.tar.xz 320952 SHA256 27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22 SHA512 ad4a8e65e85434e43caa239ff2a3f358c6db6411235c4bb73d8d2aa1527a4f411433370706db391f8f8110a36759249ee19b27be75bae5f361c491006d1b9aa2 WHIRLPOOL cb919a9d0861b7c75c4bf66cd3c6ae69ddf31cdb30619b8f201306360293cf72dde31037030ed063e62fe2a6d960a3691261470ec84e310c69e016a2466bbc8a diff --git a/media-libs/libzmf/libzmf-0.0.2.ebuild b/media-libs/libzmf/libzmf-0.0.2.ebuild new file mode 100644 index 000000000000..029727cdcae1 --- /dev/null +++ b/media-libs/libzmf/libzmf-0.0.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_REPO_URI="git://gerrit.libreoffice.org/libzmf" +[[ ${PV} == 9999 ]] && inherit git-r3 autotools + +DESCRIPTION="Library for parsing Zoner Callisto/Draw documents" +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libzmf" +[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz" + +LICENSE="MPL-2.0" +SLOT="0" +[[ ${PV} == 9999 ]] || \ +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +IUSE="debug doc test tools" + +RDEPEND=" + dev-libs/icu:= + dev-libs/librevenge + media-libs/libpng:0= + sys-libs/zlib +" +DEPEND="${RDEPEND} + dev-libs/boost + doc? ( app-doc/doxygen ) + test? ( dev-util/cppunit ) +" + +src_prepare() { + default + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure() { + econf \ + --disable-werror \ + $(use_enable debug) \ + $(use_with doc docs) \ + $(use_enable test tests) \ + $(use_enable tools) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/media-libs/libzmf/libzmf-9999.ebuild b/media-libs/libzmf/libzmf-9999.ebuild index 51d3c6c44415..029727cdcae1 100644 --- a/media-libs/libzmf/libzmf-9999.ebuild +++ b/media-libs/libzmf/libzmf-9999.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libzmf" LICENSE="MPL-2.0" SLOT="0" [[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="debug doc test tools" diff --git a/media-plugins/live/Manifest b/media-plugins/live/Manifest index 7513fbfb5175..6c2fde03f72a 100644 --- a/media-plugins/live/Manifest +++ b/media-plugins/live/Manifest @@ -2,3 +2,4 @@ DIST live.2017.01.26.tar.gz 629183 SHA256 3c4d440b79e415eb3a86d30d0cd061d3edcaaa DIST live.2017.05.24.tar.gz 629181 SHA256 3512575c13cd52760bdfb14c8a15ab882ad45efa12a919fb70302185872446e5 SHA512 d00d87d4e011f1c100331e517f2939fe85e25d0920b9418d66c4f9254b2441c569ef7c3ece05123132f3dc44da595a62f57f0840ca33e40c48c2b193bc44b01b WHIRLPOOL 9a3d595655fe9488391431bb022dadbe2b3085b9280a506494e05c7ba0e9cf08c54a95f4942260b6d081836af13ffa85458f20ca697b865595b66e8c9d409983 DIST live.2017.06.04.tar.gz 629288 SHA256 e1087863fea6e377ea4035a52e3b5e8f4a4bd79420da2fcc69b75fdcaddfc375 SHA512 89eb3854c2ef7d0a1f443b4ca46c66040dfcc586ffd1e3e08c1b9e831eae6ade1c16e628c0ed0e7804c4e7430993f662e3fe8df2f09903024153d188276c3088 WHIRLPOOL a96d9b1fd8a048099754862eebde975d219a94524d7f8c27e622c115d65e5d253aa258764104f548c28e93ec3416b911fbc67c6b788e227c626aad0d3b57e7b6 DIST live.2017.07.18.tar.gz 629395 SHA256 b2e857e47a9bac09958cbf313f160265067555f66f9282f10c6419d63c620ab6 SHA512 49e164203a73a94629e66fcf48fde5f937b2c4724a0d4026b1970a8118039ce5cec393b777dea7439c09d3b0789f9f9d7f6f8a5328c4a3dd78a95e05b6525586 WHIRLPOOL 8a657404eb9b6c25984128bcf877bd18b1284b48397e689d4f6ebd8d39e4c27a7dca85c083ab9b379877ed787da47884e533b4121b02813682d068952148cca8 +DIST live.2017.09.12.tar.gz 629538 SHA256 08fd7753df7a2ec9f6dbf12811e97bd814b76ed90ebe7dbc6396037947dfcb13 SHA512 09b18b5f5dce28519b6c7cd8d52eb3448711939df051f84c8d6dce0b88d05c982711059f2ce13efccd326b2dbfeb93b88c4e03fe4a88bbd8fcefcb25e51d107d WHIRLPOOL 54938174e4a4aef9c5f12abb5a64c1fae602e92d09322888f17290f9cd4098bdbbd9410c4f338492242a9670501d72370fa3b10e0866202a9d4252255e57974c diff --git a/media-plugins/live/live-2017.09.12.ebuild b/media-plugins/live/live-2017.09.12.ebuild new file mode 100644 index 000000000000..c7a493903e00 --- /dev/null +++ b/media-plugins/live/live-2017.09.12.ebuild @@ -0,0 +1,128 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +inherit flag-o-matic eutils toolchain-funcs multilib multilib-minimal + +DESCRIPTION="Libraries for standards-based RTP/RTCP/RTSP multimedia streaming" +HOMEPAGE="http://www.live555.com/" +SRC_URI="http://www.live555.com/liveMedia/public/${P/-/.}.tar.gz + mirror://gentoo/${P/-/.}.tar.gz" + +LICENSE="LGPL-2.1" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="examples static-libs" +DOCS=( "live-shared/README" ) + +# Alexis Ballier +# Be careful, bump this everytime you bump the package and the ABI has changed. +# If you don't know, ask someone. +LIVE_ABI_VERSION=7 +SLOT="0/${LIVE_ABI_VERSION}" + +src_unpack() { + unpack ${A} + mkdir -p "${S}" + mv "${WORKDIR}/live" "${S}/" || die +} + +src_prepare() { + epatch "${FILESDIR}/${PN}-recursive3.patch" + + if use static-libs ; then + cp -pPR live live-shared + mv live live-static + else + mv live live-shared + fi + + use static-libs && cp "${FILESDIR}/config.gentoo" live-static + cp "${FILESDIR}/config.gentoo-so-r1" live-shared + + case ${CHOST} in + *-solaris*) + use static-libs && { sed -i \ + -e '/^COMPILE_OPTS /s/$/ -DSOLARIS -DXLOCALE_NOT_USED/' \ + -e '/^LIBS_FOR_CONSOLE_APPLICATION /s/$/ -lsocket -lnsl/' \ + live-static/config.gentoo \ + || die ; } + sed -i \ + -e '/^COMPILE_OPTS /s/$/ -DSOLARIS -DXLOCALE_NOT_USED/' \ + -e '/^LIBS_FOR_CONSOLE_APPLICATION /s/$/ -lsocket -lnsl/' \ + live-shared/config.gentoo-so-r1 \ + || die + ;; + *-darwin*) + use static-libs && { sed -i \ + -e '/^COMPILE_OPTS /s/$/ -DBSD=1 -DHAVE_SOCKADDR_LEN=1/' \ + -e '/^LINK /s/$/ /' \ + -e '/^LIBRARY_LINK /s/$/ /' \ + -e '/^LIBRARY_LINK_OPTS /s/-Bstatic//' \ + live-static/config.gentoo \ + || die static ; } + sed -i \ + -e '/^COMPILE_OPTS /s/$/ -DBSD=1 -DHAVE_SOCKADDR_LEN=1/' \ + -e '/^LINK /s/$/ /' \ + -e '/^LIBRARY_LINK /s/=.*$/= $(CXX) -o /' \ + -e '/^LIBRARY_LINK_OPTS /s:-shared.*$:-undefined suppress -flat_namespace -dynamiclib -install_name '"${EPREFIX}/usr/$(get_libdir)/"'$@:' \ + -e '/^LIB_SUFFIX /s/so/dylib/' \ + live-shared/config.gentoo-so-r1 \ + || die shared + ;; + esac + multilib_copy_sources +} + +src_configure() { :; } + +multilib_src_compile() { + tc-export CC CXX LD + + if use static-libs ; then + cd "${BUILD_DIR}/live-static" + + einfo "Beginning static library build" + ./genMakefiles gentoo + emake -j1 LINK_OPTS="-L. $(raw-ldflags)" || die "failed to build static libraries" + fi + + cd "${BUILD_DIR}/live-shared" + einfo "Beginning shared library build" + ./genMakefiles gentoo-so-r1 + local suffix=$(get_libname ${LIVE_ABI_VERSION}) + emake -j1 LINK_OPTS="-L. ${LDFLAGS}" LIB_SUFFIX="${suffix#.}" || die "failed to build shared libraries" + + for i in liveMedia groupsock UsageEnvironment BasicUsageEnvironment ; do + pushd "${BUILD_DIR}/live-shared/${i}" > /dev/null + ln -s lib${i}.${suffix#.} lib${i}$(get_libname) || die + popd > /dev/null + done + + if multilib_is_native_abi; then + einfo "Beginning programs build" + for i in $(use examples && echo "testProgs") proxyServer mediaServer ; do + cd "${BUILD_DIR}/live-shared/${i}" + emake LINK_OPTS="-L. ${LDFLAGS}" || die "failed to build test programs" + done + fi +} + +multilib_src_install() { + for library in UsageEnvironment liveMedia BasicUsageEnvironment groupsock; do + use static-libs && dolib.a live-static/${library}/lib${library}.a + dolib.so live-shared/${library}/lib${library}$(get_libname ${LIVE_ABI_VERSION}) + dosym lib${library}$(get_libname ${LIVE_ABI_VERSION}) /usr/$(get_libdir)/lib${library}$(get_libname) + + insinto /usr/include/${library} + doins live-shared/${library}/include/*h + done + + if multilib_is_native_abi; then + # Should we really install these? + use examples && find live-shared/testProgs -type f -perm 755 -print0 | \ + xargs -0 dobin + + dobin live-shared/mediaServer/live555MediaServer + dobin live-shared/proxyServer/live555ProxyServer + fi +} diff --git a/media-plugins/vdr-kvdrmon/metadata.xml b/media-plugins/vdr-kvdrmon/metadata.xml index 0dc580676890..6821aef58d6e 100644 --- a/media-plugins/vdr-kvdrmon/metadata.xml +++ b/media-plugins/vdr-kvdrmon/metadata.xml @@ -1,18 +1,10 @@ - - gentoo@bjusystems.de - Bernd Juraschek - vdr@gentoo.org Gentoo VDR Project - - proxy-maint@gentoo.org - Proxy Maintainers - vdr-statusleds diff --git a/media-sound/cantata/Manifest b/media-sound/cantata/Manifest index 220f9d133c39..12946bb8abed 100644 --- a/media-sound/cantata/Manifest +++ b/media-sound/cantata/Manifest @@ -1 +1,2 @@ DIST cantata-2.1.0.tar.bz2 2207271 SHA256 9317afcae75c709ec733da069d4245b47e6e2c297a259eaf87a181fa9d1cd4c4 SHA512 bf03933785110d0d0c1dfbfc27f4974869ae7c79afe3cf1da1f3024c95d86733d8bea77f2a882887de79a7897ffcdac4262e58747dd4e979824943991675c5d2 WHIRLPOOL 5d58b84290c387d535e556553e64bba36520a099565c44bed1c4e9cf800c2a432ac09296b989a557e72d81a951c926b4bb638f2d2ab7976735059ebb74b8c8e2 +DIST cantata-2.2.0.tar.bz2 2251649 SHA256 c84691eb17711118d3c512d70cb422267f7a137290082cdd1ff0a871b4a8e5c0 SHA512 519a2e24c8b2a1c98a2006a1f590945e1bd5e98a2c3a1b5da23e40f2297f1477d48d69b48ec669219f5ab8fdc955486fe29db6914abeef1fba2a47377f694ecd WHIRLPOOL 50a44192368ee90708ecf906401c28d6a06878d61cfefae04bcab3463343c11bcfe3054880364886e57f797cc303fe14a4f2010e87ad873ba4de3738c05399e7 diff --git a/media-sound/cantata/cantata-2.2.0.ebuild b/media-sound/cantata/cantata-2.2.0.ebuild new file mode 100644 index 000000000000..3a22fc204396 --- /dev/null +++ b/media-sound/cantata/cantata-2.2.0.ebuild @@ -0,0 +1,116 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PLOCALES="cs de en_GB es fr hu it ja ko pl ru zh_CN" +inherit cmake-utils gnome2-utils l10n qmake-utils xdg + +DESCRIPTION="Featureful and configurable Qt client for the music player daemon (MPD)" +HOMEPAGE="https://github.com/CDrummond/cantata" +SRC_URI="https://github.com/CDrummond/cantata/releases/download/v${PV}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cdda cddb cdio http-server mtp musicbrainz replaygain streaming taglib udisks" +REQUIRED_USE=" + ?? ( cdda cdio ) + cdda? ( udisks || ( cddb musicbrainz ) ) + cddb? ( || ( cdio cdda ) taglib ) + cdio? ( udisks || ( cddb musicbrainz ) ) + mtp? ( taglib udisks ) + musicbrainz? ( || ( cdio cdda ) taglib ) + replaygain? ( taglib ) +" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsql:5[sqlite] + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + || ( kde-frameworks/breeze-icons:5 kde-frameworks/oxygen-icons:* ) + sys-libs/zlib + virtual/libudev:= + cdda? ( media-sound/cdparanoia ) + cdio? ( dev-libs/libcdio-paranoia ) + cddb? ( media-libs/libcddb ) + mtp? ( media-libs/libmtp ) + musicbrainz? ( media-libs/musicbrainz:5= ) + replaygain? ( + media-libs/libebur128 + media-sound/mpg123 + virtual/ffmpeg + ) + streaming? ( media-video/vlc:0= ) + taglib? ( + media-libs/taglib[asf(+),mp4(+)] + media-libs/taglib-extras + udisks? ( sys-fs/udisks:2 ) + ) +" +DEPEND="${RDEPEND} + dev-qt/qtconcurrent:5 + dev-qt/linguist-tools:5 +" + +# cantata has no tests +RESTRICT="test" + +PATCHES=( "${FILESDIR}/${P}-headers.patch" ) + +src_prepare() { + remove_locale() { + rm "translations/${PN}_${1}".ts || die + } + + cmake-utils_src_prepare + + # Unbundle 3rd party libs + rm -r 3rdparty/{ebur128,qtsingleapplication} || die + + l10n_find_plocales_changes "translations" "${PN}_" ".ts" + l10n_for_each_disabled_locale_do remove_locale +} + +src_configure() { + local mycmakeargs=( + -DCANTATA_HELPERS_LIB_DIR="$(get_libdir)" + -DENABLE_CDPARANOIA=$(usex cdda) + -DENABLE_CDIOPARANOIA=$(usex cdio) + -DENABLE_CDDB=$(usex cddb) + -DENABLE_HTTP_SERVER=$(usex http-server) + -DENABLE_MTP=$(usex mtp) + -DENABLE_MUSICBRAINZ=$(usex musicbrainz) + -DLRELEASE_EXECUTABLE="$(qt5_get_bindir)/lrelease" + -DENABLE_FFMPEG=$(usex replaygain) + -DENABLE_MPG123=$(usex replaygain) + -DENABLE_HTTP_STREAM_PLAYBACK=$(usex streaming) + -DENABLE_TAGLIB=$(usex taglib) + -DENABLE_TAGLIB_EXTRAS=$(usex taglib) + -DENABLE_DEVICES_SUPPORT=$(usex udisks) + -DENABLE_REMOTE_DEVICES=OFF + -DENABLE_UDISKS2=ON + ) + + cmake-utils_src_configure +} + +pkg_preinst() { + gnome2_icon_savelist + xdg_pkg_preinst +} + +pkg_postinst() { + gnome2_icon_cache_update + xdg_pkg_postinst +} + +pkg_postrm() { + gnome2_icon_cache_update + xdg_pkg_postrm +} diff --git a/media-sound/cantata/files/cantata-2.2.0-headers.patch b/media-sound/cantata/files/cantata-2.2.0-headers.patch new file mode 100644 index 000000000000..962c8413a9fd --- /dev/null +++ b/media-sound/cantata/files/cantata-2.2.0-headers.patch @@ -0,0 +1,48 @@ +Description: Fix include location for ebur128 files + The Debian packages for ebur128 are shipping the headers in: + + libebur128-dev: /usr/include/ebur128.h + + while the upstream code expects ebur128/ebur128.h + +Author: Stuart Prescott +Forwarded: not sure -- check interaction with cmake rules +diff --git a/replaygain/ffmpeginput.cpp b/replaygain/ffmpeginput.cpp +index 24e47d34..382bac90 100644 +--- a/replaygain/ffmpeginput.cpp ++++ b/replaygain/ffmpeginput.cpp +@@ -31,7 +31,7 @@ extern "C" { + #include + #include + #include +-#include "ebur128/ebur128.h" ++#include "ebur128.h" + #include "ffmpeginput.h" + + static QMutex mutex; +diff --git a/replaygain/mpg123input.cpp b/replaygain/mpg123input.cpp +index 43ae0371..6a7b266f 100644 +--- a/replaygain/mpg123input.cpp ++++ b/replaygain/mpg123input.cpp +@@ -18,7 +18,7 @@ extern "C" { + #include + #include + #include +-#include "ebur128/ebur128.h" ++#include "ebur128.h" + #include "mpg123input.h" + + struct Mpg123Input::Handle { +diff --git a/replaygain/trackscanner.h b/replaygain/trackscanner.h +index b8709115..631e551a 100644 +--- a/replaygain/trackscanner.h ++++ b/replaygain/trackscanner.h +@@ -25,7 +25,7 @@ + #define _SCANNER_H_ + + #include "jobcontroller.h" +-#include "ebur128/ebur128.h" ++#include "ebur128.h" + + class Input; + diff --git a/media-sound/cantata/metadata.xml b/media-sound/cantata/metadata.xml index 62779a1ff0c7..1bc1b0bb262c 100644 --- a/media-sound/cantata/metadata.xml +++ b/media-sound/cantata/metadata.xml @@ -9,6 +9,7 @@ Use dev-libs/libcdio-paranoia for CD support (instead of cdparanoia) Enable internal HTTP server to play non-MPD files Enable ReplayGain support, for relative volume adjustments + Enable playback of MPD HTTP streams using LibVLC (media-video/vlc) cdrummond/cantata diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest index ca6c25866af2..bd2f319754b5 100644 --- a/media-video/ffmpeg/Manifest +++ b/media-video/ffmpeg/Manifest @@ -1,6 +1,3 @@ -DIST ffmpeg-2.8.10.tar.bz2 8585304 SHA256 d1ce1a73503dce6e2b1e208cb93a2a8a7e89f9c64357ddc3e4da3cab33dea9c9 SHA512 1ca8b0060361c49de201afc463bcd7c9340f09bbd116dff2539653bc36411d60cdf667874d2ec51664e141ee7a7be8bebc94e158687cb97db6bdfa40f00ec193 WHIRLPOOL 4ff9271290c138ad5caa50835da9fd6685fabf5a589cb6c068cfff6698ded948d93e9d40656dca3b516f9e591119d204e6283d57f7d2f0747a4f7ef9b322ebce -DIST ffmpeg-2.8.11.tar.bz2 8582471 SHA256 9987e0f6b1f66311390f807a0c18ad9c90652b5097cff17b3dcbeabdd89f8d32 SHA512 60749897dccde1ff2840be9679f6e10118c7313bbeb1b07bb36acf7f311010f484259df9a4a43e60373726de9d6b54675e1961cc7b40646107142f8f42ea1601 WHIRLPOOL 4b71d63a1bbd63ebaa90b3c581f5d2c38e1a74c37044ad80fbf44b857d3d76722d3833da53575aa744779d9dd9a3dc0e41e9706611ba0899ab23c91ad17caa5f -DIST ffmpeg-3.2.4.tar.bz2 9612274 SHA256 c0fa3593a2e9e96ace3c1757900094437ad96d1d6ca19f057c378b5f394496a4 SHA512 ba5004d0f2659faa139c7dbf2f0fc6bab1d4e017d919f4ac271a5d2e8e4a3478909176e3a4d1ad33ddf2f62ab28dd9e00ce9be1399efb7cb3276dde79134cdaa WHIRLPOOL e97a19541f990f86b8adbdc3fd20115258e5644b98a5c7f4e075f8f1320881da33fb9be969d8a5e20d79eea4c63b1c9510841b5cf0d5b479408ff231d3ba69cc DIST ffmpeg-3.2.6.tar.bz2 9623111 SHA256 602b1a8c91bbc87f6e8897c0918d2bf1c7d4820d3888712f0ff0c1198a3f1e8f SHA512 eca75524374003eac78033bd2a744b459a4dc631c59150b6c9291e06a693bdd14e0b11cae9c800446f0648edccc066480c2b869bcb456a74eeabb91ab41f8285 WHIRLPOOL b2b5b78ae0a1ad0c44387e1241825a79cfe87234f1470d9095757b25ed724e04fe42ae96287e3242a80f6f74f380c5167b5388ddc6abf4d6738a1bc4af1ebe4d DIST ffmpeg-3.2.7.tar.bz2 9622391 SHA256 d5a0f891ed7764876e3c2fd541adcab90641eefe9103ab4d8269a346b10ebc8a SHA512 a5b6df77d2d4ede0cc2f398b763d7405f43f43e37c11a596ec1a2a8921714875fd8fa9ffbcff84355854780872ab7313c859a4a19bf419298b4d3bc797ad8ac4 WHIRLPOOL 8c3f36cd1d254ce5ed3917d498124860bb9620a65add1a3461844565fddb6d315914d38cc9760b7e45ebe4e1818e1872eeaebe65a040dd738a5bcc6508233f7d DIST ffmpeg-3.3.3.tar.bz2 9940959 SHA256 1069ac8fc7f52e566bea28b41b9c437246aeb5096f82fb26fa96dc7d5a10a473 SHA512 1cc63bf73356f4e618c0d3572a216bdf5689f10deff56b4262f6d740b0bee5a4b3eac234f45fca3d4d2da77903a507b4fba725b76d2d2070f31b6dae9e7a2dab WHIRLPOOL c90d2cc0d3fa7c3635a00c8039f94ff9e7b8413bd14400ddd6f1cccdc9cbbbfd2254ca2a209cefccd7e6c2f750b4594053d4c664eb2867ee208fe5657e95330b diff --git a/media-video/ffmpeg/ffmpeg-2.8.10.ebuild b/media-video/ffmpeg/ffmpeg-2.8.10.ebuild deleted file mode 100644 index f901eb4d4198..000000000000 --- a/media-video/ffmpeg/ffmpeg-2.8.10.ebuild +++ /dev/null @@ -1,457 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -# Subslot: libavutil major.libavcodec major.libavformat major -# Since FFmpeg ships several libraries, subslot is kind of limited here. -# Most consumers will use those three libraries, if a "less used" library -# changes its soname, consumers will have to be rebuilt the old way -# (preserve-libs). -# If, for example, a package does not link to libavformat and only libavformat -# changes its ABI then this package will be rebuilt needlessly. Hence, such a -# package is free _not_ to := depend on FFmpeg but I would strongly encourage -# doing so since such a case is unlikely. -FFMPEG_SUBSLOT=54.56.56 - -SCM="" -if [ "${PV#9999}" != "${PV}" ] ; then - SCM="git-2" - EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git" -fi - -inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM} - -DESCRIPTION="Complete solution to record, convert and stream audio and video. Includes libavcodec" -HOMEPAGE="http://ffmpeg.org/" -if [ "${PV#9999}" != "${PV}" ] ; then - SRC_URI="" -elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot - SRC_URI="mirror://gentoo/${P}.tar.bz2" -else # Release - SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2" -fi -FFMPEG_REVISION="${PV#*_p}" - -SLOT="0/${FFMPEG_SUBSLOT}" -LICENSE=" - !gpl? ( LGPL-2.1 ) - gpl? ( GPL-2 ) - amr? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - encode? ( - aac? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - amrenc? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - ) - samba? ( GPL-3 ) -" -if [ "${PV#9999}" = "${PV}" ] ; then - KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" -fi - -# Options to use as use_enable in the foo[:bar] form. -# This will feed configure with $(use_enable foo bar) -# or $(use_enable foo foo) if no :bar is set. -# foo is added to IUSE. -FFMPEG_FLAG_MAP=( - +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls +gpl - +hardcoded-tables +iconv lzma +network openssl +postproc - samba:libsmbclient sdl:ffplay sdl vaapi vdpau X:xlib xcb:libxcb - xcb:libxcb-shm xcb:libxcb-xfixes +zlib - # libavdevice options - cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal - opengl - # indevs - libv4l:libv4l2 pulseaudio:libpulse - # decoders - amr:libopencore-amrwb amr:libopencore-amrnb fdk:libfdk-aac - jpeg2k:libopenjpeg bluray:libbluray celt:libcelt gme:libgme gsm:libgsm - modplug:libmodplug opus:libopus quvi:libquvi librtmp ssh:libssh - schroedinger:libschroedinger speex:libspeex vorbis:libvorbis vpx:libvpx - zvbi:libzvbi - # libavfilter options - bs2b:libbs2b flite:libflite frei0r fribidi:libfribidi fontconfig ladspa - libass truetype:libfreetype - # libswresample options - libsoxr - # Threads; we only support pthread for now but ffmpeg supports more - +threads:pthreads -) - -# Same as above but for encoders, i.e. they do something only with USE=encode. -FFMPEG_ENCODER_FLAG_MAP=( - aac:libvo-aacenc amrenc:libvo-amrwbenc mp3:libmp3lame - aacplus:libaacplus faac:libfaac snappy:libsnappy theora:libtheora - twolame:libtwolame wavpack:libwavpack webp:libwebp x264:libx264 x265:libx265 - xvid:libxvid -) - -IUSE=" - alsa +encode examples jack libressl oss pic static-libs test v4l - ${FFMPEG_FLAG_MAP[@]%:*} - ${FFMPEG_ENCODER_FLAG_MAP[@]%:*} -" - -# Strings for CPU features in the useflag[:configure_option] form -# if :configure_option isn't set, it will use 'useflag' as configure option -ARM_CPU_FEATURES=( armv5te armv6 armv6t2 neon armvfp:vfp ) -MIPS_CPU_FEATURES=( mipsdspr1 mipsdspr2 mipsfpu ) -PPC_CPU_FEATURES=( altivec ) -X86_CPU_FEATURES_RAW=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop ) -X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} ) -X86_CPU_REQUIRED_USE=" - cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) - cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) - cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) - cpu_flags_x86_xop? ( cpu_flags_x86_avx ) - cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) - cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) - cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) - cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) - cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) - cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) - cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) - cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) - cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) - cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) -" - -IUSE="${IUSE} - ${ARM_CPU_FEATURES[@]%:*} - ${MIPS_CPU_FEATURES[@]%:*} - ${PPC_CPU_FEATURES[@]%:*} - ${X86_CPU_FEATURES[@]%:*} -" - -CPU_REQUIRED_USE=" - ${X86_CPU_REQUIRED_USE} -" - -# "$(tc-arch):XXX" form where XXX_CPU_FEATURES are the cpu features that apply to -# $(tc-arch). -CPU_FEATURES_MAP=" - arm:ARM - arm64:ARM - mips:MIPS - ppc:PPC - ppc64:PPC - x86:X86 - amd64:X86 -" - -FFTOOLS=( aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart sidxindex trasher ) -IUSE="${IUSE} ${FFTOOLS[@]/#/+fftools_}" - -RDEPEND=" - alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) - amr? ( >=media-libs/opencore-amr-0.1.3-r1[${MULTILIB_USEDEP}] ) - bluray? ( >=media-libs/libbluray-0.3.0-r1[${MULTILIB_USEDEP}] ) - bs2b? ( >=media-libs/libbs2b-3.1.0-r1[${MULTILIB_USEDEP}] ) - bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] ) - cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[${MULTILIB_USEDEP}] ) - celt? ( >=media-libs/celt-0.11.1-r1[${MULTILIB_USEDEP}] ) - encode? ( - aac? ( >=media-libs/vo-aacenc-0.1.3[${MULTILIB_USEDEP}] ) - aacplus? ( >=media-libs/libaacplus-2.0.2-r1[${MULTILIB_USEDEP}] ) - amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[${MULTILIB_USEDEP}] ) - faac? ( >=media-libs/faac-1.28-r3[${MULTILIB_USEDEP}] ) - mp3? ( >=media-sound/lame-3.99.5-r1[${MULTILIB_USEDEP}] ) - snappy? ( >=app-arch/snappy-1.1.2-r1[${MULTILIB_USEDEP}] ) - theora? ( - >=media-libs/libtheora-1.1.1[encode,${MULTILIB_USEDEP}] - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}] - ) - twolame? ( >=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}] ) - wavpack? ( >=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}] ) - webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] ) - x264? ( >=media-libs/x264-0.0.20130506:=[${MULTILIB_USEDEP}] ) - x265? ( >=media-libs/x265-1.6:=[${MULTILIB_USEDEP}] ) - xvid? ( >=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}] ) - ) - fdk? ( >=media-libs/fdk-aac-0.1.3:=[${MULTILIB_USEDEP}] ) - flite? ( >=app-accessibility/flite-1.4-r4[${MULTILIB_USEDEP}] ) - fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) - frei0r? ( media-plugins/frei0r-plugins ) - fribidi? ( >=dev-libs/fribidi-0.19.6[${MULTILIB_USEDEP}] ) - gme? ( >=media-libs/game-music-emu-0.6.0[${MULTILIB_USEDEP}] ) - gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[${MULTILIB_USEDEP}] ) - gsm? ( >=media-sound/gsm-1.0.13-r1[${MULTILIB_USEDEP}] ) - iconv? ( >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] ) - iec61883? ( - >=media-libs/libiec61883-1.2.0-r1[${MULTILIB_USEDEP}] - >=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] - >=sys-libs/libavc1394-0.5.4-r1[${MULTILIB_USEDEP}] - ) - ieee1394? ( - >=media-libs/libdc1394-2.2.1[${MULTILIB_USEDEP}] - >=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] - ) - jack? ( virtual/jack[${MULTILIB_USEDEP}] ) - jpeg2k? ( >=media-libs/openjpeg-1.5.0:0[${MULTILIB_USEDEP}] ) - libass? ( >=media-libs/libass-0.10.2[${MULTILIB_USEDEP}] ) - libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[${MULTILIB_USEDEP}] ) - libsoxr? ( >=media-libs/soxr-0.1.0[${MULTILIB_USEDEP}] ) - libv4l? ( >=media-libs/libv4l-0.9.5[${MULTILIB_USEDEP}] ) - lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] ) - modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}] ) - openal? ( >=media-libs/openal-1.15.1[${MULTILIB_USEDEP}] ) - opengl? ( >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] ) - openssl? ( - !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) - ) - opus? ( >=media-libs/opus-1.0.2-r2[${MULTILIB_USEDEP}] ) - pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] ) - quvi? ( media-libs/libquvi:0.4[${MULTILIB_USEDEP}] ) - librtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] ) - samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] ) - schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] ) - sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,${MULTILIB_USEDEP}] ) - speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] ) - ssh? ( >=net-libs/libssh-0.5.5[${MULTILIB_USEDEP}] ) - truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] ) - vaapi? ( >=x11-libs/libva-1.2.1-r1[${MULTILIB_USEDEP}] ) - vdpau? ( >=x11-libs/libvdpau-0.7[${MULTILIB_USEDEP}] ) - vorbis? ( - >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}] - ) - vpx? ( >=media-libs/libvpx-1.4.0:=[${MULTILIB_USEDEP}] ) - X? ( - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] - !xcb? ( >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}] ) - >=x11-libs/libXv-1.0.10[${MULTILIB_USEDEP}] - ) - xcb? ( >=x11-libs/libxcb-1.4[${MULTILIB_USEDEP}] ) - zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) - zvbi? ( >=media-libs/zvbi-0.2.35[${MULTILIB_USEDEP}] ) - !media-video/qt-faststart - postproc? ( !media-libs/libpostproc ) -" - -DEPEND="${RDEPEND} - >=sys-devel/make-3.81 - doc? ( app-text/texi2html ) - fontconfig? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - gnutls? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - ieee1394? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}] ) - libv4l? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 ) - librtmp? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - schroedinger? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - test? ( net-misc/wget sys-devel/bc ) - truetype? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - v4l? ( sys-kernel/linux-headers ) -" - -RDEPEND="${RDEPEND} - abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20140508-r3 - !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )" - -# Code requiring FFmpeg to be built under gpl license -GPL_REQUIRED_USE=" - postproc? ( gpl ) - frei0r? ( gpl ) - cdio? ( gpl ) - samba? ( gpl ) - zvbi? ( gpl ) - encode? ( - x264? ( gpl ) - x265? ( gpl ) - xvid? ( gpl ) - X? ( !xcb? ( gpl ) ) - ) -" -REQUIRED_USE=" - libv4l? ( v4l ) - fftools_cws2fws? ( zlib ) - test? ( encode ) - ${GPL_REQUIRED_USE} - ${CPU_REQUIRED_USE}" -RESTRICT=" - encode? ( faac? ( bindist ) aacplus? ( bindist ) ) - gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) -" - -S=${WORKDIR}/${P/_/-} - -MULTILIB_WRAPPED_HEADERS=( - /usr/include/libavutil/avconfig.h -) - -src_prepare() { - if [[ "${PV%_p*}" != "${PV}" ]] ; then # Snapshot - export revision=git-N-${FFMPEG_REVISION} - fi - epatch_user -} - -multilib_src_configure() { - local myconf=( ${EXTRA_FFMPEG_CONF} ) - - local ffuse=( "${FFMPEG_FLAG_MAP[@]}" ) - use openssl && use gpl && myconf+=( --enable-nonfree ) - use samba && myconf+=( --enable-version3 ) - - # Encoders - if use encode ; then - ffuse+=( "${FFMPEG_ENCODER_FLAG_MAP[@]}" ) - - # Licensing. - if use aac || use amrenc ; then - myconf+=( --enable-version3 ) - fi - if use aacplus || use faac ; then - myconf+=( --enable-nonfree ) - fi - else - myconf+=( --disable-encoders ) - fi - - # Indevs - use v4l || myconf+=( --disable-indev=v4l2 --disable-outdev=v4l2 ) - for i in alsa oss jack ; do - use ${i} || myconf+=( --disable-indev=${i} ) - done - use xcb || ffuse+=( X:x11grab ) - - # Outdevs - for i in alsa oss sdl ; do - use ${i} || myconf+=( --disable-outdev=${i} ) - done - - # Decoders - use amr && myconf+=( --enable-version3 ) - use fdk && use gpl && myconf+=( --enable-nonfree ) - - for i in "${ffuse[@]#+}" ; do - myconf+=( $(use_enable ${i%:*} ${i#*:}) ) - done - - # (temporarily) disable non-multilib deps - if ! multilib_is_native_abi; then - for i in frei0r ; do - myconf+=( --disable-${i} ) - done - fi - - # CPU features - for i in ${CPU_FEATURES_MAP} ; do - if [ "$(tc-arch)" = "${i%:*}" ] ; then - local var="${i#*:}_CPU_FEATURES[@]" - for j in ${!var} ; do - use ${j%:*} || myconf+=( --disable-${j#*:} ) - done - fi - done - - if use pic ; then - myconf+=( --enable-pic ) - # disable asm code if PIC is required - # as the provided asm decidedly is not PIC for x86. - [[ ${ABI} == x86 ]] && myconf+=( --disable-asm ) - fi - [[ ${ABI} == x32 ]] && myconf+=( --disable-asm ) #427004 - - # Try to get cpu type based on CFLAGS. - # Bug #172723 - # We need to do this so that features of that CPU will be better used - # If they contain an unknown CPU it will not hurt since ffmpeg's configure - # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) ; do - [[ ${i} = native ]] && i="host" # bug #273421 - myconf+=( --cpu=${i} ) - break - done - - # LTO support, bug #566282 - is-flagq "-flto*" && myconf+=( "--enable-lto" ) - - # Mandatory configuration - myconf=( - --enable-avfilter - --enable-avresample - --disable-stripping - "${myconf[@]}" - ) - - # cross compile support - if tc-is-cross-compiler ; then - myconf+=( --enable-cross-compile --arch=$(tc-arch-kernel) --cross-prefix=${CHOST}- ) - case ${CHOST} in - *freebsd*) - myconf+=( --target-os=freebsd ) - ;; - *mingw32*) - myconf+=( --target-os=mingw32 ) - ;; - *linux*) - myconf+=( --target-os=linux ) - ;; - esac - fi - - set -- "${S}/configure" \ - --prefix="${EPREFIX}/usr" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --shlibdir="${EPREFIX}/usr/$(get_libdir)" \ - --mandir="${EPREFIX}/usr/share/man" \ - --enable-shared \ - --cc="$(tc-getCC)" \ - --cxx="$(tc-getCXX)" \ - --ar="$(tc-getAR)" \ - --optflags="${CFLAGS}" \ - $(use_enable static-libs static) \ - "${myconf[@]}" - echo "${@}" - "${@}" || die -} - -multilib_src_compile() { - emake V=1 - - if multilib_is_native_abi; then - for i in "${FFTOOLS[@]}" ; do - if use fftools_${i} ; then - emake V=1 tools/${i} - fi - done - fi -} - -multilib_src_install() { - emake V=1 DESTDIR="${D}" install install-man - - if multilib_is_native_abi; then - for i in "${FFTOOLS[@]}" ; do - if use fftools_${i} ; then - dobin tools/${i} - fi - done - fi -} - -multilib_src_install_all() { - dodoc Changelog README.md CREDITS doc/*.txt doc/APIchanges - [ -f "RELEASE_NOTES" ] && dodoc "RELEASE_NOTES" - use doc && dohtml -r doc/* - if use examples ; then - dodoc -r doc/examples - docompress -x /usr/share/doc/${PF}/examples - fi -} - -multilib_src_test() { - LD_LIBRARY_PATH="${BUILD_DIR}/libpostproc:${BUILD_DIR}/libswscale:${BUILD_DIR}/libswresample:${BUILD_DIR}/libavcodec:${BUILD_DIR}/libavdevice:${BUILD_DIR}/libavfilter:${BUILD_DIR}/libavformat:${BUILD_DIR}/libavutil:${BUILD_DIR}/libavresample" \ - emake V=1 fate -} diff --git a/media-video/ffmpeg/ffmpeg-2.8.11.ebuild b/media-video/ffmpeg/ffmpeg-2.8.11.ebuild deleted file mode 100644 index 37719f05bb5d..000000000000 --- a/media-video/ffmpeg/ffmpeg-2.8.11.ebuild +++ /dev/null @@ -1,457 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -# Subslot: libavutil major.libavcodec major.libavformat major -# Since FFmpeg ships several libraries, subslot is kind of limited here. -# Most consumers will use those three libraries, if a "less used" library -# changes its soname, consumers will have to be rebuilt the old way -# (preserve-libs). -# If, for example, a package does not link to libavformat and only libavformat -# changes its ABI then this package will be rebuilt needlessly. Hence, such a -# package is free _not_ to := depend on FFmpeg but I would strongly encourage -# doing so since such a case is unlikely. -FFMPEG_SUBSLOT=54.56.56 - -SCM="" -if [ "${PV#9999}" != "${PV}" ] ; then - SCM="git-2" - EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git" -fi - -inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM} - -DESCRIPTION="Complete solution to record, convert and stream audio and video. Includes libavcodec" -HOMEPAGE="http://ffmpeg.org/" -if [ "${PV#9999}" != "${PV}" ] ; then - SRC_URI="" -elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot - SRC_URI="mirror://gentoo/${P}.tar.bz2" -else # Release - SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2" -fi -FFMPEG_REVISION="${PV#*_p}" - -SLOT="0/${FFMPEG_SUBSLOT}" -LICENSE=" - !gpl? ( LGPL-2.1 ) - gpl? ( GPL-2 ) - amr? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - encode? ( - aac? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - amrenc? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - ) - samba? ( GPL-3 ) -" -if [ "${PV#9999}" = "${PV}" ] ; then - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" -fi - -# Options to use as use_enable in the foo[:bar] form. -# This will feed configure with $(use_enable foo bar) -# or $(use_enable foo foo) if no :bar is set. -# foo is added to IUSE. -FFMPEG_FLAG_MAP=( - +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls +gpl - +hardcoded-tables +iconv lzma +network openssl +postproc - samba:libsmbclient sdl:ffplay sdl vaapi vdpau X:xlib xcb:libxcb - xcb:libxcb-shm xcb:libxcb-xfixes +zlib - # libavdevice options - cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal - opengl - # indevs - libv4l:libv4l2 pulseaudio:libpulse - # decoders - amr:libopencore-amrwb amr:libopencore-amrnb fdk:libfdk-aac - jpeg2k:libopenjpeg bluray:libbluray celt:libcelt gme:libgme gsm:libgsm - modplug:libmodplug opus:libopus quvi:libquvi librtmp ssh:libssh - schroedinger:libschroedinger speex:libspeex vorbis:libvorbis vpx:libvpx - zvbi:libzvbi - # libavfilter options - bs2b:libbs2b flite:libflite frei0r fribidi:libfribidi fontconfig ladspa - libass truetype:libfreetype - # libswresample options - libsoxr - # Threads; we only support pthread for now but ffmpeg supports more - +threads:pthreads -) - -# Same as above but for encoders, i.e. they do something only with USE=encode. -FFMPEG_ENCODER_FLAG_MAP=( - aac:libvo-aacenc amrenc:libvo-amrwbenc mp3:libmp3lame - aacplus:libaacplus faac:libfaac snappy:libsnappy theora:libtheora - twolame:libtwolame wavpack:libwavpack webp:libwebp x264:libx264 x265:libx265 - xvid:libxvid -) - -IUSE=" - alsa +encode examples jack libressl oss pic static-libs test v4l - ${FFMPEG_FLAG_MAP[@]%:*} - ${FFMPEG_ENCODER_FLAG_MAP[@]%:*} -" - -# Strings for CPU features in the useflag[:configure_option] form -# if :configure_option isn't set, it will use 'useflag' as configure option -ARM_CPU_FEATURES=( armv5te armv6 armv6t2 neon armvfp:vfp ) -MIPS_CPU_FEATURES=( mipsdspr1 mipsdspr2 mipsfpu ) -PPC_CPU_FEATURES=( altivec ) -X86_CPU_FEATURES_RAW=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop ) -X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} ) -X86_CPU_REQUIRED_USE=" - cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) - cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) - cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) - cpu_flags_x86_xop? ( cpu_flags_x86_avx ) - cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) - cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) - cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) - cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) - cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) - cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) - cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) - cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) - cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) - cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) -" - -IUSE="${IUSE} - ${ARM_CPU_FEATURES[@]%:*} - ${MIPS_CPU_FEATURES[@]%:*} - ${PPC_CPU_FEATURES[@]%:*} - ${X86_CPU_FEATURES[@]%:*} -" - -CPU_REQUIRED_USE=" - ${X86_CPU_REQUIRED_USE} -" - -# "$(tc-arch):XXX" form where XXX_CPU_FEATURES are the cpu features that apply to -# $(tc-arch). -CPU_FEATURES_MAP=" - arm:ARM - arm64:ARM - mips:MIPS - ppc:PPC - ppc64:PPC - x86:X86 - amd64:X86 -" - -FFTOOLS=( aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart sidxindex trasher ) -IUSE="${IUSE} ${FFTOOLS[@]/#/+fftools_}" - -RDEPEND=" - alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) - amr? ( >=media-libs/opencore-amr-0.1.3-r1[${MULTILIB_USEDEP}] ) - bluray? ( >=media-libs/libbluray-0.3.0-r1[${MULTILIB_USEDEP}] ) - bs2b? ( >=media-libs/libbs2b-3.1.0-r1[${MULTILIB_USEDEP}] ) - bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] ) - cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[${MULTILIB_USEDEP}] ) - celt? ( >=media-libs/celt-0.11.1-r1[${MULTILIB_USEDEP}] ) - encode? ( - aac? ( >=media-libs/vo-aacenc-0.1.3[${MULTILIB_USEDEP}] ) - aacplus? ( >=media-libs/libaacplus-2.0.2-r1[${MULTILIB_USEDEP}] ) - amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[${MULTILIB_USEDEP}] ) - faac? ( >=media-libs/faac-1.28-r3[${MULTILIB_USEDEP}] ) - mp3? ( >=media-sound/lame-3.99.5-r1[${MULTILIB_USEDEP}] ) - snappy? ( >=app-arch/snappy-1.1.2-r1[${MULTILIB_USEDEP}] ) - theora? ( - >=media-libs/libtheora-1.1.1[encode,${MULTILIB_USEDEP}] - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}] - ) - twolame? ( >=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}] ) - wavpack? ( >=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}] ) - webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] ) - x264? ( >=media-libs/x264-0.0.20130506:=[${MULTILIB_USEDEP}] ) - x265? ( >=media-libs/x265-1.6:=[${MULTILIB_USEDEP}] ) - xvid? ( >=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}] ) - ) - fdk? ( >=media-libs/fdk-aac-0.1.3:=[${MULTILIB_USEDEP}] ) - flite? ( >=app-accessibility/flite-1.4-r4[${MULTILIB_USEDEP}] ) - fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) - frei0r? ( media-plugins/frei0r-plugins ) - fribidi? ( >=dev-libs/fribidi-0.19.6[${MULTILIB_USEDEP}] ) - gme? ( >=media-libs/game-music-emu-0.6.0[${MULTILIB_USEDEP}] ) - gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[${MULTILIB_USEDEP}] ) - gsm? ( >=media-sound/gsm-1.0.13-r1[${MULTILIB_USEDEP}] ) - iconv? ( >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] ) - iec61883? ( - >=media-libs/libiec61883-1.2.0-r1[${MULTILIB_USEDEP}] - >=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] - >=sys-libs/libavc1394-0.5.4-r1[${MULTILIB_USEDEP}] - ) - ieee1394? ( - >=media-libs/libdc1394-2.2.1[${MULTILIB_USEDEP}] - >=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] - ) - jack? ( virtual/jack[${MULTILIB_USEDEP}] ) - jpeg2k? ( >=media-libs/openjpeg-1.5.0:0[${MULTILIB_USEDEP}] ) - libass? ( >=media-libs/libass-0.10.2[${MULTILIB_USEDEP}] ) - libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[${MULTILIB_USEDEP}] ) - libsoxr? ( >=media-libs/soxr-0.1.0[${MULTILIB_USEDEP}] ) - libv4l? ( >=media-libs/libv4l-0.9.5[${MULTILIB_USEDEP}] ) - lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] ) - modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}] ) - openal? ( >=media-libs/openal-1.15.1[${MULTILIB_USEDEP}] ) - opengl? ( >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] ) - openssl? ( - !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) - ) - opus? ( >=media-libs/opus-1.0.2-r2[${MULTILIB_USEDEP}] ) - pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] ) - quvi? ( media-libs/libquvi:0.4[${MULTILIB_USEDEP}] ) - librtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] ) - samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] ) - schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] ) - sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,${MULTILIB_USEDEP}] ) - speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] ) - ssh? ( >=net-libs/libssh-0.5.5[${MULTILIB_USEDEP}] ) - truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] ) - vaapi? ( >=x11-libs/libva-1.2.1-r1[${MULTILIB_USEDEP}] ) - vdpau? ( >=x11-libs/libvdpau-0.7[${MULTILIB_USEDEP}] ) - vorbis? ( - >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}] - ) - vpx? ( >=media-libs/libvpx-1.4.0:=[${MULTILIB_USEDEP}] ) - X? ( - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] - !xcb? ( >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}] ) - >=x11-libs/libXv-1.0.10[${MULTILIB_USEDEP}] - ) - xcb? ( >=x11-libs/libxcb-1.4[${MULTILIB_USEDEP}] ) - zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) - zvbi? ( >=media-libs/zvbi-0.2.35[${MULTILIB_USEDEP}] ) - !media-video/qt-faststart - postproc? ( !media-libs/libpostproc ) -" - -DEPEND="${RDEPEND} - >=sys-devel/make-3.81 - doc? ( app-text/texi2html ) - fontconfig? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - gnutls? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - ieee1394? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}] ) - libv4l? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 ) - librtmp? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - schroedinger? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - test? ( net-misc/wget sys-devel/bc ) - truetype? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ) - v4l? ( sys-kernel/linux-headers ) -" - -RDEPEND="${RDEPEND} - abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20140508-r3 - !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )" - -# Code requiring FFmpeg to be built under gpl license -GPL_REQUIRED_USE=" - postproc? ( gpl ) - frei0r? ( gpl ) - cdio? ( gpl ) - samba? ( gpl ) - zvbi? ( gpl ) - encode? ( - x264? ( gpl ) - x265? ( gpl ) - xvid? ( gpl ) - X? ( !xcb? ( gpl ) ) - ) -" -REQUIRED_USE=" - libv4l? ( v4l ) - fftools_cws2fws? ( zlib ) - test? ( encode ) - ${GPL_REQUIRED_USE} - ${CPU_REQUIRED_USE}" -RESTRICT=" - encode? ( faac? ( bindist ) aacplus? ( bindist ) ) - gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) -" - -S=${WORKDIR}/${P/_/-} - -MULTILIB_WRAPPED_HEADERS=( - /usr/include/libavutil/avconfig.h -) - -src_prepare() { - if [[ "${PV%_p*}" != "${PV}" ]] ; then # Snapshot - export revision=git-N-${FFMPEG_REVISION} - fi - epatch_user -} - -multilib_src_configure() { - local myconf=( ${EXTRA_FFMPEG_CONF} ) - - local ffuse=( "${FFMPEG_FLAG_MAP[@]}" ) - use openssl && use gpl && myconf+=( --enable-nonfree ) - use samba && myconf+=( --enable-version3 ) - - # Encoders - if use encode ; then - ffuse+=( "${FFMPEG_ENCODER_FLAG_MAP[@]}" ) - - # Licensing. - if use aac || use amrenc ; then - myconf+=( --enable-version3 ) - fi - if use aacplus || use faac ; then - myconf+=( --enable-nonfree ) - fi - else - myconf+=( --disable-encoders ) - fi - - # Indevs - use v4l || myconf+=( --disable-indev=v4l2 --disable-outdev=v4l2 ) - for i in alsa oss jack ; do - use ${i} || myconf+=( --disable-indev=${i} ) - done - use xcb || ffuse+=( X:x11grab ) - - # Outdevs - for i in alsa oss sdl ; do - use ${i} || myconf+=( --disable-outdev=${i} ) - done - - # Decoders - use amr && myconf+=( --enable-version3 ) - use fdk && use gpl && myconf+=( --enable-nonfree ) - - for i in "${ffuse[@]#+}" ; do - myconf+=( $(use_enable ${i%:*} ${i#*:}) ) - done - - # (temporarily) disable non-multilib deps - if ! multilib_is_native_abi; then - for i in frei0r ; do - myconf+=( --disable-${i} ) - done - fi - - # CPU features - for i in ${CPU_FEATURES_MAP} ; do - if [ "$(tc-arch)" = "${i%:*}" ] ; then - local var="${i#*:}_CPU_FEATURES[@]" - for j in ${!var} ; do - use ${j%:*} || myconf+=( --disable-${j#*:} ) - done - fi - done - - if use pic ; then - myconf+=( --enable-pic ) - # disable asm code if PIC is required - # as the provided asm decidedly is not PIC for x86. - [[ ${ABI} == x86 ]] && myconf+=( --disable-asm ) - fi - [[ ${ABI} == x32 ]] && myconf+=( --disable-asm ) #427004 - - # Try to get cpu type based on CFLAGS. - # Bug #172723 - # We need to do this so that features of that CPU will be better used - # If they contain an unknown CPU it will not hurt since ffmpeg's configure - # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) ; do - [[ ${i} = native ]] && i="host" # bug #273421 - myconf+=( --cpu=${i} ) - break - done - - # LTO support, bug #566282 - is-flagq "-flto*" && myconf+=( "--enable-lto" ) - - # Mandatory configuration - myconf=( - --enable-avfilter - --enable-avresample - --disable-stripping - "${myconf[@]}" - ) - - # cross compile support - if tc-is-cross-compiler ; then - myconf+=( --enable-cross-compile --arch=$(tc-arch-kernel) --cross-prefix=${CHOST}- ) - case ${CHOST} in - *freebsd*) - myconf+=( --target-os=freebsd ) - ;; - *mingw32*) - myconf+=( --target-os=mingw32 ) - ;; - *linux*) - myconf+=( --target-os=linux ) - ;; - esac - fi - - set -- "${S}/configure" \ - --prefix="${EPREFIX}/usr" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --shlibdir="${EPREFIX}/usr/$(get_libdir)" \ - --mandir="${EPREFIX}/usr/share/man" \ - --enable-shared \ - --cc="$(tc-getCC)" \ - --cxx="$(tc-getCXX)" \ - --ar="$(tc-getAR)" \ - --optflags="${CFLAGS}" \ - $(use_enable static-libs static) \ - "${myconf[@]}" - echo "${@}" - "${@}" || die -} - -multilib_src_compile() { - emake V=1 - - if multilib_is_native_abi; then - for i in "${FFTOOLS[@]}" ; do - if use fftools_${i} ; then - emake V=1 tools/${i} - fi - done - fi -} - -multilib_src_install() { - emake V=1 DESTDIR="${D}" install install-man - - if multilib_is_native_abi; then - for i in "${FFTOOLS[@]}" ; do - if use fftools_${i} ; then - dobin tools/${i} - fi - done - fi -} - -multilib_src_install_all() { - dodoc Changelog README.md CREDITS doc/*.txt doc/APIchanges - [ -f "RELEASE_NOTES" ] && dodoc "RELEASE_NOTES" - use doc && dohtml -r doc/* - if use examples ; then - dodoc -r doc/examples - docompress -x /usr/share/doc/${PF}/examples - fi -} - -multilib_src_test() { - LD_LIBRARY_PATH="${BUILD_DIR}/libpostproc:${BUILD_DIR}/libswscale:${BUILD_DIR}/libswresample:${BUILD_DIR}/libavcodec:${BUILD_DIR}/libavdevice:${BUILD_DIR}/libavfilter:${BUILD_DIR}/libavformat:${BUILD_DIR}/libavutil:${BUILD_DIR}/libavresample" \ - emake V=1 fate -} diff --git a/media-video/ffmpeg/ffmpeg-3.2.4.ebuild b/media-video/ffmpeg/ffmpeg-3.2.4.ebuild deleted file mode 100644 index 201f66f24dea..000000000000 --- a/media-video/ffmpeg/ffmpeg-3.2.4.ebuild +++ /dev/null @@ -1,460 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# Subslot: libavutil major.libavcodec major.libavformat major -# Since FFmpeg ships several libraries, subslot is kind of limited here. -# Most consumers will use those three libraries, if a "less used" library -# changes its soname, consumers will have to be rebuilt the old way -# (preserve-libs). -# If, for example, a package does not link to libavformat and only libavformat -# changes its ABI then this package will be rebuilt needlessly. Hence, such a -# package is free _not_ to := depend on FFmpeg but I would strongly encourage -# doing so since such a case is unlikely. -FFMPEG_SUBSLOT=55.57.57 - -SCM="" -if [ "${PV#9999}" != "${PV}" ] ; then - SCM="git-r3" - EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git" -fi - -inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM} - -DESCRIPTION="Complete solution to record, convert and stream audio and video. Includes libavcodec" -HOMEPAGE="http://ffmpeg.org/" -if [ "${PV#9999}" != "${PV}" ] ; then - SRC_URI="" -elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot - SRC_URI="mirror://gentoo/${P}.tar.bz2" -else # Release - SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2" -fi -FFMPEG_REVISION="${PV#*_p}" - -SLOT="0/${FFMPEG_SUBSLOT}" -LICENSE=" - !gpl? ( LGPL-2.1 ) - gpl? ( GPL-2 ) - amr? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - gmp? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - encode? ( - amrenc? ( - gpl? ( GPL-3 ) - !gpl? ( LGPL-3 ) - ) - ) - samba? ( GPL-3 ) -" -if [ "${PV#9999}" = "${PV}" ] ; then - KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -fi - -# Options to use as use_enable in the foo[:bar] form. -# This will feed configure with $(use_enable foo bar) -# or $(use_enable foo foo) if no :bar is set. -# foo is added to IUSE. -FFMPEG_FLAG_MAP=( - +bzip2:bzlib cpudetection:runtime-cpudetect debug gcrypt gnutls gmp - +gpl +hardcoded-tables +iconv lzma +network openssl +postproc - samba:libsmbclient sdl:ffplay sdl:sdl2 vaapi vdpau X:xlib xcb:libxcb - xcb:libxcb-shm xcb:libxcb-xfixes +zlib - # libavdevice options - cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal - opengl - # indevs - libv4l:libv4l2 pulseaudio:libpulse - # decoders - amr:libopencore-amrwb amr:libopencore-amrnb fdk:libfdk-aac - jpeg2k:libopenjpeg bluray:libbluray celt:libcelt gme:libgme gsm:libgsm - mmal modplug:libmodplug opus:libopus libilbc librtmp ssh:libssh - schroedinger:libschroedinger speex:libspeex vorbis:libvorbis vpx:libvpx - zvbi:libzvbi - # libavfilter options - bs2b:libbs2b chromaprint ebur128:libebur128 flite:libflite frei0r - fribidi:libfribidi fontconfig ladspa libass truetype:libfreetype - rubberband:librubberband zimg:libzimg - # libswresample options - libsoxr - # Threads; we only support pthread for now but ffmpeg supports more - +threads:pthreads -) - -# Same as above but for encoders, i.e. they do something only with USE=encode. -FFMPEG_ENCODER_FLAG_MAP=( - amrenc:libvo-amrwbenc mp3:libmp3lame - kvazaar:libkvazaar nvenc:nvenc - openh264:libopenh264 snappy:libsnappy theora:libtheora twolame:libtwolame - wavpack:libwavpack webp:libwebp x264:libx264 x265:libx265 xvid:libxvid -) - -IUSE=" - alsa doc +encode jack oss pic static-libs test v4l - ${FFMPEG_FLAG_MAP[@]%:*} - ${FFMPEG_ENCODER_FLAG_MAP[@]%:*} -" - -# Strings for CPU features in the useflag[:configure_option] form -# if :configure_option isn't set, it will use 'useflag' as configure option -ARM_CPU_FEATURES=( armv5te armv6 armv6t2 neon armvfp:vfp ) -MIPS_CPU_FEATURES=( mipsdspr1 mipsdspr2 mipsfpu ) -PPC_CPU_FEATURES=( altivec ) -X86_CPU_FEATURES_RAW=( 3dnow:amd3dnow 3dnowext:amd3dnowext aes:aesni avx:avx avx2:avx2 fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop ) -X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} ) -X86_CPU_REQUIRED_USE=" - cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) - cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) - cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) - cpu_flags_x86_xop? ( cpu_flags_x86_avx ) - cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) - cpu_flags_x86_aes? ( cpu_flags_x86_sse4_2 ) - cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) - cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) - cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) - cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) - cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) - cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) - cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) - cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) - cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) -" - -IUSE="${IUSE} - ${ARM_CPU_FEATURES[@]%:*} - ${MIPS_CPU_FEATURES[@]%:*} - ${PPC_CPU_FEATURES[@]%:*} - ${X86_CPU_FEATURES[@]%:*} -" - -CPU_REQUIRED_USE=" - ${X86_CPU_REQUIRED_USE} -" - -# "$(tc-arch):XXX" form where XXX_CPU_FEATURES are the cpu features that apply to -# $(tc-arch). -CPU_FEATURES_MAP=" - arm:ARM - arm64:ARM - mips:MIPS - ppc:PPC - ppc64:PPC - x86:X86 - amd64:X86 -" - -FFTOOLS=( aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart sidxindex trasher ) -IUSE="${IUSE} ${FFTOOLS[@]/#/+fftools_}" - -RDEPEND=" - alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) - amr? ( >=media-libs/opencore-amr-0.1.3-r1[${MULTILIB_USEDEP}] ) - bluray? ( >=media-libs/libbluray-0.3.0-r1:=[${MULTILIB_USEDEP}] ) - bs2b? ( >=media-libs/libbs2b-3.1.0-r1[${MULTILIB_USEDEP}] ) - bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] ) - cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[${MULTILIB_USEDEP}] ) - celt? ( >=media-libs/celt-0.11.1-r1[${MULTILIB_USEDEP}] ) - chromaprint? ( >=media-libs/chromaprint-1.2-r1[${MULTILIB_USEDEP}] ) - ebur128? ( >=media-libs/libebur128-1.1.0[${MULTILIB_USEDEP}] ) - encode? ( - amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[${MULTILIB_USEDEP}] ) - kvazaar? ( media-libs/kvazaar[${MULTILIB_USEDEP}] ) - mp3? ( >=media-sound/lame-3.99.5-r1[${MULTILIB_USEDEP}] ) - nvenc? ( media-video/nvidia_video_sdk ) - openh264? ( >=media-libs/openh264-1.4.0-r1[${MULTILIB_USEDEP}] ) - snappy? ( >=app-arch/snappy-1.1.2-r1[${MULTILIB_USEDEP}] ) - theora? ( - >=media-libs/libtheora-1.1.1[encode,${MULTILIB_USEDEP}] - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}] - ) - twolame? ( >=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}] ) - wavpack? ( >=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}] ) - webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] ) - x264? ( >=media-libs/x264-0.0.20130506:=[${MULTILIB_USEDEP}] ) - x265? ( >=media-libs/x265-1.6:=[${MULTILIB_USEDEP}] ) - xvid? ( >=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}] ) - ) - fdk? ( >=media-libs/fdk-aac-0.1.3:=[${MULTILIB_USEDEP}] ) - flite? ( >=app-accessibility/flite-1.4-r4[${MULTILIB_USEDEP}] ) - fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) - frei0r? ( media-plugins/frei0r-plugins ) - fribidi? ( >=dev-libs/fribidi-0.19.6[${MULTILIB_USEDEP}] ) - gcrypt? ( >=dev-libs/libgcrypt-1.6:0=[${MULTILIB_USEDEP}] ) - gme? ( >=media-libs/game-music-emu-0.6.0[${MULTILIB_USEDEP}] ) - gmp? ( >=dev-libs/gmp-6:0=[${MULTILIB_USEDEP}] ) - gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[${MULTILIB_USEDEP}] ) - gsm? ( >=media-sound/gsm-1.0.13-r1[${MULTILIB_USEDEP}] ) - iconv? ( >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] ) - iec61883? ( - >=media-libs/libiec61883-1.2.0-r1[${MULTILIB_USEDEP}] - >=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] - >=sys-libs/libavc1394-0.5.4-r1[${MULTILIB_USEDEP}] - ) - ieee1394? ( - >=media-libs/libdc1394-2.2.1[${MULTILIB_USEDEP}] - >=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] - ) - jack? ( virtual/jack[${MULTILIB_USEDEP}] ) - jpeg2k? ( >=media-libs/openjpeg-2:2[${MULTILIB_USEDEP}] ) - libass? ( >=media-libs/libass-0.10.2:=[${MULTILIB_USEDEP}] ) - libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[${MULTILIB_USEDEP}] ) - libilbc? ( >=media-libs/libilbc-2[${MULTILIB_USEDEP}] ) - libsoxr? ( >=media-libs/soxr-0.1.0[${MULTILIB_USEDEP}] ) - libv4l? ( >=media-libs/libv4l-0.9.5[${MULTILIB_USEDEP}] ) - lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] ) - mmal? ( media-libs/raspberrypi-userland ) - modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}] ) - openal? ( >=media-libs/openal-1.15.1[${MULTILIB_USEDEP}] ) - opengl? ( >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] ) - openssl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] ) - opus? ( >=media-libs/opus-1.0.2-r2[${MULTILIB_USEDEP}] ) - pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] ) - librtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] ) - rubberband? ( >=media-libs/rubberband-1.8.1-r1[${MULTILIB_USEDEP}] ) - samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] ) - schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] ) - sdl? ( media-libs/libsdl2[sound,video,${MULTILIB_USEDEP}] ) - speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] ) - ssh? ( >=net-libs/libssh-0.5.5[${MULTILIB_USEDEP}] ) - truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] ) - vaapi? ( >=x11-libs/libva-1.2.1-r1[${MULTILIB_USEDEP}] ) - vdpau? ( >=x11-libs/libvdpau-0.7[${MULTILIB_USEDEP}] ) - vorbis? ( - >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}] - ) - vpx? ( >=media-libs/libvpx-1.4.0:=[${MULTILIB_USEDEP}] ) - X? ( - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] - !xcb? ( >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}] ) - >=x11-libs/libXv-1.0.10[${MULTILIB_USEDEP}] - ) - xcb? ( >=x11-libs/libxcb-1.4[${MULTILIB_USEDEP}] ) - zimg? ( media-libs/zimg[${MULTILIB_USEDEP}] ) - zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) - zvbi? ( >=media-libs/zvbi-0.2.35[${MULTILIB_USEDEP}] ) - !media-video/qt-faststart - postproc? ( !media-libs/libpostproc ) -" - -DEPEND="${RDEPEND} - >=sys-devel/make-3.81 - doc? ( sys-apps/texinfo ) - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] - ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}] ) - cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 ) - test? ( net-misc/wget sys-devel/bc ) - v4l? ( sys-kernel/linux-headers ) -" - -RDEPEND="${RDEPEND} - abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20140508-r3 - !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )" - -# Code requiring FFmpeg to be built under gpl license -GPL_REQUIRED_USE=" - postproc? ( gpl ) - frei0r? ( gpl ) - cdio? ( gpl ) - samba? ( gpl ) - encode? ( - x264? ( gpl ) - x265? ( gpl ) - xvid? ( gpl ) - X? ( !xcb? ( gpl ) ) - ) -" -REQUIRED_USE=" - libv4l? ( v4l ) - fftools_cws2fws? ( zlib ) - test? ( encode ) - ${GPL_REQUIRED_USE} - ${CPU_REQUIRED_USE}" -RESTRICT=" - gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) -" - -S=${WORKDIR}/${P/_/-} - -MULTILIB_WRAPPED_HEADERS=( - /usr/include/libavutil/avconfig.h -) - -src_prepare() { - if [[ "${PV%_p*}" != "${PV}" ]] ; then # Snapshot - export revision=git-N-${FFMPEG_REVISION} - fi - default - - # the version script on Solaris causes invalid symbol version problems - # we don't want their hacky workarounds, we're having a GNU ld - sed -i -e 's/sunos)/sunos) network_extralibs="-lsocket -lnsl"; add_cppflags -D__EXTENSIONS__; enable pic; disable symver ;; no-sunos)/' configure || die -} - -multilib_src_configure() { - local myconf=( ${EXTRA_FFMPEG_CONF} ) - - local ffuse=( "${FFMPEG_FLAG_MAP[@]}" ) - use openssl && use gpl && myconf+=( --enable-nonfree ) - use samba && myconf+=( --enable-version3 ) - - # Encoders - if use encode ; then - ffuse+=( "${FFMPEG_ENCODER_FLAG_MAP[@]}" ) - - # Licensing. - if use amrenc ; then - myconf+=( --enable-version3 ) - fi - else - myconf+=( --disable-encoders ) - fi - - # Indevs - use v4l || myconf+=( --disable-indev=v4l2 --disable-outdev=v4l2 ) - for i in alsa oss jack ; do - use ${i} || myconf+=( --disable-indev=${i} ) - done - use xcb || ffuse+=( X:x11grab ) - - # Outdevs - for i in alsa oss sdl ; do - use ${i} || myconf+=( --disable-outdev=${i} ) - done - - # Decoders - use amr && myconf+=( --enable-version3 ) - use gmp && myconf+=( --enable-version3 ) - use fdk && use gpl && myconf+=( --enable-nonfree ) - - for i in "${ffuse[@]#+}" ; do - myconf+=( $(use_enable ${i%:*} ${i#*:}) ) - done - - # (temporarily) disable non-multilib deps - if ! multilib_is_native_abi; then - for i in frei0r ; do - myconf+=( --disable-${i} ) - done - fi - - # CPU features - for i in ${CPU_FEATURES_MAP} ; do - if [ "$(tc-arch)" = "${i%:*}" ] ; then - local var="${i#*:}_CPU_FEATURES[@]" - for j in ${!var} ; do - use ${j%:*} || myconf+=( --disable-${j#*:} ) - done - fi - done - - if use pic ; then - myconf+=( --enable-pic ) - # disable asm code if PIC is required - # as the provided asm decidedly is not PIC for x86. - [[ ${ABI} == x86 ]] && myconf+=( --disable-asm ) - fi - [[ ${ABI} == x32 ]] && myconf+=( --disable-asm ) #427004 - - # Try to get cpu type based on CFLAGS. - # Bug #172723 - # We need to do this so that features of that CPU will be better used - # If they contain an unknown CPU it will not hurt since ffmpeg's configure - # will just ignore it. - for i in $(get-flag mcpu) $(get-flag march) ; do - [[ ${i} = native ]] && i="host" # bug #273421 - myconf+=( --cpu=${i} ) - break - done - - # LTO support, bug #566282 - is-flagq "-flto*" && myconf+=( "--enable-lto" ) - - # Mandatory configuration - myconf=( - --enable-avfilter - --enable-avresample - --disable-stripping - "${myconf[@]}" - ) - - # cross compile support - if tc-is-cross-compiler ; then - myconf+=( --enable-cross-compile --arch=$(tc-arch-kernel) --cross-prefix=${CHOST}- ) - case ${CHOST} in - *freebsd*) - myconf+=( --target-os=freebsd ) - ;; - *mingw32*) - myconf+=( --target-os=mingw32 ) - ;; - *linux*) - myconf+=( --target-os=linux ) - ;; - esac - fi - - # doc - myconf+=( - $(multilib_native_use_enable doc) - $(multilib_native_use_enable doc htmlpages) - $(multilib_native_enable manpages) - ) - - set -- "${S}/configure" \ - --prefix="${EPREFIX}/usr" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --shlibdir="${EPREFIX}/usr/$(get_libdir)" \ - --docdir="${EPREFIX}/usr/share/doc/${PF}/html" \ - --mandir="${EPREFIX}/usr/share/man" \ - --enable-shared \ - --cc="$(tc-getCC)" \ - --cxx="$(tc-getCXX)" \ - --ar="$(tc-getAR)" \ - --optflags="${CFLAGS}" \ - $(use_enable static-libs static) \ - "${myconf[@]}" - echo "${@}" - "${@}" || die -} - -multilib_src_compile() { - emake V=1 - - if multilib_is_native_abi; then - for i in "${FFTOOLS[@]}" ; do - if use fftools_${i} ; then - emake V=1 tools/${i} - fi - done - fi -} - -multilib_src_install() { - emake V=1 DESTDIR="${D}" install install-doc - - if multilib_is_native_abi; then - for i in "${FFTOOLS[@]}" ; do - if use fftools_${i} ; then - dobin tools/${i} - fi - done - fi -} - -multilib_src_install_all() { - dodoc Changelog README.md CREDITS doc/*.txt doc/APIchanges - [ -f "RELEASE_NOTES" ] && dodoc "RELEASE_NOTES" -} - -multilib_src_test() { - LD_LIBRARY_PATH="${BUILD_DIR}/libpostproc:${BUILD_DIR}/libswscale:${BUILD_DIR}/libswresample:${BUILD_DIR}/libavcodec:${BUILD_DIR}/libavdevice:${BUILD_DIR}/libavfilter:${BUILD_DIR}/libavformat:${BUILD_DIR}/libavutil:${BUILD_DIR}/libavresample" \ - emake V=1 fate -} diff --git a/media-video/ffmpeg/ffmpeg-3.3.4.ebuild b/media-video/ffmpeg/ffmpeg-3.3.4.ebuild index 9d94cd67b70e..66159129457a 100644 --- a/media-video/ffmpeg/ffmpeg-3.3.4.ebuild +++ b/media-video/ffmpeg/ffmpeg-3.3.4.ebuild @@ -309,6 +309,7 @@ MULTILIB_WRAPPED_HEADERS=( PATCHES=( "${FILESDIR}"/openjpeg22.patch + "${FILESDIR}"/openjpeg23.patch "${FILESDIR}"/chromium.patch ) diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index ac3d4666a006..227453fbbd4b 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -255,7 +255,7 @@ DEPEND="${RDEPEND} doc? ( sys-apps/texinfo ) >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}] ) - cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 ) + cpu_flags_x86_mmx? ( || ( >=dev-lang/nasm-2.13 >=dev-lang/yasm-1.3 ) ) test? ( net-misc/wget sys-devel/bc ) v4l? ( sys-kernel/linux-headers ) " diff --git a/media-video/ffmpeg/files/openjpeg23.patch b/media-video/ffmpeg/files/openjpeg23.patch new file mode 100644 index 000000000000..4398769a22ca --- /dev/null +++ b/media-video/ffmpeg/files/openjpeg23.patch @@ -0,0 +1,109 @@ +From: Michael Bradshaw + +Signed-off-by: Michael Bradshaw +--- + configure | 5 ++++- + libavcodec/libopenjpegdec.c | 8 +++++--- + libavcodec/libopenjpegenc.c | 10 ++++++---- + 3 files changed, 15 insertions(+), 8 deletions(-) + +diff --git a/configure b/configure +index 391c141e7a..77c9a18c3c 100755 +--- a/configure ++++ b/configure +@@ -1930,6 +1930,7 @@ HEADERS_LIST=" + machine_ioctl_meteor_h + malloc_h + opencv2_core_core_c_h ++ openjpeg_2_3_openjpeg_h + openjpeg_2_2_openjpeg_h + openjpeg_2_1_openjpeg_h + openjpeg_2_0_openjpeg_h +@@ -5950,7 +5951,9 @@ enabled libopencv && { check_header opencv2/core/core_c.h && + require opencv opencv2/core/core_c.h cvCreateImageHeader -lopencv_core -lopencv_imgproc; } || + require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader; } + enabled libopenh264 && require_pkg_config openh264 wels/codec_api.h WelsGetCodecVersion +-enabled libopenjpeg && { { check_lib openjpeg-2.2/openjpeg.h opj_version -lopenjp2 -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } || ++enabled libopenjpeg && { { check_lib openjpeg-2.3/openjpeg.h opj_version -lopenjp2 -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } || ++ check_lib openjpeg-2.3/openjpeg.h opj_version -lopenjp2 || ++ { check_lib openjpeg-2.2/openjpeg.h opj_version -lopenjp2 -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } || + check_lib openjpeg-2.2/openjpeg.h opj_version -lopenjp2 || + { check_lib openjpeg-2.1/openjpeg.h opj_version -lopenjp2 -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } || + check_lib openjpeg-2.1/openjpeg.h opj_version -lopenjp2 || +diff --git a/libavcodec/libopenjpegdec.c b/libavcodec/libopenjpegdec.c +index 1210123265..67d47bd6a0 100644 +--- a/libavcodec/libopenjpegdec.c ++++ b/libavcodec/libopenjpegdec.c +@@ -34,7 +34,9 @@ + #include "internal.h" + #include "thread.h" + +-#if HAVE_OPENJPEG_2_2_OPENJPEG_H ++#if HAVE_OPENJPEG_2_3_OPENJPEG_H ++# include ++#elif HAVE_OPENJPEG_2_2_OPENJPEG_H + # include + #elif HAVE_OPENJPEG_2_1_OPENJPEG_H + # include +@@ -46,7 +48,7 @@ + # include + #endif + +-#if HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H || HAVE_OPENJPEG_2_0_OPENJPEG_H ++#if HAVE_OPENJPEG_2_3_OPENJPEG_H || HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H || HAVE_OPENJPEG_2_0_OPENJPEG_H + # define OPENJPEG_MAJOR_VERSION 2 + # define OPJ(x) OPJ_##x + #else +@@ -431,7 +433,7 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx, + opj_stream_set_read_function(stream, stream_read); + opj_stream_set_skip_function(stream, stream_skip); + opj_stream_set_seek_function(stream, stream_seek); +-#if HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H ++#if HAVE_OPENJPEG_2_3_OPENJPEG_H || HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H + opj_stream_set_user_data(stream, &reader, NULL); + #elif HAVE_OPENJPEG_2_0_OPENJPEG_H + opj_stream_set_user_data(stream, &reader); +diff --git a/libavcodec/libopenjpegenc.c b/libavcodec/libopenjpegenc.c +index b67e533d1d..92b4433b04 100644 +--- a/libavcodec/libopenjpegenc.c ++++ b/libavcodec/libopenjpegenc.c +@@ -32,7 +32,9 @@ + #include "avcodec.h" + #include "internal.h" + +-#if HAVE_OPENJPEG_2_2_OPENJPEG_H ++#if HAVE_OPENJPEG_2_3_OPENJPEG_H ++# include ++#elif HAVE_OPENJPEG_2_2_OPENJPEG_H + # include + #elif HAVE_OPENJPEG_2_1_OPENJPEG_H + # include +@@ -44,7 +46,7 @@ + # include + #endif + +-#if HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H || HAVE_OPENJPEG_2_0_OPENJPEG_H ++#if HAVE_OPENJPEG_2_3_OPENJPEG_H || HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H || HAVE_OPENJPEG_2_0_OPENJPEG_H + # define OPENJPEG_MAJOR_VERSION 2 + # define OPJ(x) OPJ_##x + #else +@@ -307,7 +309,7 @@ static av_cold int libopenjpeg_encode_init(AVCodecContext *avctx) + + opj_set_default_encoder_parameters(&ctx->enc_params); + +-#if HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H ++#if HAVE_OPENJPEG_2_3_OPENJPEG_H || HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H + switch (ctx->cinema_mode) { + case OPJ_CINEMA2K_24: + ctx->enc_params.rsiz = OPJ_PROFILE_CINEMA_2K; +@@ -771,7 +773,7 @@ static int libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt, + opj_stream_set_write_function(stream, stream_write); + opj_stream_set_skip_function(stream, stream_skip); + opj_stream_set_seek_function(stream, stream_seek); +-#if HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H ++#if HAVE_OPENJPEG_2_3_OPENJPEG_H || HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H + opj_stream_set_user_data(stream, &writer, NULL); + #elif HAVE_OPENJPEG_2_0_OPENJPEG_H + opj_stream_set_user_data(stream, &writer); +-- +2.13.5 (Apple Git-94) diff --git a/media-video/ffmpeg/metadata.xml b/media-video/ffmpeg/metadata.xml index ef95f758afd4..a0b4d7e7ad73 100644 --- a/media-video/ffmpeg/metadata.xml +++ b/media-video/ffmpeg/metadata.xml @@ -5,7 +5,6 @@ media-video@gentoo.org - AAC+ encoding via media-libs/libaacplus. Enables Adaptive Multi-Rate Audio support Enables Adaptive Multi-Rate Audio encoding support with media-libs/vo-amrwbenc. Enables optimizations for armv5te processors. @@ -20,7 +19,6 @@ Builds libffmpeg.so to enable media playback in Chromium-based browsers like Opera and Vivaldi. Enables runtime CPU detection (useful for bindist, compatibility on other CPUs) Enables EBU R128 loudness normalization filter via media-libs/libebur128 - Use external faac library for AAC encoding Use external fdk-aac library for AAC encoding Adds a text-to-speech filter based on app-accessibility/flite. Enable frei0r wrapping in libavfilter @@ -46,7 +44,6 @@ Adds (decoding) support for the Opus codec via media-libs/opus. Force shared libraries to be built as PIC (this is slower) Build and install libpostproc. - Adds support for playing media from Internet services using the quvi project. Adds time-stretching and pitch-shifting audio filter based on media-libs/rubberband. Enable Dirac video support (an advanced royalty-free video compression format) via libschroedinger (high-speed implementation in C of the Dirac codec). Enable app-arch/snappy support. Required for e.g. Vidvox Hap encoder. diff --git a/media-video/mplayer/mplayer-1.3.0-r3.ebuild b/media-video/mplayer/mplayer-1.3.0-r3.ebuild index 0e699eb68901..68459860f46a 100644 --- a/media-video/mplayer/mplayer-1.3.0-r3.ebuild +++ b/media-video/mplayer/mplayer-1.3.0-r3.ebuild @@ -12,7 +12,7 @@ inherit toolchain-funcs eutils flag-o-matic multilib base ${SVN_ECLASS} IUSE="cpu_flags_x86_3dnow cpu_flags_x86_3dnowext a52 aalib +alsa altivec aqua bidi bl bluray bs2b cddb +cdio cdparanoia cpudetection debug dga directfb doc dts dv dvb +dvd +dvdnav +enca +encode faac faad fbcon -ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa +ftp gif ggi gsm +iconv ipv6 jack joystick jpeg kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 @@ -91,7 +91,6 @@ RDEPEND+=" iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) - jpeg2k? ( media-libs/openjpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) @@ -392,7 +391,8 @@ src_configure() { for i in ${uses}; do use ${i} || myconf+=" --disable-${i}" done - use jpeg2k || myconf+=" --disable-libopenjpeg" + # Pulls an outdated libopenjpeg, ffmpeg provides better support for it + myconf+=" --disable-libopenjpeg" # Encoding uses="faac x264 xvid toolame twolame" diff --git a/media-video/mplayer/mplayer-9999.ebuild b/media-video/mplayer/mplayer-9999.ebuild index 6257dc214add..61554438bfc0 100644 --- a/media-video/mplayer/mplayer-9999.ebuild +++ b/media-video/mplayer/mplayer-9999.ebuild @@ -12,7 +12,7 @@ inherit toolchain-funcs eutils flag-o-matic multilib base ${SVN_ECLASS} IUSE="cpu_flags_x86_3dnow cpu_flags_x86_3dnowext a52 aalib +alsa altivec aqua bidi bl bluray bs2b cddb +cdio cdparanoia cpudetection debug dga directfb doc dts dv dvb +dvd +dvdnav +enca +encode faac faad fbcon -ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa +ftp gif ggi gsm +iconv ipv6 jack joystick jpeg kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 @@ -91,7 +91,6 @@ RDEPEND+=" iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) - jpeg2k? ( media-libs/openjpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) @@ -390,7 +389,8 @@ src_configure() { for i in ${uses}; do use ${i} || myconf+=" --disable-${i}" done - use jpeg2k || myconf+=" --disable-libopenjpeg" + # Pulls an outdated libopenjpeg, ffmpeg provides better support for it + myconf+=" --disable-libopenjpeg" # Encoding uses="faac x264 xvid toolame twolame" diff --git a/media-video/plasma-mediacenter/plasma-mediacenter-5.7.5.ebuild b/media-video/plasma-mediacenter/plasma-mediacenter-5.7.5.ebuild index 5ac9ea69d37d..81d5579d3d99 100644 --- a/media-video/plasma-mediacenter/plasma-mediacenter-5.7.5.ebuild +++ b/media-video/plasma-mediacenter/plasma-mediacenter-5.7.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -7,7 +7,7 @@ KDE_TEST="forceoptional" inherit kde5 DESCRIPTION="Unified media experience for any device capable of running KDE Plasma" -SRC_URI="mirror://kde/stable/plasma/${PV}/${P}.tar.xz" +SRC_URI="mirror://kde/stable/plasma-mediacenter/${PV}/${P}.tar.xz" KEYWORDS="amd64 ~arm x86" IUSE="semantic-desktop" diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index d300cc627aef..c58a2295242e 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sat, 07 Oct 2017 22:10:09 +0000 +Mon, 09 Oct 2017 06:08:55 +0000 diff --git a/metadata/glsa/glsa-201710-01.xml b/metadata/glsa/glsa-201710-01.xml new file mode 100644 index 000000000000..4d79ea91fdf5 --- /dev/null +++ b/metadata/glsa/glsa-201710-01.xml @@ -0,0 +1,61 @@ + + + + RubyGems: Multiple vulnerabilities + Multiple vulnerabilities were found in RubyGems, the worst of which + allows execution of arbitrary code. + + rubygems + 2017-10-08 + 2017-10-08: 1 + 629230 + remote + + + 2.6.13 + 2.6.13 + + + +

RubyGems is a sophisticated package manager for Ruby.

+
+ +

Multiple vulnerabilities have been discovered in RubyGems. Please review + the referenced CVE identifiers for details. +

+ +
+ +

A remote attacker, by enticing a user to install a specially crafted + gem, could possibly execute arbitrary code with the privileges of the + process or cause a Denial of Service condition. +

+
+ +

There is no known workaround at this time.

+
+ +

All RubyGems users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-ruby/rubygems-2.6.13" + +
+ + + CVE-2017-0899 + + + CVE-2017-0900 + + + CVE-2017-0901 + + + CVE-2017-0902 + + + chrisadr + chrisadr +
diff --git a/metadata/glsa/glsa-201710-02.xml b/metadata/glsa/glsa-201710-02.xml new file mode 100644 index 000000000000..f44b167e6225 --- /dev/null +++ b/metadata/glsa/glsa-201710-02.xml @@ -0,0 +1,53 @@ + + + + file: Stack-based buffer overflow + A stack-based buffer overflow was found in file, possibly resulting + in the execution of arbitrary code. + + file + 2017-10-08 + 2017-10-08: 1 + 629872 + remote + + + 5.32 + 5.32 + + + +

file is a utility that guesses a file format by scanning binary data for + patterns. +

+
+ +

An issue discovered in file allows attackers to write 20 bytes to the + stack buffer via a specially crafted .notes section. +

+
+ +

A remote attacker, by using a specially crafted .notes section in an ELF + binary, could execute arbitrary code or cause a Denial of Service + condition. +

+
+ +

There is no known workaround at this time.

+
+ +

All file users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=sys-apps/file-5.32" + +
+ + + CVE-2017-1000249 + + + chrisadr + chrisadr +
diff --git a/metadata/glsa/glsa-201710-03.xml b/metadata/glsa/glsa-201710-03.xml new file mode 100644 index 000000000000..d55c1d1f47e1 --- /dev/null +++ b/metadata/glsa/glsa-201710-03.xml @@ -0,0 +1,59 @@ + + + + ICU: Multiple vulnerabilities + Multiple vulnerabilities have been found in ICU, the worst of which + could allow remote code execution. + + icu + 2017-10-08 + 2017-10-08: 1 + 616468 + remote + + + 58.2-r1 + 58.2-r1 + + + +

ICU is a mature, widely used set of C/C++ and Java libraries providing + Unicode and Globalization support for software applications. +

+
+ +

Multiple vulnerabilities have been discovered in ICU. Please review the + referenced CVE identifiers for details. +

+
+ +

A remote attacker could possibly execute arbitrary code with the + privileges of the process or cause a Denial of Service condition. +

+
+ +

There is no known workaround at this time.

+
+ +

All ICU users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-libs/icu-58.2-r1" + + +

Packages which depend on this library may need to be recompiled. Tools + such as revdep-rebuild may assist in identifying some of these packages. +

+
+ + + CVE-2017-7867 + + + CVE-2017-7868 + + + chrisadr + chrisadr +
diff --git a/metadata/glsa/glsa-201710-04.xml b/metadata/glsa/glsa-201710-04.xml new file mode 100644 index 000000000000..a6ad46e9216e --- /dev/null +++ b/metadata/glsa/glsa-201710-04.xml @@ -0,0 +1,52 @@ + + + + sudo: Privilege escalation + A vulnerability in sudo allows local users to gain root privileges. + sudo + 2017-10-08 + 2017-10-08: 1 + 620482 + local + + + 1.8.20_p2 + 1.8.20_p2 + + + +

sudo (su “do”) allows a system administrator to delegate authority + to give certain users (or groups of users) the ability to run some (or + all) commands as root or another user while providing an audit trail of + the commands and their arguments. +

+
+ +

The fix present in app-admin/sudo-1.8.20_p1 (GLSA 201705-15) was + incomplete as it did not address the problem of a command with a newline + in the name. +

+
+ +

A local attacker could execute arbitrary code with root privileges.

+
+ +

There is no known workaround at this time.

+
+ +

All sudo users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=app-admin/sudo-1.8.20_p2" + +
+ + + CVE-2017-1000368 + + GLSA 201705-15 + + chrisadr + chrisadr +
diff --git a/metadata/glsa/glsa-201710-05.xml b/metadata/glsa/glsa-201710-05.xml new file mode 100644 index 000000000000..9fc4492741e0 --- /dev/null +++ b/metadata/glsa/glsa-201710-05.xml @@ -0,0 +1,50 @@ + + + + Munin: Arbitrary file write + A vulnerability in Munin allows local attackers to overwrite any + file accessible to the www-data user. + + munin + 2017-10-08 + 2017-10-08: 1 + 610602 + local + + + 2.0.33 + 2.0.33 + + + +

Munin is an open source server monitoring tool.

+
+ +

When Munin is compiled with CGI graphics enabled then the files + accessible to the www-data user can be overwritten. +

+
+ +

A local attacker, by setting multiple upper_limit GET parameters, could + overwrite files accessible to the www-user. +

+
+ +

There is no known workaround at this time.

+
+ +

All Munin users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=net-analyzer/munin-2.0.33" + +
+ + + CVE-2017-6188 + + + chrisadr + chrisadr +
diff --git a/metadata/glsa/glsa-201710-06.xml b/metadata/glsa/glsa-201710-06.xml new file mode 100644 index 000000000000..2ffbb73c66e3 --- /dev/null +++ b/metadata/glsa/glsa-201710-06.xml @@ -0,0 +1,101 @@ + + + + PostgreSQL: Multiple vulnerabilities + Multiple vulnerabilities have been found in PostgreSQL, the worst + of which could result in privilege escalation. + + postgresql + 2017-10-08 + 2017-10-08: 1 + 618462 + 627462 + remote + + + 9.6.4 + 9.5.8 + 9.4.13 + 9.3.18 + 9.2.22 + 9.6.4 + + + +

PostgreSQL is an open source object-relational database management + system. +

+
+ +

Multiple vulnerabilities have been discovered in PostgreSQL. Please + review the referenced CVE identifiers for details. +

+
+ +

A remote attacker could escalate privileges, cause a Denial of Service + condition, obtain passwords, cause a loss in information, or obtain + sensitive information. +

+
+ +

There is no known workaround at this time.

+
+ +

All PostgreSQL 9.6.x users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-db/postgresql-9.6.4" + + +

All PostgreSQL 9.5.x users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-db/postgresql-9.5.8" + + +

All PostgreSQL 9.4.x users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-db/postgresql-9.4.13" + + +

All PostgreSQL 9.3.x users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-db/postgresql-9.3.18" + + +

All PostgreSQL 9.2.x users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-db/postgresql-9.2.22" + +
+ + + CVE-2017-7484 + + + CVE-2017-7485 + + + CVE-2017-7486 + + + CVE-2017-7546 + + + CVE-2017-7547 + + + CVE-2017-7548 + + + BlueKnight + chrisadr +
diff --git a/metadata/glsa/glsa-201710-07.xml b/metadata/glsa/glsa-201710-07.xml new file mode 100644 index 000000000000..8f01fb85b89f --- /dev/null +++ b/metadata/glsa/glsa-201710-07.xml @@ -0,0 +1,54 @@ + + + + OCaml: Privilege escalation + A vulnerability in OCaml may allow local users to gain root + privileges. + + + ocaml + 2017-10-08 + 2017-10-08: 1 + 622544 + remote + + + 4.04.2 + 4.04.2 + + + +

OCaml is a high-level, strongly-typed, functional, and object-oriented + programming language from the ML family of languages. +

+
+ +

A bad sanitization of environment variables: CAML_CPLUGINS, + CAML_NATIVE_CPLUGINS and CAML_BYTE_CPLUGINS in the OCaml compiler allows + the execution of raised privileges via external code. +

+
+ +

A local attacker, by using specially crafted environment variables, + could possibly escalate privileges to the root group. +

+
+ +

There is no known workaround at this time.

+
+ +

All OCaml users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-lang/ocaml-4.04.2" + +
+ + + CVE-2017-9772 + + + b-man + chrisadr +
diff --git a/metadata/glsa/glsa-201710-08.xml b/metadata/glsa/glsa-201710-08.xml new file mode 100644 index 000000000000..ea0a9f6277de --- /dev/null +++ b/metadata/glsa/glsa-201710-08.xml @@ -0,0 +1,56 @@ + + + + Pacemaker: Multiple vulnerabilities + Multiple vulnerabilities have been found in Pacemaker, the worst of + which could result in the execution of arbitrary code. + + pacemaker + 2017-10-08 + 2017-10-08: 1 + 546550 + 599194 + local, remote + + + 1.1.16 + 1.1.16 + + + +

Pacemaker is an Open Source, High Availability resource manager suitable + for both small and large clusters. +

+
+ +

Multiple vulnerabilities have been discovered in Pacemaker. Please + review the referenced CVE identifiers for details. +

+
+ +

A remote attacker could execute arbitrary code or a local attacker could + escalate privileges. +

+
+ +

There is no known workaround at this time.

+
+ +

All Pacemaker users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=sys-cluster/pacemaker-1.1.16 " + +
+ + + CVE-2015-1867 + + + CVE-2016-7035 + + + BlueKnight + chrisadr +
diff --git a/metadata/glsa/glsa-201710-09.xml b/metadata/glsa/glsa-201710-09.xml new file mode 100644 index 000000000000..09e2c7dce9f2 --- /dev/null +++ b/metadata/glsa/glsa-201710-09.xml @@ -0,0 +1,66 @@ + + + + PCRE2: Multiple vulnerabilities + Multiple vulnerabilities have been found in PCRE2, the worst of + which may allow remote attackers to execute arbitrary code. + + libpcre2 + 2017-10-08 + 2017-10-08: 1 + 614050 + 617942 + 617944 + remote + + + 10.30 + 10.30 + + + +

PCRE2 is a project based on PCRE (Perl Compatible Regular Expressions) + which has a new and revised API. +

+
+ +

Multiple vulnerabilities have been discovered in PCRE2. Please review + the referenced CVE identifiers for details. +

+ +
+ +

A remote attacker could possibly execute arbitrary code with the + privileges of the process, cause a Denial of Service condition, or have + other unspecified impacts. +

+
+ +

There is no known workaround at this time.

+
+ +

All PCRE2 users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-libs/libpcre2-10.30" + + +

Packages which depend on this library may need to be recompiled. Tools + such as revdep-rebuild may assist in identifying some of these packages. +

+
+ + + CVE-2017-7186 + + + CVE-2017-8399 + + + CVE-2017-8786 + + + chrisadr + chrisadr +
diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index d300cc627aef..c58a2295242e 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sat, 07 Oct 2017 22:10:09 +0000 +Mon, 09 Oct 2017 06:08:55 +0000 diff --git a/metadata/glsa/timestamp.commit b/metadata/glsa/timestamp.commit index 575e1f341cef..9a85e6814080 100644 --- a/metadata/glsa/timestamp.commit +++ b/metadata/glsa/timestamp.commit @@ -1 +1 @@ -a1ab9225f014c12703d38a47822edddfddb007ce 1507386315 2017-10-07T14:25:15+00:00 +6563aef7bcf2b256b39e321f440df3efe76f81f4 1507473808 2017-10-08T14:43:28+00:00 diff --git a/metadata/md5-cache/app-backup/burp-2.1.20 b/metadata/md5-cache/app-backup/burp-2.1.20 new file mode 100644 index 000000000000..9b574663b4fc --- /dev/null +++ b/metadata/md5-cache/app-backup/burp-2.1.20 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=dev-libs/uthash net-libs/librsync sys-libs/ncurses:0= sys-libs/zlib !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) acl? ( sys-apps/acl ) xattr? ( sys-apps/attr ) virtual/pkgconfig test? ( dev-libs/check ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DESCRIPTION=Network backup and restore client and server for Unix and Windows +EAPI=6 +HOMEPAGE=http://burp.grke.org/ +IUSE=acl ipv6 libressl test xattr +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=AGPL-3 +RDEPEND=dev-libs/uthash net-libs/librsync sys-libs/ncurses:0= sys-libs/zlib !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) acl? ( sys-apps/acl ) xattr? ( sys-apps/attr ) virtual/logger kernel_linux? ( virtual/tmpfiles ) +SLOT=0 +SRC_URI=https://github.com/grke/burp/archive/2.1.20.tar.gz -> burp-2.1.20.tar.gz +_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 tmpfiles 1e504fdcf4f24aeded1ce42600307f76 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=606bf02499069cd1ec69dcf3d1c6fc2f diff --git a/metadata/md5-cache/app-benchmarks/sysbench-1.0.9 b/metadata/md5-cache/app-benchmarks/sysbench-1.0.9 new file mode 100644 index 000000000000..7559fb1f8fa2 --- /dev/null +++ b/metadata/md5-cache/app-benchmarks/sysbench-1.0.9 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure prepare test +DEPEND=aio? ( dev-libs/libaio ) mysql? ( virtual/libmysqlclient ) postgres? ( dev-db/postgresql:= ) app-editors/vim-core dev-lang/luajit:= dev-libs/concurrencykit dev-libs/libxslt sys-devel/libtool:= virtual/pkgconfig test? ( dev-util/cram ) +DESCRIPTION=System performance benchmark +EAPI=6 +HOMEPAGE=https://github.com/akopytov/sysbench +IUSE=aio mysql postgres test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ +RDEPEND=aio? ( dev-libs/libaio ) mysql? ( virtual/libmysqlclient ) postgres? ( dev-db/postgresql:= ) +SLOT=0 +SRC_URI=https://github.com/akopytov/sysbench/archive/1.0.9.tar.gz -> sysbench-1.0.9.tar.gz +_eclasses_=pax-utils 4f95120230a315c8caaabeb2307b7eee +_md5_=6e1af1fc5f6ea8f3185eb3e1816c6e5a diff --git a/metadata/md5-cache/app-crypt/pdfcrack-0.16 b/metadata/md5-cache/app-crypt/pdfcrack-0.16 new file mode 100644 index 000000000000..bacb95500845 --- /dev/null +++ b/metadata/md5-cache/app-crypt/pdfcrack-0.16 @@ -0,0 +1,10 @@ +DEFINED_PHASES=compile install +DESCRIPTION=Tool for recovering passwords and content from PDF-files +EAPI=6 +HOMEPAGE=http://pdfcrack.sourceforge.net/ +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=mirror://sourceforge/pdfcrack/pdfcrack-0.16.tar.gz +_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=584e219995c18710ce5e89988218641c diff --git a/metadata/md5-cache/app-editors/juffed-0.10-r1 b/metadata/md5-cache/app-editors/juffed-0.10-r1 index 375397f384fd..0cda7cdae162 100644 --- a/metadata/md5-cache/app-editors/juffed-0.10-r1 +++ b/metadata/md5-cache/app-editors/juffed-0.10-r1 @@ -10,4 +10,4 @@ RDEPEND=app-i18n/enca dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtsingleapplication[ SLOT=0 SRC_URI=mirror://sourceforge/juffed/juffed-0.10-1054.tar.bz2 _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=54516b0967b6cc3d9eea9dee4e16a85b +_md5_=f0ee20283939e1dafa2dac2d11091ae1 diff --git a/metadata/md5-cache/app-editors/juffed-0.10_p20160323 b/metadata/md5-cache/app-editors/juffed-0.10_p20160323 new file mode 100644 index 000000000000..f8eaf5f0cfee --- /dev/null +++ b/metadata/md5-cache/app-editors/juffed-0.10_p20160323 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=app-i18n/enca dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsingleapplication[qt5,X] dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=x11-libs/qscintilla-2.9.4:=[qt5(+)] sys-devel/make >=dev-util/cmake-3.7.2 +DESCRIPTION=QScintilla-based tabbed text editor with syntax highlighting +EAPI=6 +HOMEPAGE=http://juffed.com/en/ +IUSE=debug +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=app-i18n/enca dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsingleapplication[qt5,X] dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=x11-libs/qscintilla-2.9.4:=[qt5(+)] +SLOT=0 +SRC_URI=https://github.com/Mezomish/juffed/tarball/5ba17f90ec173e773470bc80ea26bca9a3f093fd -> juffed-0.10_p20160323.tar.gz +_eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af vcs-snapshot 03289f51c769cf409d200d2d628cdd6e versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=62274f9ab8a7a814b4c433cdbb03582a diff --git a/metadata/md5-cache/app-i18n/uchardet-0.0.6 b/metadata/md5-cache/app-i18n/uchardet-0.0.6 index 9f078c158335..2e1e1b7b8663 100644 --- a/metadata/md5-cache/app-i18n/uchardet-0.0.6 +++ b/metadata/md5-cache/app-i18n/uchardet-0.0.6 @@ -9,4 +9,4 @@ LICENSE=|| ( MPL-1.1 GPL-2+ LGPL-2.1+ ) SLOT=0 SRC_URI=https://www.freedesktop.org/software/uchardet/releases/uchardet-0.0.6.tar.xz _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=6cdaa02d1476fa435caefdd83bc52d53 +_md5_=ccb5134d6b22c1ac40c714e4ed8199ea diff --git a/metadata/md5-cache/app-misc/byobu-5.122 b/metadata/md5-cache/app-misc/byobu-5.122 index 6aded1ae4f88..2667916d5884 100644 --- a/metadata/md5-cache/app-misc/byobu-5.122 +++ b/metadata/md5-cache/app-misc/byobu-5.122 @@ -3,11 +3,11 @@ DESCRIPTION=A set of profiles for the GNU Screen console window manager (app-mis EAPI=6 HOMEPAGE=http://byobu.co IUSE=screen python_targets_python2_7 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-libs/newt[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] screen? ( app-misc/screen ) !screen? ( app-misc/tmux ) REQUIRED_USE=python_targets_python2_7 SLOT=0 SRC_URI=https://launchpad.net/byobu/trunk/5.122/+download/byobu_5.122.orig.tar.gz _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=a0eb2ed40d1e92060ed79cc820e32e12 +_md5_=7e0a42a01b049c46d91155c5ec6273b5 diff --git a/metadata/md5-cache/app-misc/byobu-5.119 b/metadata/md5-cache/app-misc/byobu-5.123 similarity index 89% rename from metadata/md5-cache/app-misc/byobu-5.119 rename to metadata/md5-cache/app-misc/byobu-5.123 index 522b344e1dfd..2ab05d359a79 100644 --- a/metadata/md5-cache/app-misc/byobu-5.119 +++ b/metadata/md5-cache/app-misc/byobu-5.123 @@ -3,11 +3,11 @@ DESCRIPTION=A set of profiles for the GNU Screen console window manager (app-mis EAPI=6 HOMEPAGE=http://byobu.co IUSE=screen python_targets_python2_7 -KEYWORDS=amd64 x86 +KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-libs/newt[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] screen? ( app-misc/screen ) !screen? ( app-misc/tmux ) REQUIRED_USE=python_targets_python2_7 SLOT=0 -SRC_URI=https://launchpad.net/byobu/trunk/5.119/+download/byobu_5.119.orig.tar.gz +SRC_URI=https://launchpad.net/byobu/trunk/5.123/+download/byobu_5.123.orig.tar.gz _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=7e0a42a01b049c46d91155c5ec6273b5 +_md5_=a0eb2ed40d1e92060ed79cc820e32e12 diff --git a/metadata/md5-cache/app-office/libreoffice-5.3.4.2 b/metadata/md5-cache/app-office/libreoffice-5.3.4.2 deleted file mode 100644 index ea26a780c322..000000000000 --- a/metadata/md5-cache/app-office/libreoffice-5.3.4.2 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] app-arch/unzip app-arch/zip app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl dev-libs/boost:= dev-libs/expat dev-libs/hyphen dev-libs/icu:= =dev-libs/liborcus-0.12* dev-libs/librevenge dev-libs/nspr dev-libs/nss !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= media-libs/harfbuzz:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve x11-libs/cairo[X,-xlib-xcb(-)] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/jpeg:0 virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( media-libs/opencollada ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1 ) gltf? ( =media-libs/libgltf-0.0* ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection x11-libs/gtk+:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-1.2.2:1= media-libs/glm sys-devel/bison sys-devel/flex sys-devel/gettext sys-devel/ucpp sys-libs/zlib virtual/pkgconfig x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( dev-java/ant-core >=virtual/jdk-1.6 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) >=sys-apps/sed-4 kde? ( dev-util/automoc virtual/pkgconfig >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) kde? ( dev-lang/perl >=dev-qt/designer-4.8.5:4 >=dev-qt/qtcore-4.8.5:4[ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 kde-frameworks/kdelibs:4 ) -DESCRIPTION=A full office productivity suite -EAPI=6 -HOMEPAGE=https://www.libreoffice.org -IUSE=bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome googledrive gstreamer +gtk gtk3 jemalloc kde libressl mysql odk pdfimport postgres quickstarter telepathy test vlc libreoffice_extensions_nlpsolver libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher elibc_FreeBSD java kde python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 -KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux -LICENSE=|| ( LGPL-3 MPL-1.1 ) -PDEPEND==app-office/libreoffice-l10n-5.3* -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] app-arch/unzip app-arch/zip app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl dev-libs/boost:= dev-libs/expat dev-libs/hyphen dev-libs/icu:= =dev-libs/liborcus-0.12* dev-libs/librevenge dev-libs/nspr dev-libs/nss !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= media-libs/harfbuzz:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve x11-libs/cairo[X,-xlib-xcb(-)] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/jpeg:0 virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( media-libs/opencollada ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1 ) gltf? ( =media-libs/libgltf-0.0* ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection x11-libs/gtk+:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/liberation-fonts media-fonts/libertine || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools >=kde-apps/kioclient-4.4:4 ) java? ( >=virtual/jre-1.6 ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/designer-4.8.5:4 >=dev-qt/qtcore-4.8.5:4[ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 kde-frameworks/kdelibs:4 ) -REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) bluetooth? ( dbus ) collada? ( gltf ) eds? ( gnome ) gnome? ( gtk ) telepathy? ( gtk ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) -SLOT=0 -SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-5.3.4.2.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-5.3.4.2.tar.xz https://download.documentfoundation.org/libreoffice/src/5.3.4//libreoffice-5.3.4.2.tar.xz https://download.documentfoundation.org/libreoffice/src/5.3.4//libreoffice-help-5.3.4.2.tar.xz https://download.documentfoundation.org/libreoffice/old/5.3.4.2//libreoffice-5.3.4.2.tar.xz https://download.documentfoundation.org/libreoffice/old/5.3.4.2//libreoffice-help-5.3.4.2.tar.xz https://dev-www.libreoffice.org/src//86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz collada? ( https://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 check-reqs bd050ce908e4637604ee604ed4b78e8f epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 fdo-mime 995b19d3f30e956b4e1bc5a91fdc4ea7 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 gnome2-utils 4d211d7614f303710fca59db6ec12c88 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd kde4-base 4dd1bbb7aed9ca9a21e3dc940cbd2ce7 kde4-functions 5d5c723ca3cbd3a92b826a68c3729969 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e pax-utils 4f95120230a315c8caaabeb2307b7eee python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=998039082c40b5388f04c48e0b32fe2e diff --git a/metadata/md5-cache/app-office/libreoffice-5.4.0.3 b/metadata/md5-cache/app-office/libreoffice-5.4.2.2 similarity index 92% rename from metadata/md5-cache/app-office/libreoffice-5.4.0.3 rename to metadata/md5-cache/app-office/libreoffice-5.4.2.2 index fff9fb282694..6bed6a45e025 100644 --- a/metadata/md5-cache/app-office/libreoffice-5.4.0.3 +++ b/metadata/md5-cache/app-office/libreoffice-5.4.2.2 @@ -7,9 +7,9 @@ IUSE=bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux LICENSE=|| ( LGPL-3 MPL-1.1 ) PDEPEND==app-office/libreoffice-l10n-5.4* -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] app-arch/unzip app-arch/zip app-crypt/gpgme[cxx] app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl dev-libs/boost:= dev-libs/expat dev-libs/hyphen dev-libs/icu:= dev-libs/libassuan dev-libs/libgpg-error =dev-libs/liborcus-0.12* dev-libs/librevenge dev-libs/nspr dev-libs/nss !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 >=dev-libs/xmlsec-1.2.24[nss] media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/harfbuzz-0.9.42:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libepoxy-1.3.1 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve x11-libs/cairo[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/jpeg:0 virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( media-libs/opencollada ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1 ) gltf? ( >=media-libs/libgltf-0.1.0 ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection x11-libs/gtk+:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/dejavu media-fonts/liberation-fonts media-fonts/libertine || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools >=kde-apps/kioclient-4.4:4 ) java? ( >=virtual/jre-1.6 ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/designer-4.8.5:4 >=dev-qt/qtcore-4.8.5:4[ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 kde-frameworks/kdelibs:4 ) +RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] app-arch/unzip app-arch/zip app-crypt/gpgme[cxx] app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl dev-libs/boost:= dev-libs/expat dev-libs/hyphen dev-libs/icu:= dev-libs/libassuan dev-libs/libgpg-error =dev-libs/liborcus-0.12* dev-libs/librevenge dev-libs/nspr dev-libs/nss !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 >=dev-libs/xmlsec-1.2.24[nss] media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/harfbuzz-0.9.42:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libepoxy-1.3.1 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve x11-libs/cairo[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/jpeg:0 virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( media-libs/opencollada ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1 ) gltf? ( >=media-libs/libgltf-0.1.0 ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection x11-libs/gtk+:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/dejavu media-fonts/liberation-fonts media-fonts/libertine || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools ) java? ( >=virtual/jre-1.6 ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/designer-4.8.5:4 >=dev-qt/qtcore-4.8.5:4[ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 kde-frameworks/kdelibs:4 ) REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) bluetooth? ( dbus ) collada? ( gltf ) eds? ( gnome ) gnome? ( gtk ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 -SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-5.4.0.3.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-5.4.0.3.tar.xz https://download.documentfoundation.org/libreoffice/src/5.4.0//libreoffice-5.4.0.3.tar.xz https://download.documentfoundation.org/libreoffice/src/5.4.0//libreoffice-help-5.4.0.3.tar.xz https://download.documentfoundation.org/libreoffice/old/5.4.0.3//libreoffice-5.4.0.3.tar.xz https://download.documentfoundation.org/libreoffice/old/5.4.0.3//libreoffice-help-5.4.0.3.tar.xz collada? ( https://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) +SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-5.4.2.2.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-5.4.2.2.tar.xz https://download.documentfoundation.org/libreoffice/src/5.4.2//libreoffice-5.4.2.2.tar.xz https://download.documentfoundation.org/libreoffice/src/5.4.2//libreoffice-help-5.4.2.2.tar.xz https://download.documentfoundation.org/libreoffice/old/5.4.2.2//libreoffice-5.4.2.2.tar.xz https://download.documentfoundation.org/libreoffice/old/5.4.2.2//libreoffice-help-5.4.2.2.tar.xz collada? ( https://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 check-reqs bd050ce908e4637604ee604ed4b78e8f epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 fdo-mime 995b19d3f30e956b4e1bc5a91fdc4ea7 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 gnome2-utils 4d211d7614f303710fca59db6ec12c88 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd kde4-base 4dd1bbb7aed9ca9a21e3dc940cbd2ce7 kde4-functions 5d5c723ca3cbd3a92b826a68c3729969 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e pax-utils 4f95120230a315c8caaabeb2307b7eee python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=e9ae38f95596d4b4d2e1fc32f414a854 +_md5_=0ef779a1f54afc4475906d5747cc6a0a diff --git a/metadata/md5-cache/app-office/libreoffice-5.4.9999 b/metadata/md5-cache/app-office/libreoffice-5.4.9999 index f9ea38869f6a..2f3a2bfb9093 100644 --- a/metadata/md5-cache/app-office/libreoffice-5.4.9999 +++ b/metadata/md5-cache/app-office/libreoffice-5.4.9999 @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 SLOT=0 SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) collada? ( https://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 check-reqs bd050ce908e4637604ee604ed4b78e8f epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 fdo-mime 995b19d3f30e956b4e1bc5a91fdc4ea7 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 git-r3 52a888802d25387c2c74cb845d1219bc gnome2-utils 4d211d7614f303710fca59db6ec12c88 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd kde4-base 4dd1bbb7aed9ca9a21e3dc940cbd2ce7 kde4-functions 5d5c723ca3cbd3a92b826a68c3729969 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e pax-utils 4f95120230a315c8caaabeb2307b7eee python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=ce00e7dda82f559664c7e18edfcec8df +_md5_=3aa1c412f8c47b356492da05040099f3 diff --git a/metadata/md5-cache/app-office/libreoffice-9999 b/metadata/md5-cache/app-office/libreoffice-9999 index d5d4160da074..4d608c25aec9 100644 --- a/metadata/md5-cache/app-office/libreoffice-9999 +++ b/metadata/md5-cache/app-office/libreoffice-9999 @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 SLOT=0 SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev-www.libreoffice.org/src//libepubgen-0.0.1.tar.bz2 collada? ( https://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 check-reqs bd050ce908e4637604ee604ed4b78e8f epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 fdo-mime 995b19d3f30e956b4e1bc5a91fdc4ea7 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 git-r3 52a888802d25387c2c74cb845d1219bc gnome2-utils 4d211d7614f303710fca59db6ec12c88 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd kde4-base 4dd1bbb7aed9ca9a21e3dc940cbd2ce7 kde4-functions 5d5c723ca3cbd3a92b826a68c3729969 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e pax-utils 4f95120230a315c8caaabeb2307b7eee python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=964c918525cfec5f518b269925a23306 +_md5_=dc67347c44d5621489c6fd14a10ce4e7 diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-5.3.4.2 b/metadata/md5-cache/app-office/libreoffice-l10n-5.3.4.2 deleted file mode 100644 index d4b3f4774ea8..000000000000 --- a/metadata/md5-cache/app-office/libreoffice-l10n-5.3.4.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=>=app-arch/rpm2targz-9.0.0.3g -DESCRIPTION=Translations for the Libreoffice suite -EAPI=6 -HOMEPAGE=http://www.libreoffice.org -IUSE=offlinehelp l10n_am l10n_ast l10n_bg l10n_bn-IN l10n_bn l10n_bo l10n_bs l10n_ca-valencia l10n_ca l10n_cs l10n_da l10n_de l10n_dz l10n_el l10n_en-GB l10n_en l10n_en-ZA l10n_eo l10n_es l10n_et l10n_eu l10n_fi l10n_fr l10n_gl l10n_gu l10n_he l10n_hi l10n_hr l10n_hu l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_km l10n_ko l10n_mk l10n_nb l10n_ne l10n_nl l10n_nn l10n_om l10n_pl l10n_pt-BR l10n_pt l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sv l10n_tg l10n_tr l10n_ug l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW l10n_af l10n_ar l10n_as l10n_be l10n_br l10n_brx l10n_cy l10n_dgo l10n_fa l10n_ga l10n_gd l10n_gug l10n_kk l10n_kmr-Latn l10n_kn l10n_kok l10n_ks l10n_lb l10n_lo l10n_lt l10n_lv l10n_mai l10n_ml l10n_mn l10n_mni l10n_mr l10n_my l10n_nr l10n_nso l10n_oc l10n_or l10n_pa l10n_ro l10n_rw l10n_sa l10n_sat l10n_sd l10n_sid l10n_sr-Latn l10n_sr l10n_ss l10n_st l10n_sw-TZ l10n_ta l10n_te l10n_th l10n_tn l10n_ts l10n_tt l10n_uz l10n_ve l10n_xh l10n_zu -KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux -LICENSE=|| ( LGPL-3 MPL-1.1 ) -RDEPEND=app-text/hunspell -RESTRICT=strip -SLOT=0 -SRC_URI=l10n_am? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_am.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_am.tar.gz ) ) l10n_ast? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ast.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ast.tar.gz ) ) l10n_bg? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bg.tar.gz ) ) l10n_bn-IN? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bn-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bn-IN.tar.gz ) ) l10n_bn? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bn.tar.gz ) ) l10n_bo? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bo.tar.gz ) ) l10n_bs? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_bs.tar.gz ) ) l10n_ca-valencia? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz ) ) l10n_ca? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ca.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ca.tar.gz ) ) l10n_cs? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_cs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_cs.tar.gz ) ) l10n_da? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_da.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_da.tar.gz ) ) l10n_de? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_de.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_de.tar.gz ) ) l10n_dz? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_dz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_dz.tar.gz ) ) l10n_el? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_el.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_el.tar.gz ) ) l10n_en-GB? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-GB.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-GB.tar.gz ) ) l10n_en? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-US.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-US.tar.gz ) ) l10n_en-ZA? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-ZA.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_en-ZA.tar.gz ) ) l10n_eo? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_eo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_eo.tar.gz ) ) l10n_es? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_es.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_es.tar.gz ) ) l10n_et? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_et.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_et.tar.gz ) ) l10n_eu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_eu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_eu.tar.gz ) ) l10n_fi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_fi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_fi.tar.gz ) ) l10n_fr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_fr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_fr.tar.gz ) ) l10n_gl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_gl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_gl.tar.gz ) ) l10n_gu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_gu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_gu.tar.gz ) ) l10n_he? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_he.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_he.tar.gz ) ) l10n_hi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hi.tar.gz ) ) l10n_hr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hr.tar.gz ) ) l10n_hu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_hu.tar.gz ) ) l10n_id? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_id.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_id.tar.gz ) ) l10n_is? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_is.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_is.tar.gz ) ) l10n_it? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_it.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_it.tar.gz ) ) l10n_ja? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ja.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ja.tar.gz ) ) l10n_ka? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ka.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ka.tar.gz ) ) l10n_km? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_km.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_km.tar.gz ) ) l10n_ko? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ko.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ko.tar.gz ) ) l10n_mk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_mk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_mk.tar.gz ) ) l10n_nb? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nb.tar.gz ) ) l10n_ne? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ne.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ne.tar.gz ) ) l10n_nl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nl.tar.gz ) ) l10n_nn? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_nn.tar.gz ) ) l10n_om? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_om.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_om.tar.gz ) ) l10n_pl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pl.tar.gz ) ) l10n_pt-BR? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pt-BR.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pt-BR.tar.gz ) ) l10n_pt? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_pt.tar.gz ) ) l10n_ru? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ru.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ru.tar.gz ) ) l10n_si? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_si.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_si.tar.gz ) ) l10n_sk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sk.tar.gz ) ) l10n_sl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sl.tar.gz ) ) l10n_sq? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sq.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sq.tar.gz ) ) l10n_sv? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_sv.tar.gz ) ) l10n_tg? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_tg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_tg.tar.gz ) ) l10n_tr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_tr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_tr.tar.gz ) ) l10n_ug? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_ug.tar.gz ) ) l10n_uk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_uk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_uk.tar.gz ) ) l10n_vi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_vi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_vi.tar.gz ) ) l10n_zh-CN? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_zh-CN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_zh-CN.tar.gz ) ) l10n_zh-TW? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_zh-TW.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_helppack_zh-TW.tar.gz ) ) l10n_am? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_am.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_am.tar.gz ) l10n_ast? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ast.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ast.tar.gz ) l10n_bg? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bg.tar.gz ) l10n_bn-IN? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bn-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bn-IN.tar.gz ) l10n_bn? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bn.tar.gz ) l10n_bo? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bo.tar.gz ) l10n_bs? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_bs.tar.gz ) l10n_ca-valencia? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz ) l10n_ca? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ca.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ca.tar.gz ) l10n_cs? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_cs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_cs.tar.gz ) l10n_da? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_da.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_da.tar.gz ) l10n_de? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_de.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_de.tar.gz ) l10n_dz? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_dz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_dz.tar.gz ) l10n_el? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_el.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_el.tar.gz ) l10n_en-GB? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_en-GB.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_en-GB.tar.gz ) l10n_en-ZA? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_en-ZA.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_en-ZA.tar.gz ) l10n_eo? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_eo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_eo.tar.gz ) l10n_es? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_es.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_es.tar.gz ) l10n_et? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_et.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_et.tar.gz ) l10n_eu? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_eu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_eu.tar.gz ) l10n_fi? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fi.tar.gz ) l10n_fr? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fr.tar.gz ) l10n_gl? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gl.tar.gz ) l10n_gu? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gu.tar.gz ) l10n_he? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_he.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_he.tar.gz ) l10n_hi? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hi.tar.gz ) l10n_hr? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hr.tar.gz ) l10n_hu? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_hu.tar.gz ) l10n_id? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_id.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_id.tar.gz ) l10n_is? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_is.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_is.tar.gz ) l10n_it? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_it.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_it.tar.gz ) l10n_ja? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ja.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ja.tar.gz ) l10n_ka? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ka.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ka.tar.gz ) l10n_km? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_km.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_km.tar.gz ) l10n_ko? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ko.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ko.tar.gz ) l10n_mk? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mk.tar.gz ) l10n_nb? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nb.tar.gz ) l10n_ne? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ne.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ne.tar.gz ) l10n_nl? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nl.tar.gz ) l10n_nn? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nn.tar.gz ) l10n_om? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_om.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_om.tar.gz ) l10n_pl? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pl.tar.gz ) l10n_pt-BR? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pt-BR.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pt-BR.tar.gz ) l10n_pt? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pt.tar.gz ) l10n_ru? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ru.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ru.tar.gz ) l10n_si? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_si.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_si.tar.gz ) l10n_sk? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sk.tar.gz ) l10n_sl? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sl.tar.gz ) l10n_sq? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sq.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sq.tar.gz ) l10n_sv? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sv.tar.gz ) l10n_tg? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tg.tar.gz ) l10n_tr? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tr.tar.gz ) l10n_ug? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ug.tar.gz ) l10n_uk? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_uk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_uk.tar.gz ) l10n_vi? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_vi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_vi.tar.gz ) l10n_zh-CN? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zh-CN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zh-CN.tar.gz ) l10n_zh-TW? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zh-TW.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zh-TW.tar.gz ) l10n_af? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_af.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_af.tar.gz ) l10n_ar? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ar.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ar.tar.gz ) l10n_as? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_as.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_as.tar.gz ) l10n_be? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_be.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_be.tar.gz ) l10n_br? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_br.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_br.tar.gz ) l10n_brx? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_brx.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_brx.tar.gz ) l10n_cy? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_cy.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_cy.tar.gz ) l10n_dgo? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_dgo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_dgo.tar.gz ) l10n_fa? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fa.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_fa.tar.gz ) l10n_ga? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ga.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ga.tar.gz ) l10n_gd? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gd.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gd.tar.gz ) l10n_gug? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_gug.tar.gz ) l10n_kk? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kk.tar.gz ) l10n_kmr-Latn? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz ) l10n_kn? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kn.tar.gz ) l10n_kok? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kok.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_kok.tar.gz ) l10n_ks? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ks.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ks.tar.gz ) l10n_lb? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lb.tar.gz ) l10n_lo? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lo.tar.gz ) l10n_lt? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lt.tar.gz ) l10n_lv? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_lv.tar.gz ) l10n_mai? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mai.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mai.tar.gz ) l10n_ml? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ml.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ml.tar.gz ) l10n_mn? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mn.tar.gz ) l10n_mni? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mni.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mni.tar.gz ) l10n_mr? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_mr.tar.gz ) l10n_my? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_my.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_my.tar.gz ) l10n_nr? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nr.tar.gz ) l10n_nso? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nso.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_nso.tar.gz ) l10n_oc? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_oc.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_oc.tar.gz ) l10n_or? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_or.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_or.tar.gz ) l10n_pa? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pa-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_pa-IN.tar.gz ) l10n_ro? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ro.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ro.tar.gz ) l10n_rw? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_rw.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_rw.tar.gz ) l10n_sa? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sa-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sa-IN.tar.gz ) l10n_sat? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sat.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sat.tar.gz ) l10n_sd? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sd.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sd.tar.gz ) l10n_sid? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sid.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sid.tar.gz ) l10n_sr-Latn? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz ) l10n_sr? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sr.tar.gz ) l10n_ss? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ss.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ss.tar.gz ) l10n_st? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_st.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_st.tar.gz ) l10n_sw-TZ? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz ) l10n_ta? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ta.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ta.tar.gz ) l10n_te? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_te.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_te.tar.gz ) l10n_th? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_th.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_th.tar.gz ) l10n_tn? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tn.tar.gz ) l10n_ts? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ts.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ts.tar.gz ) l10n_tt? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_tt.tar.gz ) l10n_uz? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_uz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_uz.tar.gz ) l10n_ve? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ve.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_ve.tar.gz ) l10n_xh? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_xh.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_xh.tar.gz ) l10n_zu? ( http://download.documentfoundation.org/libreoffice/stable/5.3.4/rpm/x86/LibreOffice_5.3.4_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.3.4/rpm/x86/LibreOffice_5.3.4.2_Linux_x86_rpm_langpack_zu.tar.gz ) -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e rpm f52cfa3a435468d86d3b49c357b9cb35 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=0a0e3b57841fec91bfe5de8fff76d3ba diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-5.4.0.3 b/metadata/md5-cache/app-office/libreoffice-l10n-5.4.0.3 deleted file mode 100644 index 0e16d74563e8..000000000000 --- a/metadata/md5-cache/app-office/libreoffice-l10n-5.4.0.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=>=app-arch/rpm2targz-9.0.0.3g -DESCRIPTION=Translations for the Libreoffice suite -EAPI=6 -HOMEPAGE=http://www.libreoffice.org -IUSE=offlinehelp l10n_am l10n_ast l10n_bg l10n_bn-IN l10n_bn l10n_bo l10n_bs l10n_ca-valencia l10n_ca l10n_cs l10n_da l10n_de l10n_dz l10n_el l10n_en-GB l10n_en l10n_en-ZA l10n_eo l10n_es l10n_et l10n_eu l10n_fi l10n_fr l10n_gl l10n_gu l10n_he l10n_hi l10n_hr l10n_hu l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_km l10n_ko l10n_mk l10n_nb l10n_ne l10n_nl l10n_nn l10n_om l10n_pl l10n_pt-BR l10n_pt l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sv l10n_tg l10n_tr l10n_ug l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW l10n_af l10n_ar l10n_as l10n_be l10n_br l10n_brx l10n_cy l10n_dgo l10n_fa l10n_ga l10n_gd l10n_gug l10n_kk l10n_kmr-Latn l10n_kn l10n_kok l10n_ks l10n_lb l10n_lo l10n_lt l10n_lv l10n_mai l10n_ml l10n_mn l10n_mni l10n_mr l10n_my l10n_nr l10n_nso l10n_oc l10n_or l10n_pa l10n_ro l10n_rw l10n_sa l10n_sat l10n_sd l10n_sid l10n_sr-Latn l10n_sr l10n_ss l10n_st l10n_sw-TZ l10n_ta l10n_te l10n_th l10n_tn l10n_ts l10n_tt l10n_uz l10n_ve l10n_xh l10n_zu -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=|| ( LGPL-3 MPL-1.1 ) -RDEPEND=app-text/hunspell -RESTRICT=strip -SLOT=0 -SRC_URI=l10n_am? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_am.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_am.tar.gz ) ) l10n_ast? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ast.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ast.tar.gz ) ) l10n_bg? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bg.tar.gz ) ) l10n_bn-IN? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bn-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bn-IN.tar.gz ) ) l10n_bn? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bn.tar.gz ) ) l10n_bo? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bo.tar.gz ) ) l10n_bs? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_bs.tar.gz ) ) l10n_ca-valencia? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ca-valencia.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ca-valencia.tar.gz ) ) l10n_ca? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ca.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ca.tar.gz ) ) l10n_cs? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_cs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_cs.tar.gz ) ) l10n_da? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_da.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_da.tar.gz ) ) l10n_de? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_de.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_de.tar.gz ) ) l10n_dz? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_dz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_dz.tar.gz ) ) l10n_el? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_el.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_el.tar.gz ) ) l10n_en-GB? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-GB.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-GB.tar.gz ) ) l10n_en? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-US.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-US.tar.gz ) ) l10n_en-ZA? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-ZA.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_en-ZA.tar.gz ) ) l10n_eo? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_eo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_eo.tar.gz ) ) l10n_es? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_es.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_es.tar.gz ) ) l10n_et? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_et.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_et.tar.gz ) ) l10n_eu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_eu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_eu.tar.gz ) ) l10n_fi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_fi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_fi.tar.gz ) ) l10n_fr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_fr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_fr.tar.gz ) ) l10n_gl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_gl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_gl.tar.gz ) ) l10n_gu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_gu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_gu.tar.gz ) ) l10n_he? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_he.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_he.tar.gz ) ) l10n_hi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hi.tar.gz ) ) l10n_hr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hr.tar.gz ) ) l10n_hu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_hu.tar.gz ) ) l10n_id? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_id.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_id.tar.gz ) ) l10n_is? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_is.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_is.tar.gz ) ) l10n_it? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_it.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_it.tar.gz ) ) l10n_ja? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ja.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ja.tar.gz ) ) l10n_ka? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ka.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ka.tar.gz ) ) l10n_km? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_km.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_km.tar.gz ) ) l10n_ko? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ko.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ko.tar.gz ) ) l10n_mk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_mk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_mk.tar.gz ) ) l10n_nb? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nb.tar.gz ) ) l10n_ne? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ne.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ne.tar.gz ) ) l10n_nl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nl.tar.gz ) ) l10n_nn? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_nn.tar.gz ) ) l10n_om? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_om.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_om.tar.gz ) ) l10n_pl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pl.tar.gz ) ) l10n_pt-BR? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pt-BR.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pt-BR.tar.gz ) ) l10n_pt? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_pt.tar.gz ) ) l10n_ru? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ru.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ru.tar.gz ) ) l10n_si? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_si.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_si.tar.gz ) ) l10n_sk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sk.tar.gz ) ) l10n_sl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sl.tar.gz ) ) l10n_sq? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sq.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sq.tar.gz ) ) l10n_sv? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_sv.tar.gz ) ) l10n_tg? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_tg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_tg.tar.gz ) ) l10n_tr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_tr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_tr.tar.gz ) ) l10n_ug? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_ug.tar.gz ) ) l10n_uk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_uk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_uk.tar.gz ) ) l10n_vi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_vi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_vi.tar.gz ) ) l10n_zh-CN? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_zh-CN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_zh-CN.tar.gz ) ) l10n_zh-TW? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_zh-TW.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_helppack_zh-TW.tar.gz ) ) l10n_am? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_am.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_am.tar.gz ) l10n_ast? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ast.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ast.tar.gz ) l10n_bg? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bg.tar.gz ) l10n_bn-IN? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bn-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bn-IN.tar.gz ) l10n_bn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bn.tar.gz ) l10n_bo? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bo.tar.gz ) l10n_bs? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_bs.tar.gz ) l10n_ca-valencia? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ca-valencia.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ca-valencia.tar.gz ) l10n_ca? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ca.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ca.tar.gz ) l10n_cs? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_cs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_cs.tar.gz ) l10n_da? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_da.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_da.tar.gz ) l10n_de? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_de.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_de.tar.gz ) l10n_dz? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_dz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_dz.tar.gz ) l10n_el? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_el.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_el.tar.gz ) l10n_en-GB? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_en-GB.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_en-GB.tar.gz ) l10n_en-ZA? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_en-ZA.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_en-ZA.tar.gz ) l10n_eo? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_eo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_eo.tar.gz ) l10n_es? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_es.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_es.tar.gz ) l10n_et? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_et.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_et.tar.gz ) l10n_eu? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_eu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_eu.tar.gz ) l10n_fi? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fi.tar.gz ) l10n_fr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fr.tar.gz ) l10n_gl? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gl.tar.gz ) l10n_gu? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gu.tar.gz ) l10n_he? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_he.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_he.tar.gz ) l10n_hi? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hi.tar.gz ) l10n_hr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hr.tar.gz ) l10n_hu? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_hu.tar.gz ) l10n_id? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_id.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_id.tar.gz ) l10n_is? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_is.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_is.tar.gz ) l10n_it? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_it.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_it.tar.gz ) l10n_ja? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ja.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ja.tar.gz ) l10n_ka? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ka.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ka.tar.gz ) l10n_km? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_km.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_km.tar.gz ) l10n_ko? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ko.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ko.tar.gz ) l10n_mk? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mk.tar.gz ) l10n_nb? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nb.tar.gz ) l10n_ne? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ne.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ne.tar.gz ) l10n_nl? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nl.tar.gz ) l10n_nn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nn.tar.gz ) l10n_om? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_om.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_om.tar.gz ) l10n_pl? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pl.tar.gz ) l10n_pt-BR? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pt-BR.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pt-BR.tar.gz ) l10n_pt? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pt.tar.gz ) l10n_ru? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ru.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ru.tar.gz ) l10n_si? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_si.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_si.tar.gz ) l10n_sk? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sk.tar.gz ) l10n_sl? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sl.tar.gz ) l10n_sq? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sq.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sq.tar.gz ) l10n_sv? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sv.tar.gz ) l10n_tg? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tg.tar.gz ) l10n_tr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tr.tar.gz ) l10n_ug? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ug.tar.gz ) l10n_uk? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_uk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_uk.tar.gz ) l10n_vi? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_vi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_vi.tar.gz ) l10n_zh-CN? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zh-CN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zh-CN.tar.gz ) l10n_zh-TW? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zh-TW.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zh-TW.tar.gz ) l10n_af? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_af.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_af.tar.gz ) l10n_ar? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ar.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ar.tar.gz ) l10n_as? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_as.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_as.tar.gz ) l10n_be? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_be.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_be.tar.gz ) l10n_br? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_br.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_br.tar.gz ) l10n_brx? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_brx.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_brx.tar.gz ) l10n_cy? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_cy.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_cy.tar.gz ) l10n_dgo? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_dgo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_dgo.tar.gz ) l10n_fa? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fa.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_fa.tar.gz ) l10n_ga? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ga.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ga.tar.gz ) l10n_gd? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gd.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gd.tar.gz ) l10n_gug? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_gug.tar.gz ) l10n_kk? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kk.tar.gz ) l10n_kmr-Latn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kmr-Latn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kmr-Latn.tar.gz ) l10n_kn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kn.tar.gz ) l10n_kok? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kok.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_kok.tar.gz ) l10n_ks? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ks.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ks.tar.gz ) l10n_lb? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lb.tar.gz ) l10n_lo? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lo.tar.gz ) l10n_lt? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lt.tar.gz ) l10n_lv? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_lv.tar.gz ) l10n_mai? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mai.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mai.tar.gz ) l10n_ml? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ml.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ml.tar.gz ) l10n_mn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mn.tar.gz ) l10n_mni? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mni.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mni.tar.gz ) l10n_mr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_mr.tar.gz ) l10n_my? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_my.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_my.tar.gz ) l10n_nr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nr.tar.gz ) l10n_nso? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nso.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_nso.tar.gz ) l10n_oc? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_oc.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_oc.tar.gz ) l10n_or? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_or.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_or.tar.gz ) l10n_pa? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pa-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_pa-IN.tar.gz ) l10n_ro? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ro.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ro.tar.gz ) l10n_rw? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_rw.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_rw.tar.gz ) l10n_sa? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sa-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sa-IN.tar.gz ) l10n_sat? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sat.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sat.tar.gz ) l10n_sd? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sd.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sd.tar.gz ) l10n_sid? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sid.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sid.tar.gz ) l10n_sr-Latn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sr-Latn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sr-Latn.tar.gz ) l10n_sr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sr.tar.gz ) l10n_ss? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ss.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ss.tar.gz ) l10n_st? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_st.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_st.tar.gz ) l10n_sw-TZ? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sw-TZ.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_sw-TZ.tar.gz ) l10n_ta? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ta.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ta.tar.gz ) l10n_te? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_te.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_te.tar.gz ) l10n_th? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_th.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_th.tar.gz ) l10n_tn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tn.tar.gz ) l10n_ts? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ts.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ts.tar.gz ) l10n_tt? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_tt.tar.gz ) l10n_uz? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_uz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_uz.tar.gz ) l10n_ve? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ve.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_ve.tar.gz ) l10n_xh? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_xh.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_xh.tar.gz ) l10n_zu? ( http://download.documentfoundation.org/libreoffice/stable/5.4.0/rpm/x86/LibreOffice_5.4.0_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.0/rpm/x86/LibreOffice_5.4.0.3_Linux_x86_rpm_langpack_zu.tar.gz ) -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e rpm f52cfa3a435468d86d3b49c357b9cb35 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a56236a68f7a1724235b85bdb48e2880 diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-5.4.2.2 b/metadata/md5-cache/app-office/libreoffice-l10n-5.4.2.2 new file mode 100644 index 000000000000..112e29c45e78 --- /dev/null +++ b/metadata/md5-cache/app-office/libreoffice-l10n-5.4.2.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=>=app-arch/rpm2targz-9.0.0.3g +DESCRIPTION=Translations for the Libreoffice suite +EAPI=6 +HOMEPAGE=http://www.libreoffice.org +IUSE=offlinehelp l10n_am l10n_ast l10n_bg l10n_bn-IN l10n_bn l10n_bo l10n_bs l10n_ca-valencia l10n_ca l10n_cs l10n_da l10n_de l10n_dz l10n_el l10n_en-GB l10n_en l10n_en-ZA l10n_eo l10n_es l10n_et l10n_eu l10n_fi l10n_fr l10n_gl l10n_gu l10n_he l10n_hi l10n_hr l10n_hu l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_km l10n_ko l10n_mk l10n_nb l10n_ne l10n_nl l10n_nn l10n_om l10n_pl l10n_pt-BR l10n_pt l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sv l10n_tg l10n_tr l10n_ug l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW l10n_af l10n_ar l10n_as l10n_be l10n_br l10n_brx l10n_cy l10n_dgo l10n_fa l10n_ga l10n_gd l10n_gug l10n_kk l10n_kmr-Latn l10n_kn l10n_kok l10n_ks l10n_lb l10n_lo l10n_lt l10n_lv l10n_mai l10n_ml l10n_mn l10n_mni l10n_mr l10n_my l10n_nr l10n_nso l10n_oc l10n_or l10n_pa l10n_ro l10n_rw l10n_sa l10n_sat l10n_sd l10n_sid l10n_sr-Latn l10n_sr l10n_ss l10n_st l10n_sw-TZ l10n_ta l10n_te l10n_th l10n_tn l10n_ts l10n_tt l10n_uz l10n_ve l10n_xh l10n_zu +KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=|| ( LGPL-3 MPL-1.1 ) +RDEPEND=app-text/hunspell +RESTRICT=strip +SLOT=0 +SRC_URI=l10n_am? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_am.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_am.tar.gz ) ) l10n_ast? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ast.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ast.tar.gz ) ) l10n_bg? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bg.tar.gz ) ) l10n_bn-IN? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz ) ) l10n_bn? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bn.tar.gz ) ) l10n_bo? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bo.tar.gz ) ) l10n_bs? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bs.tar.gz ) ) l10n_ca-valencia? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz ) ) l10n_ca? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ca.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ca.tar.gz ) ) l10n_cs? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_cs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_cs.tar.gz ) ) l10n_da? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_da.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_da.tar.gz ) ) l10n_de? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_de.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_de.tar.gz ) ) l10n_dz? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_dz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_dz.tar.gz ) ) l10n_el? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_el.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_el.tar.gz ) ) l10n_en-GB? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-GB.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-GB.tar.gz ) ) l10n_en? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-US.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-US.tar.gz ) ) l10n_en-ZA? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-ZA.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_en-ZA.tar.gz ) ) l10n_eo? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_eo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_eo.tar.gz ) ) l10n_es? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_es.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_es.tar.gz ) ) l10n_et? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_et.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_et.tar.gz ) ) l10n_eu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_eu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_eu.tar.gz ) ) l10n_fi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_fi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_fi.tar.gz ) ) l10n_fr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_fr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_fr.tar.gz ) ) l10n_gl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_gl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_gl.tar.gz ) ) l10n_gu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_gu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_gu.tar.gz ) ) l10n_he? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_he.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_he.tar.gz ) ) l10n_hi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hi.tar.gz ) ) l10n_hr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hr.tar.gz ) ) l10n_hu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_hu.tar.gz ) ) l10n_id? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_id.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_id.tar.gz ) ) l10n_is? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_is.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_is.tar.gz ) ) l10n_it? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_it.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_it.tar.gz ) ) l10n_ja? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ja.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ja.tar.gz ) ) l10n_ka? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ka.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ka.tar.gz ) ) l10n_km? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_km.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_km.tar.gz ) ) l10n_ko? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ko.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ko.tar.gz ) ) l10n_mk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_mk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_mk.tar.gz ) ) l10n_nb? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nb.tar.gz ) ) l10n_ne? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ne.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ne.tar.gz ) ) l10n_nl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nl.tar.gz ) ) l10n_nn? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_nn.tar.gz ) ) l10n_om? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_om.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_om.tar.gz ) ) l10n_pl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pl.tar.gz ) ) l10n_pt-BR? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pt-BR.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pt-BR.tar.gz ) ) l10n_pt? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_pt.tar.gz ) ) l10n_ru? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ru.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ru.tar.gz ) ) l10n_si? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_si.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_si.tar.gz ) ) l10n_sk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sk.tar.gz ) ) l10n_sl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sl.tar.gz ) ) l10n_sq? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sq.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sq.tar.gz ) ) l10n_sv? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_sv.tar.gz ) ) l10n_tg? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_tg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_tg.tar.gz ) ) l10n_tr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_tr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_tr.tar.gz ) ) l10n_ug? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ug.tar.gz ) ) l10n_uk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_uk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_uk.tar.gz ) ) l10n_vi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_vi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_vi.tar.gz ) ) l10n_zh-CN? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_zh-CN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_zh-CN.tar.gz ) ) l10n_zh-TW? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_zh-TW.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_zh-TW.tar.gz ) ) l10n_am? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_am.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_am.tar.gz ) l10n_ast? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ast.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ast.tar.gz ) l10n_bg? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bg.tar.gz ) l10n_bn-IN? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bn-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bn-IN.tar.gz ) l10n_bn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bn.tar.gz ) l10n_bo? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bo.tar.gz ) l10n_bs? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_bs.tar.gz ) l10n_ca-valencia? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz ) l10n_ca? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ca.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ca.tar.gz ) l10n_cs? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_cs.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_cs.tar.gz ) l10n_da? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_da.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_da.tar.gz ) l10n_de? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_de.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_de.tar.gz ) l10n_dz? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_dz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_dz.tar.gz ) l10n_el? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_el.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_el.tar.gz ) l10n_en-GB? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_en-GB.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_en-GB.tar.gz ) l10n_en-ZA? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_en-ZA.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_en-ZA.tar.gz ) l10n_eo? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_eo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_eo.tar.gz ) l10n_es? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_es.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_es.tar.gz ) l10n_et? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_et.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_et.tar.gz ) l10n_eu? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_eu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_eu.tar.gz ) l10n_fi? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fi.tar.gz ) l10n_fr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fr.tar.gz ) l10n_gl? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gl.tar.gz ) l10n_gu? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gu.tar.gz ) l10n_he? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_he.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_he.tar.gz ) l10n_hi? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hi.tar.gz ) l10n_hr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hr.tar.gz ) l10n_hu? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_hu.tar.gz ) l10n_id? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_id.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_id.tar.gz ) l10n_is? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_is.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_is.tar.gz ) l10n_it? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_it.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_it.tar.gz ) l10n_ja? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ja.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ja.tar.gz ) l10n_ka? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ka.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ka.tar.gz ) l10n_km? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_km.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_km.tar.gz ) l10n_ko? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ko.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ko.tar.gz ) l10n_mk? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mk.tar.gz ) l10n_nb? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nb.tar.gz ) l10n_ne? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ne.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ne.tar.gz ) l10n_nl? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nl.tar.gz ) l10n_nn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nn.tar.gz ) l10n_om? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_om.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_om.tar.gz ) l10n_pl? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pl.tar.gz ) l10n_pt-BR? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pt-BR.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pt-BR.tar.gz ) l10n_pt? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pt.tar.gz ) l10n_ru? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ru.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ru.tar.gz ) l10n_si? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_si.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_si.tar.gz ) l10n_sk? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sk.tar.gz ) l10n_sl? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sl.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sl.tar.gz ) l10n_sq? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sq.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sq.tar.gz ) l10n_sv? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sv.tar.gz ) l10n_tg? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tg.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tg.tar.gz ) l10n_tr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tr.tar.gz ) l10n_ug? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ug.tar.gz ) l10n_uk? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_uk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_uk.tar.gz ) l10n_vi? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_vi.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_vi.tar.gz ) l10n_zh-CN? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zh-CN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zh-CN.tar.gz ) l10n_zh-TW? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zh-TW.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zh-TW.tar.gz ) l10n_af? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_af.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_af.tar.gz ) l10n_ar? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ar.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ar.tar.gz ) l10n_as? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_as.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_as.tar.gz ) l10n_be? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_be.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_be.tar.gz ) l10n_br? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_br.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_br.tar.gz ) l10n_brx? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_brx.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_brx.tar.gz ) l10n_cy? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_cy.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_cy.tar.gz ) l10n_dgo? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_dgo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_dgo.tar.gz ) l10n_fa? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fa.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_fa.tar.gz ) l10n_ga? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ga.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ga.tar.gz ) l10n_gd? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gd.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gd.tar.gz ) l10n_gug? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gug.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_gug.tar.gz ) l10n_kk? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kk.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kk.tar.gz ) l10n_kmr-Latn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz ) l10n_kn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kn.tar.gz ) l10n_kok? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kok.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_kok.tar.gz ) l10n_ks? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ks.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ks.tar.gz ) l10n_lb? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lb.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lb.tar.gz ) l10n_lo? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lo.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lo.tar.gz ) l10n_lt? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lt.tar.gz ) l10n_lv? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lv.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_lv.tar.gz ) l10n_mai? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mai.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mai.tar.gz ) l10n_ml? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ml.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ml.tar.gz ) l10n_mn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mn.tar.gz ) l10n_mni? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mni.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mni.tar.gz ) l10n_mr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_mr.tar.gz ) l10n_my? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_my.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_my.tar.gz ) l10n_nr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nr.tar.gz ) l10n_nso? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nso.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_nso.tar.gz ) l10n_oc? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_oc.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_oc.tar.gz ) l10n_or? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_or.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_or.tar.gz ) l10n_pa? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pa-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_pa-IN.tar.gz ) l10n_ro? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ro.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ro.tar.gz ) l10n_rw? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_rw.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_rw.tar.gz ) l10n_sa? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sa-IN.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sa-IN.tar.gz ) l10n_sat? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sat.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sat.tar.gz ) l10n_sd? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sd.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sd.tar.gz ) l10n_sid? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sid.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sid.tar.gz ) l10n_sr-Latn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz ) l10n_sr? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sr.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sr.tar.gz ) l10n_ss? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ss.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ss.tar.gz ) l10n_st? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_st.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_st.tar.gz ) l10n_sw-TZ? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz ) l10n_ta? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ta.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ta.tar.gz ) l10n_te? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_te.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_te.tar.gz ) l10n_th? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_th.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_th.tar.gz ) l10n_tn? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tn.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tn.tar.gz ) l10n_ts? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ts.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ts.tar.gz ) l10n_tt? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tt.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_tt.tar.gz ) l10n_uz? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_uz.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_uz.tar.gz ) l10n_ve? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ve.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_ve.tar.gz ) l10n_xh? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_xh.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_xh.tar.gz ) l10n_zu? ( http://download.documentfoundation.org/libreoffice/stable/5.4.2/rpm/x86/LibreOffice_5.4.2_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zu.tar.gz http://download.documentfoundation.org/libreoffice/testing/5.4.2/rpm/x86/LibreOffice_5.4.2.2_Linux_x86_rpm_langpack_zu.tar.gz ) +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e rpm f52cfa3a435468d86d3b49c357b9cb35 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=a56236a68f7a1724235b85bdb48e2880 diff --git a/metadata/md5-cache/app-office/lyx-2.0.8.1-r1 b/metadata/md5-cache/app-office/lyx-2.0.8.1-r1 index 110a3954e781..e39e6d2a2426 100644 --- a/metadata/md5-cache/app-office/lyx-2.0.8.1-r1 +++ b/metadata/md5-cache/app-office/lyx-2.0.8.1-r1 @@ -4,11 +4,11 @@ DESCRIPTION=WYSIWYM frontend for LaTeX, DocBook, etc. EAPI=5 HOMEPAGE=http://www.lyx.org/ IUSE=cups debug nls +latex monolithic-build html rtf dot docbook dia subversion rcs svg gnumeric +hunspell aspell enchant linguas_ar linguas_ca linguas_cs linguas_de linguas_da linguas_el linguas_en linguas_es linguas_eu linguas_fi linguas_fr linguas_gl linguas_he linguas_hu linguas_ia linguas_id linguas_it linguas_ja linguas_nb linguas_nn linguas_pl linguas_pt linguas_ro linguas_ru linguas_sk linguas_sr linguas_sv linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW X python_targets_python2_7 -KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x86-macos +KEYWORDS=alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x86-macos LICENSE=GPL-2 RDEPEND=dev-qt/qtgui:4 dev-qt/qtcore:4 >=dev-libs/boost-1.34 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-texlive/texlive-fontsextra virtual/imagemagick-tools[png,svg?] cups? ( net-print/cups ) latex? ( app-text/texlive app-text/ghostscript-gpl app-text/noweb app-text/dvipng dev-tex/dvipost dev-tex/chktex app-text/ps2eps dev-texlive/texlive-latexextra dev-texlive/texlive-pictures || ( dev-texlive/texlive-mathscience dev-texlive/texlive-science ) || ( dev-texlive/texlive-plaingeneric dev-texlive/texlive-genericextra ) dev-texlive/texlive-fontsrecommended || ( dev-tex/latex2html dev-tex/tth dev-tex/hevea dev-tex/tex4ht[java] ) ) html? ( dev-tex/html2latex ) rtf? ( dev-tex/latex2rtf app-text/unrtf dev-tex/html2latex ) linguas_he? ( dev-tex/culmus-latex ) docbook? ( app-text/sgmltools-lite ) dot? ( media-gfx/graphviz ) dia? ( app-office/dia ) subversion? ( =dev-libs/boost-1.34:= python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-texlive/texlive-fontsextra virtual/imagemagick-tools[png,svg?] cups? ( net-print/cups ) latex? ( app-text/texlive app-text/ghostscript-gpl app-text/noweb app-text/dvipng dev-tex/dvipost dev-tex/chktex app-text/ps2eps dev-texlive/texlive-latexextra dev-texlive/texlive-pictures || ( dev-texlive/texlive-mathscience dev-texlive/texlive-science ) || ( dev-texlive/texlive-plaingeneric dev-texlive/texlive-genericextra ) dev-texlive/texlive-fontsrecommended || ( dev-tex/latex2html dev-tex/tth dev-tex/hevea dev-tex/tex4ht[java] ) ) html? ( dev-tex/html2latex ) rtf? ( dev-tex/latex2rtf app-text/unrtf dev-tex/html2latex ) linguas_he? ( dev-tex/culmus-latex ) docbook? ( app-text/sgmltools-lite ) dot? ( media-gfx/graphviz ) dia? ( app-office/dia ) subversion? ( dev-vcs/subversion ) rcs? ( dev-vcs/rcs ) svg? ( || ( gnome-base/librsvg media-gfx/inkscape ) ) gnumeric? ( app-office/gnumeric ) hunspell? ( app-text/hunspell ) aspell? ( app-text/aspell ) enchant? ( app-text/enchant ) REQUIRED_USE=python_targets_python2_7 SLOT=0 SRC_URI=ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/lyx-2.1.5.tar.xz ftp://ftp.lyx.org/pub/lyx/devel/lyx-2.1/lyx-2.1.5/lyx-2.1.5.tar.xz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 fdo-mime 995b19d3f30e956b4e1bc5a91fdc4ea7 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 font 82836641e7d4639329d8c195234ad0e3 gnome2-utils 4d211d7614f303710fca59db6ec12c88 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=8e2dfa3078ed60ed79f36977fe7a7b29 +_md5_=4f521541e1b952eb61dd39f8c3e95c8f diff --git a/metadata/md5-cache/app-portage/gentoolkit-0.4.0 b/metadata/md5-cache/app-portage/gentoolkit-0.4.0 index 0472bea69604..f080b59e9300 100644 --- a/metadata/md5-cache/app-portage/gentoolkit-0.4.0 +++ b/metadata/md5-cache/app-portage/gentoolkit-0.4.0 @@ -4,11 +4,11 @@ DESCRIPTION=Collection of administration scripts for Gentoo EAPI=6 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Portage-Tools IUSE=python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=sys-apps/portage[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] !app-portage/gentoolkit-dev sys-apps/gawk sys-apps/gentoo-functions python_targets_pypy? ( >=virtual/pypy-5:0=[xml(+),threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+),threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+),threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+),threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~dolsen/releases/gentoolkit/gentoolkit-0.4.0.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=003940ccf8eb5af833553e2ddad656b4 +_md5_=c353d008047f72d9f6dd16b9a5de6582 diff --git a/metadata/md5-cache/app-text/ghostscript-gpl-9.20-r1 b/metadata/md5-cache/app-text/ghostscript-gpl-9.20-r1 deleted file mode 100644 index df4062b8daa7..000000000000 --- a/metadata/md5-cache/app-text/ghostscript-gpl-9.20-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare -DEPEND=app-text/libpaper media-libs/fontconfig >=media-libs/freetype-2.4.9:2= media-libs/jbig2dec >=media-libs/lcms-2.6:2 >=media-libs/libpng-1.6.2:0= >=media-libs/openjpeg-2.1.0:2= >=sys-libs/zlib-1.2.7:= virtual/jpeg:0 cups? ( >=net-print/cups-1.3.8 ) dbus? ( sys-apps/dbus ) gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) ) idn? ( net-dns/libidn ) tiff? ( >=media-libs/tiff-4.0.1:0= ) X? ( x11-libs/libXt x11-libs/libXext ) virtual/pkgconfig >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Ghostscript is an interpreter for the PostScript language and for PDF -EAPI=6 -HOMEPAGE=http://ghostscript.com/ -IUSE=cups dbus gtk idn l10n_de static-libs tiff X l10n_ja l10n_ko l10n_zh-CN l10n_zh-TW -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd -LICENSE=AGPL-3 CPL-1.0 -RDEPEND=app-text/libpaper media-libs/fontconfig >=media-libs/freetype-2.4.9:2= media-libs/jbig2dec >=media-libs/lcms-2.6:2 >=media-libs/libpng-1.6.2:0= >=media-libs/openjpeg-2.1.0:2= >=sys-libs/zlib-1.2.7:= virtual/jpeg:0 cups? ( >=net-print/cups-1.3.8 ) dbus? ( sys-apps/dbus ) gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) ) idn? ( net-dns/libidn ) tiff? ( >=media-libs/tiff-4.0.1:0= ) X? ( x11-libs/libXt x11-libs/libXext ) >=app-text/poppler-data-0.4.5-r1 >=media-fonts/urw-fonts-2.4.9 l10n_ja? ( media-fonts/kochi-substitute ) l10n_ko? ( media-fonts/baekmuk-fonts ) l10n_zh-CN? ( media-fonts/arphicfonts ) l10n_zh-TW? ( media-fonts/arphicfonts ) !!media-fonts/gnu-gs-fonts-std !!media-fonts/gnu-gs-fonts-other !=media-libs/freetype-2.4.9:2= media-libs/jbig2dec >=media-libs/lcms-2.6:2 >=media-libs/libpng-1.6.2:0= >=media-libs/openjpeg-2.1.0:2= >=sys-libs/zlib-1.2.7:= virtual/jpeg:0 cups? ( >=net-print/cups-1.3.8 ) dbus? ( sys-apps/dbus ) gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) ) unicode? ( net-dns/libidn ) tiff? ( >=media-libs/tiff-4.0.1:0= ) X? ( x11-libs/libXt x11-libs/libXext ) virtual/pkgconfig >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Ghostscript is an interpreter for the PostScript language and for PDF -EAPI=6 -HOMEPAGE=http://ghostscript.com/ -IUSE=cups dbus gtk l10n_de static-libs tiff unicode X l10n_ja l10n_ko l10n_zh-CN l10n_zh-TW -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd -LICENSE=AGPL-3 CPL-1.0 -RDEPEND=app-text/libpaper media-libs/fontconfig >=media-libs/freetype-2.4.9:2= media-libs/jbig2dec >=media-libs/lcms-2.6:2 >=media-libs/libpng-1.6.2:0= >=media-libs/openjpeg-2.1.0:2= >=sys-libs/zlib-1.2.7:= virtual/jpeg:0 cups? ( >=net-print/cups-1.3.8 ) dbus? ( sys-apps/dbus ) gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) ) unicode? ( net-dns/libidn ) tiff? ( >=media-libs/tiff-4.0.1:0= ) X? ( x11-libs/libXt x11-libs/libXext ) >=app-text/poppler-data-0.4.5-r1 >=media-fonts/urw-fonts-2.4.9 l10n_ja? ( media-fonts/kochi-substitute ) l10n_ko? ( media-fonts/baekmuk-fonts ) l10n_zh-CN? ( media-fonts/arphicfonts ) l10n_zh-TW? ( media-fonts/arphicfonts ) !!media-fonts/gnu-gs-fonts-std !!media-fonts/gnu-gs-fonts-other !=dev-lang/perl-5.8 ) -SLOT=0/17 -SRC_URI=mirror://sourceforge/qpdf/qpdf-6.0.0.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=9573ec6b8399406f4102e41bc463b183 diff --git a/metadata/md5-cache/app-text/qpdf-7.0_beta1 b/metadata/md5-cache/app-text/qpdf-7.0.0 similarity index 81% rename from metadata/md5-cache/app-text/qpdf-7.0_beta1 rename to metadata/md5-cache/app-text/qpdf-7.0.0 index 48d143432f5b..0d87294b2e15 100644 --- a/metadata/md5-cache/app-text/qpdf-7.0_beta1 +++ b/metadata/md5-cache/app-text/qpdf-7.0.0 @@ -5,8 +5,8 @@ EAPI=6 HOMEPAGE=http://qpdf.sourceforge.net/ IUSE=doc examples perl static-libs test KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~m68k-mint ~sparc-solaris -LICENSE=Artistic-2 +LICENSE=|| ( Apache-2.0 Artistic-2 ) RDEPEND=sys-libs/zlib virtual/jpeg:0= perl? ( >=dev-lang/perl-5.8 ) SLOT=0/18 -SRC_URI=mirror://sourceforge/qpdf/qpdf-7.0.b1.tar.gz -_md5_=6f5c691a4587d4842eb6a184812b0de1 +SRC_URI=mirror://sourceforge/qpdf/qpdf-7.0.0.tar.gz +_md5_=922ce2cc7760541edd3ad29fec1c0343 diff --git a/metadata/md5-cache/app-text/texlive-2015 b/metadata/md5-cache/app-text/texlive-2015 index dc3bda9e6a8e..fcd4ca75ac72 100644 --- a/metadata/md5-cache/app-text/texlive-2015 +++ b/metadata/md5-cache/app-text/texlive-2015 @@ -4,8 +4,8 @@ DESCRIPTION=A complete TeX distribution EAPI=5 HOMEPAGE=http://tug.org/texlive/ IUSE=cjk context detex dvi2tty extra epspdf games graphics humanities jadetex luatex metapost music omega pdfannotextractor png pstricks publishers science tex4ht texi2html truetype xetex xindy xml X l10n_af l10n_ar l10n_as l10n_bg l10n_bn l10n_br l10n_ca l10n_cs l10n_cy l10n_da l10n_de l10n_el l10n_en l10n_en-GB l10n_eo l10n_es l10n_et l10n_eu l10n_fa l10n_fi l10n_fr l10n_ga l10n_gl l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ko l10n_kn l10n_la l10n_lo l10n_lt l10n_lv l10n_ml l10n_mn l10n_mr l10n_nb l10n_nl l10n_nn l10n_no l10n_or l10n_pa l10n_pl l10n_pt l10n_rm l10n_ro l10n_ru l10n_sa l10n_sco l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tk l10n_tr l10n_uk l10n_vi l10n_zh -KEYWORDS=alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=metapackage RDEPEND=>=app-text/texlive-core-2015 app-text/psutils >=dev-texlive/texlive-fontutils-2015 media-gfx/sam2p texi2html? ( app-text/texi2html ) sys-apps/texinfo app-text/t1utils >=app-text/lcdf-typetools-2.92[kpathsea] truetype? ( >=app-text/ttf2pk2-2.0_p20150521 ) detex? ( dev-tex/detex ) app-text/ps2eps dvi2tty? ( dev-tex/dvi2tty ) png? ( app-text/dvipng ) X? ( >=app-text/xdvik-22.87 ) >=dev-texlive/texlive-basic-2015 >=dev-texlive/texlive-fontsrecommended-2015 >=dev-texlive/texlive-latex-2015 luatex? ( >=dev-texlive/texlive-luatex-2015 ) >=dev-texlive/texlive-latexrecommended-2015 >=dev-tex/xcolor-2.11 >=dev-tex/latex-beamer-3.36 metapost? ( >=dev-texlive/texlive-metapost-2015 dev-tex/feynmf ) >=dev-texlive/texlive-genericrecommended-2015 pdfannotextractor? ( dev-tex/pdfannotextractor ) extra? ( dev-tex/chktex app-text/dvisvgm dev-tex/latexdiff >=dev-tex/latexmk-418 >=app-text/pdfjam-2.02 >=dev-texlive/texlive-bibtexextra-2015 >=dev-texlive/texlive-fontsextra-2015 >=dev-texlive/texlive-formatsextra-2015 >=dev-texlive/texlive-genericextra-2015 >=dev-texlive/texlive-latexextra-2015 >=dev-tex/glossaries-2.07 >=dev-tex/leaflet-20041222 >=dev-tex/currvita-0.9i-r1 >=dev-tex/g-brief-4.0.2 >=dev-tex/envlab-1.2-r1 >=dev-tex/europecv-20060424-r1 >=dev-tex/svninfo-0.7.3-r1 >=dev-texlive/texlive-mathextra-2015 >=dev-texlive/texlive-plainextra-2015 ) xetex? ( >=dev-texlive/texlive-xetex-2015 ) graphics? ( >=dev-texlive/texlive-pictures-2015 dev-tex/dot2texi ) epspdf? ( app-text/epspdf ) science? ( >=dev-texlive/texlive-science-2015 ) publishers? ( >=dev-texlive/texlive-publishers-2015 ) music? ( >=dev-texlive/texlive-music-2015 ) pstricks? ( >=dev-texlive/texlive-pstricks-2015 ) omega? ( >=dev-texlive/texlive-omega-2015 ) context? ( >=dev-texlive/texlive-context-2015 ) games? ( >=dev-texlive/texlive-games-2015 ) humanities? ( >=dev-texlive/texlive-humanities-2015 ) tex4ht? ( >=dev-tex/tex4ht-20090611_p1038-r3 ) xml? ( >=dev-tex/xmltex-1.9-r2 app-text/passivetex ) jadetex? ( >=app-text/jadetex-3.13-r2 ) l10n_af? ( >=dev-texlive/texlive-langafrican-2015 >=dev-texlive/texlive-langother-2015 ) l10n_ar? ( >=dev-texlive/texlive-langarabic-2015 ) l10n_fa? ( >=dev-texlive/texlive-langarabic-2015 ) l10n_hy? ( >=dev-texlive/texlive-langeuropean-2015 ) cjk? ( >=dev-texlive/texlive-langcjk-2015 >=dev-tex/cjk-latex-4.8.4 ) l10n_hr? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_bg? ( >=dev-texlive/texlive-langcyrillic-2015 ) l10n_br? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_ru? ( >=dev-texlive/texlive-langcyrillic-2015 ) l10n_uk? ( >=dev-texlive/texlive-langcyrillic-2015 ) l10n_cs? ( >=dev-texlive/texlive-langczechslovak-2015 >=app-text/vlna-1.3 ) l10n_sk? ( >=dev-texlive/texlive-langczechslovak-2015 ) l10n_da? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_nl? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_en? ( >=dev-texlive/texlive-langenglish-2015 ) l10n_en-GB? ( >=dev-texlive/texlive-langenglish-2015 ) l10n_fi? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_eu? ( >=dev-texlive/texlive-langfrench-2015 ) l10n_fr? ( >=dev-texlive/texlive-langfrench-2015 ) l10n_de? ( >=dev-texlive/texlive-langgerman-2015 ) l10n_el? ( >=dev-texlive/texlive-langgreek-2015 ) l10n_he? ( >=dev-texlive/texlive-langother-2015 ) l10n_hu? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_as? ( >=dev-texlive/texlive-langindic-2015 ) l10n_bn? ( >=dev-texlive/texlive-langindic-2015 ) l10n_gu? ( >=dev-texlive/texlive-langindic-2015 ) l10n_hi? ( >=dev-texlive/texlive-langindic-2015 ) l10n_kn? ( >=dev-texlive/texlive-langindic-2015 ) l10n_ml? ( >=dev-texlive/texlive-langindic-2015 ) l10n_mr? ( >=dev-texlive/texlive-langindic-2015 ) l10n_or? ( >=dev-texlive/texlive-langindic-2015 ) l10n_pa? ( >=dev-texlive/texlive-langindic-2015 ) l10n_sa? ( >=dev-texlive/texlive-langindic-2015 ) l10n_ta? ( >=dev-texlive/texlive-langindic-2015 ) l10n_te? ( >=dev-texlive/texlive-langindic-2015 ) l10n_it? ( >=dev-texlive/texlive-langitalian-2015 ) l10n_ja? ( >=dev-texlive/texlive-langjapanese-2015 ) l10n_ko? ( >=dev-texlive/texlive-langkorean-2015 ) l10n_la? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_lt? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_lv? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_mn? ( >=dev-texlive/texlive-langcyrillic-2015 ) l10n_nb? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_nn? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_no? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_cy? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_eo? ( >=dev-texlive/texlive-langother-2015 ) l10n_et? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_ga? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_rm? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_hsb? ( >=dev-texlive/texlive-langother-2015 ) l10n_ia? ( >=dev-texlive/texlive-langother-2015 ) l10n_id? ( >=dev-texlive/texlive-langother-2015 ) l10n_is? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_lo? ( >=dev-texlive/texlive-langother-2015 ) l10n_ro? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_sq? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_sr? ( >=dev-texlive/texlive-langeuropean-2015 >=dev-texlive/texlive-langcyrillic-2015 ) l10n_sl? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_tr? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_pl? ( >=dev-texlive/texlive-langpolish-2015 ) l10n_pt? ( >=dev-texlive/texlive-langportuguese-2015 ) l10n_ca? ( >=dev-texlive/texlive-langspanish-2015 ) l10n_gl? ( >=dev-texlive/texlive-langspanish-2015 ) l10n_es? ( >=dev-texlive/texlive-langspanish-2015 ) l10n_sco? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_sv? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_tk? ( >=dev-texlive/texlive-langeuropean-2015 ) l10n_vi? ( >=dev-texlive/texlive-langother-2015 ) l10n_zh? ( >=dev-texlive/texlive-langchinese-2015 ) xindy? ( app-text/xindy ) SLOT=0 -_md5_=b610b565874d95a73791bdcb591985e0 +_md5_=c14a0a7b4fbbd9c68c761d47d9d41443 diff --git a/metadata/md5-cache/app-vim/colorv-3.0.2 b/metadata/md5-cache/app-vim/colorv-3.0.2 deleted file mode 100644 index 785327f0958d..000000000000 --- a/metadata/md5-cache/app-vim/colorv-3.0.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst postrm prepare -DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) -DESCRIPTION=vim plugin: a color tool for vim -EAPI=5 -HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=3597 https://github.com/Rykka/colorv.vim/ -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=|| ( app-editors/vim[python] ( app-editors/gvim[python] dev-python/pygtk:2 ) ) || ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) -SLOT=0 -SRC_URI=mirror://gentoo/colorv-3.0.2.tar.bz2 https://dev.gentoo.org/~radhermit/vim/colorv-3.0.2.tar.bz2 -_eclasses_=vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 -_md5_=61e089b96fe9bcda5b8d0a86588a6f1a diff --git a/metadata/md5-cache/app-vim/colorv-3.0.2-r1 b/metadata/md5-cache/app-vim/colorv-3.0.2-r1 index d698a4b7e587..3f74df589997 100644 --- a/metadata/md5-cache/app-vim/colorv-3.0.2-r1 +++ b/metadata/md5-cache/app-vim/colorv-3.0.2-r1 @@ -4,11 +4,11 @@ DESCRIPTION=vim plugin: a color tool for vim EAPI=6 HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=3597 https://github.com/Rykka/colorv.vim/ IUSE=python_targets_python2_7 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] || ( app-editors/vim[python,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ( app-editors/gvim[python,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) ) || ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) REQUIRED_USE=python_targets_python2_7 SLOT=0 SRC_URI=mirror://gentoo/colorv-3.0.2.tar.bz2 https://dev.gentoo.org/~radhermit/vim/colorv-3.0.2.tar.bz2 _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 -_md5_=30e2ff614c1f663d46dd1ea03b5e3667 +_md5_=143edb834a7b1ce4e9081578b61a0ae2 diff --git a/metadata/md5-cache/app-vim/nerdcommenter-2.4.0 b/metadata/md5-cache/app-vim/nerdcommenter-2.4.0 deleted file mode 100644 index 814e2b0ef8b7..000000000000 --- a/metadata/md5-cache/app-vim/nerdcommenter-2.4.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst postrm prepare -DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) -DESCRIPTION=vim plugin: easy commenting of code for many filetypes -EAPI=6 -HOMEPAGE=https://github.com/scrooloose/nerdcommenter http://www.vim.org/scripts/script.php?script_id=1218 -KEYWORDS=amd64 x86 ~x86-linux ~x86-macos ~sparc64-solaris -LICENSE=WTFPL-2 -RDEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) -SLOT=0 -SRC_URI=https://github.com/scrooloose/nerdcommenter/archive/2.4.0.tar.gz -> nerdcommenter-2.4.0.tar.gz -_eclasses_=vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 -_md5_=437c621da3c2d628ab600855812105e6 diff --git a/metadata/md5-cache/app-vim/nerdcommenter-2.5.0 b/metadata/md5-cache/app-vim/nerdcommenter-2.5.0 index 7bd4f37a8375..62b78cecd531 100644 --- a/metadata/md5-cache/app-vim/nerdcommenter-2.5.0 +++ b/metadata/md5-cache/app-vim/nerdcommenter-2.5.0 @@ -3,10 +3,10 @@ DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) DESCRIPTION=vim plugin: easy commenting of code for many filetypes EAPI=6 HOMEPAGE=https://github.com/scrooloose/nerdcommenter http://www.vim.org/scripts/script.php?script_id=1218 -KEYWORDS=~amd64 ~x86 ~x86-linux ~x86-macos ~sparc64-solaris +KEYWORDS=amd64 x86 ~x86-linux ~x86-macos ~sparc64-solaris LICENSE=WTFPL-2 RDEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) SLOT=0 SRC_URI=https://github.com/scrooloose/nerdcommenter/archive/2.5.0.tar.gz -> nerdcommenter-2.5.0.tar.gz _eclasses_=vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 -_md5_=fc135b560a33758565f60f5364437353 +_md5_=ce7778c58447ead9958c0e2f414af323 diff --git a/metadata/md5-cache/app-vim/tagbar-2.7 b/metadata/md5-cache/app-vim/tagbar-2.7 new file mode 100644 index 000000000000..a7941d99d12e --- /dev/null +++ b/metadata/md5-cache/app-vim/tagbar-2.7 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install postinst postrm prepare +DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) +DESCRIPTION=vim plugin: display tags of the current file ordered by scope +EAPI=6 +HOMEPAGE=https://majutsushi.github.com/tagbar/ http://www.vim.org/scripts/script.php?script_id=3465 +KEYWORDS=~amd64 ~x86 +LICENSE=vim +RDEPEND=>=dev-util/ctags-5.5 || ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) +SLOT=0 +SRC_URI=https://github.com/majutsushi/tagbar/archive/v2.7.tar.gz -> tagbar-2.7.tar.gz +_eclasses_=vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 +_md5_=85b5cc312cd4c70f8de9081b8982806b diff --git a/metadata/md5-cache/app-vim/tcomment-3.08 b/metadata/md5-cache/app-vim/tcomment-3.08 deleted file mode 100644 index d4c37d55427c..000000000000 --- a/metadata/md5-cache/app-vim/tcomment-3.08 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst postrm prepare -DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) -DESCRIPTION=vim plugin: an extensible and universal comment toggler -EAPI=5 -HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=1173 https://github.com/tomtom/tcomment_vim -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) -SLOT=0 -SRC_URI=https://github.com/tomtom/tcomment_vim/archive/3.08.tar.gz -> tcomment-3.08.tar.gz -_eclasses_=vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 -_md5_=cdb23081395199c6d0713ef5d38d9864 diff --git a/metadata/md5-cache/app-vim/tcomment-3.08.1 b/metadata/md5-cache/app-vim/tcomment-3.08.1 index de0a1a364037..bd74b9eb0b8d 100644 --- a/metadata/md5-cache/app-vim/tcomment-3.08.1 +++ b/metadata/md5-cache/app-vim/tcomment-3.08.1 @@ -3,10 +3,10 @@ DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) DESCRIPTION=vim plugin: an extensible and universal comment toggler EAPI=6 HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=1173 https://github.com/tomtom/tcomment_vim -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) SLOT=0 SRC_URI=https://github.com/tomtom/tcomment_vim/archive/3.08.1.tar.gz -> tcomment-3.08.1.tar.gz _eclasses_=vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 -_md5_=f237959dbcae227bff5c5f58ffa2ea5d +_md5_=a10b1e6c293b5c7dd61a119be0f4e5c8 diff --git a/metadata/md5-cache/app-vim/vim-latex-1.8.23.20130116 b/metadata/md5-cache/app-vim/vim-latex-1.8.23.20130116 deleted file mode 100644 index 563ae24f56ae..000000000000 --- a/metadata/md5-cache/app-vim/vim-latex-1.8.23.20130116 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install postinst postrm prepare setup -DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) -DESCRIPTION=A comprehensive set of tools to view, edit and compile LaTeX documents -EAPI=5 -HOMEPAGE=http://vim-latex.sourceforge.net/ -IUSE=html python python_targets_python2_7 -KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris -LICENSE=vim -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] || ( app-editors/vim[python?] app-editors/gvim[python?] ) virtual/latex-base !app-vim/vimtex || ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) -REQUIRED_USE=python_targets_python2_7 -SLOT=0 -SRC_URI=mirror://sourceforge/vim-latex/vim-latex-1.8.23-20130116.788-git2ef9956.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 -_md5_=568f72d731fbddbd7da2ad26450d97c0 diff --git a/metadata/md5-cache/app-vim/vim-latex-1.8.23.20141116 b/metadata/md5-cache/app-vim/vim-latex-1.8.23.20141116 index f7a718f03d36..8c3d5ba57ec9 100644 --- a/metadata/md5-cache/app-vim/vim-latex-1.8.23.20141116 +++ b/metadata/md5-cache/app-vim/vim-latex-1.8.23.20141116 @@ -4,11 +4,11 @@ DESCRIPTION=A comprehensive set of tools to view, edit and compile LaTeX documen EAPI=5 HOMEPAGE=http://vim-latex.sourceforge.net/ IUSE=html python_targets_python2_7 -KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris +KEYWORDS=alpha amd64 ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris LICENSE=vim RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] || ( app-editors/vim[python,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] app-editors/gvim[python,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) virtual/latex-base !app-vim/vimtex || ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) REQUIRED_USE=python_targets_python2_7 SLOT=0 SRC_URI=mirror://sourceforge/vim-latex/vim-latex-1.8.23-20141116.812-gitd0f31c9.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 -_md5_=2d16aa93e24f6b50952ccda0cfbb4a26 +_md5_=8ed98cbf925aac6ed5bf2907c75e2cde diff --git a/metadata/md5-cache/app-vim/vim-latex-1.9.0 b/metadata/md5-cache/app-vim/vim-latex-1.9.0 new file mode 100644 index 000000000000..295728c32db7 --- /dev/null +++ b/metadata/md5-cache/app-vim/vim-latex-1.9.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm setup +DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) +DESCRIPTION=A comprehensive set of tools to view, edit and compile LaTeX documents +EAPI=6 +HOMEPAGE=http://vim-latex.sourceforge.net/ +IUSE=python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris +LICENSE=vim +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] || ( app-editors/vim[python,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] app-editors/gvim[python,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) virtual/latex-base !app-vim/vimtex || ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) +REQUIRED_USE=python_targets_python2_7 +SLOT=0 +SRC_URI=mirror://sourceforge/vim-latex/vim-latex-1.9.0.tar.gz +_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 6f0171b0a2f2fce005c13b4c0685a0d8 +_md5_=59c7d4ba876128bc7761f9836650b301 diff --git a/metadata/md5-cache/dev-db/mydumper-0.9.3 b/metadata/md5-cache/dev-db/mydumper-0.9.3 new file mode 100644 index 000000000000..cfb60e502a04 --- /dev/null +++ b/metadata/md5-cache/dev-db/mydumper-0.9.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-libs/glib:= dev-libs/libpcre:= dev-libs/openssl:= sys-libs/zlib:= virtual/mysql virtual/pkgconfig doc? ( dev-python/sphinx ) sys-devel/make >=dev-util/cmake-3.7.2 +DESCRIPTION=A high-performance multi-threaded backup (and restore) toolset for MySQL +EAPI=6 +HOMEPAGE=https://github.com/maxbube/mydumper +IUSE=doc +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-libs/glib:= dev-libs/libpcre:= dev-libs/openssl:= sys-libs/zlib:= virtual/mysql +SLOT=0 +SRC_URI=https://github.com/maxbube/mydumper/archive/v0.9.3.tar.gz -> mydumper-0.9.3.tar.gz +_eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=b40e83206daa774559535f9783b42e4f diff --git a/metadata/md5-cache/dev-db/postgresql-9.2.21 b/metadata/md5-cache/dev-db/postgresql-9.2.21 deleted file mode 100644 index 5b81173caf1f..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-9.2.21 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( virtual/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?] ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) uuid? ( dev-libs/ossp-uuid ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) !!=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( virtual/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?] ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) uuid? ( dev-libs/ossp-uuid ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) !dev-db/postgresql-docs:9.2 !dev-db/postgresql-base:9.2 !dev-db/postgresql-server:9.2 selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) ) -SLOT=9.2 -SRC_URI=mirror://postgresql/source/v9.2.21/postgresql-9.2.21.tar.bz2 -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 prefix 7b6fb2fc216b101b5d97d171925a847c python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=5b3278f9714cc1fdef90ac14cac65ee5 diff --git a/metadata/md5-cache/dev-db/postgresql-9.3.17 b/metadata/md5-cache/dev-db/postgresql-9.3.17 deleted file mode 100644 index cea4b124321d..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-9.3.17 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( virtual/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?] ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) uuid? ( dev-libs/ossp-uuid ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) !!=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( virtual/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?] ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) uuid? ( dev-libs/ossp-uuid ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) !dev-db/postgresql-docs:9.3 !dev-db/postgresql-base:9.3 !dev-db/postgresql-server:9.3 selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) ) -SLOT=9.3 -SRC_URI=mirror://postgresql/source/v9.3.17/postgresql-9.3.17.tar.bz2 -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 prefix 7b6fb2fc216b101b5d97d171925a847c python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=07097e506ec81c681fc3e8209e4e7c00 diff --git a/metadata/md5-cache/dev-db/postgresql-9.4.12 b/metadata/md5-cache/dev-db/postgresql-9.4.12 deleted file mode 100644 index 56a0262e20ac..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-9.4.12 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( virtual/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?] ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) !!=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( virtual/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?] ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) !dev-db/postgresql-docs:9.4 !dev-db/postgresql-base:9.4 !dev-db/postgresql-server:9.4 selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) ) -SLOT=9.4 -SRC_URI=mirror://postgresql/source/v9.4.12/postgresql-9.4.12.tar.bz2 -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 prefix 7b6fb2fc216b101b5d97d171925a847c python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=8d6a4e49608d916b3cb24011b76b1282 diff --git a/metadata/md5-cache/dev-db/postgresql-9.5.7 b/metadata/md5-cache/dev-db/postgresql-9.5.7 deleted file mode 100644 index de6b8f778351..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-9.5.7 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( virtual/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) !!=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( virtual/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) !dev-db/postgresql-docs:9.5 !dev-db/postgresql-base:9.5 !dev-db/postgresql-server:9.5 selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) ) -SLOT=9.5 -SRC_URI=mirror://postgresql/source/v9.5.7/postgresql-9.5.7.tar.bz2 -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 prefix 7b6fb2fc216b101b5d97d171925a847c python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b515b05d689751f58b58ac1d0232464a diff --git a/metadata/md5-cache/dev-db/redis-3.2.5-r1 b/metadata/md5-cache/dev-db/redis-3.2.5-r1 deleted file mode 100644 index c3a5e2f0674c..000000000000 --- a/metadata/md5-cache/dev-db/redis-3.2.5-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A persistent caching system, key-value and data structures database -EAPI=6 -HOMEPAGE=http://redis.io/ -IUSE=+jemalloc tcmalloc luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris -LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) -REQUIRED_USE=?? ( tcmalloc jemalloc ) -SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.5.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=7a5b894f90d0cf9c1e335d747b95a671 diff --git a/metadata/md5-cache/dev-db/redis-3.2.5-r5 b/metadata/md5-cache/dev-db/redis-3.2.5-r5 deleted file mode 100644 index c3a5e2f0674c..000000000000 --- a/metadata/md5-cache/dev-db/redis-3.2.5-r5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A persistent caching system, key-value and data structures database -EAPI=6 -HOMEPAGE=http://redis.io/ -IUSE=+jemalloc tcmalloc luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris -LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) -REQUIRED_USE=?? ( tcmalloc jemalloc ) -SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.5.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=7a5b894f90d0cf9c1e335d747b95a671 diff --git a/metadata/md5-cache/dev-db/redis-3.2.6 b/metadata/md5-cache/dev-db/redis-3.2.6 deleted file mode 100644 index c697225cb853..000000000000 --- a/metadata/md5-cache/dev-db/redis-3.2.6 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:* ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A persistent caching system, key-value and data structures database -EAPI=6 -HOMEPAGE=http://redis.io/ -IUSE=+jemalloc tcmalloc luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris -LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:* ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) -REQUIRED_USE=?? ( tcmalloc jemalloc ) -SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.6.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=aaea03c55792ff1a280bdb47a19f50f5 diff --git a/metadata/md5-cache/dev-db/redis-3.2.6-r1 b/metadata/md5-cache/dev-db/redis-3.2.6-r1 deleted file mode 100644 index 32bddb788e91..000000000000 --- a/metadata/md5-cache/dev-db/redis-3.2.6-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A persistent caching system, key-value and data structures database -EAPI=6 -HOMEPAGE=http://redis.io/ -IUSE=+jemalloc tcmalloc luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris -LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) -REQUIRED_USE=?? ( tcmalloc jemalloc ) -SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.6.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=7a5b894f90d0cf9c1e335d747b95a671 diff --git a/metadata/md5-cache/dev-db/redis-3.2.6-r4 b/metadata/md5-cache/dev-db/redis-3.2.6-r4 deleted file mode 100644 index c697225cb853..000000000000 --- a/metadata/md5-cache/dev-db/redis-3.2.6-r4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:* ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A persistent caching system, key-value and data structures database -EAPI=6 -HOMEPAGE=http://redis.io/ -IUSE=+jemalloc tcmalloc luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris -LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:* ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) -REQUIRED_USE=?? ( tcmalloc jemalloc ) -SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.6.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=aaea03c55792ff1a280bdb47a19f50f5 diff --git a/metadata/md5-cache/dev-db/redis-3.2.6-r5 b/metadata/md5-cache/dev-db/redis-3.2.6-r5 deleted file mode 100644 index 32bddb788e91..000000000000 --- a/metadata/md5-cache/dev-db/redis-3.2.6-r5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A persistent caching system, key-value and data structures database -EAPI=6 -HOMEPAGE=http://redis.io/ -IUSE=+jemalloc tcmalloc luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris -LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) -REQUIRED_USE=?? ( tcmalloc jemalloc ) -SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.6.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=7a5b894f90d0cf9c1e335d747b95a671 diff --git a/metadata/md5-cache/dev-db/redis-3.2.8-r1 b/metadata/md5-cache/dev-db/redis-3.2.8-r1 deleted file mode 100644 index 82e079c34e87..000000000000 --- a/metadata/md5-cache/dev-db/redis-3.2.8-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A persistent caching system, key-value and data structures database -EAPI=6 -HOMEPAGE=http://redis.io/ -IUSE=+jemalloc tcmalloc luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris -LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) -REQUIRED_USE=?? ( tcmalloc jemalloc ) -SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.8.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=7a5b894f90d0cf9c1e335d747b95a671 diff --git a/metadata/md5-cache/dev-db/redis-3.2.8-r3 b/metadata/md5-cache/dev-db/redis-3.2.8-r3 deleted file mode 100644 index 82e079c34e87..000000000000 --- a/metadata/md5-cache/dev-db/redis-3.2.8-r3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A persistent caching system, key-value and data structures database -EAPI=6 -HOMEPAGE=http://redis.io/ -IUSE=+jemalloc tcmalloc luajit test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris -LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:5.1 ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) -REQUIRED_USE=?? ( tcmalloc jemalloc ) -SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.8.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=7a5b894f90d0cf9c1e335d747b95a671 diff --git a/metadata/md5-cache/dev-db/redis-3.2.8 b/metadata/md5-cache/dev-db/redis-3.2.8-r4 similarity index 62% rename from metadata/md5-cache/dev-db/redis-3.2.8 rename to metadata/md5-cache/dev-db/redis-3.2.8-r4 index a95014ad4230..13bb69df59f1 100644 --- a/metadata/md5-cache/dev-db/redis-3.2.8 +++ b/metadata/md5-cache/dev-db/redis-3.2.8-r4 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:* ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( || ( dev-lang/lua:5.1 =dev-lang/lua-5.1*:0 ) ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig DESCRIPTION=A persistent caching system, key-value and data structures database EAPI=6 HOMEPAGE=http://redis.io/ IUSE=+jemalloc tcmalloc luajit test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:* ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) +RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( || ( dev-lang/lua:5.1 =dev-lang/lua-5.1*:0 ) ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) REQUIRED_USE=?? ( tcmalloc jemalloc ) SLOT=0 SRC_URI=http://download.redis.io/releases/redis-3.2.8.tar.gz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=aaea03c55792ff1a280bdb47a19f50f5 +_md5_=e7f7054932416dbe4ed0b4cb862a950f diff --git a/metadata/md5-cache/dev-db/redis-3.2.5-r4 b/metadata/md5-cache/dev-db/redis-4.0.2 similarity index 58% rename from metadata/md5-cache/dev-db/redis-3.2.5-r4 rename to metadata/md5-cache/dev-db/redis-4.0.2 index c876825793fd..ea3bdf030199 100644 --- a/metadata/md5-cache/dev-db/redis-3.2.5-r4 +++ b/metadata/md5-cache/dev-db/redis-4.0.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup -DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:* ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEPEND=virtual/pkgconfig >=sys-devel/autoconf-2.63 test? ( dev-lang/tcl:0= ) luajit? ( dev-lang/luajit:2 ) !luajit? ( || ( dev-lang/lua:5.1 =dev-lang/lua-5.1*:0 ) ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig DESCRIPTION=A persistent caching system, key-value and data structures database EAPI=6 HOMEPAGE=http://redis.io/ IUSE=+jemalloc tcmalloc luajit test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris LICENSE=BSD -RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( >=dev-lang/lua-5.1:* ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) +RDEPEND=luajit? ( dev-lang/luajit:2 ) !luajit? ( || ( dev-lang/lua:5.1 =dev-lang/lua-5.1*:0 ) ) tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 ) REQUIRED_USE=?? ( tcmalloc jemalloc ) SLOT=0 -SRC_URI=http://download.redis.io/releases/redis-3.2.5.tar.gz +SRC_URI=http://download.redis.io/releases/redis-4.0.2.tar.gz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=aaea03c55792ff1a280bdb47a19f50f5 +_md5_=911b3379f084e7b3eb94cfd2d5b00319 diff --git a/metadata/md5-cache/dev-embedded/dfu-programmer-0.5.4-r1 b/metadata/md5-cache/dev-embedded/dfu-programmer-0.5.4-r1 deleted file mode 100644 index 76be136feb00..000000000000 --- a/metadata/md5-cache/dev-embedded/dfu-programmer-0.5.4-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=virtual/libusb:1 virtual/udev >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DESCRIPTION=A Device Firmware Update based USB programmer for Atmel chips -EAPI=4 -HOMEPAGE=http://dfu-programmer.sourceforge.net -KEYWORDS=~amd64 -LICENSE=GPL-2 -RDEPEND=virtual/libusb:1 virtual/udev -SLOT=0 -SRC_URI=mirror://sourceforge/dfu-programmer/dfu-programmer-0.5.4.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 base df2aa567b3f0595aae0d0923889f7631 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af udev d91cac2c73b94629cad2daea66e0d182 -_md5_=45e8a32290c4340462d7ac0cf22351df diff --git a/metadata/md5-cache/dev-embedded/dfu-programmer-0.6.2 b/metadata/md5-cache/dev-embedded/dfu-programmer-0.6.2 deleted file mode 100644 index e010b3ca1562..000000000000 --- a/metadata/md5-cache/dev-embedded/dfu-programmer-0.6.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=virtual/libusb:1 virtual/udev virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=A Device Firmware Update based USB programmer for Atmel chips -EAPI=4 -HOMEPAGE=http://dfu-programmer.sourceforge.net -KEYWORDS=~amd64 -LICENSE=GPL-2 -RDEPEND=virtual/libusb:1 virtual/udev -SLOT=0 -SRC_URI=mirror://sourceforge/dfu-programmer/dfu-programmer-0.6.2.tar.gz -_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af udev d91cac2c73b94629cad2daea66e0d182 -_md5_=5f91284b366e156d918023756c45f633 diff --git a/metadata/md5-cache/dev-embedded/dfu-programmer-0.6.1 b/metadata/md5-cache/dev-embedded/dfu-programmer-0.7.2-r1 similarity index 63% rename from metadata/md5-cache/dev-embedded/dfu-programmer-0.6.1 rename to metadata/md5-cache/dev-embedded/dfu-programmer-0.7.2-r1 index c086553a52a8..fb1a62b35c5d 100644 --- a/metadata/md5-cache/dev-embedded/dfu-programmer-0.6.1 +++ b/metadata/md5-cache/dev-embedded/dfu-programmer-0.7.2-r1 @@ -1,12 +1,12 @@ -DEFINED_PHASES=install prepare +DEFINED_PHASES=install postinst prepare setup DEPEND=virtual/libusb:1 virtual/udev virtual/pkgconfig virtual/pkgconfig DESCRIPTION=A Device Firmware Update based USB programmer for Atmel chips -EAPI=4 +EAPI=6 HOMEPAGE=http://dfu-programmer.sourceforge.net -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~arm LICENSE=GPL-2 RDEPEND=virtual/libusb:1 virtual/udev SLOT=0 -SRC_URI=mirror://sourceforge/dfu-programmer/dfu-programmer-0.6.1.tar.gz -_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af udev d91cac2c73b94629cad2daea66e0d182 -_md5_=5f91284b366e156d918023756c45f633 +SRC_URI=mirror://sourceforge/dfu-programmer/dfu-programmer-0.7.2.tar.gz +_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af udev d91cac2c73b94629cad2daea66e0d182 user e4b567c44272a719fabf53f0f885d3f7 +_md5_=e3cde7490c3c065d3141b7d635e66535 diff --git a/metadata/md5-cache/dev-lang/perl-5.24.3 b/metadata/md5-cache/dev-lang/perl-5.24.3 index 00e3ca0ed4e0..d7c04a3c438f 100644 --- a/metadata/md5-cache/dev-lang/perl-5.24.3 +++ b/metadata/md5-cache/dev-lang/perl-5.24.3 @@ -4,11 +4,11 @@ DESCRIPTION=Larry Wall's Practical Extraction and Report Language EAPI=6 HOMEPAGE=http://www.perl.org/ IUSE=berkdb debug doc gdbm ithreads -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) PDEPEND=>=app-admin/perl-cleaner-2.5 >=virtual/perl-File-Path-2.130.0 >=virtual/perl-File-Temp-0.230.400-r2 >=virtual/perl-Data-Dumper-2.154.0 virtual/perl-Test-Harness RDEPEND=berkdb? ( sys-libs/db:= ) gdbm? ( >=sys-libs/gdbm-1.8.3 ) app-arch/bzip2 sys-libs/zlib SLOT=0/5.24 SRC_URI=mirror://cpan/src/5.0/perl-5.24.3.tar.xz mirror://cpan/authors/id/S/SH/SHAY/perl-5.24.3.tar.xz https://github.com/gentoo-perl/perl-patchset/releases/download/perl-5.24.3-patches-1/perl-5.24.3-patches-1.tar.xz mirror://gentoo/perl-5.24.3-patches-1.tar.xz https://dev.gentoo.org/~kentnl/distfiles/perl-5.24.3-patches-1.tar.xz https://github.com/arsv/perl-cross/releases/download/1.1.6/perl-cross-1.1.6.tar.gz _eclasses_=alternatives 6c575717515f030736d1b718d507d2f9 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=23e5cfedadca61ec83145b5314d3fdf4 +_md5_=b7a5f9098d0a8a29cfde5f17b03a1b56 diff --git a/metadata/md5-cache/dev-lang/swi-prolog-7.4.2 b/metadata/md5-cache/dev-lang/swi-prolog-7.4.2 index ef1609b3d83e..d9ea5f75401c 100644 --- a/metadata/md5-cache/dev-lang/swi-prolog-7.4.2 +++ b/metadata/md5-cache/dev-lang/swi-prolog-7.4.2 @@ -4,10 +4,10 @@ DESCRIPTION=free, small, and standard compliant Prolog compiler EAPI=5 HOMEPAGE=http://www.swi-prolog.org/ IUSE=archive berkdb debug doc +gmp hardened java +libedit libressl minimal odbc readline ssl static-libs test uuid zlib X elibc_FreeBSD java -KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=BSD-2 RDEPEND=sys-libs/ncurses:= archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) zlib? ( sys-libs/zlib ) odbc? ( dev-db/unixODBC ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.5:= ) uuid? ( dev-libs/ossp-uuid ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=http://www.swi-prolog.org/download/stable/src/swipl-7.4.2.tar.gz mirror://gentoo/swi-prolog-7.4.2-gentoo-patchset-3.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=3124ed52051af428fea8458afd70430d +_md5_=0c3d7de80a73cfaf4418cdb429e03df1 diff --git a/metadata/md5-cache/dev-lang/swi-prolog-7.6.0_rc1 b/metadata/md5-cache/dev-lang/swi-prolog-7.6.0_rc1 new file mode 100644 index 000000000000..69c2f5fcfa6a --- /dev/null +++ b/metadata/md5-cache/dev-lang/swi-prolog-7.6.0_rc1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=sys-libs/ncurses:= archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) zlib? ( sys-libs/zlib ) odbc? ( dev-db/unixODBC ) pcre? ( dev-libs/libpcre ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.7:= ) uuid? ( dev-libs/ossp-uuid ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) X? ( x11-proto/xproto ) java? ( test? ( =dev-java/junit-3.8* ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=free, small, and standard compliant Prolog compiler +EAPI=5 +HOMEPAGE=http://www.swi-prolog.org/ +IUSE=archive berkdb debug doc +gmp hardened java +libedit libressl minimal odbc pcre readline ssl static-libs test uuid zlib X elibc_FreeBSD java +KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=BSD-2 +RDEPEND=sys-libs/ncurses:= archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) zlib? ( sys-libs/zlib ) odbc? ( dev-db/unixODBC ) pcre? ( dev-libs/libpcre ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.7:= ) uuid? ( dev-libs/ossp-uuid ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) java? ( >=dev-java/java-config-2.2.0-r3 ) +SLOT=0 +SRC_URI=http://www.swi-prolog.org/download/stable/src/swipl-7.6.0-rc1.tar.gz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=cc2dd4f2f4e28ff357a41ee45e78b56b diff --git a/metadata/md5-cache/dev-lang/swi-prolog-7.6.0_rc2 b/metadata/md5-cache/dev-lang/swi-prolog-7.6.0_rc2 new file mode 100644 index 000000000000..70ebaaa2dff6 --- /dev/null +++ b/metadata/md5-cache/dev-lang/swi-prolog-7.6.0_rc2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=sys-libs/ncurses:= archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) zlib? ( sys-libs/zlib ) odbc? ( dev-db/unixODBC ) pcre? ( dev-libs/libpcre ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.7:= ) uuid? ( dev-libs/ossp-uuid ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) X? ( x11-proto/xproto ) java? ( test? ( =dev-java/junit-3.8* ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=free, small, and standard compliant Prolog compiler +EAPI=5 +HOMEPAGE=http://www.swi-prolog.org/ +IUSE=archive berkdb debug doc +gmp hardened java +libedit libressl minimal odbc pcre readline ssl static-libs test uuid zlib X elibc_FreeBSD java +KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=BSD-2 +RDEPEND=sys-libs/ncurses:= archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) zlib? ( sys-libs/zlib ) odbc? ( dev-db/unixODBC ) pcre? ( dev-libs/libpcre ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.7:= ) uuid? ( dev-libs/ossp-uuid ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) java? ( >=dev-java/java-config-2.2.0-r3 ) +SLOT=0 +SRC_URI=http://www.swi-prolog.org/download/stable/src/swipl-7.6.0-rc2.tar.gz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=cc2dd4f2f4e28ff357a41ee45e78b56b diff --git a/metadata/md5-cache/dev-lang/tuprolog-3.0.0 b/metadata/md5-cache/dev-lang/tuprolog-3.1.0 similarity index 82% rename from metadata/md5-cache/dev-lang/tuprolog-3.0.0 rename to metadata/md5-cache/dev-lang/tuprolog-3.1.0 index 59863747607e..37746fa3f43b 100644 --- a/metadata/md5-cache/dev-lang/tuprolog-3.0.0 +++ b/metadata/md5-cache/dev-lang/tuprolog-3.1.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=>=virtual/jdk-1.7:= dev-java/javassist:3 dev-java/commons-lang:3.1 dev-java/ant-core test? ( dev-java/ant-junit4:0 dev-java/junit:4 dev-java/hamcrest-core:1.3 ) >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 +DEPEND=>=virtual/jdk-1.8:= dev-java/javassist:3 dev-java/commons-lang:3.1 dev-java/ant-core test? ( dev-java/ant-junit4:0 dev-java/junit:4 dev-java/hamcrest-core:1.3 ) >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 DESCRIPTION=tuProlog is a light-weight Prolog for Internet applications and infrastructures EAPI=5 HOMEPAGE=http://tuprolog.unibo.it/ IUSE=doc examples test elibc_FreeBSD elibc_FreeBSD KEYWORDS=~amd64 ~x86 LICENSE=LGPL-3 BSD -RDEPEND=>=virtual/jdk-1.7:= dev-java/javassist:3 dev-java/commons-lang:3.1 >=dev-java/java-config-2.2.0-r3 +RDEPEND=>=virtual/jdk-1.8:= dev-java/javassist:3 dev-java/commons-lang:3.1 >=dev-java/java-config-2.2.0-r3 SLOT=0 -SRC_URI=mirror://gentoo/tuprolog-3.0.0.tar.gz +SRC_URI=mirror://gentoo/tuprolog-3.1.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=279b40d3b9fc69eb3a7c04633c7ab8ae +_md5_=2f66fcc0056bb9e2a90a449dff594b92 diff --git a/metadata/md5-cache/dev-libs/libevdev-1.5.6 b/metadata/md5-cache/dev-libs/libevdev-1.5.6 index 63404f81b68c..63771ea163bf 100644 --- a/metadata/md5-cache/dev-libs/libevdev-1.5.6 +++ b/metadata/md5-cache/dev-libs/libevdev-1.5.6 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpa DEPEND=|| ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig DESCRIPTION=Handler library for evdev events EAPI=5 -HOMEPAGE=https://www.x.org/wiki/ +HOMEPAGE=https://www.freedesktop.org/wiki/Software/libevdev/ IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 static-libs KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 LICENSE=MIT @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://www.freedesktop.org/software/libevdev/libevdev-1.5.6.tar.xz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 234cf45e2565fab7c0dff5bd8d1f9177 -_md5_=c25fe8c54ee7a9361880429cc40bb40d +_md5_=102c0177c7df7e571a77806d4868638f diff --git a/metadata/md5-cache/dev-libs/libevdev-1.5.7 b/metadata/md5-cache/dev-libs/libevdev-1.5.7 index a22d4bbab746..55e491be7cb6 100644 --- a/metadata/md5-cache/dev-libs/libevdev-1.5.7 +++ b/metadata/md5-cache/dev-libs/libevdev-1.5.7 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpa DEPEND=|| ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig DESCRIPTION=Handler library for evdev events EAPI=5 -HOMEPAGE=https://www.x.org/wiki/ +HOMEPAGE=https://www.freedesktop.org/wiki/Software/libevdev/ IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 static-libs KEYWORDS=alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 LICENSE=MIT @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://www.freedesktop.org/software/libevdev/libevdev-1.5.7.tar.xz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 234cf45e2565fab7c0dff5bd8d1f9177 -_md5_=19a1d8d6ff6247b0c1bd5d3c7664d549 +_md5_=9436b0d80b3f1bd27ee942959f4d8f79 diff --git a/metadata/md5-cache/dev-libs/tvision-2.1.0_pre2-r3 b/metadata/md5-cache/dev-libs/tvision-2.1.0_pre2-r3 deleted file mode 100644 index 42fdabb8d3c2..000000000000 --- a/metadata/md5-cache/dev-libs/tvision-2.1.0_pre2-r3 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile install unpack -DESCRIPTION=Text User Interface that implements the well known CUA widgets -EAPI=0 -HOMEPAGE=http://tvision.sourceforge.net/ -KEYWORDS=amd64 ppc x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=mirror://sourceforge/tvision/rhtvision_2.1.0-2.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=ad113d8dbc3bb5070295de5ce23860f5 diff --git a/metadata/md5-cache/dev-libs/tvision-2.1.0_pre2-r4 b/metadata/md5-cache/dev-libs/tvision-2.1.0_pre2-r4 index e596f0937fbc..4182bebdaff2 100644 --- a/metadata/md5-cache/dev-libs/tvision-2.1.0_pre2-r4 +++ b/metadata/md5-cache/dev-libs/tvision-2.1.0_pre2-r4 @@ -2,8 +2,8 @@ DEFINED_PHASES=configure install prepare DESCRIPTION=Text User Interface that implements the well known CUA widgets EAPI=6 HOMEPAGE=http://tvision.sourceforge.net/ -KEYWORDS=~amd64 ppc ~x86 +KEYWORDS=amd64 ppc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://sourceforge/tvision/rhtvision_2.1.0-2.tar.gz -_md5_=20f44abc39fe6af3e9e31b7048f2dc92 +_md5_=5bd4a1c92ed196a6e1ee46486c60f118 diff --git a/metadata/md5-cache/dev-lisp/cl-unicode-0.1.5 b/metadata/md5-cache/dev-lisp/cl-unicode-0.1.5 index a845d1dd2c58..61a9eda7abd7 100644 --- a/metadata/md5-cache/dev-lisp/cl-unicode-0.1.5 +++ b/metadata/md5-cache/dev-lisp/cl-unicode-0.1.5 @@ -10,4 +10,4 @@ RDEPEND=dev-lisp/cl-ppcre SLOT=0 SRC_URI=https://github.com/edicl/cl-unicode/archive/v0.1.5.tar.gz -> cl-unicode-0.1.5.tar.gz _eclasses_=common-lisp-3 8c4aaa6d66cd2daed8572bb60bf6fe07 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=e237740a1ec1d21658606a24699c2158 +_md5_=24dd4a26e02a9e53256deca583e60d88 diff --git a/metadata/md5-cache/dev-perl/DBD-Pg-3.7.0 b/metadata/md5-cache/dev-perl/DBD-Pg-3.7.0 new file mode 100644 index 000000000000..560156af3687 --- /dev/null +++ b/metadata/md5-cache/dev-perl/DBD-Pg-3.7.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=virtual/perl-version >=dev-perl/DBI-1.614.0 dev-db/postgresql:* virtual/perl-ExtUtils-MakeMaker dev-lang/perl:= +DESCRIPTION=PostgreSQL database driver for the DBI module +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/DBD-Pg/ +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-version >=dev-perl/DBI-1.614.0 dev-db/postgresql:* dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/T/TU/TURNSTEP/DBD-Pg-3.7.0.tar.gz +_eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 +_md5_=73df21a130d66fc233141a518e45ce88 diff --git a/metadata/md5-cache/dev-perl/DBI-Shell-11.950.0-r2 b/metadata/md5-cache/dev-perl/DBI-Shell-11.950.0-r2 new file mode 100644 index 000000000000..31ddba955925 --- /dev/null +++ b/metadata/md5-cache/dev-perl/DBI-Shell-11.950.0-r2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-perl/IO-Tee dev-perl/Text-Reform dev-perl/DBI dev-perl/Text-CSV_XS dev-lang/perl:= +DESCRIPTION=Interactive command shell for the DBI +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/DBI-Shell/ +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-perl/IO-Tee dev-perl/Text-Reform dev-perl/DBI dev-perl/Text-CSV_XS dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/T/TL/TLOWERY/DBI-Shell-11.95.tar.gz +_eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 +_md5_=c7d8b303dac5ee18ac7792d6b3c87020 diff --git a/metadata/md5-cache/dev-perl/DBIx-SearchBuilder-1.670.0 b/metadata/md5-cache/dev-perl/DBIx-SearchBuilder-1.670.0 new file mode 100644 index 000000000000..55c21823c36a --- /dev/null +++ b/metadata/md5-cache/dev-perl/DBIx-SearchBuilder-1.670.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-perl/Cache-Simple-TimedExpiry-0.210.0 >=dev-perl/capitalization-0.30.0 >=dev-perl/Class-ReturnValue-0.400.0 dev-perl/Class-Accessor dev-perl/Clone dev-perl/DBI dev-perl/DBIx-DBSchema dev-perl/Want >=virtual/perl-Encode-1.990.0 virtual/perl-Scalar-List-Utils >=virtual/perl-ExtUtils-MakeMaker-6.360.0 test? ( >=virtual/perl-Test-Simple-0.520.0 dev-perl/DBD-SQLite virtual/perl-File-Temp ) dev-lang/perl:= +DESCRIPTION=Encapsulate SQL queries and rows in simple Perl objects +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/DBIx-SearchBuilder/ +IUSE=test examples +KEYWORDS=~amd64 ~hppa ~ppc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=>=dev-perl/Cache-Simple-TimedExpiry-0.210.0 >=dev-perl/capitalization-0.30.0 >=dev-perl/Class-ReturnValue-0.400.0 dev-perl/Class-Accessor dev-perl/Clone dev-perl/DBI dev-perl/DBIx-DBSchema dev-perl/Want >=virtual/perl-Encode-1.990.0 virtual/perl-Scalar-List-Utils dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/B/BP/BPS/DBIx-SearchBuilder-1.67.tar.gz +_eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 +_md5_=00e4561c1dd978e6b95cfcd3c0eb061f diff --git a/metadata/md5-cache/dev-perl/Devel-SmallProf-2.20.0-r3 b/metadata/md5-cache/dev-perl/Devel-SmallProf-2.20.0-r3 new file mode 100644 index 000000000000..279fcde05a7e --- /dev/null +++ b/metadata/md5-cache/dev-perl/Devel-SmallProf-2.20.0-r3 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl:= +DESCRIPTION=Per-line Perl profiler +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/Devel-SmallProf/ +KEYWORDS=~amd64 ~sparc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/S/SA/SALVA/Devel-SmallProf-2.02.tar.gz +_eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 +_md5_=0db1d59cfc78a04acebc94be900fe2ae diff --git a/metadata/md5-cache/dev-python/cached-property-1.3.0 b/metadata/md5-cache/dev-python/cached-property-1.3.1 similarity index 69% rename from metadata/md5-cache/dev-python/cached-property-1.3.0 rename to metadata/md5-cache/dev-python/cached-property-1.3.1 index a7927de89edf..e53daacf3d96 100644 --- a/metadata/md5-cache/dev-python/cached-property-1.3.0 +++ b/metadata/md5-cache/dev-python/cached-property-1.3.1 @@ -1,7 +1,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/pytest dev-python/freezegun ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=A cached-property for decorating methods in classes -EAPI=5 +EAPI=6 HOMEPAGE=https://github.com/pydanny/cached-property IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=~amd64 ~x86 @@ -9,6 +9,6 @@ LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 -SRC_URI=mirror://pypi/c/cached-property/cached-property-1.3.0.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=3b17697d6a520220a08f4c9b78419df2 +SRC_URI=mirror://pypi/c/cached-property/cached-property-1.3.1.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=57538521bfb048def147073f218b116a diff --git a/metadata/md5-cache/dev-python/chardet-2.3.0 b/metadata/md5-cache/dev-python/chardet-2.3.0 deleted file mode 100644 index eda108af3adf..000000000000 --- a/metadata/md5-cache/dev-python/chardet-2.3.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -DESCRIPTION=Universal encoding detector -EAPI=5 -HOMEPAGE=https://github.com/chardet/chardet https://pypi.python.org/pypi/chardet -IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos -LICENSE=LGPL-2.1 -RDEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) -SLOT=0 -SRC_URI=mirror://pypi/c/chardet/chardet-2.3.0.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=5d25ffc685bec265d7b858693d926819 diff --git a/metadata/md5-cache/dev-python/chardet-3.0.2 b/metadata/md5-cache/dev-python/chardet-3.0.2 deleted file mode 100644 index 27ee90e395c5..000000000000 --- a/metadata/md5-cache/dev-python/chardet-3.0.2 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( dev-python/pytest[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/hypothesis[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -DESCRIPTION=Universal encoding detector -EAPI=6 -HOMEPAGE=https://github.com/chardet/chardet https://pypi.python.org/pypi/chardet -IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos -LICENSE=LGPL-2.1 -RDEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/chardet/chardet/archive/3.0.2.tar.gz -> chardet-3.0.2.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=a7e4dae656b6d14d01fe0a8296529fd6 diff --git a/metadata/md5-cache/dev-python/chardet-3.0.3 b/metadata/md5-cache/dev-python/chardet-3.0.3 deleted file mode 100644 index 1c6b714ed4a1..000000000000 --- a/metadata/md5-cache/dev-python/chardet-3.0.3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( dev-python/pytest[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/hypothesis[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -DESCRIPTION=Universal encoding detector -EAPI=6 -HOMEPAGE=https://github.com/chardet/chardet https://pypi.python.org/pypi/chardet -IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos -LICENSE=LGPL-2.1 -RDEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/chardet/chardet/archive/3.0.3.tar.gz -> chardet-3.0.3.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=5ea4ff99e0ce227726ac815569f199cf diff --git a/metadata/md5-cache/dev-python/feedparser-5.2.1 b/metadata/md5-cache/dev-python/feedparser-5.2.1 index 6fdc42090dae..b6bc6f2d9baa 100644 --- a/metadata/md5-cache/dev-python/feedparser-5.2.1 +++ b/metadata/md5-cache/dev-python/feedparser-5.2.1 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Parse RSS and Atom feeds in Python EAPI=5 HOMEPAGE=https://github.com/kurtmckee/feedparser https://pypi.python.org/pypi/feedparser -IUSE=python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris LICENSE=BSD-2 PSF-2 -RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/f/feedparser/feedparser-5.2.1.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=65cee6dee3064f0547335a684b9327b8 +_md5_=63ee2eab982106f51f6b997122c6e790 diff --git a/metadata/md5-cache/dev-python/flaky-3.4.0 b/metadata/md5-cache/dev-python/flaky-3.4.0 index a0c6d7a55ac8..49f17bbe1402 100644 --- a/metadata/md5-cache/dev-python/flaky-3.4.0 +++ b/metadata/md5-cache/dev-python/flaky-3.4.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( dev-python/genty[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pytest[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( dev-python/genty[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pytest[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Plugin for nose or py.test that automatically reruns flaky tests EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/flaky https://github.com/box/flaky -IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=mirror://pypi/f/flaky/flaky-3.4.0.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=68997ca26f3dede511ca0741addf008a +_md5_=cc1bfdeae3f31f428115be5a47d4803a diff --git a/metadata/md5-cache/dev-python/html2text-2017.10.4 b/metadata/md5-cache/dev-python/html2text-2017.10.4 new file mode 100644 index 000000000000..3c668bd674fa --- /dev/null +++ b/metadata/md5-cache/dev-python/html2text-2017.10.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=Turn HTML into equivalent Markdown-structured text +EAPI=6 +HOMEPAGE=https://github.com/Alir3z4/html2text https://pypi.python.org/pypi/html2text +IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-3 +RDEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/chardet[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/feedparser[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=https://github.com/Alir3z4/html2text/archive/2017.10.4.tar.gz -> html2text-2017.10.4.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=c86c5c97eba750887f2d009f1edaf4c6 diff --git a/metadata/md5-cache/dev-python/pyopenssl-17.3.0 b/metadata/md5-cache/dev-python/pyopenssl-17.3.0 new file mode 100644 index 000000000000..e2e7f29c0d4e --- /dev/null +++ b/metadata/md5-cache/dev-python/pyopenssl-17.3.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/six-1.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/cryptography-1.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx_rtd_theme[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) test? ( virtual/python-cffi[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/flaky[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pretend[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/pytest-3.0.1[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0=[threads(+)] ) python_targets_pypy3? ( >=virtual/pypy3-5:0=[threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=Python interface to the OpenSSL library +EAPI=6 +HOMEPAGE=http://pyopenssl.sourceforge.net/ https://launchpad.net/pyopenssl https://pypi.python.org/pypi/pyOpenSSL +IUSE=doc examples test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/six-1.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/cryptography-1.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0=[threads(+)] ) python_targets_pypy3? ( >=virtual/pypy3-5:0=[threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=mirror://pypi/p/pyOpenSSL/pyOpenSSL-17.3.0.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=2967c6f8c2945d0e55f825555662c163 diff --git a/metadata/md5-cache/dev-python/python-stdnum-1.7 b/metadata/md5-cache/dev-python/python-stdnum-1.7 new file mode 100644 index 000000000000..643cd71ec7a4 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-stdnum-1.7 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools test? ( dev-python/nose ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=A module to handle standardized numbers and codes +EAPI=6 +HOMEPAGE=http://arthurdejong.org/python-stdnum/ +IUSE=vies test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=vies? ( dev-python/suds ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-stdnum/python-stdnum-1.7.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=4b252185ad67c829c58b9fd6095718b4 diff --git a/metadata/md5-cache/dev-python/stripe-1.62.0 b/metadata/md5-cache/dev-python/stripe-1.66.0 similarity index 97% rename from metadata/md5-cache/dev-python/stripe-1.62.0 rename to metadata/md5-cache/dev-python/stripe-1.66.0 index 0f085c0d394f..43a93700f571 100644 --- a/metadata/md5-cache/dev-python/stripe-1.62.0 +++ b/metadata/md5-cache/dev-python/stripe-1.66.0 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=>=dev-python/requests-0.8.8 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 -SRC_URI=mirror://pypi/s/stripe/stripe-1.62.0.tar.gz +SRC_URI=mirror://pypi/s/stripe/stripe-1.66.0.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 _md5_=4f3cda62e9bea5d3b844561572f725dd diff --git a/metadata/md5-cache/dev-qt/assistant-5.6.2 b/metadata/md5-cache/dev-qt/assistant-5.6.2 index a5fdc124f2ef..47012188a30b 100644 --- a/metadata/md5-cache/dev-qt/assistant-5.6.2 +++ b/metadata/md5-cache/dev-qt/assistant-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qthelp-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtprintsupport-5.6.2 ~dev-qt/qtsql-5.6.2[sqlite] ~dev-qt/qtwidgets-5.6.2 webkit? ( ~dev-qt/qtwebkit-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qthelp-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtprintsupport-5.6.2 ~dev-qt/qtsql-5.6.2[sqlite] ~dev-qt/qtwidgets-5.6.2 webkit? ( ~dev-qt/qtwebkit-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Tool for viewing on-line documentation in Qt help file format EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qthelp-5.6.2 ~dev-qt/qt RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=655c3fea65e19a5372d3e5552a1356e2 diff --git a/metadata/md5-cache/dev-qt/assistant-5.7.1 b/metadata/md5-cache/dev-qt/assistant-5.7.1 index 694fb9ed7fe5..097c9d362f5b 100644 --- a/metadata/md5-cache/dev-qt/assistant-5.7.1 +++ b/metadata/md5-cache/dev-qt/assistant-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qthelp-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtprintsupport-5.7.1 ~dev-qt/qtsql-5.7.1[sqlite] ~dev-qt/qtwidgets-5.7.1 webkit? ( ~dev-qt/qtwebkit-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qthelp-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtprintsupport-5.7.1 ~dev-qt/qtsql-5.7.1[sqlite] ~dev-qt/qtwidgets-5.7.1 webkit? ( ~dev-qt/qtwebkit-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Tool for viewing on-line documentation in Qt help file format EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qthelp-5.7.1 ~dev-qt/qt RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=de955874787a8d09b48d66997db7bf7e diff --git a/metadata/md5-cache/dev-qt/assistant-5.9.2 b/metadata/md5-cache/dev-qt/assistant-5.9.2 new file mode 100644 index 000000000000..25e597e90f88 --- /dev/null +++ b/metadata/md5-cache/dev-qt/assistant-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qthelp-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtprintsupport-5.9.2 ~dev-qt/qtsql-5.9.2[sqlite] ~dev-qt/qtwidgets-5.9.2 webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Tool for viewing on-line documentation in Qt help file format +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=webkit debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qthelp-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtprintsupport-5.9.2 ~dev-qt/qtsql-5.9.2[sqlite] ~dev-qt/qtwidgets-5.9.2 webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=f00c00eff78e6a3bd3443db7b0cb2618 diff --git a/metadata/md5-cache/dev-qt/designer-5.6.2 b/metadata/md5-cache/dev-qt/designer-5.6.2 index db2255f4b5c7..3486e7de6f6e 100644 --- a/metadata/md5-cache/dev-qt/designer-5.6.2 +++ b/metadata/md5-cache/dev-qt/designer-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtprintsupport-5.6.2 ~dev-qt/qtwidgets-5.6.2 ~dev-qt/qtxml-5.6.2 declarative? ( ~dev-qt/qtdeclarative-5.6.2[widgets] ) webkit? ( ~dev-qt/qtwebkit-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtprintsupport-5.6.2 ~dev-qt/qtwidgets-5.6.2 ~dev-qt/qtxml-5.6.2 declarative? ( ~dev-qt/qtdeclarative-5.6.2[widgets] ) webkit? ( ~dev-qt/qtwebkit-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=WYSIWYG tool for designing and building Qt-based GUIs EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=ca20c5207b4d20ca1da24dcf72b87a67 diff --git a/metadata/md5-cache/dev-qt/designer-5.7.1 b/metadata/md5-cache/dev-qt/designer-5.7.1 index 0cd546c497c7..7076cd081199 100644 --- a/metadata/md5-cache/dev-qt/designer-5.7.1 +++ b/metadata/md5-cache/dev-qt/designer-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtprintsupport-5.7.1 ~dev-qt/qtwidgets-5.7.1 ~dev-qt/qtxml-5.7.1 declarative? ( ~dev-qt/qtdeclarative-5.7.1[widgets] ) webkit? ( ~dev-qt/qtwebkit-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtprintsupport-5.7.1 ~dev-qt/qtwidgets-5.7.1 ~dev-qt/qtxml-5.7.1 declarative? ( ~dev-qt/qtdeclarative-5.7.1[widgets] ) webkit? ( ~dev-qt/qtwebkit-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=WYSIWYG tool for designing and building Qt-based GUIs EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=65e8725189331a3117b88194437a6f0d diff --git a/metadata/md5-cache/dev-qt/designer-5.9.2 b/metadata/md5-cache/dev-qt/designer-5.9.2 new file mode 100644 index 000000000000..33269438b674 --- /dev/null +++ b/metadata/md5-cache/dev-qt/designer-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtprintsupport-5.9.2 ~dev-qt/qtwidgets-5.9.2 ~dev-qt/qtxml-5.9.2 declarative? ( ~dev-qt/qtdeclarative-5.9.2[widgets] ) webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=WYSIWYG tool for designing and building Qt-based GUIs +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=declarative webkit debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtprintsupport-5.9.2 ~dev-qt/qtwidgets-5.9.2 ~dev-qt/qtxml-5.9.2 declarative? ( ~dev-qt/qtdeclarative-5.9.2[widgets] ) webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=fcb98472b970fcb711760f75b8582e7a diff --git a/metadata/md5-cache/dev-qt/linguist-5.6.2 b/metadata/md5-cache/dev-qt/linguist-5.6.2 index 7acf8b3903ab..0b0f666684ae 100644 --- a/metadata/md5-cache/dev-qt/linguist-5.6.2 +++ b/metadata/md5-cache/dev-qt/linguist-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/designer-5.6.2 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtprintsupport-5.6.2 ~dev-qt/qtwidgets-5.6.2 ~dev-qt/qtxml-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/designer-5.6.2 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtprintsupport-5.6.2 ~dev-qt/qtwidgets-5.6.2 ~dev-qt/qtxml-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Graphical tool for translating Qt applications EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/designer-5.6.2 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/ RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=31d9e44d005bda930ba25edf934e0c90 diff --git a/metadata/md5-cache/dev-qt/linguist-5.7.1 b/metadata/md5-cache/dev-qt/linguist-5.7.1 index e868ac6989f9..2335bf5df9f3 100644 --- a/metadata/md5-cache/dev-qt/linguist-5.7.1 +++ b/metadata/md5-cache/dev-qt/linguist-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/designer-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtprintsupport-5.7.1 ~dev-qt/qtwidgets-5.7.1 ~dev-qt/qtxml-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/designer-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtprintsupport-5.7.1 ~dev-qt/qtwidgets-5.7.1 ~dev-qt/qtxml-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Graphical tool for translating Qt applications EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/designer-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/ RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=a3ee70abae8cae0fb3fb0b5f636404be diff --git a/metadata/md5-cache/dev-qt/linguist-5.9.2 b/metadata/md5-cache/dev-qt/linguist-5.9.2 new file mode 100644 index 000000000000..73953192cb46 --- /dev/null +++ b/metadata/md5-cache/dev-qt/linguist-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/designer-5.9.2 ~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtprintsupport-5.9.2 ~dev-qt/qtwidgets-5.9.2 ~dev-qt/qtxml-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Graphical tool for translating Qt applications +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/designer-5.9.2 ~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtprintsupport-5.9.2 ~dev-qt/qtwidgets-5.9.2 ~dev-qt/qtxml-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=ba2a39972e3e2cc6a6666f404785d8d8 diff --git a/metadata/md5-cache/dev-qt/linguist-tools-5.6.2 b/metadata/md5-cache/dev-qt/linguist-tools-5.6.2 index 2372d1bdad99..6a19c4ebc48c 100644 --- a/metadata/md5-cache/dev-qt/linguist-tools-5.6.2 +++ b/metadata/md5-cache/dev-qt/linguist-tools-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtxml-5.6.2 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtxml-5.6.2 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Tools for working with Qt translation data files EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtxml-5.6.2 qml? ( ~dev-qt/qtdeclarative-5. RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=a6f30234fedf25df05bd7c52e2b69302 diff --git a/metadata/md5-cache/dev-qt/linguist-tools-5.7.1 b/metadata/md5-cache/dev-qt/linguist-tools-5.7.1 index 727f69863227..9432b366ba0f 100644 --- a/metadata/md5-cache/dev-qt/linguist-tools-5.7.1 +++ b/metadata/md5-cache/dev-qt/linguist-tools-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtxml-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtxml-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Tools for working with Qt translation data files EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtxml-5.7.1 qml? ( ~dev-qt/qtdeclarative-5. RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=dbeed594e096764ff6642240bd1240cf diff --git a/metadata/md5-cache/dev-qt/linguist-tools-5.9.2 b/metadata/md5-cache/dev-qt/linguist-tools-5.9.2 new file mode 100644 index 000000000000..cc8f359f5ef1 --- /dev/null +++ b/metadata/md5-cache/dev-qt/linguist-tools-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtxml-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Tools for working with Qt translation data files +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtxml-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=dc32b3ab2a3b7ad35ec30e454ef5817e diff --git a/metadata/md5-cache/dev-qt/pixeltool-5.6.2 b/metadata/md5-cache/dev-qt/pixeltool-5.6.2 index 224102b76e3a..c59f9ac291d6 100644 --- a/metadata/md5-cache/dev-qt/pixeltool-5.6.2 +++ b/metadata/md5-cache/dev-qt/pixeltool-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtwidgets-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtwidgets-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt screen magnifier EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=ab8d1eab57abd5d523e84cc31dfec172 diff --git a/metadata/md5-cache/dev-qt/pixeltool-5.7.1 b/metadata/md5-cache/dev-qt/pixeltool-5.7.1 index de612e65759e..b7c67297d60e 100644 --- a/metadata/md5-cache/dev-qt/pixeltool-5.7.1 +++ b/metadata/md5-cache/dev-qt/pixeltool-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtwidgets-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtwidgets-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt screen magnifier EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=665ad50021991975ec683a46c3a3b72d diff --git a/metadata/md5-cache/dev-qt/pixeltool-5.9.2 b/metadata/md5-cache/dev-qt/pixeltool-5.9.2 new file mode 100644 index 000000000000..c4c8e59820ed --- /dev/null +++ b/metadata/md5-cache/dev-qt/pixeltool-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Qt screen magnifier +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=a10a7c7583a5986442e9a218db32d635 diff --git a/metadata/md5-cache/dev-qt/qdbus-5.6.2 b/metadata/md5-cache/dev-qt/qdbus-5.6.2 index 5cf084baa01a..654b68240350 100644 --- a/metadata/md5-cache/dev-qt/qdbus-5.6.2 +++ b/metadata/md5-cache/dev-qt/qdbus-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 ~dev-qt/qtxml-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 ~dev-qt/qtxml-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Interface to Qt applications communicating over D-Bus EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 ~dev-qt/qtxml-5.6.2 dev-qt/qtc RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=4564a1eab2c56b38faa533072048deef diff --git a/metadata/md5-cache/dev-qt/qdbus-5.7.1 b/metadata/md5-cache/dev-qt/qdbus-5.7.1 index 0e121d2ab32c..fe1bc2e8e1df 100644 --- a/metadata/md5-cache/dev-qt/qdbus-5.7.1 +++ b/metadata/md5-cache/dev-qt/qdbus-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 ~dev-qt/qtxml-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 ~dev-qt/qtxml-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Interface to Qt applications communicating over D-Bus EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 ~dev-qt/qtxml-5.7.1 dev-qt/qtc RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=6dda8a2de2af7ed29b71cc6fdc914ed4 diff --git a/metadata/md5-cache/dev-qt/qdbus-5.9.2 b/metadata/md5-cache/dev-qt/qdbus-5.9.2 new file mode 100644 index 000000000000..7f1b58201551 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qdbus-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdbus-5.9.2 ~dev-qt/qtxml-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Interface to Qt applications communicating over D-Bus +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdbus-5.9.2 ~dev-qt/qtxml-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=082ed90cbe2501d1a63078a9bde9e7ca diff --git a/metadata/md5-cache/dev-qt/qdbusviewer-5.6.2 b/metadata/md5-cache/dev-qt/qdbusviewer-5.6.2 index 1d522098141e..c4452a368bf7 100644 --- a/metadata/md5-cache/dev-qt/qdbusviewer-5.6.2 +++ b/metadata/md5-cache/dev-qt/qdbusviewer-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-5.6.2 ~dev-qt/qtxml-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-5.6.2 ~dev-qt/qtxml-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Graphical tool that lets you introspect D-Bus objects and messages EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qt RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=fee9592ad52a73d19c7b22154a5f4bb2 diff --git a/metadata/md5-cache/dev-qt/qdbusviewer-5.7.1 b/metadata/md5-cache/dev-qt/qdbusviewer-5.7.1 index a1a1b982e3ce..b9d1a5c9cd11 100644 --- a/metadata/md5-cache/dev-qt/qdbusviewer-5.7.1 +++ b/metadata/md5-cache/dev-qt/qdbusviewer-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 ~dev-qt/qtxml-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 ~dev-qt/qtxml-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Graphical tool that lets you introspect D-Bus objects and messages EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qt RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=f54c355e28463628eed095d295a48211 diff --git a/metadata/md5-cache/dev-qt/qdbusviewer-5.9.2 b/metadata/md5-cache/dev-qt/qdbusviewer-5.9.2 new file mode 100644 index 000000000000..0ed40a0a0a6a --- /dev/null +++ b/metadata/md5-cache/dev-qt/qdbusviewer-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdbus-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 ~dev-qt/qtxml-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Graphical tool that lets you introspect D-Bus objects and messages +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdbus-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 ~dev-qt/qtxml-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=5e40923d6d9bfca0dc34cb7a415a7262 diff --git a/metadata/md5-cache/dev-qt/qdoc-5.6.2 b/metadata/md5-cache/dev-qt/qdoc-5.6.2 index a5c63abe01c2..027fd31de93d 100644 --- a/metadata/md5-cache/dev-qt/qdoc-5.6.2 +++ b/metadata/md5-cache/dev-qt/qdoc-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtxml-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtxml-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt documentation generator EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtxml-5.6.2 dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=6264388d852487129cde164b6f44d359 diff --git a/metadata/md5-cache/dev-qt/qdoc-5.7.1 b/metadata/md5-cache/dev-qt/qdoc-5.7.1 index dfb78d563cab..84980083d238 100644 --- a/metadata/md5-cache/dev-qt/qdoc-5.7.1 +++ b/metadata/md5-cache/dev-qt/qdoc-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtxml-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtxml-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt documentation generator EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtxml-5.7.1 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=9d7d023c64c918edf558c7ea703cf9e4 diff --git a/metadata/md5-cache/dev-qt/qdoc-5.9.2 b/metadata/md5-cache/dev-qt/qdoc-5.9.2 new file mode 100644 index 000000000000..2aaa8c55e005 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qdoc-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Qt documentation generator +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=bacbc407873d7db6bd21571e7ffa6050 diff --git a/metadata/md5-cache/dev-qt/qt-creator-4.3.1 b/metadata/md5-cache/dev-qt/qt-creator-4.3.1 index dfec1f947d7c..aae6ad597dde 100644 --- a/metadata/md5-cache/dev-qt/qt-creator-4.3.1 +++ b/metadata/md5-cache/dev-qt/qt-creator-4.3.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.0:5 >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtdeclarative-5.6.0:5[widgets] >=dev-qt/qtgui-5.6.0:5 >=dev-qt/qthelp-5.6.0:5 >=dev-qt/qtnetwork-5.6.0:5[ssl] >=dev-qt/qtprintsupport-5.6.0:5 >=dev-qt/qtquickcontrols-5.6.0:5 >=dev-qt/qtscript-5.6.0:5 >=dev-qt/qtsql-5.6.0:5[sqlite] >=dev-qt/qtsvg-5.6.0:5 >=dev-qt/qtwidgets-5.6.0:5 >=dev-qt/qtx11extras-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-5.6.0:5 ) qbs? ( >=dev-util/qbs-1.8.1-r1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets] ) >=dev-qt/linguist-tools-5.6.0:5 virtual/pkgconfig doc? ( >=dev-qt/qdoc-5.6.0:5 ) test? ( >=dev-qt/qtdeclarative-5.6.0:5[localstorage,xml] >=dev-qt/qtquickcontrols2-5.6.0:5 >=dev-qt/qttest-5.6.0:5 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.0:5 >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtdeclarative-5.6.0:5[widgets] >=dev-qt/qtgui-5.6.0:5 >=dev-qt/qthelp-5.6.0:5 >=dev-qt/qtnetwork-5.6.0:5[ssl] >=dev-qt/qtprintsupport-5.6.0:5 >=dev-qt/qtquickcontrols-5.6.0:5 >=dev-qt/qtscript-5.6.0:5 >=dev-qt/qtsql-5.6.0:5[sqlite] >=dev-qt/qtsvg-5.6.0:5 >=dev-qt/qtwidgets-5.6.0:5 >=dev-qt/qtx11extras-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 clangcodemodel? ( =sys-devel/clang-3.9:0 ) ) designer? ( >=dev-qt/designer-5.6.0:5 ) qbs? ( >=dev-util/qbs-1.8.1-r1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets] ) >=dev-qt/linguist-tools-5.6.0:5 virtual/pkgconfig doc? ( >=dev-qt/qdoc-5.6.0:5 ) test? ( >=dev-qt/qtdeclarative-5.6.0:5[localstorage,xml] >=dev-qt/qtquickcontrols2-5.6.0:5 >=dev-qt/qttest-5.6.0:5 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=Lightweight IDE for C++/QML development centering around Qt EAPI=6 HOMEPAGE=https://doc.qt.io/qtcreator/ IUSE=doc systemd test +webengine android autotools baremetal bazaar clangcodemodel clangstaticanalyzer clearcase cmake cvs designer git glsl ios mercurial modeling nim perforce python qbs qnx scxml subversion valgrind winrt linguas_cs linguas_de linguas_fr linguas_ja linguas_pl linguas_ru linguas_sl linguas_uk linguas_zh_CN linguas_zh_TW test KEYWORDS=amd64 ~arm x86 LICENSE=GPL-3 -RDEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.0:5 >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtdeclarative-5.6.0:5[widgets] >=dev-qt/qtgui-5.6.0:5 >=dev-qt/qthelp-5.6.0:5 >=dev-qt/qtnetwork-5.6.0:5[ssl] >=dev-qt/qtprintsupport-5.6.0:5 >=dev-qt/qtquickcontrols-5.6.0:5 >=dev-qt/qtscript-5.6.0:5 >=dev-qt/qtsql-5.6.0:5[sqlite] >=dev-qt/qtsvg-5.6.0:5 >=dev-qt/qtwidgets-5.6.0:5 >=dev-qt/qtx11extras-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-5.6.0:5 ) qbs? ( >=dev-util/qbs-1.8.1-r1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets] ) sys-devel/gdb[client,python] autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) clangstaticanalyzer? ( >=sys-devel/clang-3.9:* ) cmake? ( dev-util/cmake[server(+)] ) cvs? ( dev-vcs/cvs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( dev-vcs/subversion ) valgrind? ( dev-util/valgrind ) linguas_cs? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_de? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_fr? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_ja? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_pl? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_ru? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_sl? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_uk? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_zh_CN? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_zh_TW? ( >=dev-qt/qttranslations-5.6.0:5 ) +RDEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.0:5 >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtdeclarative-5.6.0:5[widgets] >=dev-qt/qtgui-5.6.0:5 >=dev-qt/qthelp-5.6.0:5 >=dev-qt/qtnetwork-5.6.0:5[ssl] >=dev-qt/qtprintsupport-5.6.0:5 >=dev-qt/qtquickcontrols-5.6.0:5 >=dev-qt/qtscript-5.6.0:5 >=dev-qt/qtsql-5.6.0:5[sqlite] >=dev-qt/qtsvg-5.6.0:5 >=dev-qt/qtwidgets-5.6.0:5 >=dev-qt/qtx11extras-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 clangcodemodel? ( =sys-devel/clang-3.9:0 ) ) designer? ( >=dev-qt/designer-5.6.0:5 ) qbs? ( >=dev-util/qbs-1.8.1-r1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets] ) sys-devel/gdb[client,python] autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) clangstaticanalyzer? ( =sys-devel/clang-3.9:0 ) ) cmake? ( dev-util/cmake[server(+)] ) cvs? ( dev-vcs/cvs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( dev-vcs/subversion ) valgrind? ( dev-util/valgrind ) linguas_cs? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_de? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_fr? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_ja? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_pl? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_ru? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_sl? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_uk? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_zh_CN? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_zh_TW? ( >=dev-qt/qttranslations-5.6.0:5 ) SLOT=0 SRC_URI=https://download.qt.io/official_releases/qtcreator/4.3/4.3.1/qt-creator-opensource-src-4.3.1.tar.xz _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f l10n 2c2e15383ba891d642f51896a7f0ecfe llvm fe231a791db197943447fdeadafa7e08 multilib 97f470f374f2e94ccab04a2fb21d811e qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=5c7fa66234016dd504a02466241eabdb +_md5_=db3b2c29c18b5c78a3364dd9517c6a56 diff --git a/metadata/md5-cache/dev-qt/qt-creator-4.4.1 b/metadata/md5-cache/dev-qt/qt-creator-4.4.1 new file mode 100644 index 000000000000..54a9d6a20bf4 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qt-creator-4.4.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack +DEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.2:5 >=dev-qt/qtcore-5.6.2:5 >=dev-qt/qtdeclarative-5.6.2:5[widgets] >=dev-qt/qtgui-5.6.2:5 >=dev-qt/qthelp-5.6.2:5 >=dev-qt/qtnetwork-5.6.2:5[ssl] >=dev-qt/qtprintsupport-5.6.2:5 >=dev-qt/qtquickcontrols-5.6.2:5 >=dev-qt/qtscript-5.6.2:5 >=dev-qt/qtsql-5.6.2:5[sqlite] >=dev-qt/qtsvg-5.6.2:5 >=dev-qt/qtwidgets-5.6.2:5 >=dev-qt/qtx11extras-5.6.2:5 >=dev-qt/qtxml-5.6.2:5 clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-5.6.2:5 ) qbs? ( >=dev-util/qbs-1.9.1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.2:5[widgets] ) >=dev-qt/linguist-tools-5.6.2:5 virtual/pkgconfig doc? ( >=dev-qt/qdoc-5.6.2:5 ) test? ( >=dev-qt/qtdeclarative-5.6.2:5[localstorage,xml] >=dev-qt/qtquickcontrols2-5.6.2:5 >=dev-qt/qttest-5.6.2:5 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Lightweight IDE for C++/QML development centering around Qt +EAPI=6 +HOMEPAGE=https://doc.qt.io/qtcreator/ +IUSE=doc systemd test +webengine android autotools baremetal bazaar clangcodemodel clangstaticanalyzer clearcase cmake cvs designer git glsl ios mercurial modeling nim perforce python qbs qnx scxml subversion valgrind winrt linguas_cs linguas_de linguas_fr linguas_ja linguas_pl linguas_ru linguas_sl linguas_uk linguas_zh_CN linguas_zh_TW test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=GPL-3 +RDEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.2:5 >=dev-qt/qtcore-5.6.2:5 >=dev-qt/qtdeclarative-5.6.2:5[widgets] >=dev-qt/qtgui-5.6.2:5 >=dev-qt/qthelp-5.6.2:5 >=dev-qt/qtnetwork-5.6.2:5[ssl] >=dev-qt/qtprintsupport-5.6.2:5 >=dev-qt/qtquickcontrols-5.6.2:5 >=dev-qt/qtscript-5.6.2:5 >=dev-qt/qtsql-5.6.2:5[sqlite] >=dev-qt/qtsvg-5.6.2:5 >=dev-qt/qtwidgets-5.6.2:5 >=dev-qt/qtx11extras-5.6.2:5 >=dev-qt/qtxml-5.6.2:5 clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-5.6.2:5 ) qbs? ( >=dev-util/qbs-1.9.1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.2:5[widgets] ) sys-devel/gdb[client,python] autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) clangstaticanalyzer? ( >=sys-devel/clang-3.9:* ) cmake? ( dev-util/cmake[server(+)] ) cvs? ( dev-vcs/cvs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( dev-vcs/subversion ) valgrind? ( dev-util/valgrind ) linguas_cs? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_de? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_fr? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_ja? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_pl? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_ru? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_sl? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_uk? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_zh_CN? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_zh_TW? ( >=dev-qt/qttranslations-5.6.2:5 ) +SLOT=0 +SRC_URI=https://download.qt.io/official_releases/qtcreator/4.4/4.4.1/qt-creator-opensource-src-4.4.1.tar.xz +_eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f l10n 2c2e15383ba891d642f51896a7f0ecfe llvm fe231a791db197943447fdeadafa7e08 multilib 97f470f374f2e94ccab04a2fb21d811e qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=83167c9d3d9d27725cabbb8ed756c5ad diff --git a/metadata/md5-cache/dev-qt/qt-creator-9999 b/metadata/md5-cache/dev-qt/qt-creator-9999 index c8e950a47135..af5cd58a4233 100644 --- a/metadata/md5-cache/dev-qt/qt-creator-9999 +++ b/metadata/md5-cache/dev-qt/qt-creator-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=configure install postinst postrm preinst prepare setup test unpack -DEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.0:5 >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtdeclarative-5.6.0:5[widgets] >=dev-qt/qtgui-5.6.0:5 >=dev-qt/qthelp-5.6.0:5 >=dev-qt/qtnetwork-5.6.0:5[ssl] >=dev-qt/qtprintsupport-5.6.0:5 >=dev-qt/qtquickcontrols-5.6.0:5 >=dev-qt/qtscript-5.6.0:5 >=dev-qt/qtsql-5.6.0:5[sqlite] >=dev-qt/qtsvg-5.6.0:5 >=dev-qt/qtwidgets-5.6.0:5 >=dev-qt/qtx11extras-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-5.6.0:5 ) qbs? ( >=dev-util/qbs-1.8.1-r1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets] ) >=dev-qt/linguist-tools-5.6.0:5 virtual/pkgconfig doc? ( >=dev-qt/qdoc-5.6.0:5 ) test? ( >=dev-qt/qtdeclarative-5.6.0:5[localstorage,xml] >=dev-qt/qtquickcontrols2-5.6.0:5 >=dev-qt/qttest-5.6.0:5 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-util/desktop-file-utils x11-misc/shared-mime-info >=dev-vcs/git-1.8.2.1 +DEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.2:5 >=dev-qt/qtcore-5.6.2:5 >=dev-qt/qtdeclarative-5.6.2:5[widgets] >=dev-qt/qtgui-5.6.2:5 >=dev-qt/qthelp-5.6.2:5 >=dev-qt/qtnetwork-5.6.2:5[ssl] >=dev-qt/qtprintsupport-5.6.2:5 >=dev-qt/qtquickcontrols-5.6.2:5 >=dev-qt/qtscript-5.6.2:5 >=dev-qt/qtsql-5.6.2:5[sqlite] >=dev-qt/qtsvg-5.6.2:5 >=dev-qt/qtwidgets-5.6.2:5 >=dev-qt/qtx11extras-5.6.2:5 >=dev-qt/qtxml-5.6.2:5 clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-5.6.2:5 ) qbs? ( >=dev-util/qbs-1.9.1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.2:5[widgets] ) >=dev-qt/linguist-tools-5.6.2:5 virtual/pkgconfig doc? ( >=dev-qt/qdoc-5.6.2:5 ) test? ( >=dev-qt/qtdeclarative-5.6.2:5[localstorage,xml] >=dev-qt/qtquickcontrols2-5.6.2:5 >=dev-qt/qttest-5.6.2:5 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-util/desktop-file-utils x11-misc/shared-mime-info >=dev-vcs/git-1.8.2.1 DESCRIPTION=Lightweight IDE for C++/QML development centering around Qt EAPI=6 HOMEPAGE=https://doc.qt.io/qtcreator/ IUSE=doc systemd test +webengine android autotools baremetal bazaar clangcodemodel clangstaticanalyzer clearcase cmake cvs designer git glsl ios mercurial modeling nim perforce python qbs qnx scxml subversion valgrind winrt linguas_cs linguas_de linguas_fr linguas_ja linguas_pl linguas_ru linguas_sl linguas_uk linguas_zh_CN linguas_zh_TW test LICENSE=GPL-3 -RDEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.0:5 >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtdeclarative-5.6.0:5[widgets] >=dev-qt/qtgui-5.6.0:5 >=dev-qt/qthelp-5.6.0:5 >=dev-qt/qtnetwork-5.6.0:5[ssl] >=dev-qt/qtprintsupport-5.6.0:5 >=dev-qt/qtquickcontrols-5.6.0:5 >=dev-qt/qtscript-5.6.0:5 >=dev-qt/qtsql-5.6.0:5[sqlite] >=dev-qt/qtsvg-5.6.0:5 >=dev-qt/qtwidgets-5.6.0:5 >=dev-qt/qtx11extras-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-5.6.0:5 ) qbs? ( >=dev-util/qbs-1.8.1-r1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets] ) sys-devel/gdb[client,python] autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) clangstaticanalyzer? ( >=sys-devel/clang-3.9:* ) cmake? ( dev-util/cmake[server(+)] ) cvs? ( dev-vcs/cvs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( dev-vcs/subversion ) valgrind? ( dev-util/valgrind ) linguas_cs? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_de? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_fr? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_ja? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_pl? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_ru? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_sl? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_uk? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_zh_CN? ( >=dev-qt/qttranslations-5.6.0:5 ) linguas_zh_TW? ( >=dev-qt/qttranslations-5.6.0:5 ) +RDEPEND==dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-5.6.2:5 >=dev-qt/qtcore-5.6.2:5 >=dev-qt/qtdeclarative-5.6.2:5[widgets] >=dev-qt/qtgui-5.6.2:5 >=dev-qt/qthelp-5.6.2:5 >=dev-qt/qtnetwork-5.6.2:5[ssl] >=dev-qt/qtprintsupport-5.6.2:5 >=dev-qt/qtquickcontrols-5.6.2:5 >=dev-qt/qtscript-5.6.2:5 >=dev-qt/qtsql-5.6.2:5[sqlite] >=dev-qt/qtsvg-5.6.2:5 >=dev-qt/qtwidgets-5.6.2:5 >=dev-qt/qtx11extras-5.6.2:5 >=dev-qt/qtxml-5.6.2:5 clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-5.6.2:5 ) qbs? ( >=dev-util/qbs-1.9.1 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-5.6.2:5[widgets] ) sys-devel/gdb[client,python] autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) clangstaticanalyzer? ( >=sys-devel/clang-3.9:* ) cmake? ( dev-util/cmake[server(+)] ) cvs? ( dev-vcs/cvs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( dev-vcs/subversion ) valgrind? ( dev-util/valgrind ) linguas_cs? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_de? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_fr? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_ja? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_pl? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_ru? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_sl? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_uk? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_zh_CN? ( >=dev-qt/qttranslations-5.6.2:5 ) linguas_zh_TW? ( >=dev-qt/qttranslations-5.6.2:5 ) SLOT=0 _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f git-r3 52a888802d25387c2c74cb845d1219bc l10n 2c2e15383ba891d642f51896a7f0ecfe llvm fe231a791db197943447fdeadafa7e08 multilib 97f470f374f2e94ccab04a2fb21d811e qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=947008a03a343f83d9012f0a7b3e27d1 +_md5_=83167c9d3d9d27725cabbb8ed756c5ad diff --git a/metadata/md5-cache/dev-qt/qt-docs-5.9.2_p201710050733 b/metadata/md5-cache/dev-qt/qt-docs-5.9.2_p201710050733 new file mode 100644 index 000000000000..a915700e0bd7 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qt-docs-5.9.2_p201710050733 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install prepare +DEPEND=app-arch/p7zip +DESCRIPTION=Documentation for Qt5, for use with Qt Creator and other tools +EAPI=6 +HOMEPAGE=https://www.qt.io/ +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=FDL-1.3 +SLOT=5 +SRC_URI=https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_592_src_doc_examples/qt.592.doc/5.9.2-0-201710050733qt-everywhere-documentation.7z +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=18972b0c065f1de261e0b5c4f3a33a26 diff --git a/metadata/md5-cache/dev-qt/qt3d-5.7.1-r1 b/metadata/md5-cache/dev-qt/qt3d-5.7.1-r1 index d8e8ad5c85da..148733024a92 100644 --- a/metadata/md5-cache/dev-qt/qt3d-5.7.1-r1 +++ b/metadata/md5-cache/dev-qt/qt3d-5.7.1-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtconcurrent-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 sys-libs/zlib qml? ( ~dev-qt/qtdeclarative-5.7.1[gles2=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtconcurrent-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 sys-libs/zlib qml? ( ~dev-qt/qtdeclarative-5.7.1[gles2=] ) dev-lang/perl virtual/pkgconfig DESCRIPTION=The 3D module for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtconcurrent-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qt3d-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=a14cade7a74204bc44bc18e96f732f95 diff --git a/metadata/md5-cache/dev-qt/qt3d-5.9.2 b/metadata/md5-cache/dev-qt/qt3d-5.9.2 new file mode 100644 index 000000000000..cb429daa6fe5 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qt3d-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtconcurrent-5.9.2 ~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 >=media-libs/assimp-4.0.0 qml? ( ~dev-qt/qtdeclarative-5.9.2[gles2=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=The 3D module for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=gles2 qml debug test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtconcurrent-5.9.2 ~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 >=media-libs/assimp-4.0.0 qml? ( ~dev-qt/qtdeclarative-5.9.2[gles2=] ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qt3d-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=e83fe3cccab7d8f86070c41445f9ad7f diff --git a/metadata/md5-cache/dev-qt/qtbluetooth-5.6.2 b/metadata/md5-cache/dev-qt/qtbluetooth-5.6.2 index 0c99a5ad3ca6..5c8bf915075f 100644 --- a/metadata/md5-cache/dev-qt/qtbluetooth-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtbluetooth-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtconcurrent-5.6.2 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 >=net-wireless/bluez-5 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) ~dev-qt/qtnetwork-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtconcurrent-5.6.2 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 >=net-wireless/bluez-5 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) ~dev-qt/qtnetwork-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Bluetooth support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtconcurrent-5.6.2 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-5.6.2 >=n RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtconnectivity-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=c4cb8908b9c0c84904adbdbb0cd9495c diff --git a/metadata/md5-cache/dev-qt/qtbluetooth-5.7.1 b/metadata/md5-cache/dev-qt/qtbluetooth-5.7.1 index f762d162fa14..dfe557d248c7 100644 --- a/metadata/md5-cache/dev-qt/qtbluetooth-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtbluetooth-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtconcurrent-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 >=net-wireless/bluez-5 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) ~dev-qt/qtnetwork-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtconcurrent-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 >=net-wireless/bluez-5 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) ~dev-qt/qtnetwork-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Bluetooth support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtconcurrent-5.7.1 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtdbus-5.7.1 >=n RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtconnectivity-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=2b95f75a1c6c5d4586fe1c7eeb71342f diff --git a/metadata/md5-cache/dev-qt/qtbluetooth-5.9.2 b/metadata/md5-cache/dev-qt/qtbluetooth-5.9.2 new file mode 100644 index 000000000000..305c4d73d3af --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtbluetooth-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtconcurrent-5.9.2 ~dev-qt/qtcore-5.9.2 ~dev-qt/qtdbus-5.9.2 >=net-wireless/bluez-5:= qml? ( ~dev-qt/qtdeclarative-5.9.2 ) ~dev-qt/qtnetwork-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Bluetooth support library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml debug test +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtconcurrent-5.9.2 ~dev-qt/qtcore-5.9.2 ~dev-qt/qtdbus-5.9.2 >=net-wireless/bluez-5:= qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtconnectivity-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=85c02300c40202ba90824059fffad21a diff --git a/metadata/md5-cache/dev-qt/qtcharts-5.7.1 b/metadata/md5-cache/dev-qt/qtcharts-5.7.1 index 4a6020be5a29..6b59e6f3a5a3 100644 --- a/metadata/md5-cache/dev-qt/qtcharts-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtcharts-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Chart component library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 qml? ( RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtcharts-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=7a25fc03e96bb3ae33fa8569bebd2f4e diff --git a/metadata/md5-cache/dev-qt/qtcharts-5.9.2 b/metadata/md5-cache/dev-qt/qtcharts-5.9.2 new file mode 100644 index 000000000000..62c0e78c357c --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtcharts-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Chart component library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml debug test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtcharts-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=491ee4b1f51e7d699947fc4815f7a7c0 diff --git a/metadata/md5-cache/dev-qt/qtconcurrent-5.6.2 b/metadata/md5-cache/dev-qt/qtconcurrent-5.6.2 index 60d949252534..45485d08341f 100644 --- a/metadata/md5-cache/dev-qt/qtconcurrent-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtconcurrent-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Multi-threading concurrence support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=19dfac8cdb0f306958d2024593e0cfdd diff --git a/metadata/md5-cache/dev-qt/qtconcurrent-5.7.1 b/metadata/md5-cache/dev-qt/qtconcurrent-5.7.1 index 8dda00430726..a04b0861c604 100644 --- a/metadata/md5-cache/dev-qt/qtconcurrent-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtconcurrent-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Multi-threading concurrence support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=fe9e4778b359dcd21362dc37c1ce3b82 diff --git a/metadata/md5-cache/dev-qt/qtconcurrent-5.9.2 b/metadata/md5-cache/dev-qt/qtconcurrent-5.9.2 new file mode 100644 index 000000000000..20eaab007b38 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtconcurrent-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Multi-threading concurrence support library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=2928615655ff69503d98652a1e5021ec diff --git a/metadata/md5-cache/dev-qt/qtcore-5.6.2-r1 b/metadata/md5-cache/dev-qt/qtcore-5.6.2-r1 index d935de6f09f4..14b4d592bb58 100644 --- a/metadata/md5-cache/dev-qt/qtcore-5.6.2-r1 +++ b/metadata/md5-cache/dev-qt/qtcore-5.6.2-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-libs/glib:2 >=dev-libs/libpcre-8.38[pcre16,unicode] >=sys-libs/zlib-1.2.5 virtual/libiconv icu? ( dev-libs/icu:= ) systemd? ( sys-apps/systemd:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=dev-libs/glib:2 >=dev-libs/libpcre-8.38[pcre16,unicode] >=sys-libs/zlib-1.2.5 virtual/libiconv icu? ( dev-libs/icu:= ) systemd? ( sys-apps/systemd:= ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Cross-platform application development framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=dev-libs/glib:2 >=dev-libs/libpcre-8.38[pcre16,unicode] >=sys-libs/zlib- RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=dab71a042cd1b7d8e4a96a7e94ee1c4c diff --git a/metadata/md5-cache/dev-qt/qtcore-5.7.1-r3 b/metadata/md5-cache/dev-qt/qtcore-5.7.1-r3 index de7ea1cb7cbf..633a2f25c938 100644 --- a/metadata/md5-cache/dev-qt/qtcore-5.7.1-r3 +++ b/metadata/md5-cache/dev-qt/qtcore-5.7.1-r3 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-libs/double-conversion:= dev-libs/glib:2 >=dev-libs/libpcre-8.38[pcre16,unicode] >=sys-libs/zlib-1.2.5 virtual/libiconv icu? ( dev-libs/icu:= ) systemd? ( sys-apps/systemd:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=dev-libs/double-conversion:= dev-libs/glib:2 >=dev-libs/libpcre-8.38[pcre16,unicode] >=sys-libs/zlib-1.2.5 virtual/libiconv icu? ( dev-libs/icu:= ) systemd? ( sys-apps/systemd:= ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Cross-platform application development framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=dev-libs/double-conversion:= dev-libs/glib:2 >=dev-libs/libpcre-8.38[pcr RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=a367bd278558379df42d2c4b165d2ef3 diff --git a/metadata/md5-cache/dev-qt/qtcore-5.9.2 b/metadata/md5-cache/dev-qt/qtcore-5.9.2 new file mode 100644 index 000000000000..f7a73049c5ea --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtcore-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2[pcre16,unicode] sys-libs/zlib icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) systemd? ( sys-apps/systemd:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Cross-platform application development framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=icu systemd debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2[pcre16,unicode] sys-libs/zlib icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) systemd? ( sys-apps/systemd:= ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=1b44ef7f97422cc1df65f13266b6b8b8 diff --git a/metadata/md5-cache/dev-qt/qtdatavis3d-5.7.1 b/metadata/md5-cache/dev-qt/qtdatavis3d-5.7.1 index 1edc7a430fdb..b98345598b27 100644 --- a/metadata/md5-cache/dev-qt/qtdatavis3d-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtdatavis3d-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] qml? ( ~dev-qt/qtdeclarative-5.7.1[gles2=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] qml? ( ~dev-qt/qtdeclarative-5.7.1[gles2=] ) dev-lang/perl virtual/pkgconfig DESCRIPTION=3D data visualization library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] qml? ( ~dev-qt/qtdeclar RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtdatavis3d-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=5efd699a913bf017c8ae7b2f715d37cb diff --git a/metadata/md5-cache/dev-qt/qtdatavis3d-5.9.2 b/metadata/md5-cache/dev-qt/qtdatavis3d-5.9.2 new file mode 100644 index 000000000000..b7a778830bd8 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtdatavis3d-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] qml? ( ~dev-qt/qtdeclarative-5.9.2[gles2=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=3D data visualization library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=gles2 qml debug test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] qml? ( ~dev-qt/qtdeclarative-5.9.2[gles2=] ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtdatavis3d-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=e50f455d4b2ffbf64a772f94f4342633 diff --git a/metadata/md5-cache/dev-qt/qtdbus-5.6.2 b/metadata/md5-cache/dev-qt/qtdbus-5.6.2 index c18baecba092..683ae49bbd3c 100644 --- a/metadata/md5-cache/dev-qt/qtdbus-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtdbus-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 >=sys-apps/dbus-1.4.20 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 >=sys-apps/dbus-1.4.20 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt5 module for inter-process communication over the D-Bus protocol EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 >=sys-apps/dbus-1.4.20 dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=2dc3a90f14d49429a9b2a209d4a7fb08 diff --git a/metadata/md5-cache/dev-qt/qtdbus-5.7.1 b/metadata/md5-cache/dev-qt/qtdbus-5.7.1 index 38c070952bd5..da929a30d3e9 100644 --- a/metadata/md5-cache/dev-qt/qtdbus-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtdbus-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 >=sys-apps/dbus-1.4.20 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 >=sys-apps/dbus-1.4.20 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt5 module for inter-process communication over the D-Bus protocol EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 >=sys-apps/dbus-1.4.20 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=300d9f5a3bb98682966d30148e5f7e0c diff --git a/metadata/md5-cache/dev-qt/qtdbus-5.9.2 b/metadata/md5-cache/dev-qt/qtdbus-5.9.2 new file mode 100644 index 000000000000..69e5cd347789 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtdbus-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 >=sys-apps/dbus-1.4.20 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Qt5 module for inter-process communication over the D-Bus protocol +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 >=sys-apps/dbus-1.4.20 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=22652e1639b9804593ec1aacedf30212 diff --git a/metadata/md5-cache/dev-qt/qtdeclarative-5.6.2 b/metadata/md5-cache/dev-qt/qtdeclarative-5.6.2 index 18ba4fa74123..0d570f711d4e 100644 --- a/metadata/md5-cache/dev-qt/qtdeclarative-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtdeclarative-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qttest-5.6.2 localstorage? ( ~dev-qt/qtsql-5.6.2 ) widgets? ( ~dev-qt/qtwidgets-5.6.2[gles2=] ) xml? ( ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtxmlpatterns-5.6.2 ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qttest-5.6.2 localstorage? ( ~dev-qt/qtsql-5.6.2 ) widgets? ( ~dev-qt/qtwidgets-5.6.2[gles2=] ) xml? ( ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtxmlpatterns-5.6.2 ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=The QML and Quick modules for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtnetwork-5.6.2 RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtdeclarative-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=fe699d2c08b79ab0257ce6d89ae80942 diff --git a/metadata/md5-cache/dev-qt/qtdeclarative-5.7.1 b/metadata/md5-cache/dev-qt/qtdeclarative-5.7.1 index 7c75c0b05fc1..e194377ffb65 100644 --- a/metadata/md5-cache/dev-qt/qtdeclarative-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtdeclarative-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qttest-5.7.1 localstorage? ( ~dev-qt/qtsql-5.7.1 ) widgets? ( ~dev-qt/qtwidgets-5.7.1[gles2=] ) xml? ( ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtxmlpatterns-5.7.1 ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qttest-5.7.1 localstorage? ( ~dev-qt/qtsql-5.7.1 ) widgets? ( ~dev-qt/qtwidgets-5.7.1[gles2=] ) xml? ( ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtxmlpatterns-5.7.1 ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=The QML and Quick modules for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtdeclarative-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=3c04f179185fb1c7beaa54553ad7ecc8 diff --git a/metadata/md5-cache/dev-qt/qtdeclarative-5.7.1-r1 b/metadata/md5-cache/dev-qt/qtdeclarative-5.7.1-r1 index 665daace93b6..484b81d069e7 100644 --- a/metadata/md5-cache/dev-qt/qtdeclarative-5.7.1-r1 +++ b/metadata/md5-cache/dev-qt/qtdeclarative-5.7.1-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qttest-5.7.1 localstorage? ( ~dev-qt/qtsql-5.7.1 ) widgets? ( ~dev-qt/qtwidgets-5.7.1[gles2=] ) xml? ( ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtxmlpatterns-5.7.1 ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qttest-5.7.1 localstorage? ( ~dev-qt/qtsql-5.7.1 ) widgets? ( ~dev-qt/qtwidgets-5.7.1[gles2=] ) xml? ( ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtxmlpatterns-5.7.1 ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=The QML and Quick modules for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtdeclarative-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=b0483d4b682cb1b145552c1cdc5ecdab diff --git a/metadata/md5-cache/dev-qt/qtdeclarative-5.9.2 b/metadata/md5-cache/dev-qt/qtdeclarative-5.9.2 new file mode 100644 index 000000000000..fe682e63bd94 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtdeclarative-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qttest-5.9.2 localstorage? ( ~dev-qt/qtsql-5.9.2 ) widgets? ( ~dev-qt/qtwidgets-5.9.2[gles2=] ) xml? ( ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtxmlpatterns-5.9.2 ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=The QML and Quick modules for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=gles2 +jit localstorage +widgets xml debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qttest-5.9.2 localstorage? ( ~dev-qt/qtsql-5.9.2 ) widgets? ( ~dev-qt/qtwidgets-5.9.2[gles2=] ) xml? ( ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtxmlpatterns-5.9.2 ) !=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.0.6:= >=sys-libs/zlib-1.2.5 virtual/opengl dbus? ( ~dev-qt/qtdbus-5.6.2 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gtkstyle? ( x11-libs/gtk+:2 x11-libs/pango !!x11-libs/cairo[qt4] ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.6.2 ) udev? ( virtual/libudev:= ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXi-1.7.4 x11-libs/libXrender >=x11-libs/libxcb-1.10:=[xkb] >=x11-libs/libxkbcommon-0.4.1[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=dev-libs/glib:2 ~dev-qt/qtcore-5.6.2 media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.0.6:= >=sys-libs/zlib-1.2.5 virtual/opengl dbus? ( ~dev-qt/qtdbus-5.6.2 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gtkstyle? ( x11-libs/gtk+:2 x11-libs/pango !!x11-libs/cairo[qt4] ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.6.2 ) udev? ( virtual/libudev:= ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXi-1.7.4 x11-libs/libXrender >=x11-libs/libxcb-1.10:=[xkb] >=x11-libs/libxkbcommon-0.4.1[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) dev-lang/perl virtual/pkgconfig DESCRIPTION=The GUI module and platform plugins for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( eglfs xcb ) accessibility? ( dbus xcb ) eglfs? ( egl ) ibus? ( RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=472cdcf26c8a92af8f6c45d7951b5b3a diff --git a/metadata/md5-cache/dev-qt/qtgui-5.7.1-r1 b/metadata/md5-cache/dev-qt/qtgui-5.7.1-r1 index 83d0de3b00e4..dcf5b1fe4e8c 100644 --- a/metadata/md5-cache/dev-qt/qtgui-5.7.1-r1 +++ b/metadata/md5-cache/dev-qt/qtgui-5.7.1-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-libs/glib:2 ~dev-qt/qtcore-5.7.1 media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.0.6:= >=sys-libs/zlib-1.2.5 virtual/opengl dbus? ( ~dev-qt/qtdbus-5.7.1 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango !!x11-libs/cairo[qt4] ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.7.1 ) udev? ( virtual/libudev:= ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXi-1.7.4 x11-libs/libXrender >=x11-libs/libxcb-1.10:=[xkb] >=x11-libs/libxkbcommon-0.4.1[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=dev-libs/glib:2 ~dev-qt/qtcore-5.7.1 media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.0.6:= >=sys-libs/zlib-1.2.5 virtual/opengl dbus? ( ~dev-qt/qtdbus-5.7.1 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango !!x11-libs/cairo[qt4] ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.7.1 ) udev? ( virtual/libudev:= ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXi-1.7.4 x11-libs/libXrender >=x11-libs/libxcb-1.10:=[xkb] >=x11-libs/libxkbcommon-0.4.1[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) dev-lang/perl virtual/pkgconfig DESCRIPTION=The GUI module and platform plugins for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( eglfs xcb ) accessibility? ( dbus xcb ) eglfs? ( egl ) ibus? ( RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=f3f7e257dfac151c52801eeae2bb30a3 diff --git a/metadata/md5-cache/dev-qt/qtgui-5.9.2 b/metadata/md5-cache/dev-qt/qtgui-5.9.2 new file mode 100644 index 000000000000..63cee2fdad01 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtgui-5.9.2 @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=dev-libs/glib:2 ~dev-qt/qtcore-5.9.2 media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.0.6:= >=sys-libs/zlib-1.2.5 virtual/opengl dbus? ( ~dev-qt/qtdbus-5.9.2 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.9.2 ) udev? ( virtual/libudev:= ) vnc? ( ~dev-qt/qtnetwork-5.9.2 ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXi-1.7.4 >=x11-libs/libxcb-1.10:=[xkb] >=x11-libs/libxkbcommon-0.4.1[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=The GUI module and platform plugins for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=accessibility dbus egl eglfs evdev +gif gles2 ibus jpeg libinput +png tslib tuio +udev vnc +xcb debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +PDEPEND=ibus? ( app-i18n/ibus ) +RDEPEND=dev-libs/glib:2 ~dev-qt/qtcore-5.9.2 media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.0.6:= >=sys-libs/zlib-1.2.5 virtual/opengl dbus? ( ~dev-qt/qtdbus-5.9.2 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.9.2 ) udev? ( virtual/libudev:= ) vnc? ( ~dev-qt/qtnetwork-5.9.2 ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libXi-1.7.4 >=x11-libs/libxcb-1.10:=[xkb] >=x11-libs/libxkbcommon-0.4.1[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) dev-qt/qtchooser +REQUIRED_USE=|| ( eglfs xcb ) accessibility? ( dbus xcb ) eglfs? ( egl ) ibus? ( dbus ) libinput? ( udev ) xcb? ( gles2? ( egl ) ) +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=8a9818be321394b382cb2ee165eb08eb diff --git a/metadata/md5-cache/dev-qt/qthelp-5.6.2 b/metadata/md5-cache/dev-qt/qthelp-5.6.2 index 69e14c833394..5ff8b9003c63 100644 --- a/metadata/md5-cache/dev-qt/qthelp-5.6.2 +++ b/metadata/md5-cache/dev-qt/qthelp-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtsql-5.6.2[sqlite] ~dev-qt/qtwidgets-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtsql-5.6.2[sqlite] ~dev-qt/qtwidgets-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt5 module for integrating online documentation into applications EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=1bbd987ef5873c8a96d90f97d13f0d6f diff --git a/metadata/md5-cache/dev-qt/qthelp-5.7.1 b/metadata/md5-cache/dev-qt/qthelp-5.7.1 index a2b6eaa35036..1849fb751022 100644 --- a/metadata/md5-cache/dev-qt/qthelp-5.7.1 +++ b/metadata/md5-cache/dev-qt/qthelp-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtsql-5.7.1[sqlite] ~dev-qt/qtwidgets-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtsql-5.7.1[sqlite] ~dev-qt/qtwidgets-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt5 module for integrating online documentation into applications EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=d0795657f52e7ab88a243d3823d2f07d diff --git a/metadata/md5-cache/dev-qt/qthelp-5.9.2 b/metadata/md5-cache/dev-qt/qthelp-5.9.2 new file mode 100644 index 000000000000..00fc8b746105 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qthelp-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtsql-5.9.2[sqlite] ~dev-qt/qtwidgets-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Qt5 module for integrating online documentation into applications +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtsql-5.9.2[sqlite] ~dev-qt/qtwidgets-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=84b6c6bc060f498ee58070f6e13bcf74 diff --git a/metadata/md5-cache/dev-qt/qtimageformats-5.6.2 b/metadata/md5-cache/dev-qt/qtimageformats-5.6.2 index 6123c4e6de04..405fbc9c2a72 100644 --- a/metadata/md5-cache/dev-qt/qtimageformats-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtimageformats-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 media-libs/jasper:= media-libs/libmng:= media-libs/libwebp:= media-libs/tiff:0 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 media-libs/jasper:= media-libs/libmng:= media-libs/libwebp:= media-libs/tiff:0 dev-lang/perl virtual/pkgconfig DESCRIPTION=Additional format plugins for the Qt image I/O system EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 media-libs/jasper:= media-libs/ RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtimageformats-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=61bd8fdd89e77966ee639130a6a9f19c diff --git a/metadata/md5-cache/dev-qt/qtimageformats-5.7.1 b/metadata/md5-cache/dev-qt/qtimageformats-5.7.1 index a7d0ac7c0350..4ecd38cc9425 100644 --- a/metadata/md5-cache/dev-qt/qtimageformats-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtimageformats-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 media-libs/jasper:= media-libs/libmng:= media-libs/libwebp:= media-libs/tiff:0 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 media-libs/jasper:= media-libs/libmng:= media-libs/libwebp:= media-libs/tiff:0 dev-lang/perl virtual/pkgconfig DESCRIPTION=Additional format plugins for the Qt image I/O system EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 media-libs/jasper:= media-libs/ RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtimageformats-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=5b45684084405c2cb0a770ef1e1b39e5 diff --git a/metadata/md5-cache/dev-qt/qtimageformats-5.9.2 b/metadata/md5-cache/dev-qt/qtimageformats-5.9.2 new file mode 100644 index 000000000000..8001931d2c4d --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtimageformats-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 media-libs/jasper:= media-libs/libmng:= media-libs/libwebp:= media-libs/tiff:0 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Additional format plugins for the Qt image I/O system +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 media-libs/jasper:= media-libs/libmng:= media-libs/libwebp:= media-libs/tiff:0 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtimageformats-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=7c0973e4d7f95cbe35bbc05c9be5209c diff --git a/metadata/md5-cache/dev-qt/qtlocation-5.6.2 b/metadata/md5-cache/dev-qt/qtlocation-5.6.2 index 5c1a7cf5810d..98e322d752a0 100644 --- a/metadata/md5-cache/dev-qt/qtlocation-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtlocation-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtpositioning-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtpositioning-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=The Location module for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-5.6.2 ~de RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtlocation-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=5dfd22df5fc0f32f7e30834608d9bcaf diff --git a/metadata/md5-cache/dev-qt/qtlocation-5.7.1 b/metadata/md5-cache/dev-qt/qtlocation-5.7.1 index 308f61c308e4..80d5e2ebf431 100644 --- a/metadata/md5-cache/dev-qt/qtlocation-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtlocation-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtpositioning-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtpositioning-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=The Location module for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~de RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtlocation-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=f16af598359c715ab69d2186912d6241 diff --git a/metadata/md5-cache/dev-qt/qtlocation-5.9.2 b/metadata/md5-cache/dev-qt/qtlocation-5.9.2 new file mode 100644 index 000000000000..603e67d74073 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtlocation-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtpositioning-5.9.2 ~dev-qt/qtsql-5.9.2 sys-libs/zlib ~dev-qt/qtconcurrent-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=The Location module for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtpositioning-5.9.2 ~dev-qt/qtsql-5.9.2 sys-libs/zlib dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtlocation-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=6ca4f0be04c8ee629e9cdde992624dae diff --git a/metadata/md5-cache/dev-qt/qtmultimedia-5.6.2 b/metadata/md5-cache/dev-qt/qtmultimedia-5.6.2 index 43567d289fe1..2f72c964714a 100644 --- a/metadata/md5-cache/dev-qt/qtmultimedia-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtmultimedia-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtnetwork-5.6.2 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( ~dev-qt/qtdeclarative-5.6.2 gles2? ( ~dev-qt/qtgui-5.6.2[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.6.2 ~dev-qt/qtwidgets-5.6.2[gles2=] ) gstreamer? ( x11-proto/videoproto ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtnetwork-5.6.2 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( ~dev-qt/qtdeclarative-5.6.2 gles2? ( ~dev-qt/qtgui-5.6.2[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.6.2 ~dev-qt/qtwidgets-5.6.2[gles2=] ) gstreamer? ( x11-proto/videoproto ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Multimedia (audio, video, radio, camera) library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtnetwork-5.6.2 RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtmultimedia-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=1030037926ec8690c0f174b2bdafa43f diff --git a/metadata/md5-cache/dev-qt/qtmultimedia-5.7.1 b/metadata/md5-cache/dev-qt/qtmultimedia-5.7.1 index 25b69a57808b..8838998dbfa0 100644 --- a/metadata/md5-cache/dev-qt/qtmultimedia-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtmultimedia-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( ~dev-qt/qtdeclarative-5.7.1 gles2? ( ~dev-qt/qtgui-5.7.1[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.7.1 ~dev-qt/qtwidgets-5.7.1[gles2=] ) gstreamer? ( x11-proto/videoproto ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( ~dev-qt/qtdeclarative-5.7.1 gles2? ( ~dev-qt/qtgui-5.7.1[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.7.1 ~dev-qt/qtwidgets-5.7.1[gles2=] ) gstreamer? ( x11-proto/videoproto ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Multimedia (audio, video, radio, camera) library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtnetwork-5.7.1 RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtmultimedia-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=a414cbddbd38fee4600900317d79a91e diff --git a/metadata/md5-cache/dev-qt/qtmultimedia-5.9.2 b/metadata/md5-cache/dev-qt/qtmultimedia-5.9.2 new file mode 100644 index 000000000000..2e6281c0ed0b --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtmultimedia-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] ~dev-qt/qtnetwork-5.9.2 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( ~dev-qt/qtdeclarative-5.9.2 gles2? ( ~dev-qt/qtgui-5.9.2[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.9.2 ~dev-qt/qtwidgets-5.9.2[gles2=] ) gstreamer? ( x11-proto/videoproto ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Multimedia (audio, video, radio, camera) library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=alsa gles2 gstreamer openal pulseaudio qml widgets debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] ~dev-qt/qtnetwork-5.9.2 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( ~dev-qt/qtdeclarative-5.9.2 gles2? ( ~dev-qt/qtgui-5.9.2[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.9.2 ~dev-qt/qtwidgets-5.9.2[gles2=] ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtmultimedia-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=97e074b6c2ea6e8ec7bd8fcf7c594893 diff --git a/metadata/md5-cache/dev-qt/qtnetwork-5.6.2 b/metadata/md5-cache/dev-qt/qtnetwork-5.6.2 index 1cbdf24f088f..a73b8230b306 100644 --- a/metadata/md5-cache/dev-qt/qtnetwork-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtnetwork-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.6.2 >=sys-libs/zlib-1.2.5 connman? ( ~dev-qt/qtdbus-5.6.2 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.6.2 ) ssl? ( dev-libs/openssl:0[bindist=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 >=sys-libs/zlib-1.2.5 connman? ( ~dev-qt/qtdbus-5.6.2 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.6.2 ) ssl? ( dev-libs/openssl:0[bindist=] ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Network abstraction library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 >=sys-libs/zlib-1.2.5 connman? ( ~dev-qt/qtdbus-5.6 RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=8d33de827d312ee2eb9ce365474d3bbf diff --git a/metadata/md5-cache/dev-qt/qtnetwork-5.7.1 b/metadata/md5-cache/dev-qt/qtnetwork-5.7.1 index a0db0d3cce01..31b53ad0f3e4 100644 --- a/metadata/md5-cache/dev-qt/qtnetwork-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtnetwork-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.7.1 >=sys-libs/zlib-1.2.5 connman? ( ~dev-qt/qtdbus-5.7.1 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.7.1 ) ssl? ( dev-libs/openssl:0[bindist=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 >=sys-libs/zlib-1.2.5 connman? ( ~dev-qt/qtdbus-5.7.1 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.7.1 ) ssl? ( dev-libs/openssl:0[bindist=] ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Network abstraction library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 >=sys-libs/zlib-1.2.5 connman? ( ~dev-qt/qtdbus-5.7 RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=cd3aab100c8c0dc80d1971f915f37739 diff --git a/metadata/md5-cache/dev-qt/qtnetwork-5.9.2 b/metadata/md5-cache/dev-qt/qtnetwork-5.9.2 new file mode 100644 index 000000000000..a1eeca4bef19 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtnetwork-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=~dev-qt/qtcore-5.9.2 >=sys-libs/zlib-1.2.5 connman? ( ~dev-qt/qtdbus-5.9.2 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.9.2 ) ssl? ( dev-libs/openssl:0=[bindist=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Network abstraction library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=bindist connman libproxy networkmanager +ssl debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 >=sys-libs/zlib-1.2.5 connman? ( ~dev-qt/qtdbus-5.9.2 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.9.2 ) ssl? ( dev-libs/openssl:0=[bindist=] ) connman? ( net-misc/connman ) networkmanager? ( net-misc/networkmanager ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=81faf5ec62dfd5a3a5d48ba16e3f5adc diff --git a/metadata/md5-cache/dev-qt/qtnetworkauth-5.9.2 b/metadata/md5-cache/dev-qt/qtnetworkauth-5.9.2 new file mode 100644 index 000000000000..714f1aee00f2 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtnetworkauth-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtnetwork-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Network authorization library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtnetwork-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtnetworkauth-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=a5d0b10c9f6fc56323ba72498b7712e3 diff --git a/metadata/md5-cache/dev-qt/qtopengl-5.6.2 b/metadata/md5-cache/dev-qt/qtopengl-5.6.2 index 3f7f37075e09..b14e64699e8a 100644 --- a/metadata/md5-cache/dev-qt/qtopengl-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtopengl-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtwidgets-5.6.2[gles2=] virtual/opengl test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtwidgets-5.6.2[gles2=] virtual/opengl test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig DESCRIPTION=OpenGL support library for the Qt5 framework (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtwidgets-5.6.2 RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=961de9dc5c62af1f4ba98b0ed0e7ae80 diff --git a/metadata/md5-cache/dev-qt/qtopengl-5.7.1 b/metadata/md5-cache/dev-qt/qtopengl-5.7.1 index 816c8140f892..ab57e92c75e9 100644 --- a/metadata/md5-cache/dev-qt/qtopengl-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtopengl-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtwidgets-5.7.1[gles2=] virtual/opengl test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtwidgets-5.7.1[gles2=] virtual/opengl test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig DESCRIPTION=OpenGL support library for the Qt5 framework (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtwidgets-5.7.1 RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=33702d61bc94ebe2ec41d4e571334f27 diff --git a/metadata/md5-cache/dev-qt/qtopengl-5.9.2 b/metadata/md5-cache/dev-qt/qtopengl-5.9.2 new file mode 100644 index 000000000000..3f0753b5c41a --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtopengl-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] ~dev-qt/qtwidgets-5.9.2[gles2=] virtual/opengl test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=OpenGL support library for the Qt5 framework (deprecated) +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=gles2 test debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] ~dev-qt/qtwidgets-5.9.2[gles2=] virtual/opengl dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=3d580076a240579b9ffca441ea2556ee diff --git a/metadata/md5-cache/dev-qt/qtpaths-5.6.2 b/metadata/md5-cache/dev-qt/qtpaths-5.6.2 index 50e6a7cb2ce8..84f65d54f121 100644 --- a/metadata/md5-cache/dev-qt/qtpaths-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtpaths-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Command line client to QStandardPaths EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=8df1cccd72f3f127a5ca1b8b6deabfdc diff --git a/metadata/md5-cache/dev-qt/qtpaths-5.7.1 b/metadata/md5-cache/dev-qt/qtpaths-5.7.1 index 8a7966e6b981..60ea017912c2 100644 --- a/metadata/md5-cache/dev-qt/qtpaths-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtpaths-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Command line client to QStandardPaths EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=e7030b81bb1e1985ffae10ff05325f23 diff --git a/metadata/md5-cache/dev-qt/qtpaths-5.9.2 b/metadata/md5-cache/dev-qt/qtpaths-5.9.2 new file mode 100644 index 000000000000..67d386f1a67a --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtpaths-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Command line client to QStandardPaths +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=529c9cf384423268eaf25c7d953cd28b diff --git a/metadata/md5-cache/dev-qt/qtplugininfo-5.6.2 b/metadata/md5-cache/dev-qt/qtplugininfo-5.6.2 index 79f0a5452190..c517129a04cc 100644 --- a/metadata/md5-cache/dev-qt/qtplugininfo-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtplugininfo-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt5 plugin metadata dumper EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=0643ba650e59cc2fddf0bc18627ce522 diff --git a/metadata/md5-cache/dev-qt/qtplugininfo-5.7.1 b/metadata/md5-cache/dev-qt/qtplugininfo-5.7.1 index 588a023bebcd..808e699269a8 100644 --- a/metadata/md5-cache/dev-qt/qtplugininfo-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtplugininfo-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt5 plugin metadata dumper EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttools-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=0643ba650e59cc2fddf0bc18627ce522 diff --git a/metadata/md5-cache/dev-qt/qtplugininfo-5.9.2 b/metadata/md5-cache/dev-qt/qtplugininfo-5.9.2 new file mode 100644 index 000000000000..6ff5409c63b7 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtplugininfo-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Qt5 plugin metadata dumper +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttools-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=ca8ba2814d3e39f4038cf0491a0ff5d2 diff --git a/metadata/md5-cache/dev-qt/qtpositioning-5.6.2 b/metadata/md5-cache/dev-qt/qtpositioning-5.6.2 index 46b68bcd093f..4a3d26fb25cd 100644 --- a/metadata/md5-cache/dev-qt/qtpositioning-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtpositioning-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.6.2 geoclue? ( ~dev-qt/qtdbus-5.6.2 ) qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 geoclue? ( ~dev-qt/qtdbus-5.6.2 ) qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Physical position determination library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -11,5 +11,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 geoclue? ( ~dev-qt/qtdbus-5.6.2 ) qml? ( ~dev-qt/qt RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtlocation-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=bfc884db44c2c8ac35ccf822f4d94f10 diff --git a/metadata/md5-cache/dev-qt/qtpositioning-5.7.1 b/metadata/md5-cache/dev-qt/qtpositioning-5.7.1 index 9f23d3f1c83a..664c49bee330 100644 --- a/metadata/md5-cache/dev-qt/qtpositioning-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtpositioning-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.7.1 geoclue? ( ~dev-qt/qtdbus-5.7.1 ) qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 geoclue? ( ~dev-qt/qtdbus-5.7.1 ) qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Physical position determination library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -11,5 +11,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 geoclue? ( ~dev-qt/qtdbus-5.7.1 ) qml? ( ~dev-qt/qt RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtlocation-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=b31f28eda98b13c7fad47cd84b0d34e9 diff --git a/metadata/md5-cache/dev-qt/qtpositioning-5.9.2 b/metadata/md5-cache/dev-qt/qtpositioning-5.9.2 new file mode 100644 index 000000000000..c9f26cb032ab --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtpositioning-5.9.2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=~dev-qt/qtcore-5.9.2 geoclue? ( ~dev-qt/qtdbus-5.9.2 ) qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Physical position determination library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=geoclue qml debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +PDEPEND=geoclue? ( app-misc/geoclue:0 ) +RDEPEND=~dev-qt/qtcore-5.9.2 geoclue? ( ~dev-qt/qtdbus-5.9.2 ) qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtlocation-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=644698f75aa6190028c1d4f1b67dfae2 diff --git a/metadata/md5-cache/dev-qt/qtprintsupport-5.6.2 b/metadata/md5-cache/dev-qt/qtprintsupport-5.6.2 index fd447ff3f0ec..96e4cbe33b40 100644 --- a/metadata/md5-cache/dev-qt/qtprintsupport-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtprintsupport-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtwidgets-5.6.2[gles2=] cups? ( >=net-print/cups-1.4 ) test? ( ~dev-qt/qtnetwork-5.6.2 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtwidgets-5.6.2[gles2=] cups? ( >=net-print/cups-1.4 ) test? ( ~dev-qt/qtnetwork-5.6.2 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Printing support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtwidgets-5.6.2 RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=1e1e76b16330b3ec0907efb912f4db5b diff --git a/metadata/md5-cache/dev-qt/qtprintsupport-5.7.1 b/metadata/md5-cache/dev-qt/qtprintsupport-5.7.1 index 0c2426eccfa2..923140166673 100644 --- a/metadata/md5-cache/dev-qt/qtprintsupport-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtprintsupport-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtwidgets-5.7.1[gles2=] cups? ( >=net-print/cups-1.4 ) test? ( ~dev-qt/qtnetwork-5.7.1 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtwidgets-5.7.1[gles2=] cups? ( >=net-print/cups-1.4 ) test? ( ~dev-qt/qtnetwork-5.7.1 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Printing support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=] ~dev-qt/qtwidgets-5.7.1 RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=f5562e8a887725d43355c80fe98d6160 diff --git a/metadata/md5-cache/dev-qt/qtprintsupport-5.9.2 b/metadata/md5-cache/dev-qt/qtprintsupport-5.9.2 new file mode 100644 index 000000000000..b35b777501b3 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtprintsupport-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] ~dev-qt/qtwidgets-5.9.2[gles2=] cups? ( >=net-print/cups-1.4 ) test? ( ~dev-qt/qtnetwork-5.9.2 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Printing support library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=cups gles2 test debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=] ~dev-qt/qtwidgets-5.9.2[gles2=] cups? ( >=net-print/cups-1.4 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=1f60e213375ddbd5d062fc3d4ab1a1af diff --git a/metadata/md5-cache/dev-qt/qtquickcontrols-5.6.2 b/metadata/md5-cache/dev-qt/qtquickcontrols-5.6.2 index 65ec693cdc23..636df2d7446f 100644 --- a/metadata/md5-cache/dev-qt/qtquickcontrols-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtquickcontrols-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-5.6.2 widgets? ( ~dev-qt/qtwidgets-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-5.6.2 widgets? ( ~dev-qt/qtwidgets-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Set of controls used in conjunction with Qt Quick to build complete interfaces EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-5.6.2 wid RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtquickcontrols-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=7aee4ec3f407799658d4f35d385108e4 diff --git a/metadata/md5-cache/dev-qt/qtquickcontrols-5.7.1 b/metadata/md5-cache/dev-qt/qtquickcontrols-5.7.1 index f1ecfff8fea0..853047714221 100644 --- a/metadata/md5-cache/dev-qt/qtquickcontrols-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtquickcontrols-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 widgets? ( ~dev-qt/qtwidgets-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 widgets? ( ~dev-qt/qtwidgets-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Set of controls used in conjunction with Qt Quick to build complete interfaces EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 wid RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtquickcontrols-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=d373fd8804095291aca0e9d045cbdff6 diff --git a/metadata/md5-cache/dev-qt/qtquickcontrols-5.9.2 b/metadata/md5-cache/dev-qt/qtquickcontrols-5.9.2 new file mode 100644 index 000000000000..9f4253d4467d --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtquickcontrols-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 widgets? ( ~dev-qt/qtwidgets-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Set of controls used in conjunction with Qt Quick to build complete interfaces +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=+widgets debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 widgets? ( ~dev-qt/qtwidgets-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtquickcontrols-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=7f1403dfb36666220e3f4b5444717652 diff --git a/metadata/md5-cache/dev-qt/qtquickcontrols2-5.7.1 b/metadata/md5-cache/dev-qt/qtquickcontrols2-5.7.1 index 8ce7145730c0..35c5a1172651 100644 --- a/metadata/md5-cache/dev-qt/qtquickcontrols2-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtquickcontrols2-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgraphicaleffects-5.7.1 ~dev-qt/qtgui-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgraphicaleffects-5.7.1 ~dev-qt/qtgui-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Set of next generation Qt Quick controls for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgraphicaleffe RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtquickcontrols2-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=76a8075e6e58ad1696f5c0890c901074 diff --git a/metadata/md5-cache/dev-qt/qtquickcontrols2-5.9.2 b/metadata/md5-cache/dev-qt/qtquickcontrols2-5.9.2 new file mode 100644 index 000000000000..c37c8c519fe1 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtquickcontrols2-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 widgets? ( ~dev-qt/qtwidgets-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Set of next generation Qt Quick controls for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=widgets debug test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 widgets? ( ~dev-qt/qtwidgets-5.9.2 ) ~dev-qt/qtgraphicaleffects-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtquickcontrols2-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=a45f254daee4dfd9f7d9fef892155ecc diff --git a/metadata/md5-cache/dev-qt/qtscript-5.6.2 b/metadata/md5-cache/dev-qt/qtscript-5.6.2 index 1108eba795f9..9ed37a626a45 100644 --- a/metadata/md5-cache/dev-qt/qtscript-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtscript-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 scripttools? ( ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 scripttools? ( ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Application scripting library for the Qt5 framework (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 scripttools? ( ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidget RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtscript-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=97af880c01234588af5bbe8d4ff043a3 diff --git a/metadata/md5-cache/dev-qt/qtscript-5.7.1 b/metadata/md5-cache/dev-qt/qtscript-5.7.1 index 06a1f64185d0..12148009ecbe 100644 --- a/metadata/md5-cache/dev-qt/qtscript-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtscript-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 scripttools? ( ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 scripttools? ( ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Application scripting library for the Qt5 framework (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 scripttools? ( ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidget RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtscript-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=6736b2476fc9c5189625b2e941b40dac diff --git a/metadata/md5-cache/dev-qt/qtscript-5.9.2 b/metadata/md5-cache/dev-qt/qtscript-5.9.2 new file mode 100644 index 000000000000..ead45747cfe4 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtscript-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 scripttools? ( ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Application scripting library for the Qt5 framework (deprecated) +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=+jit scripttools debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 scripttools? ( ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtscript-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=16365c5f01ad7e0d9b38cbd0d43753f4 diff --git a/metadata/md5-cache/dev-qt/qtscxml-5.7.1 b/metadata/md5-cache/dev-qt/qtscxml-5.7.1 index 8f6b520976da..704fef5053f3 100644 --- a/metadata/md5-cache/dev-qt/qtscxml-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtscxml-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=State Chart XML (SCXML) support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtscxml-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=04055beb06fbfb7fc86acdffb7b666e8 diff --git a/metadata/md5-cache/dev-qt/qtscxml-5.9.2 b/metadata/md5-cache/dev-qt/qtscxml-5.9.2 new file mode 100644 index 000000000000..5d42d92796a8 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtscxml-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=State Chart XML (SCXML) support library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtscxml-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=71c58017ad97e2ab56959960ca2bc139 diff --git a/metadata/md5-cache/dev-qt/qtsensors-5.6.2 b/metadata/md5-cache/dev-qt/qtsensors-5.6.2 index 193b4cb5fc57..ac46dcbf428b 100644 --- a/metadata/md5-cache/dev-qt/qtsensors-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtsensors-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Hardware sensor access library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-qt/qtchoos RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtsensors-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=d845f7c6c0fa0786b0d133fd87f1e231 diff --git a/metadata/md5-cache/dev-qt/qtsensors-5.7.1 b/metadata/md5-cache/dev-qt/qtsensors-5.7.1 index d3b478dce2c0..362648ed9084 100644 --- a/metadata/md5-cache/dev-qt/qtsensors-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtsensors-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Hardware sensor access library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-qt/qtchoos RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtsensors-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=c1fd72b820f83b02661f11d402a9ef3e diff --git a/metadata/md5-cache/dev-qt/qtsensors-5.9.2 b/metadata/md5-cache/dev-qt/qtsensors-5.9.2 new file mode 100644 index 000000000000..db416f451049 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtsensors-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdbus-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Hardware sensor access library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdbus-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtsensors-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=094910a38d69bb3caaf95353aa5af976 diff --git a/metadata/md5-cache/dev-qt/qtserialbus-5.9.2 b/metadata/md5-cache/dev-qt/qtserialbus-5.9.2 new file mode 100644 index 000000000000..db5b2cfb7198 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtserialbus-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtserialport-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Support for CAN and other serial buses +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtserialport-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtserialbus-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=f4ed19e9c2b7a34fed2788aee6590432 diff --git a/metadata/md5-cache/dev-qt/qtserialport-5.6.2 b/metadata/md5-cache/dev-qt/qtserialport-5.6.2 index 3a0343c6141b..a3aafeba2c93 100644 --- a/metadata/md5-cache/dev-qt/qtserialport-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtserialport-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 virtual/libudev:= dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 virtual/libudev:= dev-lang/perl virtual/pkgconfig DESCRIPTION=Serial port abstraction library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 virtual/libudev:= dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtserialport-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=da984921418fb5c072e04c3155ca4039 diff --git a/metadata/md5-cache/dev-qt/qtserialport-5.7.1 b/metadata/md5-cache/dev-qt/qtserialport-5.7.1 index 0702bb3916a0..bece090bdc11 100644 --- a/metadata/md5-cache/dev-qt/qtserialport-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtserialport-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 virtual/libudev:= dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 virtual/libudev:= dev-lang/perl virtual/pkgconfig DESCRIPTION=Serial port abstraction library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 virtual/libudev:= dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtserialport-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=49ce7180d4115c76818f44cba7912401 diff --git a/metadata/md5-cache/dev-qt/qtserialport-5.9.2 b/metadata/md5-cache/dev-qt/qtserialport-5.9.2 new file mode 100644 index 000000000000..d06612a86175 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtserialport-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 virtual/libudev:= dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Serial port abstraction library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 virtual/libudev:= dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtserialport-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=4399d1bf39070876cf8b30690effd649 diff --git a/metadata/md5-cache/dev-qt/qtspeech-5.9.2 b/metadata/md5-cache/dev-qt/qtspeech-5.9.2 new file mode 100644 index 000000000000..fe2bb38819a7 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtspeech-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=app-accessibility/speech-dispatcher ~dev-qt/qtcore-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Text-to-speech library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=app-accessibility/speech-dispatcher ~dev-qt/qtcore-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtspeech-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=80e72a999784de49cf91310516ffde38 diff --git a/metadata/md5-cache/dev-qt/qtsql-5.6.2 b/metadata/md5-cache/dev-qt/qtsql-5.6.2 index 3f2de80b246c..5e463871e7bb 100644 --- a/metadata/md5-cache/dev-qt/qtsql-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtsql-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 freetds? ( dev-db/freetds ) mysql? ( virtual/libmysqlclient:= ) oci8? ( dev-db/oracle-instantclient-basic ) odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) postgres? ( dev-db/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 freetds? ( dev-db/freetds ) mysql? ( virtual/libmysqlclient:= ) oci8? ( dev-db/oracle-instantclient-basic ) odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) postgres? ( dev-db/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=SQL abstraction library for the Qt5 tooolkit EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( freetds mysql oci8 odbc postgres sqlite ) RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=bc87d33fcb8272a90f1e0718926a1fd0 diff --git a/metadata/md5-cache/dev-qt/qtsql-5.7.1 b/metadata/md5-cache/dev-qt/qtsql-5.7.1 index 18240ecd2a36..66e961021fa2 100644 --- a/metadata/md5-cache/dev-qt/qtsql-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtsql-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 freetds? ( dev-db/freetds ) mysql? ( virtual/libmysqlclient:= ) oci8? ( dev-db/oracle-instantclient-basic ) odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) postgres? ( dev-db/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 freetds? ( dev-db/freetds ) mysql? ( virtual/libmysqlclient:= ) oci8? ( dev-db/oracle-instantclient-basic ) odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) postgres? ( dev-db/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=SQL abstraction library for the Qt5 tooolkit EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( freetds mysql oci8 odbc postgres sqlite ) RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=e8f0cdb244f23477e23ee55eb3f1f937 diff --git a/metadata/md5-cache/dev-qt/qtsql-5.7.1-r1 b/metadata/md5-cache/dev-qt/qtsql-5.7.1-r1 index 39afb4db6a7f..d35caa1ac348 100644 --- a/metadata/md5-cache/dev-qt/qtsql-5.7.1-r1 +++ b/metadata/md5-cache/dev-qt/qtsql-5.7.1-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 freetds? ( dev-db/freetds ) mysql? ( virtual/libmysqlclient:= ) oci8? ( dev-db/oracle-instantclient-basic ) odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) postgres? ( dev-db/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 freetds? ( dev-db/freetds ) mysql? ( virtual/libmysqlclient:= ) oci8? ( dev-db/oracle-instantclient-basic ) odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) postgres? ( dev-db/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=SQL abstraction library for the Qt5 tooolkit EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( freetds mysql oci8 odbc postgres sqlite ) RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=f7cecb9a407b4105c1cad61ef14d0da4 diff --git a/metadata/md5-cache/dev-qt/qtsql-5.9.2 b/metadata/md5-cache/dev-qt/qtsql-5.9.2 new file mode 100644 index 000000000000..6e90acba571d --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtsql-5.9.2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 freetds? ( dev-db/freetds ) mysql? ( virtual/libmysqlclient:= ) oci8? ( dev-db/oracle-instantclient-basic ) odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) postgres? ( dev-db/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=SQL abstraction library for the Qt5 tooolkit +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=freetds mysql oci8 odbc postgres +sqlite debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 freetds? ( dev-db/freetds ) mysql? ( virtual/libmysqlclient:= ) oci8? ( dev-db/oracle-instantclient-basic ) odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) postgres? ( dev-db/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) dev-qt/qtchooser +REQUIRED_USE=|| ( freetds mysql oci8 odbc postgres sqlite ) +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=741e5e3ff11cde8cad89e9216e3df3fa diff --git a/metadata/md5-cache/dev-qt/qtsvg-5.6.2 b/metadata/md5-cache/dev-qt/qtsvg-5.6.2 index a9dd47103aef..c67b12d2ed3f 100644 --- a/metadata/md5-cache/dev-qt/qtsvg-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtsvg-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-5.6.2 >=sys-libs/zlib-1.2.5 test? ( ~dev-qt/qtxml-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-5.6.2 >=sys-libs/zlib-1.2.5 test? ( ~dev-qt/qtxml-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=SVG rendering library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-5.6.2 >=sys-l RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtsvg-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=fd6e6daba64b47effb414251e9dfc023 diff --git a/metadata/md5-cache/dev-qt/qtsvg-5.7.1 b/metadata/md5-cache/dev-qt/qtsvg-5.7.1 index fcda7b5b8539..da8682c62888 100644 --- a/metadata/md5-cache/dev-qt/qtsvg-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtsvg-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 >=sys-libs/zlib-1.2.5 test? ( ~dev-qt/qtxml-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 >=sys-libs/zlib-1.2.5 test? ( ~dev-qt/qtxml-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=SVG rendering library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwidgets-5.7.1 >=sys-l RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtsvg-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=fbcd165e7e76f2890e625ef87af67018 diff --git a/metadata/md5-cache/dev-qt/qtsvg-5.9.2 b/metadata/md5-cache/dev-qt/qtsvg-5.9.2 new file mode 100644 index 000000000000..e8fe552e1504 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtsvg-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 >=sys-libs/zlib-1.2.5 test? ( ~dev-qt/qtxml-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=SVG rendering library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwidgets-5.9.2 >=sys-libs/zlib-1.2.5 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtsvg-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=f200af3ff7f0ff3d7c4821e5c142666c diff --git a/metadata/md5-cache/dev-qt/qttest-5.6.2 b/metadata/md5-cache/dev-qt/qttest-5.6.2 index 3f216ea4537c..adf69e4d8fc7 100644 --- a/metadata/md5-cache/dev-qt/qttest-5.6.2 +++ b/metadata/md5-cache/dev-qt/qttest-5.6.2 @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=e8ef67dc028f9c0d2e08766d276d1510 diff --git a/metadata/md5-cache/dev-qt/qttest-5.7.1 b/metadata/md5-cache/dev-qt/qttest-5.7.1 index c4c0b64247fd..b3357b89e473 100644 --- a/metadata/md5-cache/dev-qt/qttest-5.7.1 +++ b/metadata/md5-cache/dev-qt/qttest-5.7.1 @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=aebe413ac76c08a586128816d0313a81 diff --git a/metadata/md5-cache/dev-qt/qttest-5.9.2 b/metadata/md5-cache/dev-qt/qttest-5.9.2 new file mode 100644 index 000000000000..1d621ac37f69 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qttest-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 test? ( ~dev-qt/qtgui-5.9.2 ~dev-qt/qtxml-5.9.2 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig +DESCRIPTION=Unit testing library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=test debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=fbd71c5be36871bed8f0ca993f18b8ee diff --git a/metadata/md5-cache/dev-qt/qttranslations-5.6.2 b/metadata/md5-cache/dev-qt/qttranslations-5.6.2 index 733a4eb9f46e..ebc47cc920b8 100644 --- a/metadata/md5-cache/dev-qt/qttranslations-5.6.2 +++ b/metadata/md5-cache/dev-qt/qttranslations-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/linguist-tools-5.6.2 ~dev-qt/qtcore-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/linguist-tools-5.6.2 ~dev-qt/qtcore-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=Translation files for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qttranslations-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=aed9e10d5417ed687ae079569ec6ca9c diff --git a/metadata/md5-cache/dev-qt/qttranslations-5.7.1 b/metadata/md5-cache/dev-qt/qttranslations-5.7.1 index 8853d059d078..b6d457daa5c0 100644 --- a/metadata/md5-cache/dev-qt/qttranslations-5.7.1 +++ b/metadata/md5-cache/dev-qt/qttranslations-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/linguist-tools-5.7.1 ~dev-qt/qtcore-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/linguist-tools-5.7.1 ~dev-qt/qtcore-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Translation files for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qttranslations-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=0c557233df3820f27212a7aab0264ef6 diff --git a/metadata/md5-cache/dev-qt/qttranslations-5.9.2 b/metadata/md5-cache/dev-qt/qttranslations-5.9.2 new file mode 100644 index 000000000000..ee8135181ca9 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qttranslations-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/linguist-tools-5.9.2 ~dev-qt/qtcore-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Translation files for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qttranslations-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=dd235fbab214911599d7e26f1c64570e diff --git a/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.7.1 b/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.7.1 index 3fcb5181ac50..3ec692efb2cd 100644 --- a/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtsvg-5.7.1 spell? ( app-text/hunspell:= ) xcb? ( x11-libs/libxcb:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtsvg-5.7.1 spell? ( app-text/hunspell:= ) xcb? ( x11-libs/libxcb:= ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Virtual keyboard plugin for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~de RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtvirtualkeyboard-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=4b0f2ce9ee6f975ed77179b00bd19997 diff --git a/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.9.2 b/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.9.2 new file mode 100644 index 000000000000..5f0d9ec8fbc5 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtsvg-5.9.2 spell? ( app-text/hunspell:= ) xcb? ( x11-libs/libxcb:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Virtual keyboard plugin for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=handwriting +spell +xcb debug test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtsvg-5.9.2 spell? ( app-text/hunspell:= ) xcb? ( x11-libs/libxcb:= ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtvirtualkeyboard-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=4b0f2ce9ee6f975ed77179b00bd19997 diff --git a/metadata/md5-cache/dev-qt/qtwayland-5.6.2 b/metadata/md5-cache/dev-qt/qtwayland-5.6.2 index 5438b2269d50..d9ff24c13022 100644 --- a/metadata/md5-cache/dev-qt/qtwayland-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtwayland-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=>=dev-libs/wayland-1.4.0 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[egl] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 wayland-compositor? ( qml? ( ~dev-qt/qtdeclarative-5.6.2 ) ) xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=>=dev-libs/wayland-1.4.0 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[egl] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 wayland-compositor? ( qml? ( ~dev-qt/qtdeclarative-5.6.2 ) ) xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Wayland platform plugin for Qt EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/wayland-1.4.0 ~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[egl] m RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtwayland-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=9b48f1541af03b537baba8f7ed5e5ca9 diff --git a/metadata/md5-cache/dev-qt/qtwayland-5.7.1 b/metadata/md5-cache/dev-qt/qtwayland-5.7.1 index 91b2f3cb258f..36609d189ddd 100644 --- a/metadata/md5-cache/dev-qt/qtwayland-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtwayland-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=>=dev-libs/wayland-1.4.0 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1[egl] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=>=dev-libs/wayland-1.4.0 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1[egl] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Wayland platform plugin for Qt EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/wayland-1.4.0 ~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7. RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtwayland-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=9d7394a0dc477a8ba16c9719632e18e3 diff --git a/metadata/md5-cache/dev-qt/qtwayland-5.9.2 b/metadata/md5-cache/dev-qt/qtwayland-5.9.2 new file mode 100644 index 000000000000..8959230ae897 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwayland-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=>=dev-libs/wayland-1.6.0 ~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2[egl,libinput?] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Wayland platform plugin for Qt +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=+libinput xcomposite debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=>=dev-libs/wayland-1.6.0 ~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2[egl,libinput?] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtwayland-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=5fb3aed5377bd12a02bb00e0dda33640 diff --git a/metadata/md5-cache/dev-qt/qtwebchannel-5.6.2 b/metadata/md5-cache/dev-qt/qtwebchannel-5.6.2 index 20653e1a7f4d..c7f431338976 100644 --- a/metadata/md5-cache/dev-qt/qtwebchannel-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtwebchannel-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt5 module for integrating C++ and QML applications with HTML/JavaScript clients EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-qt/qtchoos RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtwebchannel-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=b4ba022102d0c99ec959eb532c2b1872 diff --git a/metadata/md5-cache/dev-qt/qtwebchannel-5.7.1 b/metadata/md5-cache/dev-qt/qtwebchannel-5.7.1 index 8129a042e45e..1d50a7311a73 100644 --- a/metadata/md5-cache/dev-qt/qtwebchannel-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtwebchannel-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Qt5 module for integrating C++ and QML applications with HTML/JavaScript clients EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-qt/qtchoos RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtwebchannel-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=e8a26835419fd5a3c1421c024f273e4b diff --git a/metadata/md5-cache/dev-qt/qtwebchannel-5.9.2 b/metadata/md5-cache/dev-qt/qtwebchannel-5.9.2 new file mode 100644 index 000000000000..109087e5548a --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebchannel-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Qt5 module for integrating C++ and QML applications with HTML/JavaScript clients +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml debug test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtwebchannel-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=d9c5f87946f197e5c271af84a3c2c328 diff --git a/metadata/md5-cache/dev-qt/qtwebengine-5.6.2-r1 b/metadata/md5-cache/dev-qt/qtwebengine-5.6.2-r1 index 6193c7a01101..a1bb119713cf 100644 --- a/metadata/md5-cache/dev-qt/qtwebengine-5.6.2-r1 +++ b/metadata/md5-cache/dev-qt/qtwebengine-5.6.2-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtwebchannel-5.6.2[qml] dev-libs/expat dev-libs/jsoncpp:= dev-libs/libevent:= dev-libs/libxml2 dev-libs/libxslt media-libs/alsa-lib media-libs/flac media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa media-libs/opus media-libs/speex net-libs/libsrtp:0= sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst geolocation? ( ~dev-qt/qtpositioning-5.6.2 ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( dev-libs/icu:= ) widgets? ( ~dev-qt/qtwidgets-5.6.2 ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-util/gperf dev-util/ninja dev-util/re2c sys-devel/bison pax_kernel? ( sys-apps/elfix ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtwebchannel-5.6.2[qml] dev-libs/expat dev-libs/jsoncpp:= dev-libs/libevent:= dev-libs/libxml2 dev-libs/libxslt media-libs/alsa-lib media-libs/flac media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa media-libs/opus media-libs/speex net-libs/libsrtp:0= sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst geolocation? ( ~dev-qt/qtpositioning-5.6.2 ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( dev-libs/icu:= ) widgets? ( ~dev-qt/qtwidgets-5.6.2 ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-util/gperf dev-util/ninja dev-util/re2c sys-devel/bison pax_kernel? ( sys-apps/elfix ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Library for rendering dynamic web content in Qt5 C++ and QML applications EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtc RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtwebengine-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=52aa5c4962202e53243df41d718bdd80 diff --git a/metadata/md5-cache/dev-qt/qtwebengine-5.7.1-r2 b/metadata/md5-cache/dev-qt/qtwebengine-5.7.1-r2 index f6eb6f7fd94b..1f5f3e4539e4 100644 --- a/metadata/md5-cache/dev-qt/qtwebengine-5.7.1-r2 +++ b/metadata/md5-cache/dev-qt/qtwebengine-5.7.1-r2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtwebchannel-5.7.1[qml] dev-libs/expat dev-libs/libevent:= dev-libs/libxml2 dev-libs/libxslt dev-libs/protobuf:= media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa media-libs/opus net-libs/libsrtp:0= sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] virtual/jpeg:0 virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( ~dev-qt/qtpositioning-5.7.1 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( dev-libs/icu:= ) widgets? ( ~dev-qt/qtwidgets-5.7.1 ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-util/gperf dev-util/ninja dev-util/re2c sys-devel/bison pax_kernel? ( sys-apps/elfix ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtwebchannel-5.7.1[qml] dev-libs/expat dev-libs/libevent:= dev-libs/libxml2 dev-libs/libxslt dev-libs/protobuf:= media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa media-libs/opus net-libs/libsrtp:0= sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] virtual/jpeg:0 virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( ~dev-qt/qtpositioning-5.7.1 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( dev-libs/icu:= ) widgets? ( ~dev-qt/qtwidgets-5.7.1 ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-util/gperf dev-util/ninja dev-util/re2c sys-devel/bison pax_kernel? ( sys-apps/elfix ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Library for rendering dynamic web content in Qt5 C++ and QML applications EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtc RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtwebengine-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=33860c1055ddf549e86fe9e2ddf0b214 diff --git a/metadata/md5-cache/dev-qt/qtwebengine-5.9.2 b/metadata/md5-cache/dev-qt/qtwebengine-5.9.2 new file mode 100644 index 000000000000..83b7a0b791b5 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebengine-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtwebchannel-5.9.2[qml] dev-libs/expat dev-libs/libevent:= dev-libs/libxml2 dev-libs/libxslt dev-libs/protobuf:= media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa media-libs/opus net-libs/libsrtp:0= sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] virtual/jpeg:0 virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( ~dev-qt/qtpositioning-5.9.2 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( dev-libs/icu:= ) widgets? ( ~dev-qt/qtwidgets-5.9.2 ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-util/gperf dev-util/ninja dev-util/re2c sys-devel/bison pax_kernel? ( sys-apps/elfix ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Library for rendering dynamic web content in Qt5 C++ and QML applications +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=alsa bindist geolocation pax_kernel pulseaudio +system-ffmpeg +system-icu widgets debug test +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtnetwork-5.9.2 ~dev-qt/qtwebchannel-5.9.2[qml] dev-libs/expat dev-libs/libevent:= dev-libs/libxml2 dev-libs/libxslt dev-libs/protobuf:= media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa media-libs/opus net-libs/libsrtp:0= sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] virtual/jpeg:0 virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( ~dev-qt/qtpositioning-5.9.2 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( dev-libs/icu:= ) widgets? ( ~dev-qt/qtwidgets-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtwebengine-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=d4d6e3c94122d3c0b513752af6dcfa9c diff --git a/metadata/md5-cache/dev-qt/qtwebkit-5.6.2 b/metadata/md5-cache/dev-qt/qtwebkit-5.6.2 index 7d815585dbc3..4c51fde4d585 100644 --- a/metadata/md5-cache/dev-qt/qtwebkit-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtwebkit-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=dev-db/sqlite:3 dev-libs/icu:= >=dev-libs/leveldb-1.18-r1 dev-libs/libxml2:2 dev-libs/libxslt ~dev-qt/qtcore-5.6.2[icu] ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtsql-5.6.2 ~dev-qt/qtwidgets-5.6.2 media-libs/fontconfig:1.0 media-libs/libpng:0= >=sys-libs/zlib-1.2.5 virtual/jpeg:0 virtual/opengl x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender geolocation? ( ~dev-qt/qtpositioning-5.6.2 ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gstreamer010? ( dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) multimedia? ( ~dev-qt/qtmultimedia-5.6.2[widgets] ) opengl? ( ~dev-qt/qtopengl-5.6.2 ) orientation? ( ~dev-qt/qtsensors-5.6.2 ) printsupport? ( ~dev-qt/qtprintsupport-5.6.2 ) qml? ( ~dev-qt/qtdeclarative-5.6.2 ) webchannel? ( ~dev-qt/qtwebchannel-5.6.2 ) webp? ( media-libs/libwebp:0= ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/ruby dev-util/gperf sys-devel/bison sys-devel/flex virtual/rubygems dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=dev-db/sqlite:3 dev-libs/icu:= >=dev-libs/leveldb-1.18-r1 dev-libs/libxml2:2 dev-libs/libxslt ~dev-qt/qtcore-5.6.2[icu] ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2 ~dev-qt/qtsql-5.6.2 ~dev-qt/qtwidgets-5.6.2 media-libs/fontconfig:1.0 media-libs/libpng:0= >=sys-libs/zlib-1.2.5 virtual/jpeg:0 virtual/opengl x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender geolocation? ( ~dev-qt/qtpositioning-5.6.2 ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gstreamer010? ( dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) multimedia? ( ~dev-qt/qtmultimedia-5.6.2[widgets] ) opengl? ( ~dev-qt/qtopengl-5.6.2 ) orientation? ( ~dev-qt/qtsensors-5.6.2 ) printsupport? ( ~dev-qt/qtprintsupport-5.6.2 ) qml? ( ~dev-qt/qtdeclarative-5.6.2 ) webchannel? ( ~dev-qt/qtwebchannel-5.6.2 ) webp? ( media-libs/libwebp:0= ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/ruby dev-util/gperf sys-devel/bison sys-devel/flex virtual/rubygems dev-lang/perl virtual/pkgconfig DESCRIPTION=WebKit rendering library for the Qt5 framework (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -11,5 +11,5 @@ REQUIRED_USE=?? ( gstreamer gstreamer010 multimedia ) RESTRICT=mirror test SLOT=5/5.6 SRC_URI=https://download.qt.io/community_releases/5.6/5.6.2/qtwebkit-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=a0fcaf27966b3bf007b081f7953c9fee diff --git a/metadata/md5-cache/dev-qt/qtwebkit-5.7.1 b/metadata/md5-cache/dev-qt/qtwebkit-5.7.1 index 0ccdf183b4e7..011d0c840868 100644 --- a/metadata/md5-cache/dev-qt/qtwebkit-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtwebkit-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=dev-db/sqlite:3 dev-libs/icu:= >=dev-libs/leveldb-1.18-r1 dev-libs/libxml2:2 dev-libs/libxslt ~dev-qt/qtcore-5.7.1[icu] ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtsql-5.7.1 ~dev-qt/qtwidgets-5.7.1 media-libs/fontconfig:1.0 media-libs/libpng:0= >=sys-libs/zlib-1.2.5 virtual/jpeg:0 virtual/opengl x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender geolocation? ( ~dev-qt/qtpositioning-5.7.1 ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gstreamer010? ( dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) multimedia? ( ~dev-qt/qtmultimedia-5.7.1[widgets] ) opengl? ( ~dev-qt/qtopengl-5.7.1 ) orientation? ( ~dev-qt/qtsensors-5.7.1 ) printsupport? ( ~dev-qt/qtprintsupport-5.7.1 ) qml? ( ~dev-qt/qtdeclarative-5.7.1 ) webchannel? ( ~dev-qt/qtwebchannel-5.7.1 ) webp? ( media-libs/libwebp:0= ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/ruby dev-util/gperf sys-devel/bison sys-devel/flex virtual/rubygems dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=dev-db/sqlite:3 dev-libs/icu:= >=dev-libs/leveldb-1.18-r1 dev-libs/libxml2:2 dev-libs/libxslt ~dev-qt/qtcore-5.7.1[icu] ~dev-qt/qtgui-5.7.1 ~dev-qt/qtnetwork-5.7.1 ~dev-qt/qtsql-5.7.1 ~dev-qt/qtwidgets-5.7.1 media-libs/fontconfig:1.0 media-libs/libpng:0= >=sys-libs/zlib-1.2.5 virtual/jpeg:0 virtual/opengl x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender geolocation? ( ~dev-qt/qtpositioning-5.7.1 ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gstreamer010? ( dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) multimedia? ( ~dev-qt/qtmultimedia-5.7.1[widgets] ) opengl? ( ~dev-qt/qtopengl-5.7.1 ) orientation? ( ~dev-qt/qtsensors-5.7.1 ) printsupport? ( ~dev-qt/qtprintsupport-5.7.1 ) qml? ( ~dev-qt/qtdeclarative-5.7.1 ) webchannel? ( ~dev-qt/qtwebchannel-5.7.1 ) webp? ( media-libs/libwebp:0= ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/ruby dev-util/gperf sys-devel/bison sys-devel/flex virtual/rubygems dev-lang/perl virtual/pkgconfig DESCRIPTION=WebKit rendering library for the Qt5 framework (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -11,5 +11,5 @@ REQUIRED_USE=?? ( gstreamer gstreamer010 multimedia ) RESTRICT=mirror test SLOT=5/5.7 SRC_URI=https://download.qt.io/community_releases/5.7/5.7.1/qtwebkit-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=e9e52d8f9b3c33300a1761c12b5eee6a diff --git a/metadata/md5-cache/dev-qt/qtwebkit-5.9.1 b/metadata/md5-cache/dev-qt/qtwebkit-5.9.1 new file mode 100644 index 000000000000..84d099535602 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebkit-5.9.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=dev-db/sqlite:3 dev-libs/icu:= >=dev-libs/leveldb-1.18-r1 dev-libs/libxml2:2 dev-libs/libxslt >=dev-qt/qtcore-5.9.1:5[icu] >=dev-qt/qtgui-5.9.1:5 >=dev-qt/qtnetwork-5.9.1:5 >=dev-qt/qtsql-5.9.1:5 >=dev-qt/qtwidgets-5.9.1:5 media-libs/fontconfig:1.0 media-libs/libpng:0= >=sys-libs/zlib-1.2.5 virtual/jpeg:0 virtual/opengl x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender geolocation? ( >=dev-qt/qtpositioning-5.9.1:5 ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) multimedia? ( >=dev-qt/qtmultimedia-5.9.1:5[widgets] ) opengl? ( >=dev-qt/qtgui-5.9.1:5[gles2=] >=dev-qt/qtopengl-5.9.1:5 ) orientation? ( >=dev-qt/qtsensors-5.9.1:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.9.1:5 ) qml? ( >=dev-qt/qtdeclarative-5.9.1:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.9.1:5 ) webp? ( media-libs/libwebp:0= ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/ruby dev-util/gperf sys-devel/bison sys-devel/flex virtual/rubygems test? ( >=dev-qt/qttest-5.9.1:5 ) dev-lang/perl virtual/pkgconfig +DESCRIPTION=WebKit rendering library for the Qt5 framework (deprecated) +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=geolocation gstreamer gles2 +jit multimedia opengl orientation printsupport qml test webchannel webp debug test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=dev-db/sqlite:3 dev-libs/icu:= >=dev-libs/leveldb-1.18-r1 dev-libs/libxml2:2 dev-libs/libxslt >=dev-qt/qtcore-5.9.1:5[icu] >=dev-qt/qtgui-5.9.1:5 >=dev-qt/qtnetwork-5.9.1:5 >=dev-qt/qtsql-5.9.1:5 >=dev-qt/qtwidgets-5.9.1:5 media-libs/fontconfig:1.0 media-libs/libpng:0= >=sys-libs/zlib-1.2.5 virtual/jpeg:0 virtual/opengl x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender geolocation? ( >=dev-qt/qtpositioning-5.9.1:5 ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) multimedia? ( >=dev-qt/qtmultimedia-5.9.1:5[widgets] ) opengl? ( >=dev-qt/qtgui-5.9.1:5[gles2=] >=dev-qt/qtopengl-5.9.1:5 ) orientation? ( >=dev-qt/qtsensors-5.9.1:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.9.1:5 ) qml? ( >=dev-qt/qtdeclarative-5.9.1:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.9.1:5 ) webp? ( media-libs/libwebp:0= ) dev-qt/qtchooser +REQUIRED_USE=?? ( gstreamer multimedia ) +RESTRICT=mirror test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.1/submodules/qtwebkit-opensource-src-5.9.1.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=675068bc3ad1ecf755d14d9bc6ace647 diff --git a/metadata/md5-cache/dev-qt/qtwebsockets-5.6.2 b/metadata/md5-cache/dev-qt/qtwebsockets-5.6.2 index 17a8272e89b1..1fd3fafd1591 100644 --- a/metadata/md5-cache/dev-qt/qtwebsockets-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtwebsockets-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtnetwork-5.6.2[ssl=] qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtnetwork-5.6.2[ssl=] qml? ( ~dev-qt/qtdeclarative-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Implementation of the WebSocket protocol for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtnetwork-5.6.2[ssl=] qml? ( ~dev-qt/qtdecl RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtwebsockets-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=c500873b26a94d401fce3c44f25af12c diff --git a/metadata/md5-cache/dev-qt/qtwebsockets-5.7.1 b/metadata/md5-cache/dev-qt/qtwebsockets-5.7.1 index 7c6600d4a0a6..a7cde162c78d 100644 --- a/metadata/md5-cache/dev-qt/qtwebsockets-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtwebsockets-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtnetwork-5.7.1[ssl=] qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtnetwork-5.7.1[ssl=] qml? ( ~dev-qt/qtdeclarative-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Implementation of the WebSocket protocol for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtnetwork-5.7.1[ssl=] qml? ( ~dev-qt/qtdecl RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtwebsockets-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=9eb13718d8a7d4e451684d275bf2c83e diff --git a/metadata/md5-cache/dev-qt/qtwebsockets-5.9.2 b/metadata/md5-cache/dev-qt/qtwebsockets-5.9.2 new file mode 100644 index 000000000000..aa8677a71881 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebsockets-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtnetwork-5.9.2[ssl=] qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Implementation of the WebSocket protocol for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml +ssl debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtnetwork-5.9.2[ssl=] qml? ( ~dev-qt/qtdeclarative-5.9.2 ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtwebsockets-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=e53ff69c93d748c42bcaa1cdc58758a2 diff --git a/metadata/md5-cache/dev-qt/qtwebview-5.7.1 b/metadata/md5-cache/dev-qt/qtwebview-5.7.1 index e9a023ee6e4c..2a25fa750516 100644 --- a/metadata/md5-cache/dev-qt/qtwebview-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtwebview-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwebengine-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~dev-qt/qtwebengine-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=Module for displaying web content in a QML application using the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtdeclarative-5.7.1 ~dev-qt/qtgui-5.7.1 ~de RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtwebview-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=82697778ea3ac492e122861147c788ad diff --git a/metadata/md5-cache/dev-qt/qtwebview-5.9.2 b/metadata/md5-cache/dev-qt/qtwebview-5.9.2 new file mode 100644 index 000000000000..14da3767872d --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebview-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwebengine-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Module for displaying web content in a QML application using the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtdeclarative-5.9.2 ~dev-qt/qtgui-5.9.2 ~dev-qt/qtwebengine-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtwebview-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=e8647f9198111762fe53da594ddbae5d diff --git a/metadata/md5-cache/dev-qt/qtwidgets-5.6.2 b/metadata/md5-cache/dev-qt/qtwidgets-5.6.2 index d5523b9d2ad8..78af28b77e76 100644 --- a/metadata/md5-cache/dev-qt/qtwidgets-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtwidgets-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=,gtkstyle=,png=,xcb?] dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=,gtkstyle=,png=,xcb?] dev-lang/perl virtual/pkgconfig DESCRIPTION=Set of components for creating classic desktop-style UIs for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=,gtkstyle=,png=,xcb?] dev RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=2f612bd1b750ee676c0654a7446dd369 diff --git a/metadata/md5-cache/dev-qt/qtwidgets-5.7.1 b/metadata/md5-cache/dev-qt/qtwidgets-5.7.1 index 0ab7b8d1e0a8..277a8722c6f7 100644 --- a/metadata/md5-cache/dev-qt/qtwidgets-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtwidgets-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=,png=,xcb?] dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=,png=,xcb?] dev-lang/perl virtual/pkgconfig DESCRIPTION=Set of components for creating classic desktop-style UIs for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[gles2=,png=,xcb?] dev-qt/qtchoo RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=6495bb5330a8f0e1ed3035e301a3178a diff --git a/metadata/md5-cache/dev-qt/qtwidgets-5.9.2 b/metadata/md5-cache/dev-qt/qtwidgets-5.9.2 new file mode 100644 index 000000000000..053a93d52e44 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwidgets-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=,png=,xcb?] gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Set of components for creating classic desktop-style UIs for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=gles2 gtk +png +xcb debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[gles2=,png=,xcb?] gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=0c714bfc670f656630cbb774de5165ea diff --git a/metadata/md5-cache/dev-qt/qtx11extras-5.6.2 b/metadata/md5-cache/dev-qt/qtx11extras-5.6.2 index a2626531dbcd..ef8299e47305 100644 --- a/metadata/md5-cache/dev-qt/qtx11extras-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtx11extras-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[xcb] test? ( ~dev-qt/qtwidgets-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[xcb] test? ( ~dev-qt/qtwidgets-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Linux/X11-specific support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[xcb] dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtx11extras-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=ce5ec48decc96ec377f6020277fe91d6 diff --git a/metadata/md5-cache/dev-qt/qtx11extras-5.7.1 b/metadata/md5-cache/dev-qt/qtx11extras-5.7.1 index 996045929ee7..1cbb1ea1fe6f 100644 --- a/metadata/md5-cache/dev-qt/qtx11extras-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtx11extras-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[xcb] test? ( ~dev-qt/qtwidgets-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[xcb] test? ( ~dev-qt/qtwidgets-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Linux/X11-specific support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtgui-5.7.1[xcb] dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtx11extras-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=ea23adca57db425b64a512f8402662a5 diff --git a/metadata/md5-cache/dev-qt/qtx11extras-5.9.2 b/metadata/md5-cache/dev-qt/qtx11extras-5.9.2 new file mode 100644 index 000000000000..4ab2fe1dfdf4 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtx11extras-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[xcb] test? ( ~dev-qt/qtwidgets-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Linux/X11-specific support library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtgui-5.9.2[xcb] dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtx11extras-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=03dd3ed1dcd532fb496095a94a4187c1 diff --git a/metadata/md5-cache/dev-qt/qtxml-5.6.2 b/metadata/md5-cache/dev-qt/qtxml-5.6.2 index d845df1b2bdd..f2f7a8b05b77 100644 --- a/metadata/md5-cache/dev-qt/qtxml-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtxml-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 test? ( ~dev-qt/qtnetwork-5.6.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 test? ( ~dev-qt/qtnetwork-5.6.2 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Implementation of SAX and DOM for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=5e339685366ba3826f73804e59ee1f69 diff --git a/metadata/md5-cache/dev-qt/qtxml-5.7.1 b/metadata/md5-cache/dev-qt/qtxml-5.7.1 index 9d4062f38048..73b51e019e0e 100644 --- a/metadata/md5-cache/dev-qt/qtxml-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtxml-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 test? ( ~dev-qt/qtnetwork-5.7.1 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 test? ( ~dev-qt/qtnetwork-5.7.1 ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Implementation of SAX and DOM for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtbase-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=e6a031338a2cdc2ecba1dffe406860e7 diff --git a/metadata/md5-cache/dev-qt/qtxml-5.9.2 b/metadata/md5-cache/dev-qt/qtxml-5.9.2 new file mode 100644 index 000000000000..cf9a8d12c1eb --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtxml-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 test? ( ~dev-qt/qtnetwork-5.9.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=Implementation of SAX and DOM for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtbase-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=68f7d4b7249b9f5ac7dd097ffbc46119 diff --git a/metadata/md5-cache/dev-qt/qtxmlpatterns-5.6.2 b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.6.2 index 41f8290369e5..62861fa802bd 100644 --- a/metadata/md5-cache/dev-qt/qtxmlpatterns-5.6.2 +++ b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.6.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtnetwork-5.6.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtnetwork-5.6.2 dev-lang/perl virtual/pkgconfig DESCRIPTION=XPath, XQuery, XSLT, and XML Schema validation library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtnetwork-5.6.2 dev-qt/qtchooser RESTRICT=test SLOT=5/5.6 SRC_URI=https://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/qtxmlpatterns-opensource-src-5.6.2.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=2eeda4036e7f58c4b105063e2da832bd diff --git a/metadata/md5-cache/dev-qt/qtxmlpatterns-5.7.1 b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.7.1 index 76805e05b80e..5065bdc8ae16 100644 --- a/metadata/md5-cache/dev-qt/qtxmlpatterns-5.7.1 +++ b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.7.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtnetwork-5.7.1 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.7.1 ) +DEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtnetwork-5.7.1 dev-lang/perl virtual/pkgconfig DESCRIPTION=XPath, XQuery, XSLT, and XML Schema validation library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -10,5 +10,5 @@ RDEPEND=~dev-qt/qtcore-5.7.1 ~dev-qt/qtnetwork-5.7.1 dev-qt/qtchooser RESTRICT=test SLOT=5/5.7 SRC_URI=https://download.qt.io/official_releases/qt/5.7/5.7.1/submodules/qtxmlpatterns-opensource-src-5.7.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 16cbfb66f69906d4f3683bd191939f0f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 _md5_=a31e531e8991eb6f6300a579ffe9de6a diff --git a/metadata/md5-cache/dev-qt/qtxmlpatterns-5.9.2 b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.9.2 new file mode 100644 index 000000000000..9f23d7265c80 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtnetwork-5.9.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.9.2 ) +DESCRIPTION=XPath, XQuery, XSLT, and XML Schema validation library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.9.2 ~dev-qt/qtnetwork-5.9.2 dev-qt/qtchooser +RESTRICT=test +SLOT=5/5.9 +SRC_URI=https://download.qt.io/official_releases/qt/5.9/5.9.2/submodules/qtxmlpatterns-opensource-src-5.9.2.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qt5-build 9e46c21da69a73e0f5e2b6375f7741df toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=15bbfc7c1c5360523f01cc03755e547a diff --git a/metadata/md5-cache/dev-ros/roslisp-1.9.19 b/metadata/md5-cache/dev-ros/roslisp-1.9.19 deleted file mode 100644 index f1f112bfc64e..000000000000 --- a/metadata/md5-cache/dev-ros/roslisp-1.9.19 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-ros/roslang dev-lisp/sbcl dev-ros/rospack dev-ros/rosgraph_msgs dev-ros/std_srvs sys-devel/make >=dev-util/cmake-3.7.2 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -DESCRIPTION=Lisp client library for ROS -EAPI=5 -HOMEPAGE=http://wiki.ros.org/roslisp -IUSE=python_targets_python2_7 test -KEYWORDS=~amd64 -LICENSE=BSD -RDEPEND=dev-ros/roslang dev-lisp/sbcl dev-ros/rospack dev-ros/rosgraph_msgs dev-ros/std_srvs python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=https://github.com/ros/roslisp/archive/1.9.19.tar.gz -> roslisp-1.9.19.tar.gz -_eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d ros-catkin eff12e024f16913cfb3da0e96a045552 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=59e0cc12cc70c131fb152fdef4679aec diff --git a/metadata/md5-cache/dev-ros/roslisp-1.9.20 b/metadata/md5-cache/dev-ros/roslisp-1.9.20 deleted file mode 100644 index 7e5db96f79e1..000000000000 --- a/metadata/md5-cache/dev-ros/roslisp-1.9.20 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-ros/roslang dev-lisp/sbcl dev-ros/rospack dev-ros/rosgraph_msgs dev-ros/std_srvs sys-devel/make >=dev-util/cmake-3.7.2 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-util/catkin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/empy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -DESCRIPTION=Lisp client library for ROS -EAPI=5 -HOMEPAGE=http://wiki.ros.org/roslisp -IUSE=python_targets_python2_7 test -KEYWORDS=~amd64 -LICENSE=BSD -RDEPEND=dev-ros/roslang dev-lisp/sbcl dev-ros/rospack dev-ros/rosgraph_msgs dev-ros/std_srvs python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=https://github.com/ros/roslisp/archive/1.9.20.tar.gz -> roslisp-1.9.20.tar.gz -_eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d ros-catkin eff12e024f16913cfb3da0e96a045552 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=59e0cc12cc70c131fb152fdef4679aec diff --git a/metadata/md5-cache/dev-ruby/acts_as_list-0.9.4 b/metadata/md5-cache/dev-ruby/acts_as_list-0.9.4 deleted file mode 100644 index b4b5cde8e3dc..000000000000 --- a/metadata/md5-cache/dev-ruby/acts_as_list-0.9.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby22? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby22] dev-ruby/activerecord[ruby_targets_ruby22,sqlite] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby23] dev-ruby/activerecord[ruby_targets_ruby23,sqlite] ) ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=Capabilities for sorting and reordering a number of objects in a list -EAPI=5 -HOMEPAGE=https://github.com/swanandp/acts_as_list -IUSE=test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=~amd64 ~x86-macos -LICENSE=MIT -RDEPEND=ruby_targets_ruby22? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby23] ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ) -SLOT=3 -SRC_URI=mirror://rubygems/acts_as_list-0.9.4.gem -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a4c188c6517143c596c5ce36d0bafa80 diff --git a/metadata/md5-cache/dev-ruby/acts_as_list-0.9.5 b/metadata/md5-cache/dev-ruby/acts_as_list-0.9.5 deleted file mode 100644 index 39586dc76545..000000000000 --- a/metadata/md5-cache/dev-ruby/acts_as_list-0.9.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby22? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby22] dev-ruby/activerecord[ruby_targets_ruby22,sqlite] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby23] dev-ruby/activerecord[ruby_targets_ruby23,sqlite] ) ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=Capabilities for sorting and reordering a number of objects in a list -EAPI=5 -HOMEPAGE=https://github.com/swanandp/acts_as_list -IUSE=test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=~amd64 ~x86-macos -LICENSE=MIT -RDEPEND=ruby_targets_ruby22? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby23] ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ) -SLOT=3 -SRC_URI=mirror://rubygems/acts_as_list-0.9.5.gem -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a4c188c6517143c596c5ce36d0bafa80 diff --git a/metadata/md5-cache/dev-ruby/acts_as_list-0.9.9 b/metadata/md5-cache/dev-ruby/acts_as_list-0.9.9 new file mode 100644 index 000000000000..4ead760afe00 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/acts_as_list-0.9.9 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby22? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby24] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby22] dev-ruby/activerecord[ruby_targets_ruby22,sqlite] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby23] dev-ruby/activerecord[ruby_targets_ruby23,sqlite] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby24] dev-ruby/activerecord[ruby_targets_ruby24,sqlite] ) ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) +DESCRIPTION=Capabilities for sorting and reordering a number of objects in a list +EAPI=6 +HOMEPAGE=https://github.com/swanandp/acts_as_list +IUSE=test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test +KEYWORDS=~amd64 ~x86-macos +LICENSE=MIT +RDEPEND=ruby_targets_ruby22? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/activerecord-3:*[ruby_targets_ruby24] ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) +SLOT=3 +SRC_URI=mirror://rubygems/acts_as_list-0.9.9.gem +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=e410929b87ed585c910ef4f0185f0fcb diff --git a/metadata/md5-cache/dev-ruby/arel-helpers-2.5.0 b/metadata/md5-cache/dev-ruby/arel-helpers-2.5.0 new file mode 100644 index 000000000000..1f7659b0f6f4 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/arel-helpers-2.5.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby22? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby22] dev-ruby/activerecord:5.0[ruby_targets_ruby22] dev-ruby/activerecord:4.2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby23] dev-ruby/activerecord:5.0[ruby_targets_ruby23] dev-ruby/activerecord:4.2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby24] dev-ruby/activerecord:5.0[ruby_targets_ruby24] dev-ruby/activerecord:4.2[ruby_targets_ruby24] ) ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rr[ruby_targets_ruby22] dev-ruby/activerecord[ruby_targets_ruby22,sqlite] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rr[ruby_targets_ruby23] dev-ruby/activerecord[ruby_targets_ruby23,sqlite] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rr[ruby_targets_ruby24] dev-ruby/activerecord[ruby_targets_ruby24,sqlite] ) ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby23] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby24] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby24] ) ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) +DESCRIPTION=Tools to help construct database queries +EAPI=6 +HOMEPAGE=https://github.com/camertron/arel-helpers +IUSE=test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test +KEYWORDS=~amd64 ~arm +LICENSE=MIT +RDEPEND=ruby_targets_ruby22? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby22] dev-ruby/activerecord:5.0[ruby_targets_ruby22] dev-ruby/activerecord:4.2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby23] dev-ruby/activerecord:5.0[ruby_targets_ruby23] dev-ruby/activerecord:4.2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby24] dev-ruby/activerecord:5.0[ruby_targets_ruby24] dev-ruby/activerecord:4.2[ruby_targets_ruby24] ) ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) +SLOT=0 +SRC_URI=mirror://rubygems/arel-helpers-2.5.0.gem +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=85343fa482fb0c12d4dde9e8da5deb8d diff --git a/metadata/md5-cache/dev-ruby/capybara-2.13.0 b/metadata/md5-cache/dev-ruby/capybara-2.13.0 deleted file mode 100644 index 0848c29ac767..000000000000 --- a/metadata/md5-cache/dev-ruby/capybara-2.13.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( www-client/firefox ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby22] dev-ruby/launchy[ruby_targets_ruby22] >=dev-ruby/selenium-webdriver-2.0[ruby_targets_ruby22] dev-ruby/sinatra[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] dev-ruby/launchy[ruby_targets_ruby23] >=dev-ruby/selenium-webdriver-2.0[ruby_targets_ruby23] dev-ruby/sinatra[ruby_targets_ruby23] ) ) test? ( ruby_targets_ruby22? ( dev-ruby/addressable[ruby_targets_ruby22] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby22] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ruby22] >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rack-test-0.5.4[ruby_targets_ruby22] >=dev-ruby/xpath-2.0.0:2[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/addressable[ruby_targets_ruby23] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby23] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ruby23] >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby23] >=dev-ruby/rack-test-0.5.4[ruby_targets_ruby23] >=dev-ruby/xpath-2.0.0:2[ruby_targets_ruby23] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=Capybara aims to simplify the process of integration testing Rack applications -EAPI=5 -HOMEPAGE=https://github.com/jnicklas/capybara -IUSE=test test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby22? ( dev-ruby/addressable[ruby_targets_ruby22] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby22] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ruby22] >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rack-test-0.5.4[ruby_targets_ruby22] >=dev-ruby/xpath-2.0.0:2[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/addressable[ruby_targets_ruby23] >=dev-ruby/mime-types-1.16:*[ruby_targets_ruby23] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ruby23] >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby23] >=dev-ruby/rack-test-0.5.4[ruby_targets_ruby23] >=dev-ruby/xpath-2.0.0:2[ruby_targets_ruby23] ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ) -SLOT=2 -SRC_URI=mirror://rubygems/capybara-2.13.0.gem -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 -_md5_=a93e86c36d481cc6742e6bc6a70f19bb diff --git a/metadata/md5-cache/dev-ruby/capybara-2.15.1 b/metadata/md5-cache/dev-ruby/capybara-2.15.4 similarity index 98% rename from metadata/md5-cache/dev-ruby/capybara-2.15.1 rename to metadata/md5-cache/dev-ruby/capybara-2.15.4 index 3cace09ad16b..77f94549760b 100644 --- a/metadata/md5-cache/dev-ruby/capybara-2.15.1 +++ b/metadata/md5-cache/dev-ruby/capybara-2.15.4 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=ruby_targets_ruby22? ( dev-ruby/addressable[ruby_targets_ruby22] >=dev-ruby/mini_mime-0.1.3[ruby_targets_ruby22] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ruby22] >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rack-test-0.5.4:*[ruby_targets_ruby22] >=dev-ruby/xpath-2.0.0:2[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/addressable[ruby_targets_ruby23] >=dev-ruby/mini_mime-0.1.3[ruby_targets_ruby23] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ruby23] >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby23] >=dev-ruby/rack-test-0.5.4:*[ruby_targets_ruby23] >=dev-ruby/xpath-2.0.0:2[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/addressable[ruby_targets_ruby24] >=dev-ruby/mini_mime-0.1.3[ruby_targets_ruby24] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ruby24] >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby24] >=dev-ruby/rack-test-0.5.4:*[ruby_targets_ruby24] >=dev-ruby/xpath-2.0.0:2[ruby_targets_ruby24] ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=2 -SRC_URI=mirror://rubygems/capybara-2.15.1.gem +SRC_URI=mirror://rubygems/capybara-2.15.4.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 -_md5_=8271a0e88ca2c8b573857496a6ff13d3 +_md5_=055e393c954472c40af848327e7adff7 diff --git a/metadata/md5-cache/dev-ruby/facter-3.9.2 b/metadata/md5-cache/dev-ruby/facter-3.9.2 index cf785a39e6d9..29ce00b2e812 100644 --- a/metadata/md5-cache/dev-ruby/facter-3.9.2 +++ b/metadata/md5-cache/dev-ruby/facter-3.9.2 @@ -4,11 +4,11 @@ DESCRIPTION=A cross-platform ruby library for retrieving facts from operating sy EAPI=6 HOMEPAGE=http://www.puppetlabs.com/puppet/related-projects/facter/ IUSE=debug test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~hppa ~ppc ~ppc64 x86 LICENSE=Apache-2.0 RDEPEND=dev-libs/openssl:* sys-apps/util-linux app-emulation/virt-what net-misc/curl >=dev-libs/boost-1.54[nls] >=dev-cpp/yaml-cpp-0.5.1 ! facter-3.9.2.tar.gz _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=4058eb7bc8c44a7da00cde462109a8a3 +_md5_=65485762d62e708bdd3619468c7a4ee5 diff --git a/metadata/md5-cache/dev-ruby/hashdiff-0.3.7 b/metadata/md5-cache/dev-ruby/hashdiff-0.3.7 new file mode 100644 index 000000000000..b2b52ba2d460 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/hashdiff-0.3.7 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby24] ) ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) +DESCRIPTION=Simple Hash extension to make working with nested hashes easier +EAPI=6 +HOMEPAGE=https://github.com/liufengyun/hashdiff +IUSE=elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 test test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) +SLOT=0 +SRC_URI=mirror://rubygems/hashdiff-0.3.7.gem +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=34d2137ae89179a87f0384ef9664ceba diff --git a/metadata/md5-cache/dev-ruby/rubygems-2.5.2 b/metadata/md5-cache/dev-ruby/rubygems-2.5.2 deleted file mode 100644 index 46cdc7412907..000000000000 --- a/metadata/md5-cache/dev-ruby/rubygems-2.5.2 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=ruby_targets_ruby22? ( test? ( >=dev-ruby/minitest-4:0[ruby_targets_ruby22] dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( >=dev-ruby/minitest-4:0[ruby_targets_ruby23] dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) -DESCRIPTION=Centralized Ruby extension management system -EAPI=5 -HOMEPAGE=https://rubygems.org/ -IUSE=server test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=|| ( Ruby MIT ) -PDEPEND=server? ( >=dev-ruby/builder-2.1 ) -RDEPEND=ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) -REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ) -SLOT=0 -SRC_URI=https://rubygems.org/rubygems/rubygems-2.5.2.tgz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e prefix 7b6fb2fc216b101b5d97d171925a847c ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=306f958bc5a606522e75aa9458230299 diff --git a/metadata/md5-cache/dev-ruby/rubygems-2.6.12 b/metadata/md5-cache/dev-ruby/rubygems-2.6.12 deleted file mode 100644 index 6dea79ea0bdf..000000000000 --- a/metadata/md5-cache/dev-ruby/rubygems-2.6.12 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=ruby_targets_ruby22? ( test? ( >=dev-ruby/minitest-4:0[ruby_targets_ruby22] dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( >=dev-ruby/minitest-4:0[ruby_targets_ruby23] dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( >=dev-ruby/minitest-4:0[ruby_targets_ruby24] dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) -DESCRIPTION=Centralized Ruby extension management system -EAPI=6 -HOMEPAGE=https://rubygems.org/ -IUSE=server test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=|| ( Ruby MIT ) -PDEPEND=server? ( >=dev-ruby/builder-2.1 ) -RDEPEND=ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) -REQUIRED_USE=|| ( ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) -SLOT=0 -SRC_URI=https://rubygems.org/rubygems/rubygems-2.6.12.tgz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e prefix 7b6fb2fc216b101b5d97d171925a847c ruby-ng dbd648644c9f5bec523dc17dc34d8671 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=88c7f2d26d031550dc53d807f29b8254 diff --git a/metadata/md5-cache/dev-texlive/texlive-context-2015 b/metadata/md5-cache/dev-texlive/texlive-context-2015 index 78a5c6396a1d..0b8ca244135b 100644 --- a/metadata/md5-cache/dev-texlive/texlive-context-2015 +++ b/metadata/md5-cache/dev-texlive/texlive-context-2015 @@ -4,10 +4,10 @@ DESCRIPTION=TeXLive ConTeXt and packages EAPI=5 HOMEPAGE=http://www.tug.org/texlive/ IUSE=source doc -KEYWORDS=alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD GPL-1 GPL-2 GPL-3 public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2015 >=dev-texlive/texlive-latex-2010 !=app-text/texlive-core-2010[xetex] >=dev-texlive/texlive-metapost-2010 dev-lang/ruby >=app-text/texlive-core-2015 SLOT=0 SRC_URI=mirror://gentoo/texlive-module-context-2015.tar.xz mirror://gentoo/texlive-module-jmn-2015.tar.xz mirror://gentoo/texlive-module-context-account-2015.tar.xz mirror://gentoo/texlive-module-context-algorithmic-2015.tar.xz mirror://gentoo/texlive-module-context-animation-2015.tar.xz mirror://gentoo/texlive-module-context-annotation-2015.tar.xz mirror://gentoo/texlive-module-context-bnf-2015.tar.xz mirror://gentoo/texlive-module-context-chromato-2015.tar.xz mirror://gentoo/texlive-module-context-construction-plan-2015.tar.xz mirror://gentoo/texlive-module-context-cyrillicnumbers-2015.tar.xz mirror://gentoo/texlive-module-context-degrade-2015.tar.xz mirror://gentoo/texlive-module-context-fancybreak-2015.tar.xz mirror://gentoo/texlive-module-context-filter-2015.tar.xz mirror://gentoo/texlive-module-context-fixme-2015.tar.xz mirror://gentoo/texlive-module-context-french-2015.tar.xz mirror://gentoo/texlive-module-context-fullpage-2015.tar.xz mirror://gentoo/texlive-module-context-games-2015.tar.xz mirror://gentoo/texlive-module-context-gantt-2015.tar.xz mirror://gentoo/texlive-module-context-gnuplot-2015.tar.xz mirror://gentoo/texlive-module-context-letter-2015.tar.xz mirror://gentoo/texlive-module-context-lettrine-2015.tar.xz mirror://gentoo/texlive-module-context-lilypond-2015.tar.xz mirror://gentoo/texlive-module-context-mathsets-2015.tar.xz mirror://gentoo/texlive-module-context-notes-zh-cn-2015.tar.xz mirror://gentoo/texlive-module-context-rst-2015.tar.xz mirror://gentoo/texlive-module-context-ruby-2015.tar.xz mirror://gentoo/texlive-module-context-simplefonts-2015.tar.xz mirror://gentoo/texlive-module-context-simpleslides-2015.tar.xz mirror://gentoo/texlive-module-context-title-2015.tar.xz mirror://gentoo/texlive-module-context-transliterator-2015.tar.xz mirror://gentoo/texlive-module-context-typearea-2015.tar.xz mirror://gentoo/texlive-module-context-typescripts-2015.tar.xz mirror://gentoo/texlive-module-context-vim-2015.tar.xz mirror://gentoo/texlive-module-context-visualcounter-2015.tar.xz mirror://gentoo/texlive-module-collection-context-2015.tar.xz doc? ( mirror://gentoo/texlive-module-context.doc-2015.tar.xz mirror://gentoo/texlive-module-context-account.doc-2015.tar.xz mirror://gentoo/texlive-module-context-animation.doc-2015.tar.xz mirror://gentoo/texlive-module-context-annotation.doc-2015.tar.xz mirror://gentoo/texlive-module-context-bnf.doc-2015.tar.xz mirror://gentoo/texlive-module-context-chromato.doc-2015.tar.xz mirror://gentoo/texlive-module-context-construction-plan.doc-2015.tar.xz mirror://gentoo/texlive-module-context-cyrillicnumbers.doc-2015.tar.xz mirror://gentoo/texlive-module-context-degrade.doc-2015.tar.xz mirror://gentoo/texlive-module-context-fancybreak.doc-2015.tar.xz mirror://gentoo/texlive-module-context-filter.doc-2015.tar.xz mirror://gentoo/texlive-module-context-french.doc-2015.tar.xz mirror://gentoo/texlive-module-context-fullpage.doc-2015.tar.xz mirror://gentoo/texlive-module-context-games.doc-2015.tar.xz mirror://gentoo/texlive-module-context-gantt.doc-2015.tar.xz mirror://gentoo/texlive-module-context-gnuplot.doc-2015.tar.xz mirror://gentoo/texlive-module-context-letter.doc-2015.tar.xz mirror://gentoo/texlive-module-context-lettrine.doc-2015.tar.xz mirror://gentoo/texlive-module-context-lilypond.doc-2015.tar.xz mirror://gentoo/texlive-module-context-mathsets.doc-2015.tar.xz mirror://gentoo/texlive-module-context-notes-zh-cn.doc-2015.tar.xz mirror://gentoo/texlive-module-context-rst.doc-2015.tar.xz mirror://gentoo/texlive-module-context-ruby.doc-2015.tar.xz mirror://gentoo/texlive-module-context-simplefonts.doc-2015.tar.xz mirror://gentoo/texlive-module-context-simpleslides.doc-2015.tar.xz mirror://gentoo/texlive-module-context-title.doc-2015.tar.xz mirror://gentoo/texlive-module-context-transliterator.doc-2015.tar.xz mirror://gentoo/texlive-module-context-typearea.doc-2015.tar.xz mirror://gentoo/texlive-module-context-typescripts.doc-2015.tar.xz mirror://gentoo/texlive-module-context-vim.doc-2015.tar.xz mirror://gentoo/texlive-module-context-visualcounter.doc-2015.tar.xz ) source? ( mirror://gentoo/texlive-module-context-visualcounter.source-2015.tar.xz ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e texlive-common f68a634c367f10b9fbb8fb02195ba411 texlive-module c0d611850cfb6f43e490d9abc709fab7 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=0b42c62f86870ed7e2f59433de0626fa +_md5_=3649a4ca5b10410385279618414c7e8f diff --git a/metadata/md5-cache/dev-texlive/texlive-formatsextra-2015 b/metadata/md5-cache/dev-texlive/texlive-formatsextra-2015 index 48f1cef4d167..42b35430280d 100644 --- a/metadata/md5-cache/dev-texlive/texlive-formatsextra-2015 +++ b/metadata/md5-cache/dev-texlive/texlive-formatsextra-2015 @@ -4,10 +4,10 @@ DESCRIPTION=TeXLive Additional formats EAPI=5 HOMEPAGE=http://www.tug.org/texlive/ IUSE=source doc -KEYWORDS=alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 GPL-3 LPPL-1.3 public-domain TeX RDEPEND=>=dev-texlive/texlive-basic-2015 >=dev-texlive/texlive-latex-2008 dev-texlive/texlive-xetex >=app-text/texlive-core-2015 SLOT=0 SRC_URI=mirror://gentoo/texlive-module-edmac-2015.tar.xz mirror://gentoo/texlive-module-eplain-2015.tar.xz mirror://gentoo/texlive-module-lollipop-2015.tar.xz mirror://gentoo/texlive-module-mltex-2015.tar.xz mirror://gentoo/texlive-module-psizzl-2015.tar.xz mirror://gentoo/texlive-module-startex-2015.tar.xz mirror://gentoo/texlive-module-texsis-2015.tar.xz mirror://gentoo/texlive-module-collection-formatsextra-2015.tar.xz doc? ( mirror://gentoo/texlive-module-edmac.doc-2015.tar.xz mirror://gentoo/texlive-module-eplain.doc-2015.tar.xz mirror://gentoo/texlive-module-lollipop.doc-2015.tar.xz mirror://gentoo/texlive-module-mltex.doc-2015.tar.xz mirror://gentoo/texlive-module-psizzl.doc-2015.tar.xz mirror://gentoo/texlive-module-startex.doc-2015.tar.xz mirror://gentoo/texlive-module-texsis.doc-2015.tar.xz ) source? ( mirror://gentoo/texlive-module-edmac.source-2015.tar.xz mirror://gentoo/texlive-module-eplain.source-2015.tar.xz mirror://gentoo/texlive-module-psizzl.source-2015.tar.xz mirror://gentoo/texlive-module-startex.source-2015.tar.xz ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e texlive-common f68a634c367f10b9fbb8fb02195ba411 texlive-module c0d611850cfb6f43e490d9abc709fab7 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=1c406f0bfe1faaf54fc0b84db1b6f0dd +_md5_=c7a905d1e4714609ebb73f9b9226a72f diff --git a/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2015-r1 b/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2015-r1 index 1bd7edd542f4..2f3de16a0e64 100644 --- a/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2015-r1 +++ b/metadata/md5-cache/dev-texlive/texlive-langczechslovak-2015-r1 @@ -4,10 +4,10 @@ DESCRIPTION=TeXLive Czech/Slovak EAPI=5 HOMEPAGE=http://www.tug.org/texlive/ IUSE=source doc -KEYWORDS=alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-1 GPL-2 LPPL-1.3 TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2015 >=dev-texlive/texlive-latex-2015 !dev-texlive/texlive-documentation-czechslovak >=app-text/texlive-core-2014[xetex] >=app-text/texlive-core-2015 SLOT=0 SRC_URI=mirror://gentoo/texlive-module-babel-czech-2015.tar.xz mirror://gentoo/texlive-module-babel-slovak-2015.tar.xz mirror://gentoo/texlive-module-cnbwp-2015.tar.xz mirror://gentoo/texlive-module-cs-2015.tar.xz mirror://gentoo/texlive-module-csbulletin-2015.tar.xz mirror://gentoo/texlive-module-cslatex-2015.tar.xz mirror://gentoo/texlive-module-csplain-2015.tar.xz mirror://gentoo/texlive-module-cstex-2015.tar.xz mirror://gentoo/texlive-module-hyphen-czech-2015.tar.xz mirror://gentoo/texlive-module-hyphen-slovak-2015.tar.xz mirror://gentoo/texlive-module-lshort-czech-2015.tar.xz mirror://gentoo/texlive-module-lshort-slovak-2015.tar.xz mirror://gentoo/texlive-module-texlive-cz-2015.tar.xz mirror://gentoo/texlive-module-collection-langczechslovak-2015.tar.xz doc? ( mirror://gentoo/texlive-module-babel-czech.doc-2015.tar.xz mirror://gentoo/texlive-module-babel-slovak.doc-2015.tar.xz mirror://gentoo/texlive-module-cnbwp.doc-2015.tar.xz mirror://gentoo/texlive-module-csbulletin.doc-2015.tar.xz mirror://gentoo/texlive-module-cstex.doc-2015.tar.xz mirror://gentoo/texlive-module-lshort-czech.doc-2015.tar.xz mirror://gentoo/texlive-module-lshort-slovak.doc-2015.tar.xz mirror://gentoo/texlive-module-texlive-cz.doc-2015.tar.xz ) source? ( mirror://gentoo/texlive-module-babel-czech.source-2015.tar.xz mirror://gentoo/texlive-module-babel-slovak.source-2015.tar.xz mirror://gentoo/texlive-module-cslatex.source-2015.tar.xz ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e texlive-common f68a634c367f10b9fbb8fb02195ba411 texlive-module c0d611850cfb6f43e490d9abc709fab7 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=4db29ad7b17ba2b741a395acbcc18933 +_md5_=625450c5026db0d19bace76c1213159b diff --git a/metadata/md5-cache/dev-texlive/texlive-luatex-2015 b/metadata/md5-cache/dev-texlive/texlive-luatex-2015 index 94b71ddcbd74..02508cbce90a 100644 --- a/metadata/md5-cache/dev-texlive/texlive-luatex-2015 +++ b/metadata/md5-cache/dev-texlive/texlive-luatex-2015 @@ -4,10 +4,10 @@ DESCRIPTION=TeXLive LuaTeX packages EAPI=5 HOMEPAGE=http://www.tug.org/texlive/ IUSE=source doc -KEYWORDS=alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD FDL-1.1 GPL-2 LPPL-1.2 LPPL-1.3 public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2015 dev-texlive/texlive-xetex >=app-text/texlive-core-2015 SLOT=0 SRC_URI=mirror://gentoo/texlive-module-checkcites-2015.tar.xz mirror://gentoo/texlive-module-chickenize-2015.tar.xz mirror://gentoo/texlive-module-cloze-2015.tar.xz mirror://gentoo/texlive-module-enigma-2015.tar.xz mirror://gentoo/texlive-module-interpreter-2015.tar.xz mirror://gentoo/texlive-module-lua-check-hyphen-2015.tar.xz mirror://gentoo/texlive-module-lua-visual-debug-2015.tar.xz mirror://gentoo/texlive-module-lua2dox-2015.tar.xz mirror://gentoo/texlive-module-luabibentry-2015.tar.xz mirror://gentoo/texlive-module-luabidi-2015.tar.xz mirror://gentoo/texlive-module-luacode-2015.tar.xz mirror://gentoo/texlive-module-luaindex-2015.tar.xz mirror://gentoo/texlive-module-luainputenc-2015.tar.xz mirror://gentoo/texlive-module-luaintro-2015.tar.xz mirror://gentoo/texlive-module-lualatex-doc-2015.tar.xz mirror://gentoo/texlive-module-lualatex-math-2015.tar.xz mirror://gentoo/texlive-module-lualibs-2015.tar.xz mirror://gentoo/texlive-module-luamplib-2015.tar.xz mirror://gentoo/texlive-module-luaotfload-2015.tar.xz mirror://gentoo/texlive-module-luasseq-2015.tar.xz mirror://gentoo/texlive-module-luatexbase-2015.tar.xz mirror://gentoo/texlive-module-luatexko-2015.tar.xz mirror://gentoo/texlive-module-luatextra-2015.tar.xz mirror://gentoo/texlive-module-luatodonotes-2015.tar.xz mirror://gentoo/texlive-module-luaxml-2015.tar.xz mirror://gentoo/texlive-module-odsfile-2015.tar.xz mirror://gentoo/texlive-module-placeat-2015.tar.xz mirror://gentoo/texlive-module-selnolig-2015.tar.xz mirror://gentoo/texlive-module-showhyphens-2015.tar.xz mirror://gentoo/texlive-module-spelling-2015.tar.xz mirror://gentoo/texlive-module-ucharcat-2015.tar.xz mirror://gentoo/texlive-module-collection-luatex-2015.tar.xz doc? ( mirror://gentoo/texlive-module-checkcites.doc-2015.tar.xz mirror://gentoo/texlive-module-chickenize.doc-2015.tar.xz mirror://gentoo/texlive-module-cloze.doc-2015.tar.xz mirror://gentoo/texlive-module-enigma.doc-2015.tar.xz mirror://gentoo/texlive-module-interpreter.doc-2015.tar.xz mirror://gentoo/texlive-module-lua-check-hyphen.doc-2015.tar.xz mirror://gentoo/texlive-module-lua-visual-debug.doc-2015.tar.xz mirror://gentoo/texlive-module-lua2dox.doc-2015.tar.xz mirror://gentoo/texlive-module-luabibentry.doc-2015.tar.xz mirror://gentoo/texlive-module-luabidi.doc-2015.tar.xz mirror://gentoo/texlive-module-luacode.doc-2015.tar.xz mirror://gentoo/texlive-module-luaindex.doc-2015.tar.xz mirror://gentoo/texlive-module-luainputenc.doc-2015.tar.xz mirror://gentoo/texlive-module-luaintro.doc-2015.tar.xz mirror://gentoo/texlive-module-lualatex-doc.doc-2015.tar.xz mirror://gentoo/texlive-module-lualatex-math.doc-2015.tar.xz mirror://gentoo/texlive-module-lualibs.doc-2015.tar.xz mirror://gentoo/texlive-module-luamplib.doc-2015.tar.xz mirror://gentoo/texlive-module-luaotfload.doc-2015.tar.xz mirror://gentoo/texlive-module-luasseq.doc-2015.tar.xz mirror://gentoo/texlive-module-luatexbase.doc-2015.tar.xz mirror://gentoo/texlive-module-luatexko.doc-2015.tar.xz mirror://gentoo/texlive-module-luatextra.doc-2015.tar.xz mirror://gentoo/texlive-module-luatodonotes.doc-2015.tar.xz mirror://gentoo/texlive-module-luaxml.doc-2015.tar.xz mirror://gentoo/texlive-module-odsfile.doc-2015.tar.xz mirror://gentoo/texlive-module-placeat.doc-2015.tar.xz mirror://gentoo/texlive-module-selnolig.doc-2015.tar.xz mirror://gentoo/texlive-module-showhyphens.doc-2015.tar.xz mirror://gentoo/texlive-module-spelling.doc-2015.tar.xz mirror://gentoo/texlive-module-ucharcat.doc-2015.tar.xz ) source? ( mirror://gentoo/texlive-module-chickenize.source-2015.tar.xz mirror://gentoo/texlive-module-cloze.source-2015.tar.xz mirror://gentoo/texlive-module-luabibentry.source-2015.tar.xz mirror://gentoo/texlive-module-luacode.source-2015.tar.xz mirror://gentoo/texlive-module-luaindex.source-2015.tar.xz mirror://gentoo/texlive-module-luainputenc.source-2015.tar.xz mirror://gentoo/texlive-module-lualatex-doc.source-2015.tar.xz mirror://gentoo/texlive-module-lualatex-math.source-2015.tar.xz mirror://gentoo/texlive-module-lualibs.source-2015.tar.xz mirror://gentoo/texlive-module-luamplib.source-2015.tar.xz mirror://gentoo/texlive-module-luaotfload.source-2015.tar.xz mirror://gentoo/texlive-module-luasseq.source-2015.tar.xz mirror://gentoo/texlive-module-luatexbase.source-2015.tar.xz mirror://gentoo/texlive-module-luatextra.source-2015.tar.xz mirror://gentoo/texlive-module-luatodonotes.source-2015.tar.xz mirror://gentoo/texlive-module-placeat.source-2015.tar.xz mirror://gentoo/texlive-module-ucharcat.source-2015.tar.xz ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e texlive-common f68a634c367f10b9fbb8fb02195ba411 texlive-module c0d611850cfb6f43e490d9abc709fab7 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=837926c8462fe53297dd86706a52e59c +_md5_=f5afac04f3904f5c09285e50a1fe0260 diff --git a/metadata/md5-cache/dev-texlive/texlive-xetex-2015 b/metadata/md5-cache/dev-texlive/texlive-xetex-2015 index 50037b81cf61..dcba2a7fc384 100644 --- a/metadata/md5-cache/dev-texlive/texlive-xetex-2015 +++ b/metadata/md5-cache/dev-texlive/texlive-xetex-2015 @@ -4,10 +4,10 @@ DESCRIPTION=TeXLive XeTeX and packages EAPI=5 HOMEPAGE=http://www.tug.org/texlive/ IUSE=X source doc -KEYWORDS=alpha amd64 arm hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 GPL-1 GPL-2 LPPL-1.2 LPPL-1.3 OFL public-domain TeX-other-free RDEPEND=>=dev-texlive/texlive-basic-2015 !=app-text/texlive-core-2007* >=dev-texlive/texlive-latexextra-2010 >=app-text/texlive-core-2010[xetex] >=dev-texlive/texlive-genericrecommended-2010 >=dev-texlive/texlive-mathextra-2012 !=app-text/texlive-core-2015 SLOT=0 SRC_URI=mirror://gentoo/texlive-module-arabxetex-2015.tar.xz mirror://gentoo/texlive-module-bidi-atbegshi-2015.tar.xz mirror://gentoo/texlive-module-bidicontour-2015.tar.xz mirror://gentoo/texlive-module-bidipagegrid-2015.tar.xz mirror://gentoo/texlive-module-bidishadowtext-2015.tar.xz mirror://gentoo/texlive-module-bidipresentation-2015.tar.xz mirror://gentoo/texlive-module-fixlatvian-2015.tar.xz mirror://gentoo/texlive-module-fontbook-2015.tar.xz mirror://gentoo/texlive-module-fontwrap-2015.tar.xz mirror://gentoo/texlive-module-interchar-2015.tar.xz mirror://gentoo/texlive-module-mathspec-2015.tar.xz mirror://gentoo/texlive-module-philokalia-2015.tar.xz mirror://gentoo/texlive-module-polyglossia-2015.tar.xz mirror://gentoo/texlive-module-ptext-2015.tar.xz mirror://gentoo/texlive-module-quran-2015.tar.xz mirror://gentoo/texlive-module-realscripts-2015.tar.xz mirror://gentoo/texlive-module-ucharclasses-2015.tar.xz mirror://gentoo/texlive-module-unisugar-2015.tar.xz mirror://gentoo/texlive-module-xecjk-2015.tar.xz mirror://gentoo/texlive-module-xecolor-2015.tar.xz mirror://gentoo/texlive-module-xecyr-2015.tar.xz mirror://gentoo/texlive-module-xeindex-2015.tar.xz mirror://gentoo/texlive-module-xepersian-2015.tar.xz mirror://gentoo/texlive-module-xesearch-2015.tar.xz mirror://gentoo/texlive-module-xespotcolor-2015.tar.xz mirror://gentoo/texlive-module-xetex-2015.tar.xz mirror://gentoo/texlive-module-xetex-def-2015.tar.xz mirror://gentoo/texlive-module-xetex-itrans-2015.tar.xz mirror://gentoo/texlive-module-xetex-pstricks-2015.tar.xz mirror://gentoo/texlive-module-xetex-tibetan-2015.tar.xz mirror://gentoo/texlive-module-xetexconfig-2015.tar.xz mirror://gentoo/texlive-module-xetexfontinfo-2015.tar.xz mirror://gentoo/texlive-module-xetexko-2015.tar.xz mirror://gentoo/texlive-module-xevlna-2015.tar.xz mirror://gentoo/texlive-module-xltxtra-2015.tar.xz mirror://gentoo/texlive-module-xunicode-2015.tar.xz mirror://gentoo/texlive-module-collection-xetex-2015.tar.xz doc? ( mirror://gentoo/texlive-module-arabxetex.doc-2015.tar.xz mirror://gentoo/texlive-module-bidi-atbegshi.doc-2015.tar.xz mirror://gentoo/texlive-module-bidicontour.doc-2015.tar.xz mirror://gentoo/texlive-module-bidipagegrid.doc-2015.tar.xz mirror://gentoo/texlive-module-bidishadowtext.doc-2015.tar.xz mirror://gentoo/texlive-module-bidipresentation.doc-2015.tar.xz mirror://gentoo/texlive-module-fixlatvian.doc-2015.tar.xz mirror://gentoo/texlive-module-fontbook.doc-2015.tar.xz mirror://gentoo/texlive-module-fontwrap.doc-2015.tar.xz mirror://gentoo/texlive-module-interchar.doc-2015.tar.xz mirror://gentoo/texlive-module-mathspec.doc-2015.tar.xz mirror://gentoo/texlive-module-philokalia.doc-2015.tar.xz mirror://gentoo/texlive-module-polyglossia.doc-2015.tar.xz mirror://gentoo/texlive-module-ptext.doc-2015.tar.xz mirror://gentoo/texlive-module-quran.doc-2015.tar.xz mirror://gentoo/texlive-module-realscripts.doc-2015.tar.xz mirror://gentoo/texlive-module-ucharclasses.doc-2015.tar.xz mirror://gentoo/texlive-module-unisugar.doc-2015.tar.xz mirror://gentoo/texlive-module-xecjk.doc-2015.tar.xz mirror://gentoo/texlive-module-xecolor.doc-2015.tar.xz mirror://gentoo/texlive-module-xecyr.doc-2015.tar.xz mirror://gentoo/texlive-module-xeindex.doc-2015.tar.xz mirror://gentoo/texlive-module-xepersian.doc-2015.tar.xz mirror://gentoo/texlive-module-xesearch.doc-2015.tar.xz mirror://gentoo/texlive-module-xespotcolor.doc-2015.tar.xz mirror://gentoo/texlive-module-xetex.doc-2015.tar.xz mirror://gentoo/texlive-module-xetex-itrans.doc-2015.tar.xz mirror://gentoo/texlive-module-xetex-pstricks.doc-2015.tar.xz mirror://gentoo/texlive-module-xetex-tibetan.doc-2015.tar.xz mirror://gentoo/texlive-module-xetexfontinfo.doc-2015.tar.xz mirror://gentoo/texlive-module-xetexko.doc-2015.tar.xz mirror://gentoo/texlive-module-xevlna.doc-2015.tar.xz mirror://gentoo/texlive-module-xltxtra.doc-2015.tar.xz mirror://gentoo/texlive-module-xunicode.doc-2015.tar.xz ) source? ( mirror://gentoo/texlive-module-arabxetex.source-2015.tar.xz mirror://gentoo/texlive-module-fixlatvian.source-2015.tar.xz mirror://gentoo/texlive-module-fontbook.source-2015.tar.xz mirror://gentoo/texlive-module-philokalia.source-2015.tar.xz mirror://gentoo/texlive-module-polyglossia.source-2015.tar.xz mirror://gentoo/texlive-module-realscripts.source-2015.tar.xz mirror://gentoo/texlive-module-xecjk.source-2015.tar.xz mirror://gentoo/texlive-module-xepersian.source-2015.tar.xz mirror://gentoo/texlive-module-xespotcolor.source-2015.tar.xz mirror://gentoo/texlive-module-xltxtra.source-2015.tar.xz ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 font 82836641e7d4639329d8c195234ad0e3 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e texlive-common f68a634c367f10b9fbb8fb02195ba411 texlive-module c0d611850cfb6f43e490d9abc709fab7 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=33a5e6fb29c9ae1098fad3659bdfa61f +_md5_=0e80349a8673bf6dcdc387d0683761b7 diff --git a/metadata/md5-cache/dev-vcs/mercurial-4.3 b/metadata/md5-cache/dev-vcs/mercurial-4.3 index 0ddf59ee6184..a74d1be3b417 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-4.3 +++ b/metadata/md5-cache/dev-vcs/mercurial-4.3 @@ -4,11 +4,11 @@ DESCRIPTION=Scalable distributed SCM EAPI=6 HOMEPAGE=https://www.mercurial-scm.org/ IUSE=bugzilla emacs gpg test tk python_targets_python2_7 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2+ RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) app-misc/ca-certificates python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://www.mercurial-scm.org/release/mercurial-4.3.tar.gz _eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 distutils-r1 372bbe39047c0a2550319a3a82f3e063 elisp-common 23f47b2e1de7abf387105eddd1318738 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=2fa71bad2a8e3ba50d633e8df14ee97d +_md5_=656e2589aebf770d4cdd14e15a20007a diff --git a/metadata/md5-cache/mail-client/thunderbird-52.4.0 b/metadata/md5-cache/mail-client/thunderbird-52.4.0 new file mode 100644 index 000000000000..47dd403718f8 --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-52.4.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=rust? ( dev-lang/rust ) amd64? ( >=dev-lang/yasm-1.1 virtual/opengl ) x86? ( >=dev-lang/yasm-1.1 virtual/opengl ) virtual/pkgconfig || ( >=dev-lang/python-2.7.5-r2:2.7[ncurses,sqlite,ssl,threads] ) app-arch/zip app-arch/unzip >=sys-devel/binutils-2.16.1 sys-apps/findutils pulseaudio? ( media-sound/pulseaudio ) >=app-text/hunspell-1.2:= dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.25:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 virtual/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-58.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-sqlite? ( >=dev-db/sqlite-3.17.0:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] ) system-harfbuzz? ( >=media-libs/harfbuzz-1.3.3:0= >=media-gfx/graphite2-1.3.8 ) !gtk2? ( >=x11-libs/gtk+-3.4.0:3 ) wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-misc/networkmanager ) ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 app-arch/unzip >=sys-apps/sed-4 +DESCRIPTION=Thunderbird Mail Client +EAPI=6 +HOMEPAGE=http://www.mozilla.com/en-US/thunderbird/ +IUSE=bindist crypt hardened ldap lightning +minimal mozdom rust selinux custom-cflags custom-optimization dbus debug +jemalloc neon pulseaudio selinux startup-notification system-cairo system-harfbuzz system-icu system-jpeg system-libevent system-sqlite system-libvpx gtk2 wifi l10n_ar l10n_ast l10n_be l10n_bg l10n_bn-BD l10n_br l10n_ca l10n_cs l10n_cy l10n_da l10n_de l10n_el l10n_en-GB l10n_es-AR l10n_es-ES l10n_et l10n_eu l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_he l10n_hr l10n_hsb l10n_hu l10n_hy l10n_id l10n_is l10n_it l10n_ja l10n_ko l10n_lt l10n_nb l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_ta-LK l10n_tr l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW +KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=>=dev-libs/nss-3.28.3 >=dev-libs/nspr-4.13.1 crypt? ( >=x11-plugins/enigmail-1.9.7 ) selinux? ( sec-policy/selinux-thunderbird ) >=app-text/hunspell-1.2:= dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.25:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 virtual/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-58.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-sqlite? ( >=dev-db/sqlite-3.17.0:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] ) system-harfbuzz? ( >=media-libs/harfbuzz-1.3.3:0= >=media-gfx/graphite2-1.3.8 ) !gtk2? ( >=x11-libs/gtk+-3.4.0:3 ) wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-misc/networkmanager ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) selinux? ( sec-policy/selinux-mozilla ) +RESTRICT=!bindist? ( bindist ) +SLOT=0 +SRC_URI=l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ar.xpi -> thunderbird-52.4.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ast.xpi -> thunderbird-52.4.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/be.xpi -> thunderbird-52.4.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/bg.xpi -> thunderbird-52.4.0-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-52.4.0-bn-BD.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/br.xpi -> thunderbird-52.4.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ca.xpi -> thunderbird-52.4.0-ca.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/cs.xpi -> thunderbird-52.4.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/cy.xpi -> thunderbird-52.4.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/da.xpi -> thunderbird-52.4.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/de.xpi -> thunderbird-52.4.0-de.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/el.xpi -> thunderbird-52.4.0-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/en-GB.xpi -> thunderbird-52.4.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/es-AR.xpi -> thunderbird-52.4.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/es-ES.xpi -> thunderbird-52.4.0-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/et.xpi -> thunderbird-52.4.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/eu.xpi -> thunderbird-52.4.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/fi.xpi -> thunderbird-52.4.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/fr.xpi -> thunderbird-52.4.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-52.4.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-52.4.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/gd.xpi -> thunderbird-52.4.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/gl.xpi -> thunderbird-52.4.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/he.xpi -> thunderbird-52.4.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/hr.xpi -> thunderbird-52.4.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/hsb.xpi -> thunderbird-52.4.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/hu.xpi -> thunderbird-52.4.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-52.4.0-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/id.xpi -> thunderbird-52.4.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/is.xpi -> thunderbird-52.4.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/it.xpi -> thunderbird-52.4.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ja.xpi -> thunderbird-52.4.0-ja.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ko.xpi -> thunderbird-52.4.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/lt.xpi -> thunderbird-52.4.0-lt.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-52.4.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/nl.xpi -> thunderbird-52.4.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-52.4.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-52.4.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/pl.xpi -> thunderbird-52.4.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-52.4.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-52.4.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/rm.xpi -> thunderbird-52.4.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ro.xpi -> thunderbird-52.4.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ru.xpi -> thunderbird-52.4.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/si.xpi -> thunderbird-52.4.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sk.xpi -> thunderbird-52.4.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sl.xpi -> thunderbird-52.4.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sq.xpi -> thunderbird-52.4.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sr.xpi -> thunderbird-52.4.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-52.4.0-sv-SE.xpi ) l10n_ta-LK? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-52.4.0-ta-LK.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/tr.xpi -> thunderbird-52.4.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/uk.xpi -> thunderbird-52.4.0-uk.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/vi.xpi -> thunderbird-52.4.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-52.4.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-52.4.0-zh-TW.xpi ) https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/source/thunderbird-52.4.0.source.tar.xz https://dev.gentoo.org/~axs/distfiles/lightning-5.4.4.tar.xz lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-3.3.tar.xz ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-52.4-patches-02.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-52.4-patches-02.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-52.4-patches-02.tar.xz +_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 check-reqs bd050ce908e4637604ee604ed4b78e8f epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 gnome2-utils 4d211d7614f303710fca59db6ec12c88 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e makeedit 5b9d1905404073cf12f3bf4d694cf387 mozconfig-v6.52 0c29133650826a0ead684f84f2efe90f mozcoreconf-v5 dfc58397c1e9ecd4420428e695cf8dc8 mozextension e5d920147bfccf4930062e462e2a417d mozlinguas-v2 e7b3bd89af6dc1a3dd10be68ba3d574d multilib 97f470f374f2e94ccab04a2fb21d811e nsplugins 2049586e425364a1c5bdb004205d1758 pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=7bb36b341581aab61b12da6e32f0b653 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-52.3.0 b/metadata/md5-cache/mail-client/thunderbird-bin-52.3.0 deleted file mode 100644 index cbe78ced6970..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-bin-52.3.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst unpack -DEPEND=app-arch/unzip >=sys-apps/sed-4 app-arch/unzip -DESCRIPTION=Thunderbird Mail Client -EAPI=6 -HOMEPAGE=http://www.mozilla.com/thunderbird -IUSE=+crashreporter +ffmpeg +pulseaudio selinux l10n_ar l10n_ast l10n_be l10n_bg l10n_bn-BD l10n_br l10n_ca l10n_cs l10n_cy l10n_da l10n_de l10n_el l10n_en-GB l10n_es-AR l10n_es-ES l10n_et l10n_eu l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_he l10n_hr l10n_hsb l10n_hu l10n_hy l10n_id l10n_is l10n_it l10n_ja l10n_ko l10n_lt l10n_nb l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_ta-LK l10n_tr l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW -KEYWORDS=-* amd64 x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=virtual/freedesktop-icon-theme dev-libs/atk >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 >=dev-libs/glib-2.26:2 >=media-libs/alsa-lib-1.0.16 media-libs/fontconfig >=media-libs/freetype-2.4.10:2 >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 pulseaudio? ( ! thunderbird-52.3.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/ast.xpi -> thunderbird-52.3.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/be.xpi -> thunderbird-52.3.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/bg.xpi -> thunderbird-52.3.0-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-52.3.0-bn-BD.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/br.xpi -> thunderbird-52.3.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/ca.xpi -> thunderbird-52.3.0-ca.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/cs.xpi -> thunderbird-52.3.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/cy.xpi -> thunderbird-52.3.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/da.xpi -> thunderbird-52.3.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/de.xpi -> thunderbird-52.3.0-de.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/el.xpi -> thunderbird-52.3.0-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/en-GB.xpi -> thunderbird-52.3.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/es-AR.xpi -> thunderbird-52.3.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/es-ES.xpi -> thunderbird-52.3.0-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/et.xpi -> thunderbird-52.3.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/eu.xpi -> thunderbird-52.3.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/fi.xpi -> thunderbird-52.3.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/fr.xpi -> thunderbird-52.3.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-52.3.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-52.3.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/gd.xpi -> thunderbird-52.3.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/gl.xpi -> thunderbird-52.3.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/he.xpi -> thunderbird-52.3.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/hr.xpi -> thunderbird-52.3.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/hsb.xpi -> thunderbird-52.3.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/hu.xpi -> thunderbird-52.3.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-52.3.0-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/id.xpi -> thunderbird-52.3.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/is.xpi -> thunderbird-52.3.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/it.xpi -> thunderbird-52.3.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/ja.xpi -> thunderbird-52.3.0-ja.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/ko.xpi -> thunderbird-52.3.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/lt.xpi -> thunderbird-52.3.0-lt.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-52.3.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/nl.xpi -> thunderbird-52.3.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-52.3.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-52.3.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/pl.xpi -> thunderbird-52.3.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-52.3.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-52.3.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/rm.xpi -> thunderbird-52.3.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/ro.xpi -> thunderbird-52.3.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/ru.xpi -> thunderbird-52.3.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/si.xpi -> thunderbird-52.3.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/sk.xpi -> thunderbird-52.3.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/sl.xpi -> thunderbird-52.3.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/sq.xpi -> thunderbird-52.3.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/sr.xpi -> thunderbird-52.3.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-52.3.0-sv-SE.xpi ) l10n_ta-LK? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-52.3.0-ta-LK.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/tr.xpi -> thunderbird-52.3.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/uk.xpi -> thunderbird-52.3.0-uk.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/vi.xpi -> thunderbird-52.3.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-52.3.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-52.3.0-zh-TW.xpi ) amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/en-US/thunderbird-52.3.0.tar.bz2 -> thunderbird-bin_x86_64-52.3.0.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/en-US/thunderbird-52.3.0.tar.bz2 -> thunderbird-bin_i686-52.3.0.tar.bz2 ) https://dev.gentoo.org/~axs/distfiles/lightning-5.4.1.tar.xz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 gnome2-utils 4d211d7614f303710fca59db6ec12c88 ltprune 2770eed66a9b8ef944714cd0e968182e mozextension e5d920147bfccf4930062e462e2a417d mozlinguas-v2 e7b3bd89af6dc1a3dd10be68ba3d574d multilib 97f470f374f2e94ccab04a2fb21d811e nsplugins 2049586e425364a1c5bdb004205d1758 pax-utils 4f95120230a315c8caaabeb2307b7eee toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=2405954350643dc81837218f05149949 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-52.4.0 b/metadata/md5-cache/mail-client/thunderbird-bin-52.4.0 new file mode 100644 index 000000000000..cb9c3d9b66ee --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-bin-52.4.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst unpack +DEPEND=app-arch/unzip >=sys-apps/sed-4 app-arch/unzip +DESCRIPTION=Thunderbird Mail Client +EAPI=6 +HOMEPAGE=http://www.mozilla.com/thunderbird +IUSE=+crashreporter +ffmpeg +pulseaudio selinux l10n_ar l10n_ast l10n_be l10n_bg l10n_bn-BD l10n_br l10n_ca l10n_cs l10n_cy l10n_da l10n_de l10n_el l10n_en-GB l10n_es-AR l10n_es-ES l10n_et l10n_eu l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_he l10n_hr l10n_hsb l10n_hu l10n_hy l10n_id l10n_is l10n_it l10n_ja l10n_ko l10n_lt l10n_nb l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_ta-LK l10n_tr l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW +KEYWORDS=-* amd64 x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=virtual/freedesktop-icon-theme dev-libs/atk >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 >=dev-libs/glib-2.26:2 >=media-libs/alsa-lib-1.0.16 media-libs/fontconfig >=media-libs/freetype-2.4.10:2 >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 pulseaudio? ( ! thunderbird-52.4.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ast.xpi -> thunderbird-52.4.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/be.xpi -> thunderbird-52.4.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/bg.xpi -> thunderbird-52.4.0-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-52.4.0-bn-BD.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/br.xpi -> thunderbird-52.4.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ca.xpi -> thunderbird-52.4.0-ca.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/cs.xpi -> thunderbird-52.4.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/cy.xpi -> thunderbird-52.4.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/da.xpi -> thunderbird-52.4.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/de.xpi -> thunderbird-52.4.0-de.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/el.xpi -> thunderbird-52.4.0-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/en-GB.xpi -> thunderbird-52.4.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/es-AR.xpi -> thunderbird-52.4.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/es-ES.xpi -> thunderbird-52.4.0-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/et.xpi -> thunderbird-52.4.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/eu.xpi -> thunderbird-52.4.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/fi.xpi -> thunderbird-52.4.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/fr.xpi -> thunderbird-52.4.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-52.4.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-52.4.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/gd.xpi -> thunderbird-52.4.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/gl.xpi -> thunderbird-52.4.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/he.xpi -> thunderbird-52.4.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/hr.xpi -> thunderbird-52.4.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/hsb.xpi -> thunderbird-52.4.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/hu.xpi -> thunderbird-52.4.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-52.4.0-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/id.xpi -> thunderbird-52.4.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/is.xpi -> thunderbird-52.4.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/it.xpi -> thunderbird-52.4.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ja.xpi -> thunderbird-52.4.0-ja.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ko.xpi -> thunderbird-52.4.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/lt.xpi -> thunderbird-52.4.0-lt.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-52.4.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/nl.xpi -> thunderbird-52.4.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-52.4.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-52.4.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/pl.xpi -> thunderbird-52.4.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-52.4.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-52.4.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/rm.xpi -> thunderbird-52.4.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ro.xpi -> thunderbird-52.4.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ru.xpi -> thunderbird-52.4.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/si.xpi -> thunderbird-52.4.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sk.xpi -> thunderbird-52.4.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sl.xpi -> thunderbird-52.4.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sq.xpi -> thunderbird-52.4.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sr.xpi -> thunderbird-52.4.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-52.4.0-sv-SE.xpi ) l10n_ta-LK? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-52.4.0-ta-LK.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/tr.xpi -> thunderbird-52.4.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/uk.xpi -> thunderbird-52.4.0-uk.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/vi.xpi -> thunderbird-52.4.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-52.4.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-52.4.0-zh-TW.xpi ) amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-x86_64/en-US/thunderbird-52.4.0.tar.bz2 -> thunderbird-bin_x86_64-52.4.0.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/thunderbird/releases/52.4.0/linux-i686/en-US/thunderbird-52.4.0.tar.bz2 -> thunderbird-bin_i686-52.4.0.tar.bz2 ) https://dev.gentoo.org/~axs/distfiles/lightning-5.4.1.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 gnome2-utils 4d211d7614f303710fca59db6ec12c88 ltprune 2770eed66a9b8ef944714cd0e968182e mozextension e5d920147bfccf4930062e462e2a417d mozlinguas-v2 e7b3bd89af6dc1a3dd10be68ba3d574d multilib 97f470f374f2e94ccab04a2fb21d811e nsplugins 2049586e425364a1c5bdb004205d1758 pax-utils 4f95120230a315c8caaabeb2307b7eee toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=2405954350643dc81837218f05149949 diff --git a/metadata/md5-cache/mail-mta/exim-4.89-r2 b/metadata/md5-cache/mail-mta/exim-4.89-r3 similarity index 98% rename from metadata/md5-cache/mail-mta/exim-4.89-r2 rename to metadata/md5-cache/mail-mta/exim-4.89-r3 index 10a719ca2ee2..5b6462645e67 100644 --- a/metadata/md5-cache/mail-mta/exim-4.89-r2 +++ b/metadata/md5-cache/mail-mta/exim-4.89-r3 @@ -11,4 +11,4 @@ REQUIRED_USE=dane? ( !gnutls ) dmarc? ( spf dkim ) pkcs11? ( gnutls ) spf? ( exi SLOT=0 SRC_URI=ftp://ftp.exim.org/pub/exim/exim4/exim-4.89.tar.bz2 mirror://gentoo/system_filter.exim.gz doc? ( ftp://ftp.exim.org/pub/exim/exim4/exim-pdf-4.89.tar.bz2 ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=d1f272edcfb100a335799dfd15e74243 +_md5_=436f18e08e2a631b9ccc015e2040f136 diff --git a/metadata/md5-cache/media-gfx/feh-2.21 b/metadata/md5-cache/media-gfx/feh-2.21 new file mode 100644 index 000000000000..de41763c651f --- /dev/null +++ b/metadata/md5-cache/media-gfx/feh-2.21 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install setup +DEPEND=media-libs/imlib2[X] >=media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) x11-libs/libXt x11-proto/xproto test? ( >=dev-lang/perl-5.10 dev-perl/Test-Command ) +DESCRIPTION=A fast, lightweight imageviewer using imlib2 +EAPI=6 +HOMEPAGE=https://feh.finalrewind.org/ +IUSE=debug curl exif test xinerama +KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 +LICENSE=feh +RDEPEND=media-libs/imlib2[X] >=media-libs/libpng-1.2:0= x11-libs/libX11 curl? ( net-misc/curl ) exif? ( media-libs/libexif ) xinerama? ( x11-libs/libXinerama ) virtual/jpeg:0 +SLOT=0 +SRC_URI=https://feh.finalrewind.org/feh-2.21.tar.bz2 +_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=1a4e681161e12dd9ccb2f0d9e5f3b2e3 diff --git a/metadata/md5-cache/media-gfx/graphite2-1.3.8-r1 b/metadata/md5-cache/media-gfx/graphite2-1.3.8-r1 deleted file mode 100644 index ff682c9cf4c9..000000000000 --- a/metadata/md5-cache/media-gfx/graphite2-1.3.8-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=perl? ( dev-lang/perl:= ) perl? ( dev-perl/Module-Build dev-perl/Locale-Maketext-Lexicon ) test? ( dev-libs/glib:2 media-libs/fontconfig || ( ( >=dev-lang/python-2.7.5-r2:2.7 dev-python/fonttools[python_targets_python2_7(-),python_single_target_python2_7(+)] ) ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) perl? ( virtual/perl-Test-Simple ) ) sys-devel/make >=dev-util/cmake-3.7.2 -DESCRIPTION=Library providing rendering capabilities for complex non-Roman writing systems -EAPI=6 -HOMEPAGE=http://graphite.sil.org/ -IUSE=perl test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris -LICENSE=LGPL-2.1 -RDEPEND=perl? ( dev-lang/perl:= ) -SLOT=0 -SRC_URI=mirror://sourceforge/silgraphite/graphite2/graphite2-1.3.8.tgz -_eclasses_=cmake-multilib 7bc2cc09a4a5082b915541d447be8e5e cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=4dcef274de68993b1fa1b33ef8739e20 diff --git a/metadata/md5-cache/media-libs/avidemux-core-2.6.20-r1 b/metadata/md5-cache/media-libs/avidemux-core-2.6.20-r2 similarity index 100% rename from metadata/md5-cache/media-libs/avidemux-core-2.6.20-r1 rename to metadata/md5-cache/media-libs/avidemux-core-2.6.20-r2 diff --git a/metadata/md5-cache/media-libs/exiftool-10.63 b/metadata/md5-cache/media-libs/exiftool-10.63 new file mode 100644 index 000000000000..86d3c80acf79 --- /dev/null +++ b/metadata/md5-cache/media-libs/exiftool-10.63 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl:= +DESCRIPTION=Read and write meta information in image, audio and video files +EAPI=6 +HOMEPAGE=https://www.sno.phy.queensu.ca/~phil/exiftool/ http://search.cpan.org/dist/Image-ExifTool/ +IUSE=doc +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x64-macos +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-lang/perl:= +SLOT=0 +SRC_URI=https://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-10.63.tar.gz +_eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 +_md5_=5ea65bc9ae339e0afab2ede4dd2b0f05 diff --git a/metadata/md5-cache/media-libs/libcdr-0.1.4 b/metadata/md5-cache/media-libs/libcdr-0.1.4 new file mode 100644 index 000000000000..18758b29e181 --- /dev/null +++ b/metadata/md5-cache/media-libs/libcdr-0.1.4 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install prepare +DEPEND=dev-libs/icu:= dev-libs/librevenge media-libs/lcms:2 sys-libs/zlib dev-libs/boost sys-devel/libtool virtual/pkgconfig doc? ( app-doc/doxygen ) test? ( dev-util/cppunit ) +DESCRIPTION=Library parsing the Corel cdr documents +EAPI=6 +HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libcdr +IUSE=doc static-libs test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=MPL-2.0 +RDEPEND=dev-libs/icu:= dev-libs/librevenge media-libs/lcms:2 sys-libs/zlib +SLOT=0 +SRC_URI=https://dev-www.libreoffice.org/src/libcdr/libcdr-0.1.4.tar.xz +_md5_=db9f2bd7fee9813f54b91ebd8b31a620 diff --git a/metadata/md5-cache/media-libs/libcdr-9999 b/metadata/md5-cache/media-libs/libcdr-9999 index 6f80b4c782ab..038503a72e90 100644 --- a/metadata/md5-cache/media-libs/libcdr-9999 +++ b/metadata/md5-cache/media-libs/libcdr-9999 @@ -8,4 +8,4 @@ LICENSE=MPL-2.0 RDEPEND=dev-libs/icu:= dev-libs/librevenge media-libs/lcms:2 sys-libs/zlib SLOT=0 _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 git-r3 52a888802d25387c2c74cb845d1219bc libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=11c00f01f577a43f13b1ed4213836f58 +_md5_=db9f2bd7fee9813f54b91ebd8b31a620 diff --git a/metadata/md5-cache/media-libs/libfreehand-0.1.2 b/metadata/md5-cache/media-libs/libfreehand-0.1.2 new file mode 100644 index 000000000000..614b7ba48048 --- /dev/null +++ b/metadata/md5-cache/media-libs/libfreehand-0.1.2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install prepare +DEPEND=dev-libs/librevenge sys-libs/zlib dev-libs/icu:= dev-util/gperf media-libs/lcms sys-devel/libtool virtual/pkgconfig doc? ( app-doc/doxygen ) +DESCRIPTION=Library for import of FreeHand drawings +EAPI=6 +HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libfreehand +IUSE=doc static-libs +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=MPL-2.0 +RDEPEND=dev-libs/librevenge sys-libs/zlib +SLOT=0 +SRC_URI=https://dev-www.libreoffice.org/src/libfreehand/libfreehand-0.1.2.tar.xz +_md5_=32b85b42cc52cfde647f7ca8309ec026 diff --git a/metadata/md5-cache/media-libs/libfreehand-9999 b/metadata/md5-cache/media-libs/libfreehand-9999 index e7931639927c..100639b83668 100644 --- a/metadata/md5-cache/media-libs/libfreehand-9999 +++ b/metadata/md5-cache/media-libs/libfreehand-9999 @@ -8,4 +8,4 @@ LICENSE=MPL-2.0 RDEPEND=dev-libs/librevenge sys-libs/zlib SLOT=0 _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 git-r3 52a888802d25387c2c74cb845d1219bc libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=a22babfe7f9181cedfe2d8f86c4e8db1 +_md5_=32b85b42cc52cfde647f7ca8309ec026 diff --git a/metadata/md5-cache/media-libs/libraw-0.17.2 b/metadata/md5-cache/media-libs/libraw-0.17.2 deleted file mode 100644 index 3f1ceb97e5c4..000000000000 --- a/metadata/md5-cache/media-libs/libraw-0.17.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install pretend setup test -DEPEND=jpeg? ( >=virtual/jpeg-0-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/jasper-1.900.1-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lcms? ( >=media-libs/lcms-2.5:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) virtual/pkgconfig -DESCRIPTION=LibRaw is a library for reading RAW files obtained from digital photo cameras -EAPI=6 -HOMEPAGE=https://www.libraw.org/ -IUSE=demosaic examples jpeg jpeg2k +lcms openmp abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux -LICENSE=LGPL-2.1 CDDL GPL-2 GPL-3 -RDEPEND=jpeg? ( >=virtual/jpeg-0-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/jasper-1.900.1-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lcms? ( >=media-libs/lcms-2.5:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -SLOT=0/15 -SRC_URI=https://www.libraw.org/data/LibRaw-0.17.2.tar.gz demosaic? ( https://www.libraw.org/data/LibRaw-demosaic-pack-GPL2-0.17.2.tar.gz https://www.libraw.org/data/LibRaw-demosaic-pack-GPL3-0.17.2.tar.gz ) -_eclasses_=multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=6de23256cf0673559e70c743ba20d1c6 diff --git a/metadata/md5-cache/media-libs/libraw-0.18.2 b/metadata/md5-cache/media-libs/libraw-0.18.2 deleted file mode 100644 index f6f9e4db34a5..000000000000 --- a/metadata/md5-cache/media-libs/libraw-0.18.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install pretend setup test -DEPEND=jpeg? ( >=virtual/jpeg-0-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/jasper-1.900.1-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lcms? ( >=media-libs/lcms-2.5:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) virtual/pkgconfig -DESCRIPTION=LibRaw is a library for reading RAW files obtained from digital photo cameras -EAPI=6 -HOMEPAGE=https://www.libraw.org/ https://github.com/LibRaw/LibRaw -IUSE=demosaic examples jpeg jpeg2k +lcms openmp abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux -LICENSE=LGPL-2.1 CDDL demosaic? ( GPL-2 GPL-3 ) -RDEPEND=jpeg? ( >=virtual/jpeg-0-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/jasper-1.900.1-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lcms? ( >=media-libs/lcms-2.5:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -SLOT=0/16 -SRC_URI=https://www.libraw.org/data/LibRaw-0.18.2.tar.gz demosaic? ( https://www.libraw.org/data/LibRaw-demosaic-pack-GPL2-0.18.2.tar.gz https://www.libraw.org/data/LibRaw-demosaic-pack-GPL3-0.18.2.tar.gz ) -_eclasses_=multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=50e21a08d641341c1bdaace9f1894efe diff --git a/metadata/md5-cache/media-libs/libzmf-0.0.2 b/metadata/md5-cache/media-libs/libzmf-0.0.2 new file mode 100644 index 000000000000..98ae7591a046 --- /dev/null +++ b/metadata/md5-cache/media-libs/libzmf-0.0.2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install prepare +DEPEND=dev-libs/icu:= dev-libs/librevenge media-libs/libpng:0= sys-libs/zlib dev-libs/boost doc? ( app-doc/doxygen ) test? ( dev-util/cppunit ) +DESCRIPTION=Library for parsing Zoner Callisto/Draw documents +EAPI=6 +HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libzmf +IUSE=debug doc test tools +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=MPL-2.0 +RDEPEND=dev-libs/icu:= dev-libs/librevenge media-libs/libpng:0= sys-libs/zlib +SLOT=0 +SRC_URI=http://dev-www.libreoffice.org/src/libzmf/libzmf-0.0.2.tar.xz +_md5_=df4d7abfc18879c2ce0387b745b436e9 diff --git a/metadata/md5-cache/media-libs/libzmf-9999 b/metadata/md5-cache/media-libs/libzmf-9999 index 1b8c3d6a1e5a..e291a7bd55af 100644 --- a/metadata/md5-cache/media-libs/libzmf-9999 +++ b/metadata/md5-cache/media-libs/libzmf-9999 @@ -8,4 +8,4 @@ LICENSE=MPL-2.0 RDEPEND=dev-libs/icu:= dev-libs/librevenge media-libs/libpng:0= sys-libs/zlib SLOT=0 _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 git-r3 52a888802d25387c2c74cb845d1219bc libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=44f84d3c3b5f084c13a7306e3f0743b6 +_md5_=df4d7abfc18879c2ce0387b745b436e9 diff --git a/metadata/md5-cache/media-plugins/live-2017.09.12 b/metadata/md5-cache/media-plugins/live-2017.09.12 new file mode 100644 index 000000000000..480b3cf0e7cd --- /dev/null +++ b/metadata/md5-cache/media-plugins/live-2017.09.12 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=Libraries for standards-based RTP/RTCP/RTSP multimedia streaming +EAPI=5 +HOMEPAGE=http://www.live555.com/ +IUSE=examples static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=LGPL-2.1 +SLOT=0/7 +SRC_URI=http://www.live555.com/liveMedia/public/live.2017.09.12.tar.gz mirror://gentoo/live.2017.09.12.tar.gz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=51ba64addaeb70f088904a0063515e3e diff --git a/metadata/md5-cache/media-sound/cantata-2.2.0 b/metadata/md5-cache/media-sound/cantata-2.2.0 new file mode 100644 index 000000000000..346b1491a771 --- /dev/null +++ b/metadata/md5-cache/media-sound/cantata-2.2.0 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 || ( kde-frameworks/breeze-icons:5 kde-frameworks/oxygen-icons:* ) sys-libs/zlib virtual/libudev:= cdda? ( media-sound/cdparanoia ) cdio? ( dev-libs/libcdio-paranoia ) cddb? ( media-libs/libcddb ) mtp? ( media-libs/libmtp ) musicbrainz? ( media-libs/musicbrainz:5= ) replaygain? ( media-libs/libebur128 media-sound/mpg123 virtual/ffmpeg ) streaming? ( media-video/vlc:0= ) taglib? ( media-libs/taglib[asf(+),mp4(+)] media-libs/taglib-extras udisks? ( sys-fs/udisks:2 ) ) dev-qt/qtconcurrent:5 dev-qt/linguist-tools:5 sys-devel/make >=dev-util/cmake-3.7.2 >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Featureful and configurable Qt client for the music player daemon (MPD) +EAPI=6 +HOMEPAGE=https://github.com/CDrummond/cantata +IUSE=cdda cddb cdio http-server mtp musicbrainz replaygain streaming taglib udisks linguas_cs linguas_de linguas_en_GB linguas_es linguas_fr linguas_hu linguas_it linguas_ja linguas_ko linguas_pl linguas_ru linguas_zh_CN +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 || ( kde-frameworks/breeze-icons:5 kde-frameworks/oxygen-icons:* ) sys-libs/zlib virtual/libudev:= cdda? ( media-sound/cdparanoia ) cdio? ( dev-libs/libcdio-paranoia ) cddb? ( media-libs/libcddb ) mtp? ( media-libs/libmtp ) musicbrainz? ( media-libs/musicbrainz:5= ) replaygain? ( media-libs/libebur128 media-sound/mpg123 virtual/ffmpeg ) streaming? ( media-video/vlc:0= ) taglib? ( media-libs/taglib[asf(+),mp4(+)] media-libs/taglib-extras udisks? ( sys-fs/udisks:2 ) ) +REQUIRED_USE=?? ( cdda cdio ) cdda? ( udisks || ( cddb musicbrainz ) ) cddb? ( || ( cdio cdda ) taglib ) cdio? ( udisks || ( cddb musicbrainz ) ) mtp? ( taglib udisks ) musicbrainz? ( || ( cdio cdda ) taglib ) replaygain? ( taglib ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/CDrummond/cantata/releases/download/v2.2.0/cantata-2.2.0.tar.bz2 +_eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 gnome2-utils 4d211d7614f303710fca59db6ec12c88 l10n 2c2e15383ba891d642f51896a7f0ecfe ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=2972f0f3e25b0c0fc0f7de0da6682c6b diff --git a/metadata/md5-cache/media-video/ffmpeg-2.8.10 b/metadata/md5-cache/media-video/ffmpeg-2.8.10 deleted file mode 100644 index fca00f68a7b0..000000000000 --- a/metadata/md5-cache/media-video/ffmpeg-2.8.10 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( aac? ( >=media-libs/vo-aacenc-0.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) aacplus? ( >=media-libs/libaacplus-2.0.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) faac? ( >=media-libs/faac-1.28-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-1.5.0:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quvi? ( media-libs/libquvi:0.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !xcb? ( >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) >=sys-devel/make-3.81 doc? ( app-text/texi2html ) fontconfig? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 ) librtmp? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) test? ( net-misc/wget sys-devel/bc ) truetype? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( sys-kernel/linux-headers ) -DESCRIPTION=Complete solution to record, convert and stream audio and video. Includes libavcodec -EAPI=5 -HOMEPAGE=http://ffmpeg.org/ -IUSE=alsa +encode examples jack libressl oss pic static-libs test v4l +bzip2 cpudetection debug doc gnutls +gpl +hardcoded-tables +iconv lzma +network openssl +postproc samba sdl sdl vaapi vdpau X xcb xcb xcb +zlib cdio iec61883 ieee1394 libcaca openal opengl libv4l pulseaudio amr amr fdk jpeg2k bluray celt gme gsm modplug opus quvi librtmp ssh schroedinger speex vorbis vpx zvbi bs2b flite frei0r fribidi fontconfig ladspa libass truetype libsoxr +threads aac amrenc mp3 aacplus faac snappy theora twolame wavpack webp x264 x265 xvid armv5te armv6 armv6t2 neon armvfp mipsdspr1 mipsdspr2 mipsfpu altivec cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_mmx cpu_flags_x86_mmxext cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_xop +fftools_aviocat +fftools_cws2fws +fftools_ffescape +fftools_ffeval +fftools_ffhash +fftools_fourcc2pixfmt +fftools_graph2dot +fftools_ismindex +fftools_pktdumper +fftools_qt-faststart +fftools_sidxindex +fftools_trasher abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux -LICENSE=!gpl? ( LGPL-2.1 ) gpl? ( GPL-2 ) amr? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) encode? ( aac? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) amrenc? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) ) samba? ( GPL-3 ) -RDEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( aac? ( >=media-libs/vo-aacenc-0.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) aacplus? ( >=media-libs/libaacplus-2.0.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) faac? ( >=media-libs/faac-1.28-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-1.5.0:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quvi? ( media-libs/libquvi:0.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !xcb? ( >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20140508-r3 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] ) -REQUIRED_USE=libv4l? ( v4l ) fftools_cws2fws? ( zlib ) test? ( encode ) postproc? ( gpl ) frei0r? ( gpl ) cdio? ( gpl ) samba? ( gpl ) zvbi? ( gpl ) encode? ( x264? ( gpl ) x265? ( gpl ) xvid? ( gpl ) X? ( !xcb? ( gpl ) ) ) cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) cpu_flags_x86_xop? ( cpu_flags_x86_avx ) cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) -RESTRICT=encode? ( faac? ( bindist ) aacplus? ( bindist ) ) gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) -SLOT=0/54.56.56 -SRC_URI=http://ffmpeg.org/releases/ffmpeg-2.8.10.tar.bz2 -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=493d73669d2e5c47f03d7454a7abd9db diff --git a/metadata/md5-cache/media-video/ffmpeg-2.8.11 b/metadata/md5-cache/media-video/ffmpeg-2.8.11 deleted file mode 100644 index 1fa5e14cb779..000000000000 --- a/metadata/md5-cache/media-video/ffmpeg-2.8.11 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( aac? ( >=media-libs/vo-aacenc-0.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) aacplus? ( >=media-libs/libaacplus-2.0.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) faac? ( >=media-libs/faac-1.28-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-1.5.0:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quvi? ( media-libs/libquvi:0.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !xcb? ( >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) >=sys-devel/make-3.81 doc? ( app-text/texi2html ) fontconfig? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 ) librtmp? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) test? ( net-misc/wget sys-devel/bc ) truetype? ( >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) v4l? ( sys-kernel/linux-headers ) -DESCRIPTION=Complete solution to record, convert and stream audio and video. Includes libavcodec -EAPI=5 -HOMEPAGE=http://ffmpeg.org/ -IUSE=alsa +encode examples jack libressl oss pic static-libs test v4l +bzip2 cpudetection debug doc gnutls +gpl +hardcoded-tables +iconv lzma +network openssl +postproc samba sdl sdl vaapi vdpau X xcb xcb xcb +zlib cdio iec61883 ieee1394 libcaca openal opengl libv4l pulseaudio amr amr fdk jpeg2k bluray celt gme gsm modplug opus quvi librtmp ssh schroedinger speex vorbis vpx zvbi bs2b flite frei0r fribidi fontconfig ladspa libass truetype libsoxr +threads aac amrenc mp3 aacplus faac snappy theora twolame wavpack webp x264 x265 xvid armv5te armv6 armv6t2 neon armvfp mipsdspr1 mipsdspr2 mipsfpu altivec cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_mmx cpu_flags_x86_mmxext cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_xop +fftools_aviocat +fftools_cws2fws +fftools_ffescape +fftools_ffeval +fftools_ffhash +fftools_fourcc2pixfmt +fftools_graph2dot +fftools_ismindex +fftools_pktdumper +fftools_qt-faststart +fftools_sidxindex +fftools_trasher abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux -LICENSE=!gpl? ( LGPL-2.1 ) gpl? ( GPL-2 ) amr? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) encode? ( aac? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) amrenc? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) ) samba? ( GPL-3 ) -RDEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( aac? ( >=media-libs/vo-aacenc-0.1.3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) aacplus? ( >=media-libs/libaacplus-2.0.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) faac? ( >=media-libs/faac-1.28-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-1.5.0:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) quvi? ( media-libs/libquvi:0.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !xcb? ( >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20140508-r3 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] ) -REQUIRED_USE=libv4l? ( v4l ) fftools_cws2fws? ( zlib ) test? ( encode ) postproc? ( gpl ) frei0r? ( gpl ) cdio? ( gpl ) samba? ( gpl ) zvbi? ( gpl ) encode? ( x264? ( gpl ) x265? ( gpl ) xvid? ( gpl ) X? ( !xcb? ( gpl ) ) ) cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) cpu_flags_x86_xop? ( cpu_flags_x86_avx ) cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) -RESTRICT=encode? ( faac? ( bindist ) aacplus? ( bindist ) ) gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) -SLOT=0/54.56.56 -SRC_URI=http://ffmpeg.org/releases/ffmpeg-2.8.11.tar.bz2 -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=a13ce44926aefa5c0091b14952349796 diff --git a/metadata/md5-cache/media-video/ffmpeg-3.2.4 b/metadata/md5-cache/media-video/ffmpeg-3.2.4 deleted file mode 100644 index 202ff452e720..000000000000 --- a/metadata/md5-cache/media-video/ffmpeg-3.2.4 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) chromaprint? ( >=media-libs/chromaprint-1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ebur128? ( >=media-libs/libebur128-1.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kvazaar? ( media-libs/kvazaar[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nvenc? ( media-video/nvidia_video_sdk ) openh264? ( >=media-libs/openh264-1.4.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( >=dev-libs/libgcrypt-1.6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gmp? ( >=dev-libs/gmp-6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-2:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libilbc? ( >=media-libs/libilbc-2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mmal? ( media-libs/raspberrypi-userland ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rubberband? ( >=media-libs/rubberband-1.8.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !xcb? ( >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zimg? ( media-libs/zimg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) >=sys-devel/make-3.81 doc? ( sys-apps/texinfo ) >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 ) test? ( net-misc/wget sys-devel/bc ) v4l? ( sys-kernel/linux-headers ) -DESCRIPTION=Complete solution to record, convert and stream audio and video. Includes libavcodec -EAPI=6 -HOMEPAGE=http://ffmpeg.org/ -IUSE=alsa doc +encode jack oss pic static-libs test v4l +bzip2 cpudetection debug gcrypt gnutls gmp +gpl +hardcoded-tables +iconv lzma +network openssl +postproc samba sdl sdl vaapi vdpau X xcb xcb xcb +zlib cdio iec61883 ieee1394 libcaca openal opengl libv4l pulseaudio amr amr fdk jpeg2k bluray celt gme gsm mmal modplug opus libilbc librtmp ssh schroedinger speex vorbis vpx zvbi bs2b chromaprint ebur128 flite frei0r fribidi fontconfig ladspa libass truetype rubberband zimg libsoxr +threads amrenc mp3 kvazaar nvenc openh264 snappy theora twolame wavpack webp x264 x265 xvid armv5te armv6 armv6t2 neon armvfp mipsdspr1 mipsdspr2 mipsfpu altivec cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_x86_aes cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_mmx cpu_flags_x86_mmxext cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_xop +fftools_aviocat +fftools_cws2fws +fftools_ffescape +fftools_ffeval +fftools_ffhash +fftools_fourcc2pixfmt +fftools_graph2dot +fftools_ismindex +fftools_pktdumper +fftools_qt-faststart +fftools_sidxindex +fftools_trasher abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris -LICENSE=!gpl? ( LGPL-2.1 ) gpl? ( GPL-2 ) amr? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) gmp? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) encode? ( amrenc? ( gpl? ( GPL-3 ) !gpl? ( LGPL-3 ) ) ) samba? ( GPL-3 ) -RDEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) chromaprint? ( >=media-libs/chromaprint-1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ebur128? ( >=media-libs/libebur128-1.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kvazaar? ( media-libs/kvazaar[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nvenc? ( media-video/nvidia_video_sdk ) openh264? ( >=media-libs/openh264-1.4.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( >=dev-libs/libgcrypt-1.6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gmp? ( >=dev-libs/gmp-6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-2:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libilbc? ( >=media-libs/libilbc-2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mmal? ( media-libs/raspberrypi-userland ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rubberband? ( >=media-libs/rubberband-1.8.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !xcb? ( >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zimg? ( media-libs/zimg[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20140508-r3 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] ) -REQUIRED_USE=libv4l? ( v4l ) fftools_cws2fws? ( zlib ) test? ( encode ) postproc? ( gpl ) frei0r? ( gpl ) cdio? ( gpl ) samba? ( gpl ) encode? ( x264? ( gpl ) x265? ( gpl ) xvid? ( gpl ) X? ( !xcb? ( gpl ) ) ) cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) cpu_flags_x86_xop? ( cpu_flags_x86_avx ) cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_aes? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) -RESTRICT=gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) -SLOT=0/55.57.57 -SRC_URI=http://ffmpeg.org/releases/ffmpeg-3.2.4.tar.bz2 -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=ef0fe182abc0192225a8e74ed4461e08 diff --git a/metadata/md5-cache/media-video/ffmpeg-3.3.4 b/metadata/md5-cache/media-video/ffmpeg-3.3.4 index 8d32852d75b3..c811e6eac5ea 100644 --- a/metadata/md5-cache/media-video/ffmpeg-3.3.4 +++ b/metadata/md5-cache/media-video/ffmpeg-3.3.4 @@ -12,4 +12,4 @@ RESTRICT=gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) SLOT=0/55.57.57 SRC_URI=http://ffmpeg.org/releases/ffmpeg-3.3.4.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=b62b8594704db928be59a3c1dfc74d46 +_md5_=25b6c8f8de0d8340f4a2a918ee22ad1c diff --git a/metadata/md5-cache/media-video/ffmpeg-9999 b/metadata/md5-cache/media-video/ffmpeg-9999 index e39f8e2e7954..9d2c0aa05720 100644 --- a/metadata/md5-cache/media-video/ffmpeg-9999 +++ b/metadata/md5-cache/media-video/ffmpeg-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) chromaprint? ( >=media-libs/chromaprint-1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kvazaar? ( media-libs/kvazaar[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nvenc? ( media-video/nvidia_video_sdk ) openh264? ( >=media-libs/openh264-1.4.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( >=dev-libs/libgcrypt-1.6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gmp? ( >=dev-libs/gmp-6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-2:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libilbc? ( >=media-libs/libilbc-2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mmal? ( media-libs/raspberrypi-userland ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rubberband? ( >=media-libs/rubberband-1.8.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svg? ( gnome-base/librsvg:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zeromq? ( >=net-libs/zeromq-4.1.6 ) zimg? ( >=media-libs/zimg-2.4:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) >=sys-devel/make-3.81 doc? ( sys-apps/texinfo ) >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 ) test? ( net-misc/wget sys-devel/bc ) v4l? ( sys-kernel/linux-headers ) >=dev-vcs/git-1.8.2.1 +DEPEND=alsa? ( >=media-libs/alsa-lib-1.0.27.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) amr? ( >=media-libs/opencore-amr-0.1.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bluray? ( >=media-libs/libbluray-0.3.0-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bs2b? ( >=media-libs/libbs2b-3.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cdio? ( >=dev-libs/libcdio-paranoia-0.90_p1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) celt? ( >=media-libs/celt-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) chromaprint? ( >=media-libs/chromaprint-1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) encode? ( amrenc? ( >=media-libs/vo-amrwbenc-0.1.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kvazaar? ( media-libs/kvazaar[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/lame-3.99.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nvenc? ( media-video/nvidia_video_sdk ) openh264? ( >=media-libs/openh264-1.4.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) snappy? ( >=app-arch/snappy-1.1.2-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) theora? ( >=media-libs/libtheora-1.1.1[encode,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) twolame? ( >=media-sound/twolame-0.3.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wavpack? ( >=media-sound/wavpack-4.60.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( >=media-libs/libwebp-0.3.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x264? ( >=media-libs/x264-0.0.20130506:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) x265? ( >=media-libs/x265-1.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvid? ( >=media-libs/xvid-1.3.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) fdk? ( >=media-libs/fdk-aac-0.1.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) flite? ( >=app-accessibility/flite-1.4-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) frei0r? ( media-plugins/frei0r-plugins ) fribidi? ( >=dev-libs/fribidi-0.19.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( >=dev-libs/libgcrypt-1.6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gme? ( >=media-libs/game-music-emu-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gmp? ( >=dev-libs/gmp-6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gsm? ( >=media-sound/gsm-1.0.13-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iconv? ( >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) iec61883? ( >=media-libs/libiec61883-1.2.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libavc1394-0.5.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ieee1394? ( >=media-libs/libdc1394-2.2.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libraw1394-2.1.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jack? ( virtual/jack[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg2k? ( >=media-libs/openjpeg-2:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libass? ( >=media-libs/libass-0.10.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libilbc? ( >=media-libs/libilbc-2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsoxr? ( >=media-libs/soxr-0.1.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libv4l? ( >=media-libs/libv4l-0.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mmal? ( media-libs/raspberrypi-userland ) modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openal? ( >=media-libs/openal-1.15.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=virtual/opengl-7.0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openssl? ( >=dev-libs/openssl-1.0.1h-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opus? ( >=media-libs/opus-1.0.2-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) librtmp? ( >=media-video/rtmpdump-2.4_p20131018[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rubberband? ( >=media-libs/rubberband-1.8.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) samba? ( >=net-fs/samba-3.6.23-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sdl? ( media-libs/libsdl2[sound,video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) speex? ( >=media-libs/speex-1.2_rc1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( >=net-libs/libssh-0.5.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) svg? ( gnome-base/librsvg:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) truetype? ( >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vaapi? ( >=x11-libs/libva-1.2.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-0.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vorbis? ( >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vpx? ( >=media-libs/libvpx-1.4.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXv-1.0.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zeromq? ( >=net-libs/zeromq-4.1.6 ) zimg? ( >=media-libs/zimg-2.4:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zvbi? ( >=media-libs/zvbi-0.2.35[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !media-video/qt-faststart postproc? ( !media-libs/libpostproc ) >=sys-devel/make-3.81 doc? ( sys-apps/texinfo ) >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cpu_flags_x86_mmx? ( || ( >=dev-lang/nasm-2.13 >=dev-lang/yasm-1.3 ) ) test? ( net-misc/wget sys-devel/bc ) v4l? ( sys-kernel/linux-headers ) >=dev-vcs/git-1.8.2.1 DESCRIPTION=Complete solution to record, convert and stream audio and video. Includes libavcodec EAPI=6 HOMEPAGE=http://ffmpeg.org/ @@ -10,4 +10,4 @@ REQUIRED_USE=libv4l? ( v4l ) fftools_cws2fws? ( zlib ) test? ( encode ) postproc RESTRICT=gpl? ( openssl? ( bindist ) fdk? ( bindist ) ) SLOT=0/55.57.57 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 git-r3 52a888802d25387c2c74cb845d1219bc ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=d06b60fa2331d4d20eefb7a22c11e3e1 +_md5_=323fa2b659e66381e689806b2fd13557 diff --git a/metadata/md5-cache/media-video/mplayer-1.3.0-r3 b/metadata/md5-cache/media-video/mplayer-1.3.0-r3 index 71d92c990332..ced7d009aa66 100644 --- a/metadata/md5-cache/media-video/mplayer-1.3.0-r3 +++ b/metadata/md5-cache/media-video/mplayer-1.3.0-r3 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postrm preinst prepare setup unpack -DEPEND=sys-libs/ncurses:0= app-arch/bzip2 sys-libs/zlib >=media-video/ffmpeg-3.0:0=[vdpau?] a52? ( media-libs/a52dec ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bidi? ( dev-libs/fribidi ) bluray? ( >=media-libs/libbluray-0.2.1:= ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio:0= dev-libs/libcdio-paranoia ) cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) dga? ( x11-libs/libXxf86dga ) directfb? ( dev-libs/DirectFB ) dts? ( media-libs/libdca ) dv? ( media-libs/libdv ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 ) dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) encode? ( !twolame? ( toolame? ( media-sound/toolame ) ) twolame? ( media-sound/twolame ) faac? ( media-libs/faac ) mp3? ( media-sound/lame ) x264? ( >=media-libs/x264-0.0.20100423:= ) xvid? ( media-libs/xvid ) ) enca? ( app-i18n/enca ) faad? ( media-libs/faad2 ) ggi? ( media-libs/libggi media-libs/libggiwmh ) gif? ( media-libs/giflib:0= ) gsm? ( media-sound/gsm ) iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) libmpeg2? ( media-libs/libmpeg2 ) lirc? ( app-misc/lirc ) live? ( media-plugins/live ) lzo? ( >=dev-libs/lzo-2 ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) mp3? ( media-sound/mpg123 ) nas? ( media-libs/nas ) nut? ( >=media-libs/libnut-661 ) openal? ( media-libs/openal ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) pnm? ( media-libs/netpbm ) pulseaudio? ( media-sound/pulseaudio ) rar? ( || ( app-arch/unrar app-arch/rar ) ) rtmp? ( media-video/rtmpdump ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora[encode?] ) tremor? ( media-libs/tremor ) truetype? ( virtual/ttf-fonts media-libs/fontconfig >=media-libs/freetype-2.2.1:2 ) vdpau? ( x11-libs/libvdpau ) vorbis? ( !tremor? ( media-libs/libvorbis ) ) X? ( x11-libs/libXext x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) virtual/pkgconfig dga? ( x11-proto/xf86dgaproto ) X? ( x11-proto/videoproto x11-proto/xf86vidmodeproto ) xinerama? ( x11-proto/xineramaproto ) xscreensaver? ( x11-proto/scrnsaverproto ) amd64? ( dev-lang/yasm ) doc? ( dev-libs/libxslt app-text/docbook-xml-dtd app-text/docbook-xsl-stylesheets ) x86? ( dev-lang/yasm ) x86-fbsd? ( dev-lang/yasm ) +DEPEND=sys-libs/ncurses:0= app-arch/bzip2 sys-libs/zlib >=media-video/ffmpeg-3.0:0=[vdpau?] a52? ( media-libs/a52dec ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bidi? ( dev-libs/fribidi ) bluray? ( >=media-libs/libbluray-0.2.1:= ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio:0= dev-libs/libcdio-paranoia ) cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) dga? ( x11-libs/libXxf86dga ) directfb? ( dev-libs/DirectFB ) dts? ( media-libs/libdca ) dv? ( media-libs/libdv ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 ) dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) encode? ( !twolame? ( toolame? ( media-sound/toolame ) ) twolame? ( media-sound/twolame ) faac? ( media-libs/faac ) mp3? ( media-sound/lame ) x264? ( >=media-libs/x264-0.0.20100423:= ) xvid? ( media-libs/xvid ) ) enca? ( app-i18n/enca ) faad? ( media-libs/faad2 ) ggi? ( media-libs/libggi media-libs/libggiwmh ) gif? ( media-libs/giflib:0= ) gsm? ( media-sound/gsm ) iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) libmpeg2? ( media-libs/libmpeg2 ) lirc? ( app-misc/lirc ) live? ( media-plugins/live ) lzo? ( >=dev-libs/lzo-2 ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) mp3? ( media-sound/mpg123 ) nas? ( media-libs/nas ) nut? ( >=media-libs/libnut-661 ) openal? ( media-libs/openal ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) pnm? ( media-libs/netpbm ) pulseaudio? ( media-sound/pulseaudio ) rar? ( || ( app-arch/unrar app-arch/rar ) ) rtmp? ( media-video/rtmpdump ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora[encode?] ) tremor? ( media-libs/tremor ) truetype? ( virtual/ttf-fonts media-libs/fontconfig >=media-libs/freetype-2.2.1:2 ) vdpau? ( x11-libs/libvdpau ) vorbis? ( !tremor? ( media-libs/libvorbis ) ) X? ( x11-libs/libXext x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) virtual/pkgconfig dga? ( x11-proto/xf86dgaproto ) X? ( x11-proto/videoproto x11-proto/xf86vidmodeproto ) xinerama? ( x11-proto/xineramaproto ) xscreensaver? ( x11-proto/scrnsaverproto ) amd64? ( dev-lang/yasm ) doc? ( dev-libs/libxslt app-text/docbook-xml-dtd app-text/docbook-xsl-stylesheets ) x86? ( dev-lang/yasm ) x86-fbsd? ( dev-lang/yasm ) DESCRIPTION=Media Player for Linux EAPI=5 HOMEPAGE=http://www.mplayerhq.hu/ -IUSE=cpu_flags_x86_3dnow cpu_flags_x86_3dnowext a52 aalib +alsa altivec aqua bidi bl bluray bs2b cddb +cdio cdparanoia cpudetection debug dga directfb doc dts dv dvb +dvd +dvdnav +enca +encode faac faad fbcon ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 tga theora tremor +truetype toolame twolame +unicode v4l vcd vdpau vidix vorbis +X x264 xinerama +xscreensaver +xv xvid xvmc yuv4mpeg zoran video_cards_s3virge video_cards_mga video_cards_tdfx +IUSE=cpu_flags_x86_3dnow cpu_flags_x86_3dnowext a52 aalib +alsa altivec aqua bidi bl bluray bs2b cddb +cdio cdparanoia cpudetection debug dga directfb doc dts dv dvb +dvd +dvdnav +enca +encode faac faad fbcon ftp gif ggi gsm +iconv ipv6 jack joystick jpeg kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 tga theora tremor +truetype toolame twolame +unicode v4l vcd vdpau vidix vorbis +X x264 xinerama +xscreensaver +xv xvid xvmc yuv4mpeg zoran video_cards_s3virge video_cards_mga video_cards_tdfx KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 -RDEPEND=sys-libs/ncurses:0= app-arch/bzip2 sys-libs/zlib >=media-video/ffmpeg-3.0:0=[vdpau?] a52? ( media-libs/a52dec ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bidi? ( dev-libs/fribidi ) bluray? ( >=media-libs/libbluray-0.2.1:= ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio:0= dev-libs/libcdio-paranoia ) cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) dga? ( x11-libs/libXxf86dga ) directfb? ( dev-libs/DirectFB ) dts? ( media-libs/libdca ) dv? ( media-libs/libdv ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 ) dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) encode? ( !twolame? ( toolame? ( media-sound/toolame ) ) twolame? ( media-sound/twolame ) faac? ( media-libs/faac ) mp3? ( media-sound/lame ) x264? ( >=media-libs/x264-0.0.20100423:= ) xvid? ( media-libs/xvid ) ) enca? ( app-i18n/enca ) faad? ( media-libs/faad2 ) ggi? ( media-libs/libggi media-libs/libggiwmh ) gif? ( media-libs/giflib:0= ) gsm? ( media-sound/gsm ) iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) libmpeg2? ( media-libs/libmpeg2 ) lirc? ( app-misc/lirc ) live? ( media-plugins/live ) lzo? ( >=dev-libs/lzo-2 ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) mp3? ( media-sound/mpg123 ) nas? ( media-libs/nas ) nut? ( >=media-libs/libnut-661 ) openal? ( media-libs/openal ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) pnm? ( media-libs/netpbm ) pulseaudio? ( media-sound/pulseaudio ) rar? ( || ( app-arch/unrar app-arch/rar ) ) rtmp? ( media-video/rtmpdump ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora[encode?] ) tremor? ( media-libs/tremor ) truetype? ( virtual/ttf-fonts media-libs/fontconfig >=media-libs/freetype-2.2.1:2 ) vdpau? ( x11-libs/libvdpau ) vorbis? ( !tremor? ( media-libs/libvorbis ) ) X? ( x11-libs/libXext x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) selinux? ( sec-policy/selinux-mplayer ) +RDEPEND=sys-libs/ncurses:0= app-arch/bzip2 sys-libs/zlib >=media-video/ffmpeg-3.0:0=[vdpau?] a52? ( media-libs/a52dec ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bidi? ( dev-libs/fribidi ) bluray? ( >=media-libs/libbluray-0.2.1:= ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio:0= dev-libs/libcdio-paranoia ) cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) dga? ( x11-libs/libXxf86dga ) directfb? ( dev-libs/DirectFB ) dts? ( media-libs/libdca ) dv? ( media-libs/libdv ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 ) dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) encode? ( !twolame? ( toolame? ( media-sound/toolame ) ) twolame? ( media-sound/twolame ) faac? ( media-libs/faac ) mp3? ( media-sound/lame ) x264? ( >=media-libs/x264-0.0.20100423:= ) xvid? ( media-libs/xvid ) ) enca? ( app-i18n/enca ) faad? ( media-libs/faad2 ) ggi? ( media-libs/libggi media-libs/libggiwmh ) gif? ( media-libs/giflib:0= ) gsm? ( media-sound/gsm ) iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) libmpeg2? ( media-libs/libmpeg2 ) lirc? ( app-misc/lirc ) live? ( media-plugins/live ) lzo? ( >=dev-libs/lzo-2 ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) mp3? ( media-sound/mpg123 ) nas? ( media-libs/nas ) nut? ( >=media-libs/libnut-661 ) openal? ( media-libs/openal ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) pnm? ( media-libs/netpbm ) pulseaudio? ( media-sound/pulseaudio ) rar? ( || ( app-arch/unrar app-arch/rar ) ) rtmp? ( media-video/rtmpdump ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora[encode?] ) tremor? ( media-libs/tremor ) truetype? ( virtual/ttf-fonts media-libs/fontconfig >=media-libs/freetype-2.2.1:2 ) vdpau? ( x11-libs/libvdpau ) vorbis? ( !tremor? ( media-libs/libvorbis ) ) X? ( x11-libs/libXext x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) selinux? ( sec-policy/selinux-mplayer ) REQUIRED_USE=dga? ( X ) dvdnav? ( dvd ) enca? ( iconv ) ggi? ( X ) libass? ( truetype ) opengl? ( X ) osdmenu? ( X ) truetype? ( iconv ) vdpau? ( X ) vidix? ( X ) xinerama? ( X ) xscreensaver? ( X ) xv? ( X ) xvmc? ( xv ) RESTRICT=faac? ( bindist ) SLOT=0 SRC_URI=mirror://mplayer/releases/MPlayer-1.3.0.tar.xz !truetype? ( mirror://mplayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 mirror://mplayer/releases/fonts/font-arial-iso-8859-2.tar.bz2 mirror://mplayer/releases/fonts/font-arial-cp1250.tar.bz2 ) _eclasses_=base df2aa567b3f0595aae0d0923889f7631 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=2e239854251f1802e78357b425592f8d +_md5_=9b7913d33d472b1d4e2b337bdb5eee99 diff --git a/metadata/md5-cache/media-video/mplayer-9999 b/metadata/md5-cache/media-video/mplayer-9999 index 7e231074aa2f..2b532311ab1f 100644 --- a/metadata/md5-cache/media-video/mplayer-9999 +++ b/metadata/md5-cache/media-video/mplayer-9999 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postrm preinst prepare setup unpack -DEPEND=sys-libs/ncurses:0= app-arch/bzip2 sys-libs/zlib >=media-video/ffmpeg-3.0:0=[vdpau?] a52? ( media-libs/a52dec ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bidi? ( dev-libs/fribidi ) bluray? ( >=media-libs/libbluray-0.2.1:= ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio:0= dev-libs/libcdio-paranoia ) cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) dga? ( x11-libs/libXxf86dga ) directfb? ( dev-libs/DirectFB ) dts? ( media-libs/libdca ) dv? ( media-libs/libdv ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 ) dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) encode? ( !twolame? ( toolame? ( media-sound/toolame ) ) twolame? ( media-sound/twolame ) faac? ( media-libs/faac ) mp3? ( media-sound/lame ) x264? ( >=media-libs/x264-0.0.20100423:= ) xvid? ( media-libs/xvid ) ) enca? ( app-i18n/enca ) faad? ( media-libs/faad2 ) ggi? ( media-libs/libggi media-libs/libggiwmh ) gif? ( media-libs/giflib:0= ) gsm? ( media-sound/gsm ) iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) libmpeg2? ( media-libs/libmpeg2 ) lirc? ( app-misc/lirc ) live? ( media-plugins/live ) lzo? ( >=dev-libs/lzo-2 ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) mp3? ( media-sound/mpg123 ) nas? ( media-libs/nas ) nut? ( >=media-libs/libnut-661 ) openal? ( media-libs/openal ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) pnm? ( media-libs/netpbm ) pulseaudio? ( media-sound/pulseaudio ) rar? ( || ( app-arch/unrar app-arch/rar ) ) rtmp? ( media-video/rtmpdump ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora[encode?] ) tremor? ( media-libs/tremor ) truetype? ( virtual/ttf-fonts media-libs/fontconfig >=media-libs/freetype-2.2.1:2 ) vdpau? ( x11-libs/libvdpau ) vorbis? ( !tremor? ( media-libs/libvorbis ) ) X? ( x11-libs/libXext x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) virtual/pkgconfig dga? ( x11-proto/xf86dgaproto ) X? ( x11-proto/videoproto x11-proto/xf86vidmodeproto ) xinerama? ( x11-proto/xineramaproto ) xscreensaver? ( x11-proto/scrnsaverproto ) amd64? ( dev-lang/yasm ) doc? ( dev-libs/libxslt app-text/docbook-xml-dtd app-text/docbook-xsl-stylesheets ) x86? ( dev-lang/yasm ) x86-fbsd? ( dev-lang/yasm ) || ( dev-vcs/subversion[http] dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync dev-vcs/git +DEPEND=sys-libs/ncurses:0= app-arch/bzip2 sys-libs/zlib >=media-video/ffmpeg-3.0:0=[vdpau?] a52? ( media-libs/a52dec ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bidi? ( dev-libs/fribidi ) bluray? ( >=media-libs/libbluray-0.2.1:= ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio:0= dev-libs/libcdio-paranoia ) cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) dga? ( x11-libs/libXxf86dga ) directfb? ( dev-libs/DirectFB ) dts? ( media-libs/libdca ) dv? ( media-libs/libdv ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 ) dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) encode? ( !twolame? ( toolame? ( media-sound/toolame ) ) twolame? ( media-sound/twolame ) faac? ( media-libs/faac ) mp3? ( media-sound/lame ) x264? ( >=media-libs/x264-0.0.20100423:= ) xvid? ( media-libs/xvid ) ) enca? ( app-i18n/enca ) faad? ( media-libs/faad2 ) ggi? ( media-libs/libggi media-libs/libggiwmh ) gif? ( media-libs/giflib:0= ) gsm? ( media-sound/gsm ) iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) libmpeg2? ( media-libs/libmpeg2 ) lirc? ( app-misc/lirc ) live? ( media-plugins/live ) lzo? ( >=dev-libs/lzo-2 ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) mp3? ( media-sound/mpg123 ) nas? ( media-libs/nas ) nut? ( >=media-libs/libnut-661 ) openal? ( media-libs/openal ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) pnm? ( media-libs/netpbm ) pulseaudio? ( media-sound/pulseaudio ) rar? ( || ( app-arch/unrar app-arch/rar ) ) rtmp? ( media-video/rtmpdump ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora[encode?] ) tremor? ( media-libs/tremor ) truetype? ( virtual/ttf-fonts media-libs/fontconfig >=media-libs/freetype-2.2.1:2 ) vdpau? ( x11-libs/libvdpau ) vorbis? ( !tremor? ( media-libs/libvorbis ) ) X? ( x11-libs/libXext x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) virtual/pkgconfig dga? ( x11-proto/xf86dgaproto ) X? ( x11-proto/videoproto x11-proto/xf86vidmodeproto ) xinerama? ( x11-proto/xineramaproto ) xscreensaver? ( x11-proto/scrnsaverproto ) amd64? ( dev-lang/yasm ) doc? ( dev-libs/libxslt app-text/docbook-xml-dtd app-text/docbook-xsl-stylesheets ) x86? ( dev-lang/yasm ) x86-fbsd? ( dev-lang/yasm ) || ( dev-vcs/subversion[http] dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync dev-vcs/git DESCRIPTION=Media Player for Linux EAPI=5 HOMEPAGE=http://www.mplayerhq.hu/ -IUSE=cpu_flags_x86_3dnow cpu_flags_x86_3dnowext a52 aalib +alsa altivec aqua bidi bl bluray bs2b cddb +cdio cdparanoia cpudetection debug dga directfb doc dts dv dvb +dvd +dvdnav +enca +encode faac faad fbcon ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 tga theora tremor +truetype toolame twolame +unicode v4l vcd vdpau vidix vorbis +X x264 xinerama +xscreensaver +xv xvid xvmc yuv4mpeg zoran video_cards_s3virge video_cards_mga video_cards_tdfx +IUSE=cpu_flags_x86_3dnow cpu_flags_x86_3dnowext a52 aalib +alsa altivec aqua bidi bl bluray bs2b cddb +cdio cdparanoia cpudetection debug dga directfb doc dts dv dvb +dvd +dvdnav +enca +encode faac faad fbcon ftp gif ggi gsm +iconv ipv6 jack joystick jpeg kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 tga theora tremor +truetype toolame twolame +unicode v4l vcd vdpau vidix vorbis +X x264 xinerama +xscreensaver +xv xvid xvmc yuv4mpeg zoran video_cards_s3virge video_cards_mga video_cards_tdfx LICENSE=GPL-2 -RDEPEND=sys-libs/ncurses:0= app-arch/bzip2 sys-libs/zlib >=media-video/ffmpeg-3.0:0=[vdpau?] a52? ( media-libs/a52dec ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bidi? ( dev-libs/fribidi ) bluray? ( >=media-libs/libbluray-0.2.1:= ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio:0= dev-libs/libcdio-paranoia ) cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) dga? ( x11-libs/libXxf86dga ) directfb? ( dev-libs/DirectFB ) dts? ( media-libs/libdca ) dv? ( media-libs/libdv ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 ) dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) encode? ( !twolame? ( toolame? ( media-sound/toolame ) ) twolame? ( media-sound/twolame ) faac? ( media-libs/faac ) mp3? ( media-sound/lame ) x264? ( >=media-libs/x264-0.0.20100423:= ) xvid? ( media-libs/xvid ) ) enca? ( app-i18n/enca ) faad? ( media-libs/faad2 ) ggi? ( media-libs/libggi media-libs/libggiwmh ) gif? ( media-libs/giflib:0= ) gsm? ( media-sound/gsm ) iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) libmpeg2? ( media-libs/libmpeg2 ) lirc? ( app-misc/lirc ) live? ( media-plugins/live ) lzo? ( >=dev-libs/lzo-2 ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) mp3? ( media-sound/mpg123 ) nas? ( media-libs/nas ) nut? ( >=media-libs/libnut-661 ) openal? ( media-libs/openal ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) pnm? ( media-libs/netpbm ) pulseaudio? ( media-sound/pulseaudio ) rar? ( || ( app-arch/unrar app-arch/rar ) ) rtmp? ( media-video/rtmpdump ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora[encode?] ) tremor? ( media-libs/tremor ) truetype? ( virtual/ttf-fonts media-libs/fontconfig >=media-libs/freetype-2.2.1:2 ) vdpau? ( x11-libs/libvdpau ) vorbis? ( !tremor? ( media-libs/libvorbis ) ) X? ( x11-libs/libXext x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) selinux? ( sec-policy/selinux-mplayer ) +RDEPEND=sys-libs/ncurses:0= app-arch/bzip2 sys-libs/zlib >=media-video/ffmpeg-3.0:0=[vdpau?] a52? ( media-libs/a52dec ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bidi? ( dev-libs/fribidi ) bluray? ( >=media-libs/libbluray-0.2.1:= ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio:0= dev-libs/libcdio-paranoia ) cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) dga? ( x11-libs/libXxf86dga ) directfb? ( dev-libs/DirectFB ) dts? ( media-libs/libdca ) dv? ( media-libs/libdv ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 ) dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) encode? ( !twolame? ( toolame? ( media-sound/toolame ) ) twolame? ( media-sound/twolame ) faac? ( media-libs/faac ) mp3? ( media-sound/lame ) x264? ( >=media-libs/x264-0.0.20100423:= ) xvid? ( media-libs/xvid ) ) enca? ( app-i18n/enca ) faad? ( media-libs/faad2 ) ggi? ( media-libs/libggi media-libs/libggiwmh ) gif? ( media-libs/giflib:0= ) gsm? ( media-sound/gsm ) iconv? ( virtual/libiconv ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:= ) libcaca? ( media-libs/libcaca ) libmpeg2? ( media-libs/libmpeg2 ) lirc? ( app-misc/lirc ) live? ( media-plugins/live ) lzo? ( >=dev-libs/lzo-2 ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) mp3? ( media-sound/mpg123 ) nas? ( media-libs/nas ) nut? ( >=media-libs/libnut-661 ) openal? ( media-libs/openal ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0= ) pnm? ( media-libs/netpbm ) pulseaudio? ( media-sound/pulseaudio ) rar? ( || ( app-arch/unrar app-arch/rar ) ) rtmp? ( media-video/rtmpdump ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl ) speex? ( media-libs/speex ) theora? ( media-libs/libtheora[encode?] ) tremor? ( media-libs/tremor ) truetype? ( virtual/ttf-fonts media-libs/fontconfig >=media-libs/freetype-2.2.1:2 ) vdpau? ( x11-libs/libvdpau ) vorbis? ( !tremor? ( media-libs/libvorbis ) ) X? ( x11-libs/libXext x11-libs/libXxf86vm ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) selinux? ( sec-policy/selinux-mplayer ) REQUIRED_USE=dga? ( X ) dvdnav? ( dvd ) enca? ( iconv ) ggi? ( X ) libass? ( truetype ) opengl? ( X ) osdmenu? ( X ) truetype? ( iconv ) vdpau? ( X ) vidix? ( X ) xinerama? ( X ) xscreensaver? ( X ) xv? ( X ) xvmc? ( xv ) RESTRICT=faac? ( bindist ) SLOT=0 SRC_URI=!truetype? ( mirror://mplayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 mirror://mplayer/releases/fonts/font-arial-iso-8859-2.tar.bz2 mirror://mplayer/releases/fonts/font-arial-cp1250.tar.bz2 ) _eclasses_=base df2aa567b3f0595aae0d0923889f7631 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 git-2 195a672bfaf52d868442171c9469bbb6 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e subversion a5d5826a85609611f098c0553eb24cc1 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=4c7259fa761483c05be17b7e6a6748ed +_md5_=cc596db3bd031fba86e150f9e2fca8d0 diff --git a/metadata/md5-cache/media-video/plasma-mediacenter-5.7.5 b/metadata/md5-cache/media-video/plasma-mediacenter-5.7.5 index 80026eb44f7e..51c0d8a34324 100644 --- a/metadata/md5-cache/media-video/plasma-mediacenter-5.7.5 +++ b/metadata/md5-cache/media-video/plasma-mediacenter-5.7.5 @@ -8,6 +8,6 @@ KEYWORDS=amd64 ~arm x86 LICENSE=GPL-2 RDEPEND=>=kde-frameworks/kactivities-5.37.0:5 >=kde-frameworks/kconfig-5.37.0:5 >=kde-frameworks/kcoreaddons-5.37.0:5 >=kde-frameworks/kdeclarative-5.37.0:5 >=kde-frameworks/kguiaddons-5.37.0:5 >=kde-frameworks/ki18n-5.37.0:5 >=kde-frameworks/kio-5.37.0:5 >=kde-frameworks/kservice-5.37.0:5 >=kde-frameworks/plasma-5.37.0:5 >=dev-qt/qtdbus-5.7.1:5 >=dev-qt/qtdeclarative-5.7.1:5 >=dev-qt/qtgui-5.7.1:5 >=dev-qt/qtnetwork-5.7.1:5 >=dev-qt/qtxml-5.7.1:5 media-libs/taglib semantic-desktop? ( >=kde-frameworks/baloo-5.37.0:5 >=kde-frameworks/kfilemetadata-5.37.0:5 ) >=kde-plasma/plasma-workspace-5.10.5:5 >=dev-qt/qtmultimedia-5.7.1:5[qml] !media-video/plasma-mediacenter:0 >=kde-frameworks/kf-env-4 >=dev-qt/qtcore-5.7.1:5 SLOT=5 -SRC_URI=mirror://kde/stable/plasma/5.7.5/plasma-mediacenter-5.7.5.tar.xz +SRC_URI=mirror://kde/stable/plasma-mediacenter/5.7.5/plasma-mediacenter-5.7.5.tar.xz _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 gnome2-utils 4d211d7614f303710fca59db6ec12c88 kde5 186c36517327615304bdc71c5f2bf6f7 kde5-functions abefc896c278e40752eaefc438ac5ddc ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=e36402713f8d2cc8b55086679ea21c6b +_md5_=ce1fb81930d6da291322b3e379cf312a diff --git a/metadata/md5-cache/net-dns/libidn2-2.0.4 b/metadata/md5-cache/net-dns/libidn2-2.0.4 index da5cceea263e..3c272b118652 100644 --- a/metadata/md5-cache/net-dns/libidn2-2.0.4 +++ b/metadata/md5-cache/net-dns/libidn2-2.0.4 @@ -4,10 +4,10 @@ DESCRIPTION=An implementation of the IDNA2008 specifications (RFCs 5890, 5891, 5 EAPI=6 HOMEPAGE=https://www.gnu.org/software/libidn/#libidn2 https://gitlab.com/jas/libidn2 IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2+ LGPL-3+ RDEPEND=dev-libs/libunistring[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=mirror://gnu/libidn/libidn2-2.0.4.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=770a0dffd6c5bf458f2a8f30c68c4008 +_md5_=f6db33d743766b159b3c6415732eabe6 diff --git a/metadata/md5-cache/net-mail/getmail-5.4 b/metadata/md5-cache/net-mail/getmail-5.4 new file mode 100644 index 000000000000..c04c4861eac6 --- /dev/null +++ b/metadata/md5-cache/net-mail/getmail-5.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ssl?] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=A POP3 mail retriever with reliable Maildir and mbox delivery +EAPI=6 +HOMEPAGE=http://pyropus.ca/software/getmail/ +IUSE=ssl python_targets_python2_7 +KEYWORDS=~amd64 ~ppc ~x86 ~ppc-macos ~x86-macos ~x64-solaris +LICENSE=GPL-2 +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ssl?] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=4 +SRC_URI=http://pyropus.ca/software/getmail/old-versions/getmail-5.4.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=0568591994e04792fd4d37171f2e833e diff --git a/metadata/md5-cache/net-mail/offlineimap-7.1.3 b/metadata/md5-cache/net-mail/offlineimap-7.1.3 new file mode 100644 index 000000000000..68820494235f --- /dev/null +++ b/metadata/md5-cache/net-mail/offlineimap-7.1.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=doc? ( app-text/asciidoc ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,sqlite,ssl?] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] +DESCRIPTION=Powerful IMAP/Maildir synchronization and reader support +EAPI=6 +HOMEPAGE=http://offlineimap.org +IUSE=doc ssl python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +LICENSE=GPL-2 +RDEPEND=dev-python/six[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,sqlite,ssl?] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] +REQUIRED_USE=python_targets_python2_7 +SLOT=0 +SRC_URI=https://github.com/OfflineIMAP/offlineimap/archive/v7.1.3.tar.gz -> offlineimap-7.1.3.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=1eacb6206d1b666ee21c035efeddf2f3 diff --git a/metadata/md5-cache/sci-mathematics/octave-4.2.1 b/metadata/md5-cache/sci-mathematics/octave-4.2.1 index 55d978e9d7fa..de563b645e61 100644 --- a/metadata/md5-cache/sci-mathematics/octave-4.2.1 +++ b/metadata/md5-cache/sci-mathematics/octave-4.2.1 @@ -1,4 +1,4 @@ -DEFINED_PHASES=compile configure install preinst prepare setup +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup DEPEND=app-arch/bzip2 app-text/ghostscript-gpl dev-libs/libpcre:3= sys-libs/ncurses:0= sys-libs/zlib virtual/blas virtual/lapack curl? ( net-misc/curl:0= ) fftw? ( sci-libs/fftw:3.0= ) glpk? ( sci-mathematics/glpk:0= ) gnuplot? ( sci-visualization/gnuplot ) hdf5? ( sci-libs/hdf5:0= ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) java? ( >=virtual/jre-1.6.0:* ) opengl? ( media-libs/freetype:2= media-libs/fontconfig:1.0= >=x11-libs/fltk-1.3:1=[opengl,xft] x11-libs/gl2ps:0= virtual/glu ) openssl? ( dev-libs/openssl:0= ) portaudio? ( media-libs/portaudio ) postscript? ( app-text/epstool media-gfx/pstoedit media-gfx/transfig ) qhull? ( media-libs/qhull:0= ) qrupdate? ( sci-libs/qrupdate:0= ) gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 >=x11-libs/qscintilla-2.9.3-r2:=[qt5(+)] ) readline? ( sys-libs/readline:0= ) sndfile? ( media-libs/libsndfile ) sparse? ( sci-libs/arpack:0= sci-libs/camd:0= sci-libs/ccolamd:0= sci-libs/cholmod:0= sci-libs/colamd:0= sci-libs/cxsparse:0= sci-libs/umfpack:0= ) X? ( x11-libs/libX11:0= ) gui? ( dev-qt/linguist-tools:5 ) qrupdate? ( app-misc/pax-utils ) sparse? ( app-misc/pax-utils ) java? ( >=virtual/jdk-1.6.0 ) doc? ( virtual/latex-base dev-texlive/texlive-fontsrecommended || ( dev-texlive/texlive-plaingeneric dev-texlive/texlive-genericrecommended ) dev-texlive/texlive-metapost ) sys-apps/texinfo dev-util/gperf virtual/pkgconfig >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/fortran java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=High-level interactive language for numerical computations EAPI=6 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=app-arch/bzip2 app-text/ghostscript-gpl dev-libs/libpcre:3= sys-libs/ncurses:0= sys-libs/zlib virtual/blas virtual/lapack curl? ( net-misc/curl:0= ) fftw? ( sci-libs/fftw:3.0= ) glpk? ( sci-mathematics/glpk:0= ) gnuplot? ( sci-visualization/gnuplot ) hdf5? ( sci-libs/hdf5:0= ) imagemagick? ( !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) ) java? ( >=virtual/jre-1.6.0:* ) opengl? ( media-libs/freetype:2= media-libs/fontconfig:1.0= >=x11-libs/fltk-1.3:1=[opengl,xft] x11-libs/gl2ps:0= virtual/glu ) openssl? ( dev-libs/openssl:0= ) portaudio? ( media-libs/portaudio ) postscript? ( app-text/epstool media-gfx/pstoedit media-gfx/transfig ) qhull? ( media-libs/qhull:0= ) qrupdate? ( sci-libs/qrupdate:0= ) gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 >=x11-libs/qscintilla-2.9.3-r2:=[qt5(+)] ) readline? ( sys-libs/readline:0= ) sndfile? ( media-libs/libsndfile ) sparse? ( sci-libs/arpack:0= sci-libs/camd:0= sci-libs/ccolamd:0= sci-libs/cholmod:0= sci-libs/colamd:0= sci-libs/cxsparse:0= sci-libs/umfpack:0= ) X? ( x11-libs/libX11:0= ) virtual/fortran java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/4.2.1 SRC_URI=mirror://gnu/octave/octave-4.2.1.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 fortran-2 9e7f20c99213f0627ff7f873d4aaa25d java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils 4f95120230a315c8caaabeb2307b7eee toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=47e19cf36ba4b70f9621797d0bef85cf +_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 fortran-2 9e7f20c99213f0627ff7f873d4aaa25d java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils 4f95120230a315c8caaabeb2307b7eee toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=710677745620054864e3950e7d97c1fb diff --git a/metadata/md5-cache/sys-apps/systemd-233-r3 b/metadata/md5-cache/sys-apps/systemd-233-r3 deleted file mode 100644 index 5775be3aa1bf..000000000000 --- a/metadata/md5-cache/sys-apps/systemd-233-r3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare prerm pretend setup test unpack -DEPEND=>=sys-apps/util-linux-2.27.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libcap:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !=sys-process/audit-2:0= ) cryptsetup? ( >=sys-fs/cryptsetup-1.6:0= ) curl? ( net-misc/curl:0= ) elfutils? ( >=dev-libs/elfutils-0.158:0= ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) http? ( >=net-libs/libmicrohttpd-0.9.33:0= ssl? ( >=net-libs/gnutls-3.1.4:0= ) ) idn? ( net-dns/libidn:0= ) importd? ( app-arch/bzip2:0= sys-libs/zlib:0= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nat? ( net-firewall/iptables:0= ) pam? ( virtual/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qrcode? ( media-gfx/qrencode:0= ) seccomp? ( >=sys-libs/libseccomp-2.3.1:0= ) selinux? ( sys-libs/libselinux:0= ) sysv-utils? ( !sys-apps/systemd-sysv-utils !sys-apps/sysvinit ) xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r9 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) app-arch/xz-utils:0 dev-util/gperf >=dev-util/intltool-0.50 >=sys-apps/coreutils-8.16 >=sys-kernel/linux-headers-3.11 virtual/pkgconfig gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) test? ( sys-apps/dbus ) app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt:0 doc? ( || ( ( dev-lang/python:3.6 dev-python/lxml[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( dev-lang/python:3.5 dev-python/lxml[python_targets_python3_5(-),python_single_target_python3_5(+)] ) ( dev-lang/python:3.4 dev-python/lxml[python_targets_python3_4(-),python_single_target_python3_4(+)] ) ) ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=System and service manager for Linux -EAPI=6 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/systemd -IUSE=acl apparmor audit build cryptsetup curl doc elfutils +gcrypt gnuefi http idn importd +kmod +lz4 lzma nat pam policykit qrcode +seccomp selinux ssl sysv-utils test vanilla xkb abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm ~arm64 ~ia64 ppc ppc64 sparc x86 -LICENSE=GPL-2 LGPL-2.1 MIT public-domain -PDEPEND=>=sys-apps/dbus-1.9.8[systemd] >=sys-apps/hwids-20150417[udev] >=sys-fs/udev-init-scripts-25 policykit? ( sys-auth/polkit ) !vanilla? ( sys-apps/gentoo-systemd-integration ) -RDEPEND=>=sys-apps/util-linux-2.27.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libcap:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !=sys-process/audit-2:0= ) cryptsetup? ( >=sys-fs/cryptsetup-1.6:0= ) curl? ( net-misc/curl:0= ) elfutils? ( >=dev-libs/elfutils-0.158:0= ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) http? ( >=net-libs/libmicrohttpd-0.9.33:0= ssl? ( >=net-libs/gnutls-3.1.4:0= ) ) idn? ( net-dns/libidn:0= ) importd? ( app-arch/bzip2:0= sys-libs/zlib:0= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nat? ( net-firewall/iptables:0= ) pam? ( virtual/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qrcode? ( media-gfx/qrencode:0= ) seccomp? ( >=sys-libs/libseccomp-2.3.1:0= ) selinux? ( sys-libs/libselinux:0= ) sysv-utils? ( !sys-apps/systemd-sysv-utils !sys-apps/sysvinit ) xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r9 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) >=sys-apps/baselayout-2.2 selinux? ( sec-policy/selinux-base-policy[systemd] ) !build? ( || ( sys-apps/util-linux[kill(-)] sys-process/procps[kill(+)] sys-apps/coreutils[kill(-)] ) ) !sys-auth/nss-myhostname ! systemd-233.tar.gz !doc? ( https://dev.gentoo.org/~floppym/dist/systemd-233-man.tar.gz ) -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 pam 3e788d86170dfcd5b06824d898315e18 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af udev d91cac2c73b94629cad2daea66e0d182 user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=f54ff4656d3eaec2a769e92f8029ff67 diff --git a/metadata/md5-cache/sys-apps/systemd-234-r4 b/metadata/md5-cache/sys-apps/systemd-234-r4 index df097ef77758..aec843cb9338 100644 --- a/metadata/md5-cache/sys-apps/systemd-234-r4 +++ b/metadata/md5-cache/sys-apps/systemd-234-r4 @@ -12,4 +12,4 @@ REQUIRED_USE=importd? ( curl gcrypt lzma ) SLOT=0/2 SRC_URI=https://github.com/systemd/systemd/archive/v234.tar.gz -> systemd-234.tar.gz _eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e meson 958769e8b8b5a79afc3f22f3915cebbc multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 pam 3e788d86170dfcd5b06824d898315e18 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af udev d91cac2c73b94629cad2daea66e0d182 user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=7a4ad3f82d86465f8d1b98fae3daeff7 +_md5_=de00b8418454173556dec92e9ab07ebc diff --git a/metadata/md5-cache/sys-apps/systemd-235 b/metadata/md5-cache/sys-apps/systemd-235 new file mode 100644 index 000000000000..76229d288717 --- /dev/null +++ b/metadata/md5-cache/sys-apps/systemd-235 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare prerm pretend setup test unpack +DEPEND=>=sys-apps/util-linux-2.27.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libcap:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !=sys-process/audit-2:0= ) cryptsetup? ( >=sys-fs/cryptsetup-1.6:0= ) curl? ( net-misc/curl:0= ) elfutils? ( >=dev-libs/elfutils-0.158:0= ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) http? ( >=net-libs/libmicrohttpd-0.9.33:0= ssl? ( >=net-libs/gnutls-3.1.4:0= ) ) idn? ( libidn2? ( net-dns/libidn2 ) !libidn2? ( net-dns/libidn ) ) importd? ( app-arch/bzip2:0= sys-libs/zlib:0= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nat? ( net-firewall/iptables:0= ) pam? ( virtual/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qrcode? ( media-gfx/qrencode:0= ) seccomp? ( >=sys-libs/libseccomp-2.3.1:0= ) selinux? ( sys-libs/libselinux:0= ) sysv-utils? ( !sys-apps/systemd-sysv-utils !sys-apps/sysvinit ) xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r9 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) app-arch/xz-utils:0 dev-util/gperf >=dev-util/intltool-0.50 >=sys-apps/coreutils-8.16 >=sys-kernel/linux-headers-3.11 virtual/pkgconfig gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) test? ( sys-apps/dbus ) app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt:0 || ( ( dev-lang/python:3.6 dev-python/lxml[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( dev-lang/python:3.5 dev-python/lxml[python_targets_python3_5(-),python_single_target_python3_5(+)] ) ( dev-lang/python:3.4 dev-python/lxml[python_targets_python3_4(-),python_single_target_python3_4(+)] ) ) >=dev-util/meson-0.40.0 >=dev-util/ninja-1.7.2 virtual/pkgconfig virtual/pkgconfig +DESCRIPTION=System and service manager for Linux +EAPI=6 +HOMEPAGE=https://www.freedesktop.org/wiki/Software/systemd +IUSE=acl apparmor audit build cryptsetup curl elfutils +gcrypt gnuefi http idn importd +kmod libidn2 +lz4 lzma nat pam policykit qrcode +seccomp selinux ssl sysv-utils test vanilla xkb abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 LGPL-2.1 MIT public-domain +PDEPEND=>=sys-apps/dbus-1.9.8[systemd] >=sys-apps/hwids-20150417[udev] >=sys-fs/udev-init-scripts-25 policykit? ( sys-auth/polkit ) !vanilla? ( sys-apps/gentoo-systemd-integration ) +RDEPEND=>=sys-apps/util-linux-2.27.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/libcap:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !=sys-process/audit-2:0= ) cryptsetup? ( >=sys-fs/cryptsetup-1.6:0= ) curl? ( net-misc/curl:0= ) elfutils? ( >=dev-libs/elfutils-0.158:0= ) gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) http? ( >=net-libs/libmicrohttpd-0.9.33:0= ssl? ( >=net-libs/gnutls-3.1.4:0= ) ) idn? ( libidn2? ( net-dns/libidn2 ) !libidn2? ( net-dns/libidn ) ) importd? ( app-arch/bzip2:0= sys-libs/zlib:0= ) kmod? ( >=sys-apps/kmod-15:0= ) lz4? ( >=app-arch/lz4-0_p131:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nat? ( net-firewall/iptables:0= ) pam? ( virtual/pam:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) qrcode? ( media-gfx/qrencode:0= ) seccomp? ( >=sys-libs/libseccomp-2.3.1:0= ) selinux? ( sys-libs/libselinux:0= ) sysv-utils? ( !sys-apps/systemd-sysv-utils !sys-apps/sysvinit ) xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r9 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) >=sys-apps/baselayout-2.2 selinux? ( sec-policy/selinux-base-policy[systemd] ) !build? ( || ( sys-apps/util-linux[kill(-)] sys-process/procps[kill(+)] sys-apps/coreutils[kill(-)] ) ) !sys-auth/nss-myhostname ! systemd-235.tar.gz +_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e meson 958769e8b8b5a79afc3f22f3915cebbc multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 pam 3e788d86170dfcd5b06824d898315e18 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af udev d91cac2c73b94629cad2daea66e0d182 user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=46073dc966bcd6f646f6b563189f50c3 diff --git a/metadata/md5-cache/sys-apps/systemd-9999 b/metadata/md5-cache/sys-apps/systemd-9999 index ceaadde0be8b..3d3b85de35bf 100644 --- a/metadata/md5-cache/sys-apps/systemd-9999 +++ b/metadata/md5-cache/sys-apps/systemd-9999 @@ -10,4 +10,4 @@ RDEPEND=>=sys-apps/util-linux-2.27.1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x3 REQUIRED_USE=importd? ( curl gcrypt lzma ) SLOT=0/2 _eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 git-r3 52a888802d25387c2c74cb845d1219bc linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e meson 958769e8b8b5a79afc3f22f3915cebbc multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 pam 3e788d86170dfcd5b06824d898315e18 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af udev d91cac2c73b94629cad2daea66e0d182 user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=72854dd09caaefaadc474bbf978aad1e +_md5_=fb8109a54754529a661cbd2db759c32d diff --git a/metadata/md5-cache/sys-block/partitionmanager-3.2.0 b/metadata/md5-cache/sys-block/partitionmanager-3.2.1 similarity index 96% rename from metadata/md5-cache/sys-block/partitionmanager-3.2.0 rename to metadata/md5-cache/sys-block/partitionmanager-3.2.1 index f8a5df7c230a..784b7968188c 100644 --- a/metadata/md5-cache/sys-block/partitionmanager-3.2.0 +++ b/metadata/md5-cache/sys-block/partitionmanager-3.2.1 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-3 RDEPEND=>=kde-frameworks/kconfig-5.37.0:5 >=kde-frameworks/kconfigwidgets-5.37.0:5 >=kde-frameworks/kcoreaddons-5.37.0:5 >=kde-frameworks/kcrash-5.37.0:5 >=kde-frameworks/ki18n-5.37.0:5 >=kde-frameworks/kiconthemes-5.37.0:5 >=kde-frameworks/kio-5.37.0:5 >=kde-frameworks/kjobwidgets-5.37.0:5 >=kde-frameworks/kservice-5.37.0:5 >=kde-frameworks/kwidgetsaddons-5.37.0:5 >=kde-frameworks/kxmlgui-5.37.0:5 >=dev-qt/qtgui-5.7.1:5 >=dev-qt/qtwidgets-5.7.1:5 sys-apps/util-linux >=sys-libs/kpmcore-3.2.0:5= >=kde-plasma/kde-cli-tools-5.10.5:5[kdesu] >=kde-frameworks/kf-env-4 >=dev-qt/qtcore-5.7.1:5 SLOT=5 -SRC_URI=mirror://kde/stable/partitionmanager/3.2.0/src/partitionmanager-3.2.0.tar.xz +SRC_URI=mirror://kde/stable/partitionmanager/3.2.1/src/partitionmanager-3.2.1.tar.xz _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 gnome2-utils 4d211d7614f303710fca59db6ec12c88 kde5 186c36517327615304bdc71c5f2bf6f7 kde5-functions abefc896c278e40752eaefc438ac5ddc ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 _md5_=365d19547365f3414227fc555892fe7a diff --git a/metadata/md5-cache/sys-kernel/aufs-sources-4.13.5 b/metadata/md5-cache/sys-kernel/aufs-sources-4.13.5 new file mode 100644 index 000000000000..ec525b6d9474 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/aufs-sources-4.13.5 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the linux kernel tree and aufs4 support +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/ +IUSE=experimental module vanilla symlink build +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 freedist +PDEPEND==sys-fs/aufs-util-4* +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=4.13.5 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.13.tar.xz https://dev.gentoo.org/~jlec/distfiles/aufs-sources-4.13_p20170925.tar.xz !vanilla? ( mirror://gentoo/genpatches-4.13-7.base.tar.xz mirror://gentoo/genpatches-4.13-7.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.13-7.experimental.tar.xz ) ) +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d readme.gentoo-r1 6f03e110529650f57fc7d1fb908b8986 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=e3b07c2a52dbb57c93f91ddc7e6198af diff --git a/metadata/md5-cache/sys-kernel/aufs-sources-4.4.90 b/metadata/md5-cache/sys-kernel/aufs-sources-4.4.90 new file mode 100644 index 000000000000..5f48a9a3e593 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/aufs-sources-4.4.90 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the linux kernel tree and aufs4 support +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/ +IUSE=experimental module vanilla symlink build +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 freedist +PDEPEND==sys-fs/aufs-util-4* +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=4.4.90 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~jlec/distfiles/aufs-sources-4.4_p20170925.tar.xz !vanilla? ( mirror://gentoo/genpatches-4.4-94.base.tar.xz mirror://gentoo/genpatches-4.4-94.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-94.experimental.tar.xz ) ) +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d readme.gentoo-r1 6f03e110529650f57fc7d1fb908b8986 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=75d85d0dededbf29439c5c2e21536cdc diff --git a/metadata/md5-cache/sys-kernel/aufs-sources-4.9.53 b/metadata/md5-cache/sys-kernel/aufs-sources-4.9.53 new file mode 100644 index 000000000000..74938b1bd3d2 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/aufs-sources-4.9.53 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the linux kernel tree and aufs4 support +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/ +IUSE=experimental module vanilla symlink build +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 freedist +PDEPEND==sys-fs/aufs-util-4* +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=4.9.53 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~jlec/distfiles/aufs-sources-4.9_p20170925.tar.xz !vanilla? ( mirror://gentoo/genpatches-4.9-55.base.tar.xz mirror://gentoo/genpatches-4.9-55.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-55.experimental.tar.xz ) ) +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d readme.gentoo-r1 6f03e110529650f57fc7d1fb908b8986 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=00c062b64345439965f650515a2b9d30 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.91 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.91 new file mode 100644 index 000000000000..32e594add8a1 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.91 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 freedist +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=4.4.91 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-95.base.tar.xz mirror://gentoo/genpatches-4.4-95.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-95.experimental.tar.xz ) +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=0d47c5be3cfd0806c98434f02cb8a504 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.54 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.54 new file mode 100644 index 000000000000..54172b9b1b3a --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.54 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.9 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 freedist +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=4.9.54 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-56.base.tar.xz mirror://gentoo/genpatches-4.9-56.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-56.experimental.tar.xz ) +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=6579b107ac00d6f4cb67875c5b71fa68 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.90 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.91 similarity index 92% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.4.90 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.4.91 index 4b6e3f61b297..258c97fc836d 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.90 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.91 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 freedist RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=4.4.90 -SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.4.90.xz mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz +SLOT=4.4.91 +SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.4.91.xz mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 _md5_=7df30779922bb2272dc09a0172b257c0 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.53 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.54 similarity index 92% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.9.53 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.9.54 index fd5d6328bab6..38e7cc681090 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.53 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.54 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 freedist RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=4.9.53 -SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.9.53.xz mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz +SLOT=4.9.54 +SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.9.54.xz mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 _md5_=7df30779922bb2272dc09a0172b257c0 diff --git a/metadata/md5-cache/sys-libs/glibc-2.26-r2 b/metadata/md5-cache/sys-libs/glibc-2.26-r2 index b27908023940..4eba8f5ec221 100644 --- a/metadata/md5-cache/sys-libs/glibc-2.26-r2 +++ b/metadata/md5-cache/sys-libs/glibc-2.26-r2 @@ -11,4 +11,4 @@ RESTRICT=strip SLOT=2.2 SRC_URI=mirror://gnu/glibc/glibc-2.26.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/glibc-2.26-patches-2.tar.bz2 multilib? ( https://dev.gentoo.org/~dilfridge/distfiles/gcc-4.7.3-r1-multilib-bootstrap.tar.bz2 ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 gnuconfig b8ec1c34be4ff9dac7ad4034d277936b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e prefix 7b6fb2fc216b101b5d97d171925a847c systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af toolchain-glibc f5c5d253dc6b28e3711b690fb3486f57 unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a89ae1ea422449281ccdc210ffa78557 +_md5_=fad05fbe9bc3220faad381e7a63d13a1 diff --git a/metadata/md5-cache/sys-libs/glibc-9999 b/metadata/md5-cache/sys-libs/glibc-9999 index 170694723825..9e21abd49e66 100644 --- a/metadata/md5-cache/sys-libs/glibc-9999 +++ b/metadata/md5-cache/sys-libs/glibc-9999 @@ -11,4 +11,4 @@ RESTRICT=strip SLOT=2.2 SRC_URI=https://dev.gentoo.org/~dilfridge/distfiles/glibc-9999-patches-3.tar.bz2 multilib? ( https://dev.gentoo.org/~dilfridge/distfiles/gcc-4.7.3-r1-multilib-bootstrap.tar.bz2 ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 git-r3 52a888802d25387c2c74cb845d1219bc gnuconfig b8ec1c34be4ff9dac7ad4034d277936b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e prefix 7b6fb2fc216b101b5d97d171925a847c systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af toolchain-glibc f5c5d253dc6b28e3711b690fb3486f57 unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=7df7a931aa945b856193e237b6d9fa47 +_md5_=79d8b679e4455a8a23cf4c491abe8e56 diff --git a/metadata/md5-cache/virtual/perl-Module-CoreList-5.201.709.220-r1 b/metadata/md5-cache/virtual/perl-Module-CoreList-5.201.709.220-r1 index 7929375d6b8d..1f55bfc746d9 100644 --- a/metadata/md5-cache/virtual/perl-Module-CoreList-5.201.709.220-r1 +++ b/metadata/md5-cache/virtual/perl-Module-CoreList-5.201.709.220-r1 @@ -1,7 +1,7 @@ DEFINED_PHASES=- DESCRIPTION=Virtual for Module-CoreList EAPI=6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris RDEPEND=|| ( =dev-lang/perl-5.26.1* =dev-lang/perl-5.24.3* ~perl-core/Module-CoreList-5.201.709.220 ) dev-lang/perl:= !perl-core/Module-CoreList-5.201.709.220-r999 SLOT=0 -_md5_=18c694ac2ddac0e3270a461ab59c54d9 +_md5_=1580971acf44fd25d7b6eb519e3b11cf diff --git a/metadata/md5-cache/virtual/perl-Time-HiRes-1.974.100-r1 b/metadata/md5-cache/virtual/perl-Time-HiRes-1.974.100-r1 index 4a87f68e7300..b63da12dc9c0 100644 --- a/metadata/md5-cache/virtual/perl-Time-HiRes-1.974.100-r1 +++ b/metadata/md5-cache/virtual/perl-Time-HiRes-1.974.100-r1 @@ -1,7 +1,7 @@ DEFINED_PHASES=- DESCRIPTION=Virtual for Time-HiRes EAPI=6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris RDEPEND=|| ( =dev-lang/perl-5.26* =dev-lang/perl-5.24.3* ~perl-core/Time-HiRes-1.974.100 ) dev-lang/perl:= !perl-core/Time-HiRes-1.974.100-r999 SLOT=0 -_md5_=233084869b9990f9cb7e0654e3ff93df +_md5_=f5fb8a4eab720318ec24cef9a9ceffdf diff --git a/metadata/md5-cache/www-apps/piwigo-2.8.6-r1 b/metadata/md5-cache/www-apps/piwigo-2.8.6-r1 deleted file mode 100644 index e3c9f0c663a0..000000000000 --- a/metadata/md5-cache/www-apps/piwigo-2.8.6-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install postinst prerm setup -DEPEND=>=app-admin/webapp-config-1.50.15 -DESCRIPTION=a photo gallery software for the web -EAPI=6 -HOMEPAGE=http://piwigo.org/ -IUSE=+exif +gd imagemagick vhosts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=imagemagick? ( virtual/imagemagick-tools ) dev-lang/php[ctype,exif?,gd?,filter,iconv,json,mysqli] >=virtual/mysql-5.0 virtual/httpd-php >=app-admin/webapp-config-1.50.15 -REQUIRED_USE=|| ( gd imagemagick ) -SLOT=2.8.6-r1 -SRC_URI=http://piwigo.org/download/dlcounter.php?code=2.8.6 -> piwigo-2.8.6.zip -_eclasses_=webapp a76ebd3cb5649737496e8238992dd7ca -_md5_=1143bad10136901dcbc76a82f10d0faf diff --git a/metadata/md5-cache/www-apps/piwigo-2.9.0 b/metadata/md5-cache/www-apps/piwigo-2.9.2 similarity index 85% rename from metadata/md5-cache/www-apps/piwigo-2.9.0 rename to metadata/md5-cache/www-apps/piwigo-2.9.2 index 620fe18024ef..94c75a5877b6 100644 --- a/metadata/md5-cache/www-apps/piwigo-2.9.0 +++ b/metadata/md5-cache/www-apps/piwigo-2.9.2 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=imagemagick? ( virtual/imagemagick-tools ) dev-lang/php[ctype,exif?,gd?,filter,iconv,json,mysqli] >=virtual/mysql-5.0 virtual/httpd-php >=app-admin/webapp-config-1.50.15 REQUIRED_USE=|| ( gd imagemagick ) -SLOT=2.9.0 -SRC_URI=http://piwigo.org/download/dlcounter.php?code=2.9.0 -> piwigo-2.9.0.zip +SLOT=2.9.2 +SRC_URI=http://piwigo.org/download/dlcounter.php?code=2.9.2 -> piwigo-2.9.2.zip _eclasses_=webapp a76ebd3cb5649737496e8238992dd7ca _md5_=1143bad10136901dcbc76a82f10d0faf diff --git a/metadata/md5-cache/www-plugins/pdfjs-1.7.225 b/metadata/md5-cache/www-plugins/pdfjs-1.7.225 deleted file mode 100644 index 0f56f0950076..000000000000 --- a/metadata/md5-cache/www-plugins/pdfjs-1.7.225 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=install -DESCRIPTION=A PDF reader in JavaScript -EAPI=6 -HOMEPAGE=http://mozilla.github.io/pdf.js/ -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -SLOT=0 -SRC_URI=https://github.com/mozilla/pdf.js/releases/download/v1.7.225/pdfjs-1.7.225-dist.zip -> pdfjs-1.7.225.zip -_md5_=49a942006e04e679b5de2fd8c56ec815 diff --git a/metadata/md5-cache/www-plugins/pdfjs-1.9.426 b/metadata/md5-cache/www-plugins/pdfjs-1.9.426 new file mode 100644 index 000000000000..b4fe72b0e0a8 --- /dev/null +++ b/metadata/md5-cache/www-plugins/pdfjs-1.9.426 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install +DEPEND=app-arch/unzip +DESCRIPTION=A PDF reader in JavaScript +EAPI=6 +HOMEPAGE=http://mozilla.github.io/pdf.js/ +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +SLOT=0 +SRC_URI=https://github.com/mozilla/pdf.js/releases/download/v1.9.426/pdfjs-1.9.426-dist.zip -> pdfjs-1.9.426.zip +_md5_=37a123bcc5cd5ceda360ab11533114da diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index d300cc627aef..c58a2295242e 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sat, 07 Oct 2017 22:10:09 +0000 +Mon, 09 Oct 2017 06:08:55 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 9e3d3ae03ba1..45dd6f73ec98 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sat Oct 7 22:10:09 UTC 2017 +Mon Oct 9 06:08:55 UTC 2017 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 24c03a5db0e3..48a41eebb1cf 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sat, 07 Oct 2017 22:30:02 +0000 +Mon, 09 Oct 2017 06:30:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 6531cd5b0b33..eeb67203b2f0 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -d9ba115614ecbeecb8fd940faf051359f60a144c 1507412858 2017-10-07T21:47:38+00:00 +4de05370d4db0197bfe384cc2609daba3e77e4d3 1507526489 2017-10-09T05:21:29+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index d12c523d1438..eb1df416c1a9 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1507414201 Sat 07 Oct 2017 10:10:01 PM UTC +1507529101 Mon 09 Oct 2017 06:05:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index d300cc627aef..c58a2295242e 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Sat, 07 Oct 2017 22:10:09 +0000 +Mon, 09 Oct 2017 06:08:55 +0000 diff --git a/net-analyzer/pbnj/metadata.xml b/net-analyzer/pbnj/metadata.xml index 8bb648a0427a..4a2800404400 100644 --- a/net-analyzer/pbnj/metadata.xml +++ b/net-analyzer/pbnj/metadata.xml @@ -1,17 +1,10 @@ - - jabra@ccs.neu.edu - netmon@gentoo.org Gentoo network monitoring and analysis project - - proxy-maint@gentoo.org - Proxy Maintainers - pbnj diff --git a/net-analyzer/ssmping/metadata.xml b/net-analyzer/ssmping/metadata.xml index 6b5a5e467aff..851f9e832157 100644 --- a/net-analyzer/ssmping/metadata.xml +++ b/net-analyzer/ssmping/metadata.xml @@ -1,16 +1,8 @@ - - venaas@uninett.no - Stig Venaas (upstream) - netmon@gentoo.org Gentoo network monitoring and analysis project - - - proxy-maint@gentoo.org - Proxy Maintainers - + diff --git a/net-dns/libidn2/libidn2-2.0.4.ebuild b/net-dns/libidn2/libidn2-2.0.4.ebuild index 9b9d0f770973..7b64e993d3ac 100644 --- a/net-dns/libidn2/libidn2-2.0.4.ebuild +++ b/net-dns/libidn2/libidn2-2.0.4.ebuild @@ -12,7 +12,7 @@ SRC_URI=" LICENSE="GPL-2+ LGPL-3+" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs" RDEPEND=" diff --git a/net-mail/getmail/Manifest b/net-mail/getmail/Manifest index e7830fdcf5f2..535084d30634 100644 --- a/net-mail/getmail/Manifest +++ b/net-mail/getmail/Manifest @@ -1 +1,2 @@ DIST getmail-4.54.0.tar.gz 192000 SHA256 d45657945353c68785b106dd9c5fae6bc2cec8f99fbb202d9dddd4967f483a65 SHA512 006503c6b5f523ad409d99e7e520b4801f1610d47aba70a1a8044380449cbd6a39a6d74ed2b940d317382111adedd3b45d9fa4dc614ce00821937da5186e08d5 WHIRLPOOL 977912bac3f492f2168ed1f892b4973ae70a0daaa21ca3f0622a4156646d9ec1dc9272b18de9ff3b4e4e9e59bbdba779f758f3066775aeea9bcde2bfd3f8a80e +DIST getmail-5.4.tar.gz 194884 SHA256 ba896f7b3fbae4e9e79f7135e6c2b10b281170d2877b91fb2b265c927ed29ac7 SHA512 6557cc46df1d31116f9d28cda1232737c01a568e6ada44edb14cdec30a42160966e1e69f42c46855ce139c3b70d77747324adda8abff3dd772a54a79015b0050 WHIRLPOOL 5dffecaf8dfe96e052368d0df0632f9ef0c98064bcdb40bae2a5e35e37f144cf1cbdda847b627a6b62bd4fb40dcf4465fb4279fcf3d26da81b6641581b4e0ad0 diff --git a/net-mail/getmail/getmail-5.4.ebuild b/net-mail/getmail/getmail-5.4.ebuild new file mode 100644 index 000000000000..a213f82d8658 --- /dev/null +++ b/net-mail/getmail/getmail-5.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="ssl?" + +inherit distutils-r1 + +DESCRIPTION="A POP3 mail retriever with reliable Maildir and mbox delivery" +HOMEPAGE="http://pyropus.ca/software/getmail/" +SRC_URI="http://pyropus.ca/software/getmail/old-versions/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="4" +KEYWORDS="~amd64 ~ppc ~x86 ~ppc-macos ~x86-macos ~x64-solaris" +IUSE="ssl" + +python_prepare_all() { + sed -i -e "s,'getmail-%s' % __version__,'${PF}'," \ + -e "/docs\/COPYING/d" "${S}"/setup.py || die + + distutils-r1_python_prepare_all +} diff --git a/net-mail/offlineimap/Manifest b/net-mail/offlineimap/Manifest index d96bb6d35502..39fa94eaa4a9 100644 --- a/net-mail/offlineimap/Manifest +++ b/net-mail/offlineimap/Manifest @@ -4,3 +4,4 @@ DIST offlineimap-7.0.14.tar.gz 698081 SHA256 19494ecad4d7234ac69480abb7462d0cdcf DIST offlineimap-7.1.0.tar.gz 698600 SHA256 dc998d1032f0e4f944cae0e584a146b70ea732422fc52c909eebe6e8f95b1ae4 SHA512 9e9d5ea2b58dc212c9b69adb701fb4cd1ac1a7c8af90623dcfba3115ee7e1f63cc8569c352bae8f1fe09eb8c9255c39d0bf947dfb5d683ee4b03c0c822cb192d WHIRLPOOL dbf33188c790b43e4b7756a1be6c1c7950bb192e079ba729a8ec159fb3d07a505e5892dc08b2cf8b7b55e2d3dc998f74354339e1c8ed6d3a0e190a5e904bbfdc DIST offlineimap-7.1.1.tar.gz 701776 SHA256 a624f8a77eae664dd458be47c5306c28911d4a1f788ff5641d7bb37e01ecb703 SHA512 a04a8bdbd2b22f8b74681707faa4fcd768a11abd4eeab1e3b6fd7e7851d97c5c7f7db56c7e7e4809a7cb661a357c38941ea320d9bcb0fc509b3f79b223a0c602 WHIRLPOOL 8fe84b4cd82c5e9d8816b4dce6aafae88ad718375927f6aa7cd08fd9b010ea0550a420045ad8f0c376102a0926c1c9ff404802b528d20cf3bf2587ab508f247d DIST offlineimap-7.1.2.tar.gz 708014 SHA256 7203435e34f73e90d1833b72c49a859decf7b5828384a2648ee4b2d1ef3bdc66 SHA512 14bf6c561ad9cde72f71651970b98380139a016b689c75ed150027f8b71d9f1a646f6738e8fd74d6328103b25c17985ac494d9929568f90bb4be37b71a4de22d WHIRLPOOL 961dcdf759266f90a9f1831ef8b2b85457488bbd75fd548d4ba43a8c8be7df3c62a3dd5fea7874c21882cd58a5697ab2faac4f70661f322b48445591634ca9ac +DIST offlineimap-7.1.3.tar.gz 710766 SHA256 02fc106904ddeb3fb64b3e17d3838ed2223e5ade0018900751b1ba8111b45f45 SHA512 bf24be740b0e7607a1b53df7e872b5dd4b4c720601d99bd88a7ac8add078e5512b62b18c12177e28a00f510aaa8a48e25be82decfdd7ae2da76b671d44071e4a WHIRLPOOL 5a676d6e8ccf887c4a8d903ae969144d42d6652ed85327fcc2fc27c260f41bbdbd03d4d0e8dbc91b20908d1ae409d6d7d0aa847a6eed037237915c5ca2acb3a9 diff --git a/net-mail/offlineimap/offlineimap-7.1.3.ebuild b/net-mail/offlineimap/offlineimap-7.1.3.ebuild new file mode 100644 index 000000000000..3258d1bf16b5 --- /dev/null +++ b/net-mail/offlineimap/offlineimap-7.1.3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +# Normally you need only one version of this. +DISTUTILS_SINGLE_IMPL=1 +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="threads,sqlite,ssl?" + +inherit distutils-r1 + +DESCRIPTION="Powerful IMAP/Maildir synchronization and reader support" +HOMEPAGE="http://offlineimap.org" +SRC_URI="https://github.com/OfflineIMAP/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="doc ssl" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +DEPEND="doc? ( app-text/asciidoc )" + +# see http://pogma.com/2009/09/09/snow-leopard-and-offlineimap/ and bug 284925 +PATCHES=( + "${FILESDIR}/${PN}-7.0.3-darwin10.patch" +) + +src_compile() { + distutils-r1_src_compile + use doc && emake -C docs man +} + +src_install() { + distutils-r1_src_install + dodoc offlineimap.conf offlineimap.conf.minimal + use doc && doman docs/{offlineimap.1,offlineimapui.7} +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "You will need to configure offlineimap by creating ~/.offlineimaprc" + elog "Sample configurations are in /usr/share/doc/${PF}/" + elog "" + elog "If you connect via ssl/tls and don't use CA cert checking, it will" + elog "display the server's cert fingerprint and require you to add it to the" + elog "configuration file to be sure it connects to the same server every" + elog "time. This serves to help fixing CVE-2010-4532 (offlineimap doesn't" + elog "check SSL server certificate) in cases where you have no CA cert." + fi +} diff --git a/net-misc/ipsc/metadata.xml b/net-misc/ipsc/metadata.xml index c2ecba5c11f7..c16fe4dae016 100644 --- a/net-misc/ipsc/metadata.xml +++ b/net-misc/ipsc/metadata.xml @@ -6,5 +6,4 @@ Tony Vroon This LINX engineer favourite is actively maintained. - diff --git a/profiles/arch/hppa/package.use.stable.mask b/profiles/arch/hppa/package.use.stable.mask index 9cd4e53e0f49..9697f8c717cf 100644 --- a/profiles/arch/hppa/package.use.stable.mask +++ b/profiles/arch/hppa/package.use.stable.mask @@ -17,6 +17,15 @@ #--- END OF EXAMPLES --- +# Andreas Sturmlechner (07 Oct 2017) +# media-gfx/graphite2 security stabilisation timeout. +# bug #621724 +app-doc/doxygen doc latex +app-text/texlive-core xetex +dev-python/sphinx latex +dev-util/cmocka doc +media-libs/harfbuzz graphite + # Andreas Sturmlechner (30 Sep 2017) # Mask pdf support so net-print/cups-filters stabilisation # can go ahead (bug 627392) diff --git a/profiles/package.mask b/profiles/package.mask index f6b097e00089..8e46d08ee12f 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -29,6 +29,11 @@ #--- END OF EXAMPLES --- +# Aaron Bauman (8 October 2017) +# severely vulnerable and unmaintained sources. +# Masked for removal in 30 days. Bug #627924 +sys-kernel/tuxonice-sources + # Michał Górny (05 Oct 2017) # (on behalf of QA) # Rogue version bumps that reintroduce QA violations that were fixed @@ -542,6 +547,7 @@ net-wireless/cpyrit-cuda # Needs full revdep testing. >=dev-python/qscintilla-python-2.10 >=x11-libs/qscintilla-2.10 +=app-editors/juffed-0.10_p20160323 # Mart Raudsepp (16 Feb 2017) # Old gstreamer 0.10 version, which is security vulnerable. @@ -610,17 +616,6 @@ x11-libs/gtk+:1 # Reverse dependencies need testing, wrt bug #580760 >=net-libs/libtorrent-rasterbar-1.1.1 -# Robin H. Johnson (18 Nov 2016) -# Depends on slotted lua, -# odd revisions are slotted lua, -# even revisions are unslotted lua -=dev-db/redis-3.2.5-r1 -=dev-db/redis-3.2.5-r5 -=dev-db/redis-3.2.6-r1 -=dev-db/redis-3.2.6-r5 -=dev-db/redis-3.2.8-r1 -=dev-db/redis-3.2.8-r3 - # Michał Górny (17 Nov 2016) # New version masked for testing. It supports source-window buffer size # over 2G but it 'currently performs 3-5% slower and has 1-2% worse diff --git a/profiles/targets/desktop/plasma/package.use b/profiles/targets/desktop/plasma/package.use index 05e33501bcf3..749d8eb0b93c 100644 --- a/profiles/targets/desktop/plasma/package.use +++ b/profiles/targets/desktop/plasma/package.use @@ -9,12 +9,13 @@ app-arch/unzip natspec # Required by dev-qt/qtcore dev-libs/libpcre pcre16 +dev-libs/libpcre2 pcre16 # Required by kde-frameworks/kcoreaddons dev-qt/qtcore:5 icu # Required by kde-frameworks/kwayland -dev-qt/qtgui:5 egl +dev-qt/qtgui:5 egl libinput # Required by kde-apps/okteta dev-qt/qtscript:5 scripttools diff --git a/profiles/use.local.desc b/profiles/use.local.desc index c0b27f701320..a7879148870a 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1250,7 +1250,6 @@ app-text/zathura:synctex - Use libsynctex to get latex codeline from pdf app-text/zathura-meta:cb - Install plug-in for ComicBook support app-vim/gentoo-syntax:ignore-glep31 - Remove GLEP 31 (UTF-8 file encodings) settings app-vim/vim-latex:html - Install HTML documentation -app-vim/vim-latex:python - Enable python support which can help speed up some functionality app-vim/youcompleteme:clang - Enable semantic support for C-family languages using sys-devel/clang dev-ada/asis:gnat_2016 - Compile with dev-lang/gnat-gpl-2016 dev-ada/asis:gnat_2017 - Compile with dev-lang/gnat-gpl-2017 @@ -2618,6 +2617,7 @@ dev-qt/linguist:exceptions - Add support for exceptions - like catching them ins dev-qt/linguist-tools:qml - Enable QML support in lupdate dev-qt/pixeltool:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by upstream) dev-qt/qdbusviewer:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by upstream) +dev-qt/qdoc:qml - Enable QML/JS parsing support dev-qt/qt-creator:android - Build plugin for Android devices dev-qt/qt-creator:autotools - Enable autotools project manager plugin dev-qt/qt-creator:baremetal - Build plugin for bare metal devices @@ -2688,6 +2688,8 @@ dev-qt/qtdemo:opengl - Build QtOpenGL examples and demos dev-qt/qtdemo:phonon - Build Phonon examples and demos dev-qt/qtdemo:webkit - Build QtWebKit examples and demos dev-qt/qtdemo:xmlpatterns - Build QtXmlPatterns examples and demos +dev-qt/qtdiag:network - Report network information +dev-qt/qtdiag:widgets - Report widget style information dev-qt/qtgui:egl - Enable EGL integration dev-qt/qtgui:eglfs - Build the EGL Full Screen/Single Surface platform plugin dev-qt/qtgui:evdev - Enable support for input devices via evdev @@ -2721,6 +2723,7 @@ dev-qt/qtpositioning:geoclue - Use enhanced location information from app-misc/g dev-qt/qtpositioning:qml - Build QML bindings dev-qt/qtprintsupport:gles2 - Use GLES 2.0 or later instead of full OpenGL dev-qt/qtquickcontrols:widgets - Enable QtWidgets support +dev-qt/qtquickcontrols2:widgets - Enable QtWidgets support dev-qt/qtscript:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by upstream) dev-qt/qtscript:scripttools - Build the QtScriptTools module (requires QtWidgets) dev-qt/qtsensors:qml - Build QML bindings @@ -2729,6 +2732,7 @@ dev-qt/qtsql:qt3support - Enable the Qt3Support libraries for Qt4 dev-qt/qtsvg:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by upstream) dev-qt/qttest:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by upstream) dev-qt/qtvirtualkeyboard:handwriting - Adds handwriting recognition integration support +dev-qt/qtwayland:libinput - Enable support for input devices via dev-libs/libinput dev-qt/qtwayland:qml - Build QML/QtQuick bindings dev-qt/qtwayland:wayland-compositor - Build Qt compositor for wayland dev-qt/qtwebchannel:qml - Build QML/QtQuick bindings and imports @@ -2739,6 +2743,7 @@ dev-qt/qtwebengine:system-icu - Use the system-wide dev-libs/icu instead of bund dev-qt/qtwebengine:widgets - Enable QtWidgets support dev-qt/qtwebkit:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by upstream) dev-qt/qtwebkit:geolocation - Enable physical position determination via dev-qt/qtpositioning +dev-qt/qtwebkit:gles2 - Use GLES 2.0 or later instead of full OpenGL dev-qt/qtwebkit:gstreamer - Enable HTML5 audio/video support via media-libs/gstreamer using SLOT 1.0 dev-qt/qtwebkit:gstreamer010 - Enable HTML5 audio/video support via media-libs/gstreamer using SLOT 0.10 dev-qt/qtwebkit:multimedia - Enable HTML5 audio/video support via dev-qt/qtmultimedia @@ -4457,6 +4462,7 @@ media-sound/bluez-alsa:hcitop - Enable top-like monitoring tool for HCI media-sound/cantata:cdio - Use dev-libs/libcdio-paranoia for CD support (instead of cdparanoia) media-sound/cantata:http-server - Enable internal HTTP server to play non-MPD files media-sound/cantata:replaygain - Enable ReplayGain support, for relative volume adjustments +media-sound/cantata:streaming - Enable playback of MPD HTTP streams using LibVLC (media-video/vlc) media-sound/clementine:amazoncloud - Enable Amazon cloud drive support media-sound/clementine:box - Enable filesharing via Box.com media-sound/clementine:dropbox - Enable Dropbox support @@ -4828,7 +4834,6 @@ media-video/dvdrip:fping - Enables fping support for cluster rendering media-video/dvdrip:subtitles - Enables support for subtitle ripping media-video/ffdiaporama:openclipart - Support openslipart database media-video/ffdiaporama:texturemate - Install extra backgrounds -media-video/ffmpeg:aacplus - AAC+ encoding via media-libs/libaacplus. media-video/ffmpeg:amr - Enables Adaptive Multi-Rate Audio support media-video/ffmpeg:amrenc - Enables Adaptive Multi-Rate Audio encoding support with media-libs/vo-amrwbenc. media-video/ffmpeg:armv5te - Enables optimizations for armv5te processors. @@ -4843,7 +4848,6 @@ media-video/ffmpeg:chromaprint - Enables audio fingerprinting support with media media-video/ffmpeg:chromium - Builds libffmpeg.so to enable media playback in Chromium-based browsers like Opera and Vivaldi. media-video/ffmpeg:cpudetection - Enables runtime CPU detection (useful for bindist, compatibility on other CPUs) media-video/ffmpeg:ebur128 - Enables EBU R128 loudness normalization filter via media-libs/libebur128 -media-video/ffmpeg:faac - Use external faac library for AAC encoding media-video/ffmpeg:fdk - Use external fdk-aac library for AAC encoding media-video/ffmpeg:flite - Adds a text-to-speech filter based on app-accessibility/flite. media-video/ffmpeg:frei0r - Enable frei0r wrapping in libavfilter @@ -4869,7 +4873,6 @@ media-video/ffmpeg:openssl - Enables dev-libs/openssl support. Adds support for media-video/ffmpeg:opus - Adds (decoding) support for the Opus codec via media-libs/opus. media-video/ffmpeg:pic - Force shared libraries to be built as PIC (this is slower) media-video/ffmpeg:postproc - Build and install libpostproc. -media-video/ffmpeg:quvi - Adds support for playing media from Internet services using the quvi project. media-video/ffmpeg:rubberband - Adds time-stretching and pitch-shifting audio filter based on media-libs/rubberband. media-video/ffmpeg:schroedinger - Enable Dirac video support (an advanced royalty-free video compression format) via libschroedinger (high-speed implementation in C of the Dirac codec). media-video/ffmpeg:snappy - Enable app-arch/snappy support. Required for e.g. Vidvox Hap encoder. diff --git a/sci-mathematics/octave/files/octave-4.2.0-fix-qscintilla-detection.patch b/sci-mathematics/octave/files/octave-4.2.0-fix-qscintilla-detection.patch index 9d18b6a6d7ce..ea714ecbfbbf 100644 --- a/sci-mathematics/octave/files/octave-4.2.0-fix-qscintilla-detection.patch +++ b/sci-mathematics/octave/files/octave-4.2.0-fix-qscintilla-detection.patch @@ -8,7 +8,7 @@ as its Qt4 variant. 5) QT_MODULES="Qt5Core Qt5Gui Qt5Network Qt5OpenGL Qt5PrintSupport" - octave_qscintilla_libnames="qscintilla2-qt5 qt5scintilla2" -+ octave_qscintilla_libnames=qscintilla2 ++ octave_qscintilla_libnames="qscintilla2_qt5 qscintilla2" ;; *) AC_MSG_ERROR([Unrecognized Qt version $qt_version]) diff --git a/sci-mathematics/octave/octave-4.2.1.ebuild b/sci-mathematics/octave/octave-4.2.1.ebuild index 00a2d44ce48e..e7ecf516cc42 100644 --- a/sci-mathematics/octave/octave-4.2.1.ebuild +++ b/sci-mathematics/octave/octave-4.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools flag-o-matic fortran-2 java-pkg-opt-2 pax-utils toolchain-funcs +inherit autotools flag-o-matic fortran-2 java-pkg-opt-2 pax-utils toolchain-funcs xdg-utils DESCRIPTION="High-level interactive language for numerical computations" LICENSE="GPL-3" @@ -175,3 +175,13 @@ src_install() { echo "LDPATH=${EPREFIX}/usr/$(get_libdir)/${PN}/${PV}" > 99octave || die doenvd 99octave } + +pkg_postinst() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +} diff --git a/sys-apps/systemd/Manifest b/sys-apps/systemd/Manifest index e4684c7c942f..0bfb021bca28 100644 --- a/sys-apps/systemd/Manifest +++ b/sys-apps/systemd/Manifest @@ -1,3 +1,4 @@ DIST systemd-233-man.tar.gz 31386 SHA256 825e62eb82c4e23997061fc8f56f7ec9bb1e6ac1111d279c76c926cc2bfbf1dc SHA512 cc5215d3590ffc3c9203a64c14d6adeb0148c421c1396b8c1e43dcb58763b687ce99bdee327dd8a00abab7198171e73b22109a3f2032e4cec6adf2dcc85acf40 WHIRLPOOL ff1f36beff377f675047271df38503e8b71d615ea73c5fdfebf465edaf1fe29b4f89e3194d65cdf84eec9b7c3156de597627fdaffa4b86018520aaa127a7a159 DIST systemd-233.tar.gz 4660737 SHA256 8b3e99da3d4164b66581830a7f2436c0c8fe697b5fbdc3927bdb960646be0083 SHA512 5ad5329ea116d973cf67096f7e7ad28e9ea0905696e9451291f1d25e5064f4a9bfcfae87e912996c6a38397e9f4a148d4ccecfa9b70f7ecdf04deadb61784c8e WHIRLPOOL ce19f6a546b8f899cfa952e49d47f063fd29186be4a53391bc30ea2c487eb2c140a74ad843a1dc499bb61bba3e9ca055613852291e38b85af5d79c59409dc176 DIST systemd-234.tar.gz 4800186 SHA256 da3e69d10aa1c983d33833372ad4929037b411ac421fb085c8cee79ae1d80b6a SHA512 762336a7d96c6583cf71cad62efce95a0ed93cd0a0d7251f128d10dba8200c0c8df0e5a7d168179ababa5b221295a231e73b7e7ea2697cb3fb5c1b33538efa68 WHIRLPOOL 9ff9f25ce82514db969a427eee51c0483b2bcaaa611f93c1fc17c356ea25eee712217708c54101ecaafd835cd8ac988b16e8ad411b48541a32442b9a0d148f07 +DIST systemd-235.tar.gz 6586406 SHA256 25811f96f5a027bf2a4c9383495cf5b623e385d84da31e473cf375932b3e9c52 SHA512 243f2eb5340fa37dd1286eaa63e83387bda9e03953af266cd6196a37535a13491482caf14c6ab10608bba4ed23b6c41923608e52017e0c26988ed72ddd2b9993 WHIRLPOOL 05e50b31f7b3b1cd756abd1580dddae0e114953857564133784fc43b9ecd0e203ee534aaf76531ca7af5c43b03b9b73c6cbbbb1caf5afb17502555cc52fe06cd diff --git a/sys-apps/systemd/files/235-0001-test-skip-hwdb-and-sysv-generator-if-the-features-ar.patch b/sys-apps/systemd/files/235-0001-test-skip-hwdb-and-sysv-generator-if-the-features-ar.patch new file mode 100644 index 000000000000..bd2b3364369a --- /dev/null +++ b/sys-apps/systemd/files/235-0001-test-skip-hwdb-and-sysv-generator-if-the-features-ar.patch @@ -0,0 +1,44 @@ +From c013a410d0ec5f419ce8d53df19946795849591b Mon Sep 17 00:00:00 2001 +From: Mike Gilbert +Date: Sun, 8 Oct 2017 09:47:05 -0400 +Subject: [PATCH] test: skip hwdb and sysv-generator if the features are + disabled + +--- + test/meson.build | 16 ++++++++++------ + 1 file changed, 10 insertions(+), 6 deletions(-) + +diff --git a/test/meson.build b/test/meson.build +index 995a97177..c2df7ec22 100644 +--- a/test/meson.build ++++ b/test/meson.build +@@ -163,9 +163,11 @@ endif + + ############################################################ + +-sysv_generator_test_py = find_program('sysv-generator-test.py') +-test('sysv-generator-test', +- sysv_generator_test_py) ++if conf.get('HAVE_SYSV_COMPAT') == 1 ++ sysv_generator_test_py = find_program('sysv-generator-test.py') ++ test('sysv-generator-test', ++ sysv_generator_test_py) ++endif + + ############################################################ + +@@ -181,6 +183,8 @@ udev_test_pl = find_program('udev-test.pl') + test('udev-test', + udev_test_pl) + +-hwdb_test_sh = find_program('hwdb-test.sh') +-test('hwdb-test', +- hwdb_test_sh) ++if conf.get('ENABLE_HWDB') == 1 ++ hwdb_test_sh = find_program('hwdb-test.sh') ++ test('hwdb-test', ++ hwdb_test_sh) ++endif +-- +2.14.2 + diff --git a/sys-apps/systemd/files/235-0002-networkd-Don-t-stop-networkd-if-CONFIG_FIB_RULES-n-i.patch b/sys-apps/systemd/files/235-0002-networkd-Don-t-stop-networkd-if-CONFIG_FIB_RULES-n-i.patch new file mode 100644 index 000000000000..99e7342ffb23 --- /dev/null +++ b/sys-apps/systemd/files/235-0002-networkd-Don-t-stop-networkd-if-CONFIG_FIB_RULES-n-i.patch @@ -0,0 +1,47 @@ +From 3bd3ac67477ea319cc169dbd1c377912cf8ff198 Mon Sep 17 00:00:00 2001 +From: Susant Sahani +Date: Sun, 8 Oct 2017 21:51:35 +0530 +Subject: [PATCH] networkd: Don't stop networkd if CONFIG_FIB_RULES=n in + kernel. + +if FIB Rules in not supported by the kernel then networkd fails to +start as it retuns error=-EOPNOTSUPP. +In this case just ignore and let start networkd. + +```` +sendto(5, {{len=28, type=RTM_GETRULE, flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_DUMP, seq=8, pid=0}, {family=AF_UNSPEC, dst_len=0, src_len=0, tos=0, table=RT_TABLE_UNSPEC, action=FR_ACT_TO_TBL, flags=0}}, 28, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 16) = 28 +recvmsg(5, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=128->12, msg_iov=[{iov_base=NULL, iov_len=0}], msg_iovlen=1, msg_control=[{cmsg_len=20, cmsg_level=SOL_NETLINK, cmsg_type=0x3}], msg_controllen=24, msg_flags=MSG_TRUNC}, MSG_PEEK|MSG_TRUNC) = 48 +recvmsg(5, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=128->12, msg_iov=[{iov_base={{len=48, type=NLMSG_ERROR, flags=0, seq=8, pid=8856}, {error=-EOPNOTSUPP, msg={{len=28, type=RTM_GETRULE, flags=NLM_F_REQUEST|NLM_F_ACK|NLM_F_DUMP, seq=8, pid=0}, {family=AF_UNSPEC, dst_len=0, src_len=0, tos=0, table=RT_TABLE_UNSPEC, action=FR_ACT_TO_TBL, flags=0}}}}, iov_len=7416}], msg_iovlen=1, msg_control=[{cmsg_len=20, cmsg_level=SOL_NETLINK, cmsg_type=0x3}], msg_controllen=24, msg_flags=0}, MSG_TRUNC) = 48 +``` + +``` +Oct 08 10:22:24 naomi systemd[1]: Starting Network Service... +Oct 08 10:22:24 naomi systemd-networkd[983]: Could not enumerate rules: Operation not supported +Oct 08 10:22:24 naomi systemd[1]: systemd-networkd.service: Main process exited, code=exited, status=1/FAILURE +``` + +Fixes #7027 +--- + src/network/networkd.c | 6 ++---- + 1 file changed, 2 insertions(+), 4 deletions(-) + +diff --git a/src/network/networkd.c b/src/network/networkd.c +index d5ba6893e..7f7223c0c 100644 +--- a/src/network/networkd.c ++++ b/src/network/networkd.c +@@ -133,10 +133,8 @@ int main(int argc, char *argv[]) { + } + + r = manager_rtnl_enumerate_rules(m); +- if (r < 0) { +- log_error_errno(r, "Could not enumerate rules: %m"); +- goto out; +- } ++ if (r < 0) ++ log_warning_errno(r, "Could not enumerate rules: %m"); + + r = manager_start(m); + if (r < 0) { +-- +2.14.2 + diff --git a/sys-apps/systemd/files/234-0001-path-lookup-look-for-generators-in-usr-lib-systemd-s.patch b/sys-apps/systemd/files/generator-path.patch similarity index 100% rename from sys-apps/systemd/files/234-0001-path-lookup-look-for-generators-in-usr-lib-systemd-s.patch rename to sys-apps/systemd/files/generator-path.patch diff --git a/sys-apps/systemd/systemd-234-r4.ebuild b/sys-apps/systemd/systemd-234-r4.ebuild index 0085a0578fa0..a4c94bd3a96c 100644 --- a/sys-apps/systemd/systemd-234-r4.ebuild +++ b/sys-apps/systemd/systemd-234-r4.ebuild @@ -148,7 +148,6 @@ src_unpack() { src_prepare() { local PATCHES=( - "${FILESDIR}"/234-0001-path-lookup-look-for-generators-in-usr-lib-systemd-s.patch "${FILESDIR}"/234-0002-cryptsetup-fix-infinite-timeout-6486.patch "${FILESDIR}"/234-0003-resolved-make-sure-idn2-conversions-are-roundtrippab.patch "${FILESDIR}"/234-0004-logind-make-sure-we-don-t-process-the-same-method-ca.patch @@ -160,6 +159,7 @@ src_prepare() { "${FILESDIR}/228-noclean-tmp.patch" "${FILESDIR}/233-systemd-user-pam.patch" "${FILESDIR}/234-uucp-group.patch" + "${FILESDIR}/generator-path.patch" ) fi diff --git a/sys-apps/systemd/systemd-233-r3.ebuild b/sys-apps/systemd/systemd-235.ebuild similarity index 60% rename from sys-apps/systemd/systemd-233-r3.ebuild rename to sys-apps/systemd/systemd-235.ebuild index a3b673046cd8..68265aa94019 100644 --- a/sys-apps/systemd/systemd-233-r3.ebuild +++ b/sys-apps/systemd/systemd-235.ebuild @@ -7,22 +7,21 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/systemd/systemd.git" inherit git-r3 else - SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> ${P}.tar.gz - !doc? ( https://dev.gentoo.org/~floppym/dist/${P}-man.tar.gz )" - KEYWORDS="alpha amd64 arm ~arm64 ~ia64 ppc ppc64 sparc x86" + SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" fi PYTHON_COMPAT=( python{3_4,3_5,3_6} ) -inherit autotools bash-completion-r1 linux-info multilib-minimal pam python-any-r1 systemd toolchain-funcs udev user +inherit bash-completion-r1 linux-info meson multilib-minimal ninja-utils pam python-any-r1 systemd toolchain-funcs udev user DESCRIPTION="System and service manager for Linux" HOMEPAGE="https://www.freedesktop.org/wiki/Software/systemd" LICENSE="GPL-2 LGPL-2.1 MIT public-domain" SLOT="0/2" -IUSE="acl apparmor audit build cryptsetup curl doc elfutils +gcrypt gnuefi http - idn importd +kmod +lz4 lzma nat pam policykit +IUSE="acl apparmor audit build cryptsetup curl elfutils +gcrypt gnuefi http + idn importd +kmod libidn2 +lz4 lzma nat pam policykit qrcode +seccomp selinux ssl sysv-utils test vanilla xkb" REQUIRED_USE="importd? ( curl gcrypt lzma )" @@ -43,7 +42,10 @@ COMMON_DEPEND=">=sys-apps/util-linux-2.27.1:0=[${MULTILIB_USEDEP}] >=net-libs/libmicrohttpd-0.9.33:0= ssl? ( >=net-libs/gnutls-3.1.4:0= ) ) - idn? ( net-dns/libidn:0= ) + idn? ( + libidn2? ( net-dns/libidn2 ) + !libidn2? ( net-dns/libidn ) + ) importd? ( app-arch/bzip2:0= sys-libs/zlib:0= @@ -98,13 +100,9 @@ DEPEND="${COMMON_DEPEND} app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets dev-libs/libxslt:0 - doc? ( $(python_gen_any_dep 'dev-python/lxml[${PYTHON_USEDEP}]') ) + $(python_gen_any_dep 'dev-python/lxml[${PYTHON_USEDEP}]') " -python_check_deps() { - has_version --host-root "dev-python/lxml[${PYTHON_USEDEP}]" -} - pkg_pretend() { if [[ ${MERGE_TYPE} != buildonly ]]; then local CONFIG_CHECK="~AUTOFS4_FS ~BLK_DEV_BSG ~CGROUPS @@ -149,13 +147,9 @@ src_unpack() { } src_prepare() { - # Bug 463376 - sed -i -e 's/GROUP="dialout"/GROUP="uucp"/' rules/*.rules || die - local PATCHES=( - "${FILESDIR}/233-0001-Avoid-strict-DM-interface-version-dependencies-5519.patch" - "${FILESDIR}/233-CVE-2017-9445.patch" - "${FILESDIR}/233-format-warnings.patch" + "${FILESDIR}"/235-0001-test-skip-hwdb-and-sysv-generator-if-the-features-ar.patch + "${FILESDIR}"/235-0002-networkd-Don-t-stop-networkd-if-CONFIG_FIB_RULES-n-i.patch ) if ! use vanilla; then @@ -163,189 +157,159 @@ src_prepare() { "${FILESDIR}/218-Dont-enable-audit-by-default.patch" "${FILESDIR}/228-noclean-tmp.patch" "${FILESDIR}/233-systemd-user-pam.patch" + "${FILESDIR}/234-uucp-group.patch" + "${FILESDIR}/generator-path.patch" ) fi [[ -d "${WORKDIR}"/patches ]] && PATCHES+=( "${WORKDIR}"/patches ) default - - eautoreconf } src_configure() { - # Keep using the one where the rules were installed. - MY_UDEVDIR=$(get_udevdir) - # Fix systems broken by bug #509454. - [[ ${MY_UDEVDIR} ]] || MY_UDEVDIR=/lib/udev - # Prevent conflicts with i686 cross toolchain, bug 559726 tc-export AR CC NM OBJCOPY RANLIB - use doc && python_setup + python_setup multilib-minimal_src_configure } +meson_use() { + usex "$1" true false +} + +meson_multilib() { + if multilib_is_native_abi; then + echo true + else + echo false + fi +} + +meson_multilib_native_use() { + if multilib_is_native_abi && use "$1"; then + echo true + else + echo false + fi +} + multilib_src_configure() { - local myeconfargs=( - # disable -flto since it is an optimization flag - # and makes distcc less effective - cc_cv_CFLAGS__flto=no - # disable -fuse-ld=gold since Gentoo supports explicit linker - # choice and forcing gold is undesired, #539998 - # ld.gold may collide with user's LDFLAGS, #545168 - # ld.gold breaks sparc, #573874 - cc_cv_LDFLAGS__Wl__fuse_ld_gold=no - - # Workaround for gcc-4.7, bug 554454. - cc_cv_CFLAGS__Werror_shadow=no - - # Workaround for bug 516346 - --enable-dependency-tracking - - --disable-maintainer-mode - --localstatedir=/var - --with-pamlibdir=$(getpam_mod_dir) + local myconf=( + --localstatedir="${EPREFIX}/var" + -Dpamlibdir="$(getpam_mod_dir)" # avoid bash-completion dep - --with-bashcompletiondir="$(get_bashcompdir)" + -Dbashcompletiondir="$(get_bashcompdir)" # make sure we get /bin:/sbin in $PATH - --enable-split-usr - # For testing. - --with-rootprefix="${ROOTPREFIX-/usr}" - --with-rootlibdir="${ROOTPREFIX-/usr}/$(get_libdir)" - # disable sysv compatibility - --with-sysvinit-path= - --with-sysvrcnd-path= + -Dsplit-usr=true + -Drootprefix="${EPREFIX}${ROOTPREFIX}" + -Dsysvinit-path= + -Dsysvrcnd-path= # no deps - --enable-efi - --enable-ima - + -Defi=$(meson_multilib) + -Dima=true # Optional components/dependencies - $(multilib_native_use_enable acl) - $(multilib_native_use_enable apparmor) - $(multilib_native_use_enable audit) - $(multilib_native_use_enable cryptsetup libcryptsetup) - $(multilib_native_use_enable curl libcurl) - $(multilib_native_use_enable elfutils) - $(use_enable gcrypt) - $(multilib_native_use_enable gnuefi) - --with-efi-libdir="/usr/$(get_libdir)" - $(multilib_native_use_enable http microhttpd) - $(usex http $(multilib_native_use_enable ssl gnutls) --disable-gnutls) - $(multilib_native_use_enable idn libidn) - $(multilib_native_use_enable importd) - $(multilib_native_use_enable importd bzip2) - $(multilib_native_use_enable importd zlib) - $(multilib_native_use_enable kmod) - $(use_enable lz4) - $(use_enable lzma xz) - $(multilib_native_use_enable nat libiptc) - $(use_enable pam) - $(multilib_native_use_enable policykit polkit) - $(multilib_native_use_enable qrcode qrencode) - $(multilib_native_use_enable seccomp) - $(multilib_native_use_enable selinux) - $(multilib_native_use_enable test tests) - $(multilib_native_use_enable test dbus) - $(multilib_native_use_enable xkb xkbcommon) - $(multilib_native_use_with doc python) - + -Dacl=$(meson_multilib_native_use acl) + -Dapparmor=$(meson_multilib_native_use apparmor) + -Daudit=$(meson_multilib_native_use audit) + -Dlibcryptsetup=$(meson_multilib_native_use cryptsetup) + -Dlibcurl=$(meson_multilib_native_use curl) + -Delfutils=$(meson_multilib_native_use elfutils) + -Dgcrypt=$(meson_use gcrypt) + -Dgnu-efi=$(meson_multilib_native_use gnuefi) + -Defi-libdir="/usr/$(get_libdir)" + -Dmicrohttpd=$(meson_multilib_native_use http) + $(usex http -Dgnutls=$(meson_multilib_native_use ssl) -Dgnutls=false) + -Dimportd=$(meson_multilib_native_use importd) + -Dbzip2=$(meson_multilib_native_use importd) + -Dzlib=$(meson_multilib_native_use importd) + -Dkmod=$(meson_multilib_native_use kmod) + -Dlz4=$(meson_use lz4) + -Dxz=$(meson_use lzma) + -Dlibiptc=$(meson_multilib_native_use nat) + -Dpam=$(meson_use pam) + -Dpolkit=$(meson_multilib_native_use policykit) + -Dqrencode=$(meson_multilib_native_use qrcode) + -Dseccomp=$(meson_multilib_native_use seccomp) + -Dselinux=$(meson_multilib_native_use selinux) + #-Dtests=$(meson_multilib_native_use test) + -Ddbus=$(meson_multilib_native_use test) + -Dxkbcommon=$(meson_multilib_native_use xkb) # hardcode a few paths to spare some deps - KILL=/bin/kill - QUOTAON=/usr/sbin/quotaon - QUOTACHECK=/usr/sbin/quotacheck - - # TODO: we may need to restrict this to gcc - EFI_CC="$(tc-getCC)" - - # dbus paths - --with-dbuspolicydir="${EPREFIX}/etc/dbus-1/system.d" - --with-dbussessionservicedir="${EPREFIX}/usr/share/dbus-1/services" - --with-dbussystemservicedir="${EPREFIX}/usr/share/dbus-1/system-services" - - --with-ntp-servers="0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org" - + -Dpath-kill=/bin/kill + -Dntp-servers="0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org" # Breaks screen, tmux, etc. - --without-kill-user-processes + -Ddefault-kill-user-processes=false + + # multilib options + -Dbacklight=$(meson_multilib) + -Dbinfmt=$(meson_multilib) + -Dcoredump=$(meson_multilib) + -Denvironment-d=$(meson_multilib) + -Dfirstboot=$(meson_multilib) + -Dhibernate=$(meson_multilib) + -Dhostnamed=$(meson_multilib) + -Dhwdb=$(meson_multilib) + -Dldconfig=$(meson_multilib) + -Dlocaled=$(meson_multilib) + -Dman=$(meson_multilib) + -Dnetworkd=$(meson_multilib) + -Dquotacheck=$(meson_multilib) + -Drandomseed=$(meson_multilib) + -Drfkill=$(meson_multilib) + -Dsysusers=$(meson_multilib) + -Dtimedated=$(meson_multilib) + -Dtimesyncd=$(meson_multilib) + -Dtmpfiles=$(meson_multilib) + -Dvconsole=$(meson_multilib) ) - # Work around bug 463846. - tc-export CC + if multilib_is_native_abi && use idn; then + myconf+=( + -Dlibidn2=$(usex libidn2 true false) + -Dlibidn=$(usex libidn2 false true) + ) + else + myconf+=( + -Dlibidn2=false + -Dlibidn=false + ) + fi - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" + meson_src_configure "${myconf[@]}" } multilib_src_compile() { - local mymakeopts=( - udevlibexecdir="${MY_UDEVDIR}" - ) - - if multilib_is_native_abi; then - emake "${mymakeopts[@]}" - else - emake built-sources - local targets=( - '$(rootlib_LTLIBRARIES)' - '$(lib_LTLIBRARIES)' - '$(pamlib_LTLIBRARIES)' - '$(pkgconfiglib_DATA)' - ) - echo "gentoo: ${targets[*]}" | emake "${mymakeopts[@]}" -f Makefile -f - gentoo - fi + eninja } multilib_src_test() { - multilib_is_native_abi || return 0 - default + eninja test } multilib_src_install() { - local mymakeopts=( - # automake fails with parallel libtool relinking - # https://bugs.gentoo.org/show_bug.cgi?id=491398 - -j1 - - udevlibexecdir="${MY_UDEVDIR}" - dist_udevhwdb_DATA= - DESTDIR="${D}" - ) - - if multilib_is_native_abi; then - emake "${mymakeopts[@]}" install - else - mymakeopts+=( - install-rootlibLTLIBRARIES - install-libLTLIBRARIES - install-pamlibLTLIBRARIES - install-pkgconfiglibDATA - install-includeHEADERS - install-pkgincludeHEADERS - ) - - emake "${mymakeopts[@]}" - fi + DESTDIR="${D}" eninja install } multilib_src_install_all() { - prune_libtool_files --modules + # meson doesn't know about docdir + mv "${ED%/}"/usr/share/doc/{systemd,${PF}} || die + einstalldocs dodoc "${FILESDIR}"/nsswitch.conf - if [[ ${PV} != 9999 ]]; then - use doc || doman "${WORKDIR}"/man/systemd.{directives,index}.7 - fi - if use sysv-utils; then for app in halt poweroff reboot runlevel shutdown telinit; do - dosym "..${ROOTPREFIX-/usr}/bin/systemctl" /sbin/${app} + dosym "${EPREFIX}${ROOTPREFIX%/}/bin/systemctl" /sbin/${app} done - dosym "..${ROOTPREFIX-/usr}/lib/systemd/systemd" /sbin/init + dosym "${EPREFIX}${ROOTPREFIX%/}/lib/systemd/systemd" /sbin/init else # we just keep sysvinit tools, so no need for the mans - rm "${D}"/usr/share/man/man8/{halt,poweroff,reboot,runlevel,shutdown,telinit}.8 \ + rm "${ED%/}"/usr/share/man/man8/{halt,poweroff,reboot,runlevel,shutdown,telinit}.8 \ || die - rm "${D}"/usr/share/man/man1/init.1 || die + rm "${ED%/}"/usr/share/man/man1/init.1 || die fi # Preserve empty dirs in /etc & /var, bug #437008 @@ -358,11 +322,21 @@ multilib_src_install_all() { # If we install these symlinks, there is no way for the sysadmin to remove them # permanently. - rm "${D}"/etc/systemd/system/multi-user.target.wants/systemd-networkd.service || die - rm -f "${D}"/etc/systemd/system/multi-user.target.wants/systemd-resolved.service || die - rm -r "${D}"/etc/systemd/system/network-online.target.wants || die - rm -r "${D}"/etc/systemd/system/sockets.target.wants || die - rm -r "${D}"/etc/systemd/system/sysinit.target.wants || die + rm -f "${ED%/}"/etc/systemd/system/multi-user.target.wants/systemd-networkd.service || die + rm -f "${ED%/}"/etc/systemd/system/dbus-org.freedesktop.network1.service || die + rm -f "${ED%/}"/etc/systemd/system/multi-user.target.wants/systemd-resolved.service || die + rm -f "${ED%/}"/etc/systemd/system/dbus-org.freedesktop.resolve1.service || die + rm -fr "${ED%/}"/etc/systemd/system/network-online.target.wants || die + rm -fr "${ED%/}"/etc/systemd/system/sockets.target.wants || die + rm -fr "${ED%/}"/etc/systemd/system/sysinit.target.wants || die + + rm -r "${ED%/}${ROOTPREFIX%/}/lib/udev/hwdb.d" || die + + if [[ ! -e "${ED%/}"/usr/lib/systemd/systemd ]]; then + # Avoid breaking boot/reboot + dosym "../../..${ROOTPREFIX%/}/lib/systemd/systemd" /usr/lib/systemd/systemd + dosym "../../..${ROOTPREFIX%/}/lib/systemd/systemd-shutdown" /usr/lib/systemd/systemd-shutdown + fi } migrate_locale() { @@ -409,6 +383,19 @@ migrate_locale() { fi } +pkg_preinst() { + # If /lib/systemd and /usr/lib/systemd are the same directory, remove the + # symlinks we created in src_install. + if [[ $(realpath "${EROOT%/}${ROOTPREFIX}/lib/systemd") == $(realpath "${EROOT%/}/usr/lib/systemd") ]]; then + if [[ -L ${ED%/}/usr/lib/systemd/systemd ]]; then + rm "${ED%/}/usr/lib/systemd/systemd" || die + fi + if [[ -L ${ED%/}/usr/lib/systemd/systemd-shutdown ]]; then + rm "${ED%/}/usr/lib/systemd/systemd-shutdown" || die + fi + fi +} + pkg_postinst() { newusergroup() { enewgroup "$1" @@ -416,6 +403,7 @@ pkg_postinst() { } enewgroup input + enewgroup kvm 78 enewgroup systemd-journal newusergroup systemd-bus-proxy newusergroup systemd-coredump @@ -431,7 +419,7 @@ pkg_postinst() { # Keep this here in case the database format changes so it gets updated # when required. Despite that this file is owned by sys-apps/hwids. if has_version "sys-apps/hwids[udev]"; then - udevadm hwdb --update --root="${ROOT%/}" + udevadm hwdb --update --root="${EROOT%/}" fi udev_reload || FAIL=1 @@ -440,6 +428,8 @@ pkg_postinst() { # between OpenRC & systemd migrate_locale + systemd_reenable systemd-networkd.service systemd-resolved.service + if [[ ${FAIL} ]]; then eerror "One of the postinst commands failed. Please check the postinst output" eerror "for errors. You may need to clean up your system and/or try installing" diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index 6be7da5ca64a..3a0d6c4312ed 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-9999.ebuild @@ -156,6 +156,7 @@ src_prepare() { "${FILESDIR}/228-noclean-tmp.patch" "${FILESDIR}/233-systemd-user-pam.patch" "${FILESDIR}/234-uucp-group.patch" + "${FILESDIR}/generator-path.patch" ) fi @@ -319,11 +320,13 @@ multilib_src_install_all() { # If we install these symlinks, there is no way for the sysadmin to remove them # permanently. - rm "${ED%/}"/etc/systemd/system/multi-user.target.wants/systemd-networkd.service || die + rm -f "${ED%/}"/etc/systemd/system/multi-user.target.wants/systemd-networkd.service || die + rm -f "${ED%/}"/etc/systemd/system/dbus-org.freedesktop.network1.service || die rm -f "${ED%/}"/etc/systemd/system/multi-user.target.wants/systemd-resolved.service || die - rm -r "${ED%/}"/etc/systemd/system/network-online.target.wants || die - rm -r "${ED%/}"/etc/systemd/system/sockets.target.wants || die - rm -r "${ED%/}"/etc/systemd/system/sysinit.target.wants || die + rm -f "${ED%/}"/etc/systemd/system/dbus-org.freedesktop.resolve1.service || die + rm -fr "${ED%/}"/etc/systemd/system/network-online.target.wants || die + rm -fr "${ED%/}"/etc/systemd/system/sockets.target.wants || die + rm -fr "${ED%/}"/etc/systemd/system/sysinit.target.wants || die rm -r "${ED%/}${ROOTPREFIX%/}/lib/udev/hwdb.d" || die diff --git a/sys-auth/thinkfinger/metadata.xml b/sys-auth/thinkfinger/metadata.xml index 61a8f3f3747b..b61739fdd921 100644 --- a/sys-auth/thinkfinger/metadata.xml +++ b/sys-auth/thinkfinger/metadata.xml @@ -17,5 +17,4 @@ ThinkFinger - diff --git a/sys-block/partitionmanager/Manifest b/sys-block/partitionmanager/Manifest index a66a108859b3..d16470d3920a 100644 --- a/sys-block/partitionmanager/Manifest +++ b/sys-block/partitionmanager/Manifest @@ -1,3 +1,3 @@ DIST partitionmanager-3.1.0.tar.xz 1297180 SHA256 46c3f97711cd8709aece346a27bc6ba89c29cfb5bcf2399bf1982c2e11ee6272 SHA512 3e81c06131a207f886967ab33c11c3d9643adefba6322b81a06c06e41ff3adf0dc0bede16b55d4bd5a0c7c59b74655014be35f442c61d561d03c763aa0f5ebae WHIRLPOOL da100fca6ef84ad92ed3c5cfcaa88907885946a7406256815c4ecad222cb926385b1b9c65b6caba406be8375fdc504d932830cf52283881dd17926e79b563227 DIST partitionmanager-3.1.2.tar.xz 1298688 SHA256 2ca9e541bcba758181217a9edc1f76814cabad9cf691040c1b9bc7c737c794e9 SHA512 a1be9bf9bbe03842c6cbfcae70e7a909c3e1bb30f3d226b8a47933228c7d6e358d2c6b038100dc647420b8498ca19878a15c100a61370f455a4033ca198e785f WHIRLPOOL 310571d77ad598107b5d8e89c07a5ad93f2c0f03ba73fe87ccd85bcec8f19d2d5ac69f5e4a366ffb801466dafeaf3165d41fe00b69ed4bec8b78a0f50a4744c4 -DIST partitionmanager-3.2.0.tar.xz 1330948 SHA256 fb772fc1be05cbfa2e575c8242627c6df5c07a6fa7f490b5195c3a66dee103ed SHA512 cafcf5a3309ef567ee664d2073cc69910444ac0c6dfb3d9cf73e37a04fa3b30847686af1f05783cd088461c53f2c0bccde6bba94483909c9775a69dee91dd276 WHIRLPOOL ed9d0823e88999c63dfca70377f0da1609d8a2c0206f754ee4675e82b0f5cfde64932f0969ab115271ff180a9925411adee4b4049ef5515e49f76d352f5bfd42 +DIST partitionmanager-3.2.1.tar.xz 1331440 SHA256 7dc089243ce49058c7c16cea17bc6302dbfe409c099adc04dad5e9d5098300ad SHA512 799518ac78d906959512bebf63d3e8277f5fcbc7f13efd6b6ad5f3342f0e08da98340dc778a6e89923af99b03d099fb0e4d11abb2751ac4defa38060bb511df3 WHIRLPOOL 659c96ff57f0d1a391ee8f47b36447f6da1e3b04d1cd15b32fb5368dc719494afa328482c217c5f3bd87a39d029c81e27a258433b7080303ee44f0ae8b81eaa4 diff --git a/sys-block/partitionmanager/partitionmanager-3.2.0.ebuild b/sys-block/partitionmanager/partitionmanager-3.2.1.ebuild similarity index 100% rename from sys-block/partitionmanager/partitionmanager-3.2.0.ebuild rename to sys-block/partitionmanager/partitionmanager-3.2.1.ebuild diff --git a/sys-cluster/lspbs/metadata.xml b/sys-cluster/lspbs/metadata.xml index 29cf2b877778..e40efc65cc22 100644 --- a/sys-cluster/lspbs/metadata.xml +++ b/sys-cluster/lspbs/metadata.xml @@ -1,24 +1,16 @@ - - j.spadavecchia@ed.ac.uk - Joseph Spadavecchia - cluster@gentoo.org Gentoo Cluster Project - - proxy-maint@gentoo.org - Proxy Maintainers - Lspbs is a lightweight alternative to the xpbsmon utility, which - is part of the OpenPBS package. It uses the color xterm to + is part of the OpenPBS package. It uses the color xterm to display clear, concise and up-to-date node and CPU usage - information. Lspbs also supports unformatted printing and can - filter nodes by their properties and current state. This generic + information. Lspbs also supports unformatted printing and can + filter nodes by their properties and current state. This generic filtering feature extends the simplistic functionality provided by the pbsnodes utility, which is also part of the OpenPBS package. This makes lspbs useful for managing PBS-based clusters. diff --git a/sys-fs/avfs/metadata.xml b/sys-fs/avfs/metadata.xml index 6616d7e46f86..2b99454f38c2 100644 --- a/sys-fs/avfs/metadata.xml +++ b/sys-fs/avfs/metadata.xml @@ -1,15 +1,8 @@ - - pete4abw@comcast.net - Peter Hyman - - - proxy-maint@gentoo.org - Proxy Maintainers - - - avf - + + + avf + diff --git a/sys-kernel/aufs-sources/Manifest b/sys-kernel/aufs-sources/Manifest index 606a09c94ba2..bf98061a7581 100644 --- a/sys-kernel/aufs-sources/Manifest +++ b/sys-kernel/aufs-sources/Manifest @@ -23,6 +23,9 @@ DIST genpatches-4.13-5.extras.tar.xz 17388 SHA256 01f538738030621642e65a134db02e DIST genpatches-4.13-6.base.tar.xz 89936 SHA256 19287d01d68d3f7748379ce646e7739b07f01d9c43d4a129e7d97e7997249c65 SHA512 53de689ddbf13e05c7b319ff1174cd40b6d64032dc6fa173ebfea205ae69a87d4bd86654ba4f12d91d8db5e4289ed21cd597d0f7ef41b7d1ab2faed14750203c WHIRLPOOL b7920f21a46af9ebcf4cecca364c0944486cad37df7d9a5a147a6a277b32b8ccc05e36566b3774c61adf318e2d044ec25b03416542b305d80f4b7c46291d71cd DIST genpatches-4.13-6.experimental.tar.xz 5184 SHA256 b5c6003c3dfc39631bf54c3cac423726a6db3ff2082a6c123bbde4fec4c43880 SHA512 5c1a0119eacf39bd9f8b10ac2f0fb56adfdcb4b0b4b1f4e73fbaf5e7d3bc70b6233f600d7928d7445d9dc7591c09431d10dc3dbf5cfcf0ba66487b527e7cdbc4 WHIRLPOOL 4adf3e904d6a15e76798ce8eed4529aa9c9bfb798eba59ad3be9e5b112725ad946fd5c75a2f54357bd6918171aa9d248de983fad540f9bfea7bfc52fb033cda5 DIST genpatches-4.13-6.extras.tar.xz 17400 SHA256 48a1601631610c44ce61f108105208baab95beec1626068b97914ebbe9a0c180 SHA512 80165679efd59658e618d408ff041fbae823fc76c7edd0e27e383a0fcdcfa3b9776553150bea62b337c38beead90f36a4cd97f45d36e8e252b5f6ea08850509c WHIRLPOOL c7fa0b861ed9f66913358fd4b13fe2cef9118283aaa90eda98d39be22d02aa2c39145356a1657c6a6b3b17a9f30a5fd8fc3c168136b565efce0c142645920c90 +DIST genpatches-4.13-7.base.tar.xz 125424 SHA256 994b898aa71c58666966578eb89f1bd4d7d95ab166c9a904141391e9aaa44785 SHA512 f2b7a2ecf10049026d9591e38cc4c15df6d9290533ea0125e2a3f7b3c9bd6ffe077db6577b964f80807d1910ba74188e5e8600f47095f558b04651d922c32adc WHIRLPOOL 67548caf0f249e6cc6031aa53e4bc98f3e2990380226c95653a1a5ec0f4b5ebb5a293dc7cd5cde124cb88b8ef2db374856b8cf252088b6df5afa5b6c3b4e4e0a +DIST genpatches-4.13-7.experimental.tar.xz 5184 SHA256 bc5eb8610a712e66c6974ce9986aec76d30a88a31fce29fb90aec50819ea09f6 SHA512 78e765b77276b919f8731f68c9ef240035b502f0febd234a0ef572ed0dfdc589f8057324ec633971d73e083ad8a0e449713dfd82ae8982bacf36379e623feeee WHIRLPOOL 458ee683f01b827be2f8c24b8ca88e78766965c3e630a18bcf6c7c0324967b669e6c43e8f0cfe8f07e6811458235601e918d015a86c8bc36e88cc4f201d543d7 +DIST genpatches-4.13-7.extras.tar.xz 17400 SHA256 25b8b93102267a59e9b586caa67073e962fbc7aa9b6390eddf5e8b49ebc9c85f SHA512 0a849a8b3ed7bfd0418118f7b24c40e5d5fe00b97faa49de6dcd5b26025b7c1fc6b52eb641d2e7ed92ee25b1df392382fec23b074d7494620b2791c69083c7e0 WHIRLPOOL 4c66583a3dd0fcdc98c2d6c4bfe6ff45895cdbb24b4ba7599b88c149c2bf510676de1135ba7129d7c8b1f99fdba42ef154468cc6f042d3f96b6d320cb9175c32 DIST genpatches-4.4-91.base.tar.xz 1428436 SHA256 d6c806bd868856a9021b35d0bc3ced37029c8803846d6b251fe7fefadfe46c69 SHA512 cdddd25be04b33558f7ebcee66df992aae38f29181474ebed82958d4d50639097b4a82eaf256d7b3576bfcd0cd3fe7682956e1d2cdbdb912d47fe86205d9b554 WHIRLPOOL 8de12e7bdba76256e8fc41738605bbe961fa3fa0ccbe1fccaf0c8cb3708c692bb65a27db7675e42ce5558a22c81b9017742b14d6776ee2b93f4d1d92535942a9 DIST genpatches-4.4-91.experimental.tar.xz 87760 SHA256 e04a99c94b4dd9f5856dd08ed4b286b19c765d8d0fe40237dce256f7c874dbf8 SHA512 0bbc83e076d45da1d0258bfd7f6acf6170e99891a9a857b2552f3a0fcefff4f318a8c5c8779591b0bb654760f905530de18723f2ba960618eae59a1b7219c28f WHIRLPOOL fb6306af0191198d466b3349c348139342a70de118bcce0563e3209a7ead8a9d56291f3a4155ba4a4d211db8fc1e20ddec3a3b463d62fff5375df823646f7b02 DIST genpatches-4.4-91.extras.tar.xz 16468 SHA256 6cc85cbae6d2ccf087104b5f719abf10d186d3b630572caeb1906c344c66de76 SHA512 229922945fcb882a0cb7dcba8bac9de51683690462a8df59e181a03d702fcb1c9b54078c5434624b4a197c481f0bb9b73dca58456ef5a5884a30bfd3644dfd6d WHIRLPOOL 81f8fa1676856f0941bc6d09e7e602d2213740bed6edc914d9341bad590650d5a5249fd8bbd2d640380a638ce2a12fd4ec66e0c3753c8d9d22c1fa2c3f07aacb @@ -32,6 +35,9 @@ DIST genpatches-4.4-92.extras.tar.xz 16468 SHA256 ff94045f614320fc7060c48b4952ff DIST genpatches-4.4-93.base.tar.xz 1447972 SHA256 6e3df3e0fbd4b53b6a2dee29c6b7061229b7659834798fb8f0321006ec86dba6 SHA512 a4acd8ece7f2c31ba2673e3868c91d0fc9e0b9eaec7bf6192c7072776b8ee5ecac6c4ab4e5d8da43d306527d05fe057e2dffbb3f1aec07f4e2e887f26b7caa36 WHIRLPOOL bfb076b708f0ee7833e47a0cb87b7ff2f590ddb46b7673836ec868e7dc52207f056a927b37364e79ccba9dc046ec9521df83b59b273a0f70ff93604d9b9d6fe9 DIST genpatches-4.4-93.experimental.tar.xz 87784 SHA256 b8c3ffc21ac844ac68a4936421ebb37db2ab51ad3581ec49a68d780649183bce SHA512 daf1279b08d9c4ab416fb3d1edf9ecd0da8ef4f06d4ffb86917d74f3902bec20f415404e986afb1c93f3708b97e89404c8ce53670b4589888788bd47efbb8c5f WHIRLPOOL c11b0b07249fce11dd6daa8a3b61fc68a7d8fb99c9027ce5086ea92d70b8c595ac08b5f9ca2312bd2b697cae086a47747ecedb9252214053c7ef758840eed9ae DIST genpatches-4.4-93.extras.tar.xz 16464 SHA256 2aba285ccbffee2ffedc8f2baba8ab9844fcacb3bfdc4713632ff26662975bea SHA512 f7bcfc34534d1b731861990f429a5cb3b29fc43ace6cbb5b321338661fa1482bd13f51c25691aab79d5464c822f5bfb5a30eaefb685acd50601dd9462cc0e9ee WHIRLPOOL 1b9a9e3b690676ef1245d032e6ff4bb9b01e4b72669896d45c3fc03add744cf42133a17c0a9097b5f3a3b6d87b14e80ad9a69772a1336d3a92e71a82dea14f0a +DIST genpatches-4.4-94.base.tar.xz 1456336 SHA256 113f4486b4043cf201f1f8104b04223e424a12e8af2dfbdd92ec61cf87b6d034 SHA512 26a03c20e813b1322b0e66ef014c31634f631c1ee684b0d78d7e6eb6bac9a4e61802eaffeda4cbc39720851006c6f76061ef2082fa914a7d238b2c9d66d63258 WHIRLPOOL 708ac96f0dc1645406e4d696c4d5f20a11f89f67fc7deabfd04f3f6ca6dd46fd3f963be15abc3f0cc901fe5ca722af9ad3c2029751fd2630cf0cd70c648d80b1 +DIST genpatches-4.4-94.experimental.tar.xz 87776 SHA256 bbbd6c3b82f96dfd689ccef1e28ad25c32a464dab28981e358f9888ad1220bfa SHA512 c84589532e6cfa28ba7a2be6c3d2e1e1884c4bf31587fac81dc7981657244f65877d0c694d0c7124ee8d849db9bbc912efb81deef05a9576ec066ac36b7d2aba WHIRLPOOL 10e1b1fa394fd78bc9f072c36b3ea5f7f3416ae15387939f578f56adae9d92aea5ba5181e82a7bbad8e9617ade7d559f7aa5be90dcea55cbe8a1684b87a1b461 +DIST genpatches-4.4-94.extras.tar.xz 16468 SHA256 a730517dd867182ef90ccf4296f2934e5c03fef20c673a553dda98aa0def8152 SHA512 8a5fc56b3d68dcf746b31802ca9cf21b675da03c45a82f4f98078332963cf97cf8a982e4b6bda0345397eb7a41e1016d2761dfcd83482f6eec627c9d58c7e4aa WHIRLPOOL 304619cb82997c26d8fe779f0a2680b8d4d010852085ac28ff680191a273557b015f462696d39f61d15ca389c181c7029ea3f7ca70fe122ef7a532634494d3af DIST genpatches-4.9-51.base.tar.xz 1001928 SHA256 4a329d66dedfad74d8d03bb3d13b6aa2ef04d20ccf2520d39b72b0afab5cbfa9 SHA512 2ab0efa23c556547bd223f066acbebe250346064a3588ee866871e36e3b5b5533ca7a3add6a62b53339acf89dfc8539c42b3877b5a2055ca7e20bc25c5657ca5 WHIRLPOOL c73a7b7c12e399439b3f97061646aeadab5120aaab2c8f8852416ccdbb6a77949b4946a31c1abad910ee1fbc837bef3e86975fd9242a3b8649fbb77f0dddf7ca DIST genpatches-4.9-51.experimental.tar.xz 106416 SHA256 19a1d1355f4328e9703157b2a37acd97af98952e73c6d3d18b49f6a35a6064b3 SHA512 af7a00b9a3200a50341b9af607fbef362ead2e4f5ca35d58eec505de490c03d6366ab4645e35bbddd6903ac75396413d2902b6a9fc7e2c9d0d1d1254620cfdb3 WHIRLPOOL 23d8d92dadd653c1ef59d8aeab08f3e10246e3dc73ac8e106e1bb51b18c597324188eda0775095d3759829c6095cd06e9634431d86900ca3aca0ec6719ab2ef5 DIST genpatches-4.9-51.extras.tar.xz 17356 SHA256 71d1693dc64d8473b41f5e80e7727b6cc0a74fb632511b3fec0b46a57c0dc26d SHA512 e05c44a5ad1b68afb04647a86efc6f67e03515861e670e39f960c0a02b87fbcb71194efa6773259ee2be5c8362794a5bb6512e876784d5a521d8890865b3ba0e WHIRLPOOL 50d19a31d7cea180980fefa87ef14d13d844539968a353a4c15e86c86913b66e2c8abb45fde999878afd96b78a4e9d81158716a1cbc0f7a6e5fd5c26b33b05b1 @@ -44,6 +50,9 @@ DIST genpatches-4.9-53.extras.tar.xz 17340 SHA256 b22021fa7cb0f4254273fe61ba14e7 DIST genpatches-4.9-54.base.tar.xz 1053504 SHA256 ad6728a6e84a45aa9a84215f72ba1daed8c9681b61d9470b0fed24c285aec82a SHA512 3e64d39f3d7d0c1d68cca6b27df1e374970f0b42f47ff6bc900a1a12d1305093efafdccc28a1ba89404397ad285298058e882329f651e8d1031ddc86dbf06c40 WHIRLPOOL 7c22db4217a2604a05e8f4a9817fceabf865b00c7c33df95cfc5a09af6ffa84d809930c221f55cb9b500cc8d57b2e43f70f80e622a19fb73e0d068f2ec2be18d DIST genpatches-4.9-54.experimental.tar.xz 106360 SHA256 9c5b4ec4005bf50556163cebe4a4e577cffc3ed0ab06a40cd79bc7e9e33a964d SHA512 ace1650a90d70f1ab6d938d2509c44ff1911178161bfa6f060f5eb078b9c83d031709dc483f3481afc82c34b705cd9dd653c95c9b53817c79b0e632f970dad10 WHIRLPOOL 50c40e6160a92d98e568b3d55b336c4400cb8faff7fcfa5c71a8172e5149468b0483874c8531270f6f15b48f84fb3c47dee8ec01870c3331a150226c748b16ac DIST genpatches-4.9-54.extras.tar.xz 17356 SHA256 70314b113191df3bcf461537c5c5789ce990311affcb41e9d00b4a4d1f674659 SHA512 894f37761c80304fd12e20d9b2a11a56475484dd2a4504f4aada6b48854e752228256d56dfc328c7633996a16f4653af0105698b6a230619d9a3364b9d08a265 WHIRLPOOL 3fddbc03354fcb2b3c72caa7462a36d16a0595304da2ff9df0614925e252e3c15c38138b4f07789333c118dde992569c7cbbeb019b5052bc0ff18e87fb08cf6b +DIST genpatches-4.9-55.base.tar.xz 1069704 SHA256 803d5d028875b905bb4cbff7b2258786e7199095e68e3b2cdf8134dd22f11c20 SHA512 a1156e41e1499218e3fb1c6ef0bb66fb6bcb93b4076c3c780f60ac23b340d13e3e9f4a38e62bf066c765e9a65d2cdc9266d9358fbea2c1bed3a491d8b7d40875 WHIRLPOOL 8af62aa544f5e0f2c707b7537c80f09ffdbfb454c634f551242917fedae070eaeb8c09a98638f9eaa6adaafd1cbc45cacfa50d4687b9e036234d6749938d7451 +DIST genpatches-4.9-55.experimental.tar.xz 106376 SHA256 2d973cb9728d880cf947fcb898ae4f25fcb31a7b26bead9eb424fcf4dbc3be16 SHA512 c4c552f2b1aa91a3fc3c7834c0c6dec898f4c74a557a7e767bbe85b6e7463e02ac23fc71c3a32fa256603967622e0e54deec8046f0502f5fd00c64d649741600 WHIRLPOOL c070a07d4e8c832fa84880b9395d7499faecbedbc3e2d290a76339205234f396570b190a23183e6b4a1c2044119b8c631d161ce798e9aa03a1995d668e18080e +DIST genpatches-4.9-55.extras.tar.xz 17348 SHA256 70e1a8008adeb7bf207fd7f3194b4fa7c3efd500af7aa6fbc33b288794788b05 SHA512 995901d2d40c5b9e9b33372636b4c2134014fbe1f5705b800283463904f072ce215930d81cda5f968333abd2d8558ac59a0d6cd419cd701e41b88901dea19d40 WHIRLPOOL 6b73420d4e249dbd3c8fc7e9670f0ca6b60554466b2d79410956df12af03763a8352701d9df4bc0759e08a6652813e40cbe1b6c9924cac111a81e33009bf27c8 DIST linux-4.12.tar.xz 99186576 SHA256 a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab SHA512 8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728 WHIRLPOOL 3b97da251c2ba4ace4a27b708f2b1dcf94cb1b59aaeded6acb74bd98f0d3e33f1df83670665e4186d99a55daa84c88d539d93e20f0ff18a6d46ef326c48dd375 DIST linux-4.13.tar.xz 100579888 SHA256 2db3d6066c3ad93eb25b973a3d2951e022a7e975ee2fa7cbe5bddf84d9a49a2c SHA512 a557c2f0303ae618910b7106ff63d9978afddf470f03cb72aa748213e099a0ecd5f3119aea6cbd7b61df30ca6ef3ec57044d524b7babbaabddf8b08b8bafa7d2 WHIRLPOOL d3d332e02cd3c5056c76c28cf1f81504c6f7b8f2caed7238e7dd7866747fb03154b88d8d7aec4d0eddf5760624bc7d6c5485fb52a3e32d098a2742eba96c0d05 DIST linux-4.4.tar.xz 87295988 SHA256 401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e WHIRLPOOL 02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc diff --git a/sys-kernel/aufs-sources/aufs-sources-4.13.5.ebuild b/sys-kernel/aufs-sources/aufs-sources-4.13.5.ebuild new file mode 100644 index 000000000000..ac245a0b7940 --- /dev/null +++ b/sys-kernel/aufs-sources/aufs-sources-4.13.5.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER=7 +UNIPATCH_STRICTORDER=1 +inherit kernel-2 eutils readme.gentoo-r1 + +AUFS_VERSION=4.13_p20170925 +AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz" +# git archive -v --remote=git://git.code.sf.net/p/aufs/aufs4-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar +AUFS_URI="https://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}" + +KEYWORDS="~amd64 ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/" +IUSE="experimental module vanilla" + +DESCRIPTION="Full sources including the Gentoo patchset for the linux kernel tree and aufs4 support" +SRC_URI=" + ${KERNEL_URI} + ${ARCH_URI} + ${AUFS_URI} + !vanilla? ( ${GENPATCHES_URI} ) + " + +PDEPEND="=sys-fs/aufs-util-4*" + +README_GENTOO_SUFFIX="-r1" + +src_unpack() { + detect_version + detect_arch + if use vanilla; then + unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT + ewarn "You are using USE=vanilla" + ewarn "This will drop all support from the gentoo kernel security team" + fi + + UNIPATCH_LIST=" + "${WORKDIR}"/aufs4-kbuild.patch + "${WORKDIR}"/aufs4-base.patch + "${WORKDIR}"/aufs4-mmap.patch" + + use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs4-standalone.patch" + + unpack ${AUFS_TARBALL} + + einfo "Using aufs4 version: ${AUFS_VERSION}" + + kernel-2_src_unpack +} + +src_prepare() { + kernel-2_src_prepare + if ! use module; then + sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die + fi + cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die + cp -rf "${WORKDIR}"/{Documentation,fs} . || die +} + +src_install() { + kernel-2_src_install + dodoc "${WORKDIR}"/{aufs4-loopback,vfs-ino,tmpfs-idr}.patch + docompress -x /usr/share/doc/${PF}/{aufs4-loopback,vfs-ino,tmpfs-idr}.patch + readme.gentoo_create_doc +} + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" + has_version sys-fs/aufs-util || \ + elog "In order to use aufs FS you need to install sys-fs/aufs-util" + + readme.gentoo_print_elog +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/aufs-sources/aufs-sources-4.4.90.ebuild b/sys-kernel/aufs-sources/aufs-sources-4.4.90.ebuild new file mode 100644 index 000000000000..56a3283d83a2 --- /dev/null +++ b/sys-kernel/aufs-sources/aufs-sources-4.4.90.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER=94 +UNIPATCH_STRICTORDER=1 +inherit kernel-2 eutils readme.gentoo-r1 + +AUFS_VERSION=4.4_p20170925 +AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz" +# git archive -v --remote=git://git.code.sf.net/p/aufs/aufs4-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar +AUFS_URI="https://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}" + +KEYWORDS="~amd64 ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/" +IUSE="experimental module vanilla" + +DESCRIPTION="Full sources including the Gentoo patchset for the linux kernel tree and aufs4 support" +SRC_URI=" + ${KERNEL_URI} + ${ARCH_URI} + ${AUFS_URI} + !vanilla? ( ${GENPATCHES_URI} ) + " + +PDEPEND="=sys-fs/aufs-util-4*" + +README_GENTOO_SUFFIX="-r1" + +src_unpack() { + detect_version + detect_arch + if use vanilla; then + unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT + ewarn "You are using USE=vanilla" + ewarn "This will drop all support from the gentoo kernel security team" + fi + + UNIPATCH_LIST=" + "${WORKDIR}"/aufs4-kbuild.patch + "${WORKDIR}"/aufs4-base.patch + "${WORKDIR}"/aufs4-mmap.patch" + + use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs4-standalone.patch" + + unpack ${AUFS_TARBALL} + + einfo "Using aufs4 version: ${AUFS_VERSION}" + + kernel-2_src_unpack +} + +src_prepare() { + kernel-2_src_prepare + if ! use module; then + sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die + fi + cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die + cp -rf "${WORKDIR}"/{Documentation,fs} . || die +} + +src_install() { + kernel-2_src_install + dodoc "${WORKDIR}"/{aufs4-loopback,vfs-ino,tmpfs-idr}.patch + docompress -x /usr/share/doc/${PF}/{aufs4-loopback,vfs-ino,tmpfs-idr}.patch + readme.gentoo_create_doc +} + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" + has_version sys-fs/aufs-util || \ + elog "In order to use aufs FS you need to install sys-fs/aufs-util" + + readme.gentoo_print_elog +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/aufs-sources/aufs-sources-4.9.53.ebuild b/sys-kernel/aufs-sources/aufs-sources-4.9.53.ebuild new file mode 100644 index 000000000000..1180da3a270d --- /dev/null +++ b/sys-kernel/aufs-sources/aufs-sources-4.9.53.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER=55 +UNIPATCH_STRICTORDER=1 +inherit kernel-2 eutils readme.gentoo-r1 + +AUFS_VERSION=4.9_p20170925 +AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz" +# git archive -v --remote=git://git.code.sf.net/p/aufs/aufs4-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar +AUFS_URI="https://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}" + +KEYWORDS="~amd64 ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/" +IUSE="experimental module vanilla" + +DESCRIPTION="Full sources including the Gentoo patchset for the linux kernel tree and aufs4 support" +SRC_URI=" + ${KERNEL_URI} + ${ARCH_URI} + ${AUFS_URI} + !vanilla? ( ${GENPATCHES_URI} ) + " + +PDEPEND="=sys-fs/aufs-util-4*" + +README_GENTOO_SUFFIX="-r1" + +src_unpack() { + detect_version + detect_arch + if use vanilla; then + unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT + ewarn "You are using USE=vanilla" + ewarn "This will drop all support from the gentoo kernel security team" + fi + + UNIPATCH_LIST=" + "${WORKDIR}"/aufs4-kbuild.patch + "${WORKDIR}"/aufs4-base.patch + "${WORKDIR}"/aufs4-mmap.patch" + + use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs4-standalone.patch" + + unpack ${AUFS_TARBALL} + + einfo "Using aufs4 version: ${AUFS_VERSION}" + + kernel-2_src_unpack +} + +src_prepare() { + kernel-2_src_prepare + if ! use module; then + sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die + fi + cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die + cp -rf "${WORKDIR}"/{Documentation,fs} . || die +} + +src_install() { + kernel-2_src_install + dodoc "${WORKDIR}"/{aufs4-loopback,vfs-ino,tmpfs-idr}.patch + docompress -x /usr/share/doc/${PF}/{aufs4-loopback,vfs-ino,tmpfs-idr}.patch + readme.gentoo_create_doc +} + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" + has_version sys-fs/aufs-util || \ + elog "In order to use aufs FS you need to install sys-fs/aufs-util" + + readme.gentoo_print_elog +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 001f0c700cbc..e42d67d0c169 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -40,6 +40,9 @@ DIST genpatches-4.4-93.extras.tar.xz 16464 SHA256 2aba285ccbffee2ffedc8f2baba8ab DIST genpatches-4.4-94.base.tar.xz 1456336 SHA256 113f4486b4043cf201f1f8104b04223e424a12e8af2dfbdd92ec61cf87b6d034 SHA512 26a03c20e813b1322b0e66ef014c31634f631c1ee684b0d78d7e6eb6bac9a4e61802eaffeda4cbc39720851006c6f76061ef2082fa914a7d238b2c9d66d63258 WHIRLPOOL 708ac96f0dc1645406e4d696c4d5f20a11f89f67fc7deabfd04f3f6ca6dd46fd3f963be15abc3f0cc901fe5ca722af9ad3c2029751fd2630cf0cd70c648d80b1 DIST genpatches-4.4-94.experimental.tar.xz 87776 SHA256 bbbd6c3b82f96dfd689ccef1e28ad25c32a464dab28981e358f9888ad1220bfa SHA512 c84589532e6cfa28ba7a2be6c3d2e1e1884c4bf31587fac81dc7981657244f65877d0c694d0c7124ee8d849db9bbc912efb81deef05a9576ec066ac36b7d2aba WHIRLPOOL 10e1b1fa394fd78bc9f072c36b3ea5f7f3416ae15387939f578f56adae9d92aea5ba5181e82a7bbad8e9617ade7d559f7aa5be90dcea55cbe8a1684b87a1b461 DIST genpatches-4.4-94.extras.tar.xz 16468 SHA256 a730517dd867182ef90ccf4296f2934e5c03fef20c673a553dda98aa0def8152 SHA512 8a5fc56b3d68dcf746b31802ca9cf21b675da03c45a82f4f98078332963cf97cf8a982e4b6bda0345397eb7a41e1016d2761dfcd83482f6eec627c9d58c7e4aa WHIRLPOOL 304619cb82997c26d8fe779f0a2680b8d4d010852085ac28ff680191a273557b015f462696d39f61d15ca389c181c7029ea3f7ca70fe122ef7a532634494d3af +DIST genpatches-4.4-95.base.tar.xz 1471032 SHA256 f0b3421e1b8098e87c6d809c031d0a105968976fa562df896805f837759a68e0 SHA512 b77939e4f39acda41721a2af15ccb5d0c99d448f31ce4b9f591c671f18e1a3a371f9ad97ccbb5e3cec07e683f3133b898fe4023c058e13271feac03bd50e08b4 WHIRLPOOL 5f13642f045a8512a8d4eb7481e54c36d16c5445af69486c23e9ac0f012372f1ed5859270cf098d77f5590d45d42d7daa4487378501a2b62d5a1a43ba136bd7c +DIST genpatches-4.4-95.experimental.tar.xz 87772 SHA256 eea7fe4a84a9fb8ade8b355829f99296ae84b96826ae8e26a520a944cd41285b SHA512 e96f52e53416e078d790ff549964125b9ac968dce6d6a65a9cc1e56109665bd57f6e82b9c9593f8a18c5ea7f4506c26688128e0a49baeb7a3a5e8298eee86536 WHIRLPOOL a670296b526fbc6f3d9e674bd1bbbbed851133089a0e4fe5470065a3cadb1f5bc80379c0a1fbe6450bd50a266c97a5659cb2acfc5f3befa7c11b505534b47e43 +DIST genpatches-4.4-95.extras.tar.xz 16456 SHA256 7a0ab837e4b2fd039433040ebc4c9a136912f5e8c6b3aaa4b8a363866013bf5b SHA512 27a77ea8ccbb775f8f162645d301826f7c2c0c39a0d3aa67094d819902962965c8e54cb9b0ef5bb0e8285cdb0da4d7319b94dea0fdae45e09fc23092d6f3bb3b WHIRLPOOL 6e9c6f90af8c064aca180e1d2681e2c08eafb5b4eabf07a4bdeb3280b8966c853ddb81e6dd9b72496b83f304042b235f95bd00d9d2a00f13dce94bf39ec94972 DIST genpatches-4.9-51.base.tar.xz 1001928 SHA256 4a329d66dedfad74d8d03bb3d13b6aa2ef04d20ccf2520d39b72b0afab5cbfa9 SHA512 2ab0efa23c556547bd223f066acbebe250346064a3588ee866871e36e3b5b5533ca7a3add6a62b53339acf89dfc8539c42b3877b5a2055ca7e20bc25c5657ca5 WHIRLPOOL c73a7b7c12e399439b3f97061646aeadab5120aaab2c8f8852416ccdbb6a77949b4946a31c1abad910ee1fbc837bef3e86975fd9242a3b8649fbb77f0dddf7ca DIST genpatches-4.9-51.experimental.tar.xz 106416 SHA256 19a1d1355f4328e9703157b2a37acd97af98952e73c6d3d18b49f6a35a6064b3 SHA512 af7a00b9a3200a50341b9af607fbef362ead2e4f5ca35d58eec505de490c03d6366ab4645e35bbddd6903ac75396413d2902b6a9fc7e2c9d0d1d1254620cfdb3 WHIRLPOOL 23d8d92dadd653c1ef59d8aeab08f3e10246e3dc73ac8e106e1bb51b18c597324188eda0775095d3759829c6095cd06e9634431d86900ca3aca0ec6719ab2ef5 DIST genpatches-4.9-51.extras.tar.xz 17356 SHA256 71d1693dc64d8473b41f5e80e7727b6cc0a74fb632511b3fec0b46a57c0dc26d SHA512 e05c44a5ad1b68afb04647a86efc6f67e03515861e670e39f960c0a02b87fbcb71194efa6773259ee2be5c8362794a5bb6512e876784d5a521d8890865b3ba0e WHIRLPOOL 50d19a31d7cea180980fefa87ef14d13d844539968a353a4c15e86c86913b66e2c8abb45fde999878afd96b78a4e9d81158716a1cbc0f7a6e5fd5c26b33b05b1 @@ -55,6 +58,9 @@ DIST genpatches-4.9-54.extras.tar.xz 17356 SHA256 70314b113191df3bcf461537c5c578 DIST genpatches-4.9-55.base.tar.xz 1069704 SHA256 803d5d028875b905bb4cbff7b2258786e7199095e68e3b2cdf8134dd22f11c20 SHA512 a1156e41e1499218e3fb1c6ef0bb66fb6bcb93b4076c3c780f60ac23b340d13e3e9f4a38e62bf066c765e9a65d2cdc9266d9358fbea2c1bed3a491d8b7d40875 WHIRLPOOL 8af62aa544f5e0f2c707b7537c80f09ffdbfb454c634f551242917fedae070eaeb8c09a98638f9eaa6adaafd1cbc45cacfa50d4687b9e036234d6749938d7451 DIST genpatches-4.9-55.experimental.tar.xz 106376 SHA256 2d973cb9728d880cf947fcb898ae4f25fcb31a7b26bead9eb424fcf4dbc3be16 SHA512 c4c552f2b1aa91a3fc3c7834c0c6dec898f4c74a557a7e767bbe85b6e7463e02ac23fc71c3a32fa256603967622e0e54deec8046f0502f5fd00c64d649741600 WHIRLPOOL c070a07d4e8c832fa84880b9395d7499faecbedbc3e2d290a76339205234f396570b190a23183e6b4a1c2044119b8c631d161ce798e9aa03a1995d668e18080e DIST genpatches-4.9-55.extras.tar.xz 17348 SHA256 70e1a8008adeb7bf207fd7f3194b4fa7c3efd500af7aa6fbc33b288794788b05 SHA512 995901d2d40c5b9e9b33372636b4c2134014fbe1f5705b800283463904f072ce215930d81cda5f968333abd2d8558ac59a0d6cd419cd701e41b88901dea19d40 WHIRLPOOL 6b73420d4e249dbd3c8fc7e9670f0ca6b60554466b2d79410956df12af03763a8352701d9df4bc0759e08a6652813e40cbe1b6c9924cac111a81e33009bf27c8 +DIST genpatches-4.9-56.base.tar.xz 1098340 SHA256 69e8104e4b2cf11d286d04b19a88d027ffbf94701cfc237f5737d0d907d2f4e4 SHA512 d0e54f6b904bce6cee767297fd3282ad8fbd002e2820cd211d35d00e71c1a0339f0715d352c6dc7972097ebeaa282c074f9e85ef953ad16f9a4f35f5ddc26e58 WHIRLPOOL c64fb7d0f811754166b5f8cdb08efd270ec6e1b57723fe8d1c206d5d184c8230b41d1f61c1e98300da0765327dc6feb2f3d8d5e36a8d26b9b1d5a2a3a6170c32 +DIST genpatches-4.9-56.experimental.tar.xz 106376 SHA256 2d973cb9728d880cf947fcb898ae4f25fcb31a7b26bead9eb424fcf4dbc3be16 SHA512 c4c552f2b1aa91a3fc3c7834c0c6dec898f4c74a557a7e767bbe85b6e7463e02ac23fc71c3a32fa256603967622e0e54deec8046f0502f5fd00c64d649741600 WHIRLPOOL c070a07d4e8c832fa84880b9395d7499faecbedbc3e2d290a76339205234f396570b190a23183e6b4a1c2044119b8c631d161ce798e9aa03a1995d668e18080e +DIST genpatches-4.9-56.extras.tar.xz 17348 SHA256 70e1a8008adeb7bf207fd7f3194b4fa7c3efd500af7aa6fbc33b288794788b05 SHA512 995901d2d40c5b9e9b33372636b4c2134014fbe1f5705b800283463904f072ce215930d81cda5f968333abd2d8558ac59a0d6cd419cd701e41b88901dea19d40 WHIRLPOOL 6b73420d4e249dbd3c8fc7e9670f0ca6b60554466b2d79410956df12af03763a8352701d9df4bc0759e08a6652813e40cbe1b6c9924cac111a81e33009bf27c8 DIST linux-3.10.tar.xz 73175088 SHA256 df27fa92d27a9c410bfe6c4a89f141638500d7eadcca5cce578954efc2ad3544 SHA512 5fb109fcbd59bf3dffc911b853894f0a84afa75151368f783a1252c5ff60c7a1504de216c0012be446df983e2dea400ad8eeed3ce04f24dc61d0ef76c174dc35 WHIRLPOOL e7c0ccc2231e430b831218fc66f1940d095d2d5447d391329c6a7373d4a1d16708f64778b32e4847802ee2dae4fcf7cb67a1238fd4eb204fd0c4bce2d8134053 DIST linux-4.1.tar.xz 83017828 SHA256 caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0 WHIRLPOOL 85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8 DIST linux-4.12.tar.xz 99186576 SHA256 a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab SHA512 8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728 WHIRLPOOL 3b97da251c2ba4ace4a27b708f2b1dcf94cb1b59aaeded6acb74bd98f0d3e33f1df83670665e4186d99a55daa84c88d539d93e20f0ff18a6d46ef326c48dd375 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.91.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.91.ebuild new file mode 100644 index 000000000000..7cd4561f750b --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.91.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="95" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.54.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.54.ebuild new file mode 100644 index 000000000000..9d82489d350e --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.54.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="56" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 72bf826ee5bf..3476a1784c79 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -12,5 +12,5 @@ DIST patch-3.2.93.xz 1773072 SHA256 c836f9a91dc4647d19e7489a702676055f5b221f79f2 DIST patch-4.1.44.xz 1171508 SHA256 e4af9c7bbcc7b8315ef59f8d5c950d330d387118ccee4e96049dc67b30ddc976 SHA512 8ab36ac700eaf4e54ed5aad56038c67de7127c72c107f7d3f86ba992ef770eb7869eddb581f0ff2e0435a9a4273144505256b0cf1ddf80ce3fff9d845bc560c4 WHIRLPOOL ac01a884cad4f10fe92b0203e618997107662ebe2d8e1335def112b108375353fbd4e4e8435178b0ab883694ebb136a75ffabed6fa905cdb9101b27f6b2ef8aa DIST patch-4.12.14.xz 237356 SHA256 999f3e0d97e1b9e7a09c8c0889f020ac9e342ec2391d0458521d4b8bff1cf945 SHA512 8bef19b2a87147b4ac7c5852d6cac0281c7df7deb84460c6462c981b9213d288061c19535bd9a4da03db73f8a9fd2fb76bf9c6d42b0b6ad1f30c97d5ee0964d1 WHIRLPOOL cd7c1173430eea9a33386fdfca10e1112ee90a5420180f30c0f375d7fb3ddfa657eae93cbae1a1d2b1a1a5d442eaf402e6565028ffeff79fc78a08b6334b1873 DIST patch-4.13.5.xz 120108 SHA256 ba0cf285525e24850917c2f5cc7c2283b6509e2185bb70108f140f7ec695d57d SHA512 de55b07e52e88e3bc5af54c619933a81f535393f20712f38000bffa77ded22c7a16e70e43c28daf576bcc6cd3ad39387b8e1f430e3d22222f572113d2345df48 WHIRLPOOL cf0e094ef73563e464128d9e080b3653ea059dc8ae60f55581bbf20483ada96b71144c0862f95e15cf2281cf359c75b9be91c0b246c192ec0f5bb8b918287506 -DIST patch-4.4.90.xz 1352360 SHA256 fe52e3ae90ea5cc2bc6da70efcb085cb80257cfb2dd058d09e5efcadcc7ed275 SHA512 07888960bbb6a0c5f9f0f2dcf35abd1e4524e9ac0727534d19abe5d627e35b1b4b017454408ebf2e184c7a8d26ed678a6ad6ad0f7497028037f1312ec5e1ff20 WHIRLPOOL 788854ff09099f378364a07b9369e07bd2e24a2fbceab8f5677d6a001d2a3205e36c2127c4f7a7400b0f9dbd3d46352434590e906de09f24c1817737fc018c57 -DIST patch-4.9.53.xz 1010420 SHA256 0f49a0ff7fe64a5413a264e99101bdd66a0da8f713897ece2d48008cc78eff75 SHA512 9dae939031ff232d080d81c8ebb1ff4093abfb1f8cb2133b6c2993042dc2778a92cd92edfd104533b1056e8d67d50bb14199339835fc2f7f667b0d0b92d899b2 WHIRLPOOL 57ca5a970ac7db77bfc7ab4eabecb4f25742e96da2598d7532769941b331cf2e6613721849908f35c6119e984cab992bc29c5419576c04a1eefddceacab9508f +DIST patch-4.4.91.xz 1365724 SHA256 d96bdc4da126aa93b33614c80c9e15fa6c6a42c225cf72927fb4ba0a3929c159 SHA512 44fab88ed7aba8f663ea01449fe7ce21e6ca0e472652dc61852402cf555ba9c7b9a48fa40a27e8da9612e9bf716b1e0ae761b6233363c6666fab8c7a54590bb7 WHIRLPOOL aa555dd9cb55ceb1c69db746b9f4b35b4f422dc8280e05fe460098a1bea5305d0044814835ccd70e7118d654819fe93f08ed300a13a1ea48122ad69b591ca439 +DIST patch-4.9.54.xz 1037212 SHA256 709621455ef17e98a2f7c3c0400f7875fa45ee672a29e005c9470fabd50304a8 SHA512 8ce2dbab8b8a94ef593eb40fc07b236c7b746a0eb099509fbe23ecde213384d535ad8ff4695b9cef2c5a78ecd6590fa8ded6e36c7ee17ef8dadb649ec5c074e2 WHIRLPOOL 4d2a6101e484f2736328cd67133db3ef113cb4f0084700104829b917c18f13849928747e44646fa954bf9dcd9ac9127b1e214ad916ca9252bf18a89f8b48b590 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.90.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.4.91.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.4.90.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.4.91.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.53.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.9.54.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.9.53.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.9.54.ebuild diff --git a/sys-libs/glibc/glibc-2.26-r2.ebuild b/sys-libs/glibc/glibc-2.26-r2.ebuild index f94778033779..8b6e1b1520be 100644 --- a/sys-libs/glibc/glibc-2.26-r2.ebuild +++ b/sys-libs/glibc/glibc-2.26-r2.ebuild @@ -689,7 +689,7 @@ glibc_do_src_install() { keepdir /usr/$(get_libdir)/locale for a in $(get_install_abis) ; do if [[ ! -e ${ED}/usr/$(get_abi_LIBDIR ${a})/locale ]] ; then - dosym /usr/$(get_libdir)/locale /usr/$(get_abi_LIBDIR ${a})/locale + dosym ../$(get_libdir)/locale /usr/$(get_abi_LIBDIR ${a})/locale fi done diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index a31138a4ea8b..dacec0b7e245 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-9999.ebuild @@ -689,7 +689,7 @@ glibc_do_src_install() { keepdir /usr/$(get_libdir)/locale for a in $(get_install_abis) ; do if [[ ! -e ${ED}/usr/$(get_abi_LIBDIR ${a})/locale ]] ; then - dosym /usr/$(get_libdir)/locale /usr/$(get_abi_LIBDIR ${a})/locale + dosym ../$(get_libdir)/locale /usr/$(get_abi_LIBDIR ${a})/locale fi done diff --git a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild index 1c1860646ae8..8877b7757c4d 100644 --- a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild +++ b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild @@ -5,7 +5,7 @@ EAPI=6 DESCRIPTION="Virtual for ${PN#perl-}" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" # Check https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/virtual/perl-Module-CoreList # When bumping this package. diff --git a/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild b/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild index c859d5278368..86c94989aab3 100644 --- a/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild +++ b/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild @@ -5,7 +5,7 @@ EAPI=6 DESCRIPTION="Virtual for ${PN#perl-}" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=" || ( =dev-lang/perl-5.26* =dev-lang/perl-5.24.3* ~perl-core/${PN#perl-}-${PV} ) diff --git a/www-apps/piwigo/Manifest b/www-apps/piwigo/Manifest index 7af272be08f5..5bc30e0217f1 100644 --- a/www-apps/piwigo/Manifest +++ b/www-apps/piwigo/Manifest @@ -1,3 +1,2 @@ -DIST piwigo-2.8.6.zip 7608839 SHA256 74e400afd780642d19752a1f6ea5d864b97047cc525ed2abfff95e1eba44b565 SHA512 1f68daa77722d6d3f00b644a50fd0be7dfa39d6390f8b202f4a61e890bd721c62ba34764f2b1634166ff12dc9ccbee117bd24d82f690c16abf6c5f37cb1b639f WHIRLPOOL 45070d3685302f017b488f44e08a81ee5cb9de1151d2467b13a461d50fa207c5ca1a02f4414745e555630acd37624dfd3cd1f67cf24cd10b8ed055583679aaf2 -DIST piwigo-2.9.0.zip 7763733 SHA256 5301b8bf83aaa6542430a701ed814e316f13878593e525be4d5730c9caf36f6f SHA512 13f91e9ccb348fbcde6540e589a068da1aeead643303fc374db4d4b6ad5e491eeb1bdc4eca2b2d8707e23b858b6b76577433e0e33f9911cabbaeb4ce3e171cdf WHIRLPOOL dae383c3748513086dd70afd7f469d43451960cd526ae7ad59888e49d3abcb43020078403a8240656b6aed439af109fd9d7f4375eb5b8175d8f958584d3356b5 DIST piwigo-2.9.1.zip 7777925 SHA256 7ff2d936d5436d9883f318ac32c1a3b482b870abb7e825d7414ebb21b2ab147d SHA512 5fee3e96a5a9a4d70cc1528f40569b45c1898e71245ca7fcfdf529d39ee79ae0d419ef38b61c536dfb5150d1f9fe683ceabf8393455d51539253d0010ccc2fff WHIRLPOOL 63d22402e80e18d85d0bdd2a9ac65f1ebf6a3d9479d43b5e239a3ebdc10dc72ba6b21b22670f24bb1c9303fbf301f20a80dc61e2c058083329967cf1aab7ef69 +DIST piwigo-2.9.2.zip 7794574 SHA256 344937dd1685efb41c1aa7301497aea0fb84707a6a9809eca9efb390d4eadb4a SHA512 e87ff57a4713435880c0a9c8b03db30952741c3e9a8d7b8e3f13410d78d9b117d7a63693ec42f288c7516ed623746c6191b69a5a4fd5c31afdfcc36e93d3de1d WHIRLPOOL 1909c41e4d01f17bc67e67cb20d162ba1b25c07a9430a061952012d64c72037efda8840e8f99d2832d585c1e0c19dbfaa1177c5b85f4f8c49b01b795a9a81c65 diff --git a/www-apps/piwigo/piwigo-2.9.0.ebuild b/www-apps/piwigo/piwigo-2.9.0.ebuild deleted file mode 100644 index 5eabb1cb9062..000000000000 --- a/www-apps/piwigo/piwigo-2.9.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit webapp - -DESCRIPTION="a photo gallery software for the web" -HOMEPAGE="http://piwigo.org/" -SRC_URI="http://piwigo.org/download/dlcounter.php?code=${PV} -> ${P}.zip" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" -IUSE="+exif +gd imagemagick" - -DEPEND="" -RDEPEND=" - imagemagick? ( virtual/imagemagick-tools ) - dev-lang/php[ctype,exif?,gd?,filter,iconv,json,mysqli] - >=virtual/mysql-5.0 - virtual/httpd-php" - -REQUIRED_USE="|| ( gd imagemagick )" - -S=${WORKDIR}/${PN} - -src_install() { - webapp_src_preinst - - insinto "${MY_HTDOCSDIR}" - doins -r . - - # Local configuration, and parts that can be updated - webapp_serverowned "${MY_HTDOCSDIR}"/_data - webapp_serverowned -R "${MY_HTDOCSDIR}"/galleries - webapp_serverowned -R "${MY_HTDOCSDIR}"/language - webapp_serverowned -R "${MY_HTDOCSDIR}"/local - webapp_serverowned -R "${MY_HTDOCSDIR}"/plugins - webapp_serverowned -R "${MY_HTDOCSDIR}"/template-extension - webapp_serverowned -R "${MY_HTDOCSDIR}"/themes - webapp_serverowned "${MY_HTDOCSDIR}"/upload - - webapp_src_install -} diff --git a/www-apps/piwigo/piwigo-2.8.6-r1.ebuild b/www-apps/piwigo/piwigo-2.9.2.ebuild similarity index 100% rename from www-apps/piwigo/piwigo-2.8.6-r1.ebuild rename to www-apps/piwigo/piwigo-2.9.2.ebuild diff --git a/www-plugins/pdfjs/Manifest b/www-plugins/pdfjs/Manifest index 971a84547080..47c36a287d5b 100644 --- a/www-plugins/pdfjs/Manifest +++ b/www-plugins/pdfjs/Manifest @@ -1 +1 @@ -DIST pdfjs-1.7.225.zip 2590573 SHA256 c7781f6c90cd6806631cbf84a8b37d94d0831420e6d2b8055f18646076a51ed9 SHA512 b2464eb7197ee1e670c5814e19fa11eb41a2e54ba69883853418661dc667e3991ea2c677adaf5d192317e1f278656c4442caded8363aff09a4e9cebf170f59e6 WHIRLPOOL 5ad4e5cb96bb101ec8f56046b386213a7dc953d07ba1a53f06146499d63449a04ad07cca172fcf3079c829d9312a8b3f83fd5ee7d813d559ea2014514ef6dbb1 +DIST pdfjs-1.9.426.zip 3510568 SHA256 00998c3b731382106e1f3a48ab15dce6714015573f76027c6b178fccf99f286c SHA512 4c6a7ac613755a73d694a80ccea0d0d3d100fb0c7039ae5d866059d39e58b650092a733c7bea6d302cfa196f439d28f59055443ab96443161d1770462d8976ef WHIRLPOOL 6b0b769e8cfff9c82a37e03ff06d5f9d6b5601c8ce25a5db2e10c7a34fc9fe23710d15b209346aea33221248eaa42bd6e554e8f290b0cc0b8157230800264ae2 diff --git a/www-plugins/pdfjs/pdfjs-1.7.225.ebuild b/www-plugins/pdfjs/pdfjs-1.9.426.ebuild similarity index 94% rename from www-plugins/pdfjs/pdfjs-1.7.225.ebuild rename to www-plugins/pdfjs/pdfjs-1.9.426.ebuild index f4a4005b1275..4c12535dad2d 100644 --- a/www-plugins/pdfjs/pdfjs-1.7.225.ebuild +++ b/www-plugins/pdfjs/pdfjs-1.9.426.ebuild @@ -11,6 +11,8 @@ LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" +DEPEND="app-arch/unzip" + S="${WORKDIR}" src_install() { diff --git a/x11-terms/xterm/metadata.xml b/x11-terms/xterm/metadata.xml index 4be8b4bbe587..717e3b6fdfa4 100644 --- a/x11-terms/xterm/metadata.xml +++ b/x11-terms/xterm/metadata.xml @@ -1,18 +1,10 @@ - - dickey@invisible-island.net - Thomas Dickey - x11@gentoo.org X11 - - proxy-maint@gentoo.org - Proxy Maintainers - Use openpty() in preference to posix_openpt() Enable the xterm toolbar to be built diff --git a/x11-wm/dwm/metadata.xml b/x11-wm/dwm/metadata.xml index fc6921e0f2d6..c6b034596a37 100644 --- a/x11-wm/dwm/metadata.xml +++ b/x11-wm/dwm/metadata.xml @@ -1,17 +1,9 @@ - - hm.stahl@web.de - Michael Stahn - desktop-misc@gentoo.org - - proxy-maint@gentoo.org - Proxy Maintainers - dwm is a dynamic window manager for X. It manages windows in tiling and floating modes. Either mode can be applied dynamically, optimizing the