diff --git a/app-admin/gkrellm/Manifest b/app-admin/gkrellm/Manifest index fc63775bf038..e8a99f328610 100644 --- a/app-admin/gkrellm/Manifest +++ b/app-admin/gkrellm/Manifest @@ -1,3 +1,4 @@ DIST gkrellm-2.3.5.tar.bz2 765011 SHA256 702b5b0e9c040eb3af8e157453f38dd6f53e1dcd8b1272d20266cda3d4372c8b SHA512 9681ec5978b6be9f56a71726df36671829a4427f45caf90c8c3460e8c59004ff4083de1692cad16e3724ed37418bb3e4589d1961c140f3becfa3efd210b7a5dc WHIRLPOOL 3dceb20b9da49fb9b287e1faca88b3fdb7ae7af6dde5e675ee1e5c718467b131e34f740cb38719e5026ce0478146264fa4eaa060120e71f2c442ec5504e6dfb4 DIST gkrellm-2.3.7.tar.bz2 777841 SHA256 f7a4642d2cc6b61242215e58e1bd8fe394e6fd984cd3c3f8964c1c554029735d SHA512 832353d245966a5d64ccbacd619905fe437b347c2654e279ec47b56aa1ef559a166b4791d63e151a5481c55c1d3775906e52213f42e5d7071fd15f00f8cecaa5 WHIRLPOOL 3fd8b51a1be5174308fe1dbbb1c1d83df0685c12e71cf410533f97439fb5cf001553c462e15b9971c55c6ea87b28429136fe0025d39c443cb9d215fcf7620f46 DIST gkrellm-2.3.8.tar.xz 659164 SHA256 8064ec03ac151c22d716e08d09851102e9deeb2156a265d97f5cf7ad547fa9e3 SHA512 da6410e26a3ef3ae8c951a4b608e09748616ef89786590456df183b90133c3c5a94fb99e56fcde5e0b25e09ca1682bffc194c3ccae305da25b88ce131c89fd99 WHIRLPOOL 638d26a20f3839b53d071efc803ab1b67df1114075b57c636bfa31d15d0c864b074f8fe2ea04955f95b854c3501967d7dbdbe93b95bec4975a4c230fdb63ecec +DIST gkrellm-2.3.9.tar.xz 659612 SHA256 7e0a2ea0f54e2e485c0764718c52d9779d61c1f6bb8cb84083e8169b5c93e8a4 SHA512 02f6731a81820b9c2c21332b1c1a2e3b5ab7b50452fe78e82e2bd7f8276dedff284048375161fb9f31ac7a72437e3e8b1196e91a3a87248b68e14440528f5195 WHIRLPOOL 01d17556feafa270fddc0c360b50015c29ae050cf3350e2ba5b00a647777bd6bfc9a26149542412ff7c191f859eec4dbccf6561ff77f2040f63780d925605320 diff --git a/app-admin/gkrellm/gkrellm-2.3.9.ebuild b/app-admin/gkrellm/gkrellm-2.3.9.ebuild new file mode 100644 index 000000000000..8ce513501e3b --- /dev/null +++ b/app-admin/gkrellm/gkrellm-2.3.9.ebuild @@ -0,0 +1,145 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils multilib user systemd toolchain-funcs + +MY_P="${P/_/-}" + +DESCRIPTION="Single process stack of various system monitors" +HOMEPAGE="http://www.gkrellm.net/" +# Upstream named their xz compressed tarball tar.bz2 (*sigh*) +SRC_URI="http://gkrellm.srcbox.net/${MY_P}.tar.bz2 -> ${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="gnutls hddtemp libressl lm_sensors nls ntlm ssl kernel_FreeBSD X" + +RDEPEND=" + dev-libs/glib:2 + hddtemp? ( app-admin/hddtemp ) + gnutls? ( net-libs/gnutls ) + !gnutls? ( + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) + ) + lm_sensors? ( sys-apps/lm_sensors ) + nls? ( virtual/libintl ) + ntlm? ( net-libs/libntlm ) + X? ( + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/pango + )" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext )" + +PATCHES=( + "${FILESDIR}"/${PN}-2.3.5-cifs.patch + "${FILESDIR}"/${PN}-2.3.5-config.patch + "${FILESDIR}"/${PN}-2.3.5-width.patch + "${FILESDIR}"/${PN}-2.3.5-sansfont.patch +) + +S="${WORKDIR}/${MY_P}" + +DOCS=( Changelog CREDITS README ) + +pkg_setup() { + enewgroup gkrellmd + enewuser gkrellmd -1 -1 -1 gkrellmd + TARGET= + use kernel_FreeBSD && TARGET="freebsd" +} + +src_prepare() { + sed -e 's:-O2 ::' \ + -e 's:override CC:CFLAGS:' \ + -e 's:-L/usr/X11R6/lib::' \ + -i */Makefile || die "sed Makefile(s) failed" + + sed -e "s:/usr/lib:${EPREFIX}/usr/$(get_libdir):" \ + -e "s:/usr/local/lib:${EPREFIX}/usr/local/$(get_libdir):" \ + -i src/${PN}.h || die "sed ${PN}.h failed" + + default +} + +src_compile() { + if use X ; then + local sslopt="" + if use gnutls; then + sslopt="without-ssl=yes" + elif use ssl; then + sslopt="without-gnutls=yes" + else + sslopt="without-ssl=yes without-gnutls=yes" + fi + + emake \ + ${TARGET} \ + CC="$(tc-getCC)" \ + STRIP="" \ + INSTALLROOT="${EPREFIX}/usr" \ + INCLUDEDIR="${EPREFIX}/usr/include/gkrellm2" \ + LOCALEDIR="${EPREFIX}/usr/share/locale" \ + $(usex nls "" "enable_nls=0") \ + $(usex lm_sensors "" "without-libsensors=yes") \ + $(usex ntlm "" "without-ntlm=yes") \ + ${sslopt} + else + cd server || die + emake \ + ${TARGET} \ + CC="$(tc-getCC)" \ + LINK_FLAGS="$LDFLAGS -Wl,-E" \ + STRIP="" \ + $(usex nls "" "enable_nls=0") \ + $(usex lm_sensors "" "without-libsensors=yes") + fi +} + +src_install() { + if use X ; then + emake \ + install${TARGET:+_}${TARGET} \ + $(usex nls "" "enable_nls=0") \ + STRIP="" \ + INSTALLDIR="${ED}/usr/bin" \ + INCLUDEDIR="${ED}/usr/include" \ + LOCALEDIR="${ED}/usr/share/locale" \ + PKGCONFIGDIR="${ED}/usr/$(get_libdir)/pkgconfig" \ + MANDIR="${ED}/usr/share/man/man1" + + docinto html + dodoc *.html + + newicon src/icon.xpm ${PN}.xpm + make_desktop_entry ${PN} GKrellM ${PN} + else + dobin server/gkrellmd + + insinto /usr/include/gkrellm2 + doins server/gkrellmd.h + doins shared/log.h + fi + + newinitd "${FILESDIR}"/gkrellmd.initd gkrellmd + newconfd "${FILESDIR}"/gkrellmd.conf gkrellmd + + systemd_dounit "${FILESDIR}"/gkrellmd.service + + insinto /etc + doins server/gkrellmd.conf + + einstalldocs +} diff --git a/app-admin/sudo/Manifest b/app-admin/sudo/Manifest index b1dccad34f59..d491a515a632 100644 --- a/app-admin/sudo/Manifest +++ b/app-admin/sudo/Manifest @@ -2,3 +2,4 @@ DIST sudo-1.8.15.tar.gz 2660128 SHA256 4316381708324da8b6cb151f655c1a11855207c7c DIST sudo-1.8.16.tar.gz 2707358 SHA256 2d83826fc5125bf073acc203dbda1cf2abeee017090ccc9dddb0431a53d5064d SHA512 7cf5399eb65c4b39071213c27c34d35ed2ea9c4578f19f6e8d3777179914fa30a2848c042e9f85e90e3b5d056322b9eb6c79e2d3b9b210a795e9921a1b00200b WHIRLPOOL 747bff26e93475441aab6bb6ff8e51114f8155277d570cbdb28909b7e63a49fcdcf5d65f186a2ec067f1100cac3c0a2e6f3a7611f78d83794f41d6884a8c6fc9 DIST sudo-1.8.17p1.tar.gz 2786618 SHA256 c690d707fb561b3ecdf6a6de5563bc0b769388eff201c851edbace408bb155cc SHA512 e9facd2d5578d4effb516931322b5f4f9578baa779cba281d36a3d0995b1fd9d085d6b141544b3dc698569fa294163bbad9f779166a05a0f18f4ad81a630b954 WHIRLPOOL 7b89fa9f05bbe72929073d83433f21b5a783047118ae7d434cb08cb536d5e47a641c59f5b4c7310c73d7dc994331974e4f209700e83139c2847f68e7dba014b2 DIST sudo-1.8.18.tar.gz 2820103 SHA256 8519e99e97fa51ac50fca2030e76f9aa5195f543ae2d15107753f4e4c4e3be13 SHA512 d461d54d7bfac3fc00642801773c27fe7d8514a76d79bda7142cbf51415d5bcedd661a207705814737c39267320ca82722706dfa9d2c02fdbf12642bd8461132 WHIRLPOOL 360039762fc32fc8d1c19a606ca35edb76e93fc4320eb4154e2468e9b0a9df7ca55576f19e92666281a6852c201b76e517c6d7ee5e676c7aa8890dc89c92187f +DIST sudo-1.8.18p1.tar.gz 2822109 SHA256 e5a0471c721281a693025bbde33ebd9d3db43245d83ab8516bbfc23980379434 SHA512 8dceeb5024c4f94fcc15e75fa2fd164af5e0597734f95df43207738b3258c4d396e102faf2b6811e399f1cdbdbf617b87e5bfcc1e591ea6722f45d81d1098fe5 WHIRLPOOL 094c1232517706a6da4a0548f7ab5c0c7b9e12f8ce584db97d0c4793a38c4044538637f2834b9f3104326bd5b4b826d08ab79b1dc2c5b950de7d7f558685ef7b diff --git a/app-admin/sudo/sudo-1.8.18_p1.ebuild b/app-admin/sudo/sudo-1.8.18_p1.ebuild new file mode 100644 index 000000000000..ef687bcf0302 --- /dev/null +++ b/app-admin/sudo/sudo-1.8.18_p1.ebuild @@ -0,0 +1,202 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils pam multilib libtool + +MY_P=${P/_/} +MY_P=${MY_P/beta/b} + +uri_prefix= +case ${P} in +*_beta*|*_rc*) uri_prefix=beta/ ;; +esac + +DESCRIPTION="Allows users or groups to run commands as other users" +HOMEPAGE="http://www.sudo.ws/" +SRC_URI="http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz + ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz" + +# Basic license is ISC-style as-is, some files are released under +# 3-clause BSD license +LICENSE="ISC BSD" +SLOT="0" +if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris" +fi +IUSE="ldap nls pam offensive selinux skey +sendmail" + +DEPEND="pam? ( virtual/pam ) + skey? ( >=sys-auth/skey-1.1.5-r1 ) + ldap? ( + >=net-nds/openldap-2.1.30-r1 + dev-libs/cyrus-sasl + ) + sys-libs/zlib" +RDEPEND="${DEPEND} + selinux? ( sec-policy/selinux-sudo ) + ldap? ( dev-lang/perl ) + pam? ( sys-auth/pambase ) + >=app-misc/editor-wrapper-3 + virtual/editor + sendmail? ( virtual/mta )" +DEPEND="${DEPEND} + sys-devel/bison" + +S=${WORKDIR}/${MY_P} + +REQUIRED_USE="pam? ( !skey ) skey? ( !pam )" + +MAKEOPTS+=" SAMPLES=" + +src_prepare() { + default + elibtoolize +} + +set_rootpath() { + # FIXME: secure_path is a compile time setting. using ROOTPATH + # is not perfect, env-update may invalidate this, but until it + # is available as a sudoers setting this will have to do. + einfo "Setting secure_path ..." + + # first extract the default ROOTPATH from build env + ROOTPATH=$(unset ROOTPATH; . "${EPREFIX}"/etc/profile.env; echo "${ROOTPATH}") + if [[ -z ${ROOTPATH} ]] ; then + ewarn " Failed to find ROOTPATH, please report this" + fi + + # then remove duplicate path entries + cleanpath() { + local newpath thisp IFS=: + for thisp in $1 ; do + if [[ :${newpath}: != *:${thisp}:* ]] ; then + newpath+=:$thisp + else + einfo " Duplicate entry ${thisp} removed..." + fi + done + ROOTPATH=${newpath#:} + } + cleanpath /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin${ROOTPATH:+:${ROOTPATH}} + + # finally, strip gcc paths #136027 + rmpath() { + local e newpath thisp IFS=: + for thisp in ${ROOTPATH} ; do + for e ; do [[ $thisp == $e ]] && continue 2 ; done + newpath+=:$thisp + done + ROOTPATH=${newpath#:} + } + rmpath '*/gcc-bin/*' '*/gnat-gcc-bin/*' '*/gnat-gcc/*' + + einfo "... done" +} + +src_configure() { + local ROOTPATH + set_rootpath + + # audit: somebody got to explain me how I can test this before I + # enable it.. - Diego + # plugindir: autoconf code is crappy and does not delay evaluation + # until `make` time, so we have to use a full path here rather than + # basing off other values. + econf \ + --enable-zlib=system \ + --with-secure-path="${ROOTPATH}" \ + --with-editor="${EPREFIX}"/usr/libexec/editor \ + --with-env-editor \ + $(use_with offensive insults) \ + $(use_with offensive all-insults) \ + $(use_with ldap ldap_conf_file /etc/ldap.conf.sudo) \ + $(use_with ldap) \ + $(use_enable nls) \ + $(use_with pam) \ + $(use_with skey) \ + $(use_with selinux) \ + $(use_with sendmail) \ + --without-opie \ + --without-linux-audit \ + --with-rundir="${EPREFIX}"/var/run/sudo \ + --with-vardir="${EPREFIX}"/var/db/sudo \ + --with-plugindir="${EPREFIX}"/usr/$(get_libdir)/sudo \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} +} + +src_install() { + default + + if use ldap ; then + dodoc README.LDAP + dosbin plugins/sudoers/sudoers2ldif + + cat <<-EOF > "${T}"/ldap.conf.sudo + # See ldap.conf(5) and README.LDAP for details + # This file should only be readable by root + + # supported directives: host, port, ssl, ldap_version + # uri, binddn, bindpw, sudoers_base, sudoers_debug + # tls_{checkpeer,cacertfile,cacertdir,randfile,ciphers,cert,key} + EOF + + insinto /etc + doins "${T}"/ldap.conf.sudo + fperms 0440 /etc/ldap.conf.sudo + + insinto /etc/openldap/schema + newins doc/schema.OpenLDAP sudo.schema + fi + + pamd_mimic system-auth sudo auth account session + + keepdir /var/db/sudo + fperms 0700 /var/db/sudo + + # Don't install into /var/run as that is a tmpfs most of the time + # (bug #504854) + rm -rf "${D}"/var/run +} + +pkg_postinst() { + if use ldap ; then + ewarn + ewarn "sudo uses the /etc/ldap.conf.sudo file for ldap configuration." + ewarn + if grep -qs '^[[:space:]]*sudoers:' "${ROOT}"/etc/nsswitch.conf ; then + ewarn "In 1.7 series, LDAP is no more consulted, unless explicitly" + ewarn "configured in /etc/nsswitch.conf." + ewarn + ewarn "To make use of LDAP, add this line to your /etc/nsswitch.conf:" + ewarn " sudoers: ldap files" + ewarn + fi + fi + if use prefix ; then + ewarn + ewarn "To use sudo, you need to change file ownership and permissions" + ewarn "with root privileges, as follows:" + ewarn + ewarn " # chown root:root ${EPREFIX}/usr/bin/sudo" + ewarn " # chown root:root ${EPREFIX}/usr/lib/sudo/sudoers.so" + ewarn " # chown root:root ${EPREFIX}/etc/sudoers" + ewarn " # chown root:root ${EPREFIX}/etc/sudoers.d" + ewarn " # chown root:root ${EPREFIX}/var/db/sudo" + ewarn " # chmod 4111 ${EPREFIX}/usr/bin/sudo" + ewarn + fi + + elog "To use the -A (askpass) option, you need to install a compatible" + elog "password program from the following list. Starred packages will" + elog "automatically register for the use with sudo (but will not force" + elog "the -A option):" + elog "" + elog " [*] net-misc/ssh-askpass-fullscreen" + elog " net-misc/x11-ssh-askpass" + elog "" + elog "You can override the choice by setting the SUDO_ASKPASS environmnent" + elog "variable to the program you want to use." +} diff --git a/app-laptop/tp_smapi/tp_smapi-0.42.ebuild b/app-laptop/tp_smapi/tp_smapi-0.42-r1.ebuild similarity index 85% rename from app-laptop/tp_smapi/tp_smapi-0.42.ebuild rename to app-laptop/tp_smapi/tp_smapi-0.42-r1.ebuild index ed4b4a57df4d..8f671665c63f 100644 --- a/app-laptop/tp_smapi/tp_smapi-0.42.ebuild +++ b/app-laptop/tp_smapi/tp_smapi-0.42-r1.ebuild @@ -21,7 +21,11 @@ IUSE="hdaps" DEPEND="sys-apps/dmidecode" RDEPEND="${DEPEND}" -pkg_pretend() { +# This code is factored out of both pkg_pretend() and pkg_setup() +# because the PMS states that ebuilds may not call phase functions +# directly (see the "List of functions" section). This was bug #596616 +# and #596622. +tp_smapi_pkg_pretend() { linux-mod_pkg_setup MODULE_NAMES="thinkpad_ec(extra:) tp_smapi(extra:)" @@ -43,9 +47,13 @@ pkg_pretend() { fi } +pkg_pretend() { + tp_smapi_pkg_pretend +} + pkg_setup() { # run again as pkg_pretend is not var safe - pkg_pretend + tp_smapi_pkg_pretend } src_compile() { diff --git a/dev-lang/solidity/Manifest b/dev-lang/solidity/Manifest new file mode 100644 index 000000000000..9e7a8e6cb34d --- /dev/null +++ b/dev-lang/solidity/Manifest @@ -0,0 +1 @@ +DIST solidity-0.4.2.tar.gz 495039 SHA256 0dd176919cab5492aecb27d1d8de39182b5e880979d5082fca6d7a01ebce28f1 SHA512 2ef2e58775e22eefce867ee73dbab61f54def1edd95e089ec3a388b5aaba316c44fe18b92d45e070014b9df6e450b2b27fe78434f5db40f0476c505b2541572c WHIRLPOOL 541c2bd8d729bd9d1ef15739b539ca877b7c1f4e1ed9e9eda8ad7d3fd4c306001799727de14dae8fbf0092c31c9b0448c9ea7af92ca069ac24cf010f0a6c8ef6 diff --git a/dev-lang/solidity/files/solidity-0.4.2-commit_hash.txt b/dev-lang/solidity/files/solidity-0.4.2-commit_hash.txt new file mode 100644 index 000000000000..fd2779b63759 --- /dev/null +++ b/dev-lang/solidity/files/solidity-0.4.2-commit_hash.txt @@ -0,0 +1 @@ +af6afb04 diff --git a/dev-lang/solidity/metadata.xml b/dev-lang/solidity/metadata.xml new file mode 100644 index 000000000000..72530b22b19e --- /dev/null +++ b/dev-lang/solidity/metadata.xml @@ -0,0 +1,12 @@ + + + + + mathy@vanvoorden.be + Mathy Vanvoorden + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/dev-lang/solidity/solidity-0.4.2.ebuild b/dev-lang/solidity/solidity-0.4.2.ebuild new file mode 100644 index 000000000000..0fa788e087da --- /dev/null +++ b/dev-lang/solidity/solidity-0.4.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +CMAKE_MIN_VERSION="3.0.0" + +inherit cmake-utils + +DESCRIPTION="The Solidity Contract-Oriented Programming Language" +HOMEPAGE="https://github.com/ethereum/solidity" +SRC_URI="https://github.com/ethereum/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/jsoncpp:= + dev-libs/boost:= +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + + # The build won't work without this file but it is missing from + # the release tarball. + # + # Reported upstream: https://github.com/ethereum/solidity/issues/1183 + + cp "${FILESDIR}"/${P}-commit_hash.txt "${S}"/commit_hash.txt || die "Could not copy commit hash" + + # Without this file the build is marked as a developer version + # but it is missing from the release tarball. + # + # Reported upstream: https://github.com/ethereum/solidity/issues/1183 + + touch "${S}"/prerelease.txt || die "Could not mark as release version" +} diff --git a/dev-libs/vrb/Manifest b/dev-libs/vrb/Manifest deleted file mode 100644 index 61c7c38aa57d..000000000000 --- a/dev-libs/vrb/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST vrb-0.5.1.tar.bz2 41106 SHA256 d579ed1998ef2d78e2ef8481a748d26e1fa12cdda806d2e31d8ec66ffb0e289f SHA512 0db418e659d4c7cfc38ed5774345d204a87ca72525ea1d86e15ee3a09ff66828df1c110e2c84336fc8789a94b3e05eda1a2c4881799e511a7f75b728e2bc0734 WHIRLPOOL 2033b40a2875dc374ba82188cb8ec98f1bfd26eaa2ed151f561537868f696bc7b509c8388f1ce6802b9a9ef4b689041a4d6391248363a1f7f672e6b9a3c25df4 diff --git a/dev-libs/vrb/files/vrb-0.5.1-configure.patch b/dev-libs/vrb/files/vrb-0.5.1-configure.patch deleted file mode 100644 index 281efa6850e9..000000000000 --- a/dev-libs/vrb/files/vrb-0.5.1-configure.patch +++ /dev/null @@ -1,98 +0,0 @@ -diff -NrU5 vrb-0.5.1.original/configure vrb-0.5.1/configure ---- vrb-0.5.1.original/configure 2009-08-05 19:22:47.000000000 -0600 -+++ vrb-0.5.1/configure 2009-08-05 19:57:15.000000000 -0600 -@@ -314,11 +314,11 @@ - #----------------------------------------------------------------------------- - unamem=$( uname -m | tr ' ' '_' ) - unames=$( uname -s | tr ' ' '_' ) - unamer=$( uname -r | tr ' ' '_' ) - --gcc="gcc" -+gcc=${CC} - - lib_cp_cmd="${gcc}" - pgm_cp_cmd="${gcc}" - - lib_cc_cmd="${gcc}" -@@ -331,23 +331,23 @@ - pgm_ld_cmd="${gcc}" - - lib_def=( "${lib_def[@]}" "-DARCH_${unamem}" "-DARCH=${unamem}" ) - pgm_def=( "${pgm_def[@]}" "-DARCH_${unamem}" "-DARCH=${unamem}" ) - --lib_warn=( -Werror -Wall -Wnested-externs -Wno-cast-qual -Wno-trigraphs -Wuninitialized -Wwrite-strings ) --pgm_warn=( -Werror -Wall -Wnested-externs -Wno-cast-qual -Wno-trigraphs -Wuninitialized -Wwrite-strings ) -+lib_warn=( -Wall -Wnested-externs -Wno-cast-qual -Wno-trigraphs -Wuninitialized -Wwrite-strings ) -+pgm_warn=( -Wall -Wnested-externs -Wno-cast-qual -Wno-trigraphs -Wuninitialized -Wwrite-strings ) - - if [[ -n "${warninline}" ]]; then - lib_warn=( "${lib_warn[@]}" -Winline ) - pgm_warn=( "${pgm_warn[@]}" -Winline ) - fi - --lib_feat=( -fomit-frame-pointer -funsigned-char -funsigned-bitfields -fgnu-linker -frerun-loop-opt -finline -finline-functions -fmove-all-movables ) --pgm_feat=( -fomit-frame-pointer -funsigned-char -funsigned-bitfields -fgnu-linker -frerun-loop-opt -finline -finline-functions -fmove-all-movables ) -+lib_feat="${CFLAGS} ${LDFLAGS}" -+pgm_feat="${CFLAGS} ${LDFLAGS}" - --lib_cp_opt=( -pipe ) --pgm_cp_opt=( -pipe ) -+lib_cp_opt="${CFLAGS} ${LDFLAGS}" -+pgm_cp_opt="${CFLAGS} ${LDFLAGS}" - - if [[ -n "${std}" ]]; then - lib_cp_opt=( "${lib_cp_opt[@]}" "-std=${std}" ) - pgm_cp_opt=( "${pgm_cp_opt[@]}" "-std=${std}" ) - fi -@@ -375,11 +375,11 @@ - if [[ -n "${as_verbose}" ]]; then - lib_as_opt=( -v "${lib_as_opt[@]}" ) - pgm_as_opt=( -v "${pgm_as_opt[@]}" ) - fi - --lib_ld_opt=( -pipe -shared -nostdlib -nostartfiles ) -+lib_ld_opt=("${CFLAGS} ${LDFLAGS}" -pipe -shared -nostdlib -nostartfiles) - pgm_ld_opt=( -pipe ) - if [[ -n "${ld_verbose}" ]]; then - lib_ld_opt=( -v "${lib_ld_opt[@]}" ) - pgm_ld_opt=( -v "${pgm_ld_opt[@]}" ) - fi -@@ -1266,11 +1266,11 @@ - # Generate Makefile specs to compile library sources. - #---------------------------------------------------- - class_product_src lib "${libname}" | while read srcname; do - vmsg 9 "Generating Makefile section: lib ${libname} ${srcname}" - srcdir=$( dirname "${srcname}" ) -- srcref="-I ${srcdir} -I ${source}/include -I- -I ./include ${srcname}" -+ srcref="-iquote ${srcdir} -iquote ${source}/include -I ./include ${srcname}" - objname=$( echo "${srcname}" | gawk -F/ '{print $NF;}' | gawk -F. 'BEGIN{OFS=".";}{$NF="o";print $0;}' ) - for lc in arlib solib; do - [[ "${lc}" = "arlib" ]] && libfeat=( -DARLIBRARY=1 ) - [[ "${lc}" = "solib" ]] && libfeat=( -DSOLIBRARY=1 -DfPIC=1 -fPIC ) - -@@ -1352,11 +1352,11 @@ - echo -n " obj/${pgmclass}/${pgmname}/${objname}" - done - echo "" - - # link, object files, libraries -- echo -n "${tab}\$(pgm_ld_cmd) \$(pgm_ld_opt) -o ${pgmclass}/${pgmname}" -+ echo -n "${tab}\$(pgm_ld_cmd) \$(CFLAGS) \$(LDFLAGS) \$(pgm_ld_opt) -o ${pgmclass}/${pgmname}" - class_product_obj "${pgmclass}" "${pgmname}" | while read objname; do - echo -n " obj/${pgmclass}/${pgmname}/${objname}" - done - if [[ -z "${nosolib}" && -n "${execdynamic}" ]]; then - echo -n " -L./lib" -@@ -1396,11 +1396,11 @@ - - # compile each source file for each object needed by this executable - class_product_src "${pgmclass}" "${pgmname}" | while read srcname; do - vmsg 9 "Generating Makefile section: ${pgmclass} ${pgmname} ${srcname}" - srcdir=$( dirname "${srcname}" ) -- srcref="-I ${srcdir} -I ${source}/include -I- -I ./include ${srcname}" -+ srcref="-iquote ${srcdir} -iquote ${source}/include -I ./include ${srcname}" - objname=$( echo "${srcname}" | gawk -F/ '{print $NF;}' | gawk -F. 'BEGIN{OFS=".";}{$NF="o";print $0;}' ) - echo "obj/${pgmclass}/${pgmname}/${objname}: ${srcname}" - if [[ -n "${asm}" ]]; then - if [[ -n "${cpp}" ]]; then - cppname=$( echo "${objname}" | gawk -F. 'BEGIN{OFS=".";}{$NF="i";print $0;}' ) diff --git a/dev-libs/vrb/metadata.xml b/dev-libs/vrb/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/dev-libs/vrb/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/dev-libs/vrb/vrb-0.5.1-r1.ebuild b/dev-libs/vrb/vrb-0.5.1-r1.ebuild deleted file mode 100644 index 86693d999d93..000000000000 --- a/dev-libs/vrb/vrb-0.5.1-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit eutils toolchain-funcs - -DESCRIPTION="Library for a virtual ring buffer" -HOMEPAGE="http://vrb.slashusr.org/" -SRC_URI="http://vrb.slashusr.org/download/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~sparc ~x86" -IUSE="static" -RESTRICT="strip" - -DEPEND="" -RDEPEND=" - ${DEPEND} - sys-libs/glibc" - -PATCHES=( - "${FILESDIR}"/${P}-configure.patch -) - -DOCS=( README ) - -src_configure() { - CC="$(tc-getCC)" ./configure --prefix=/usr || die "Configure failed!" -} - -src_install() { - insinto /usr/include - doins build/include/vrb.h - - mkdir "${D}"usr/lib || die - - if use static; then - cp build/lib/libvrb.a* "${D}"usr/lib/ || die - fi - - cp build/lib/libvrb.so* "${D}"usr/lib/ || die - - dobin build/bin/vbuf - doman vrb/man/man3/*.3 -} diff --git a/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.1.0.ebuild b/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.1.0.ebuild deleted file mode 100644 index b08a49fa93c5..000000000000 --- a/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.1.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MODULE_AUTHOR=MONSIEURP -MODULE_VERSION=0.001000 - -inherit perl-module - -DESCRIPTION="Readily merge Pull Requests from the Gentoo Github repository" -HOMEPAGE="https://github.com/monsieurp/Gentoo-App-Pram" -SLOT="0" -KEYWORDS="amd64 ppc ~ppc64 x86" -IUSE="test" - -RDEPEND="" -DEPEND=" - dev-perl/Module-Build-Tiny - dev-perl/File-Which - dev-vcs/git - ${RDEPEND}" - -SRC_TEST="do" diff --git a/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.3.0.ebuild b/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.3.0.ebuild index b5358d5ca8b7..d54f49f5855a 100644 --- a/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.3.0.ebuild +++ b/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.3.0.ebuild @@ -12,7 +12,7 @@ inherit perl-module DESCRIPTION="Readily merge Pull Requests from the Gentoo Github repository" HOMEPAGE="https://github.com/monsieurp/Gentoo-App-Pram" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ppc ~ppc64 x86" IUSE="test" RDEPEND="" diff --git a/dev-perl/Gentoo-App-Pram/Manifest b/dev-perl/Gentoo-App-Pram/Manifest index 20524c8c1abb..7ee760279818 100644 --- a/dev-perl/Gentoo-App-Pram/Manifest +++ b/dev-perl/Gentoo-App-Pram/Manifest @@ -1,2 +1 @@ -DIST Gentoo-App-Pram-0.001000.tar.gz 4412 SHA256 f6151a53dd261e0059856da5d9d73740e03a82f74ef00842ffbe0b849e912221 SHA512 9bd7c03220d42c05d0d2c3109160ccb6062bb8713b324d6819745bcd61a72691afc010d70e1aeb26ad4930990dbe16627098329ba415ef76babcbe5518fa8fe9 WHIRLPOOL 5ef2f841fb38aab855903e07c93dcf09344263f1d7675ed5587a9fdb696008143a7236f7cf59f4730d048396a8555f2bc857cfeb96f863132383e26aba66bf15 DIST Gentoo-App-Pram-0.003000.tar.gz 11035 SHA256 c7731bc329204844f8fe5be6ca60d478bc619a3b071c29fc8fe3ec000f4dfbea SHA512 beebd27fa63f45308cfe9e43a392f33157556bd427a350d16b13d4c953f09d14737260226e1804ef10d597437cbb57301c7ea7595c2a947889563b7bc5142310 WHIRLPOOL 5abbc0d6871f64d180a3c6d462b866a9f6ca7ac6689339e56922b5d519c310a702034c8990e5868b7b27c869fe44ebb9f6270fe3f50a57b5ea1fb368dbaecfb0 diff --git a/dev-python/curtsies/Manifest b/dev-python/curtsies/Manifest index abecc92ec2fd..9302bdf4d86f 100644 --- a/dev-python/curtsies/Manifest +++ b/dev-python/curtsies/Manifest @@ -1,5 +1,6 @@ DIST curtsies-0.1.18.tar.gz 44353 SHA256 477121f256eea2b71237492e2924f05b54e1f91815d042bf91d7112b71d4edd4 SHA512 02ae86b215dca10e779061485cb18ab8b6fefbdad10e2bcad3c24890b79f81d1aae0b84467a23ca1951ffaa336fc2fe9b5137c1a10a65fafe0a0b540cc0c819c WHIRLPOOL 801738c450c2fd9343e01260240ebd5ed74e951c03a918808c8c2c47e8ec46afe425f4d8978dea894d2cdf36bc2e3bd19e9de2ed12a62e5786eebeed87dd9800 DIST curtsies-0.1.23.tar.gz 43747 SHA256 4a082383a183cf2d58fcff11885a8d74c5c5c9a81812984c3b25a0a058fd65d3 SHA512 a33f56b4dabd7878e7b1789c9f6ed26ff7cd2a96607a34af66874b33acb8c115cc159684d00a0de2d80b536dec1001b84e342cfe02039ed2ad64cfc015069247 WHIRLPOOL 673ac1f5f09940b1da796024d779233ca15433b82b83c386157b51f585ee3cc9cbcfac017f7bb35540e4d0c1e82c21d950af7084b6473eb657bd8b21b4479b17 +DIST curtsies-0.2.10.tar.gz 46320 SHA256 26d5c3356bf318443f57866903dda3c66a10da3b86a79bc3e9b2719bb5272715 SHA512 0e4349e460dd9d8ec5c900d1b3dd98ede7c7462f9842cb4bb22e1f1a2a0048090593af2c1cddf26a1239db00060429b27785e05de84ff9b4199fe3b8d4973fc3 WHIRLPOOL dca8883f43fd062205b4864976cedd53095b0d769b385e8c0370ed0fce1eb78903d4b42de99b9622d2599fd2e9dc70bb10e69e87c181b22afcbb388109cfb782 DIST curtsies-0.2.3.tar.gz 42805 SHA256 5da88a67472ada96de3be2a9da4210080c7e4b2c1afc4c97075b3f51755e0dc4 SHA512 8d48fb147fc247b2241472543a5019a55ef1b8f029b0bb93c7de72cd9eeb1bfe9940520bb5a0509406915523b98e1dbd9f07499e9eb9649d6d70df51ba71606d WHIRLPOOL 6b3e37f630488f01b6451349fcbf5e81cde7cdf8e1590bc4c65bb9bdffb4b83f8d868c37624e3f1f932cc51d9af251914f8fa55bc88eeaacc6c2dd3eb91239ea DIST curtsies-0.2.4.tar.gz 43313 SHA256 ae52dbb1c828369b85ed3650c846bd7bf4832916dc472220d3365c3e46e1dce6 SHA512 85ec1e87720cde03be012bb0dcb300acaac5d9a3cc3c8bd6b0e7a8d4e048abbb6ef24513ea2b8f3d106b92ac2db752c2054e699bc1ef7131f8f18e20c541fc3e WHIRLPOOL b236c072b0907115da835827078ba9363bbb199c2202bbbf7f6cabc86c47da5d1505aeaaa2fb0de1924651add2f08c0a65d8c17a9d79096b6a7d8094402d7d53 DIST curtsies-0.2.6.tar.gz 43639 SHA256 431631b9c1417b2ae8156d0bb6d7c3ce0c97941413717ed6713a9a9c60e9576e SHA512 fd1d3513564893ad5be12132fbba9af524a6a002987c5a32d72be21af73a22446b960f920bd6728f542a3ede42c6c3c3c789f7f97ea526aeaff3c5045910a44f WHIRLPOOL 75b76bbe3d983f2a5fa7112fc9f1102b0773d8c48a49a561380a8d7a53be7abd56b2ebf138f6fb3534ca26ece672dda3d209248d48c7578c4134735abaf783ed diff --git a/dev-python/curtsies/curtsies-0.2.10.ebuild b/dev-python/curtsies/curtsies-0.2.10.ebuild new file mode 100644 index 000000000000..67d2dd2523cc --- /dev/null +++ b/dev-python/curtsies/curtsies-0.2.10.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Curses-like terminal wrapper, with colored strings" +HOMEPAGE="https://github.com/thomasballinger/curtsies" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + >=dev-python/blessings-1.5[${PYTHON_USEDEP}] + dev-python/pyte[${PYTHON_USEDEP}] + >=dev-python/wcwidth-0.1.4[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pyte[${PYTHON_USEDEP}] + ) +" + +python_test() { + nosetests --verbose tests || die +} diff --git a/dev-python/flask-socketio/Manifest b/dev-python/flask-socketio/Manifest index 12031d0a03fb..7adb9cbb5b73 100644 --- a/dev-python/flask-socketio/Manifest +++ b/dev-python/flask-socketio/Manifest @@ -1,3 +1,2 @@ -DIST flask-socketio-2.0.tar.gz 8730 SHA256 f6fb24762d0c6e430f215beb8d62c262816733c4d9726714f9b7badbe1058bb2 SHA512 2a3e28dce72f448dc763bfe533330a0d80aca82ee5e9b9b6538e66853f809424550a3a005d558d11ae6b89266c3946811b4c8811f04b0e2282390414a9b458f8 WHIRLPOOL 19853187d924f74b4b5d6b20e05e3f74b2198853453ea6982878625dd40c75826cb6c001c1e9f07a7a084124fcf2279ac8f5ea307b652ef027fc9fc7a919460d -DIST flask-socketio-2.1.tar.gz 8888 SHA256 232674f2fad4b1adaf1d045f89a9688d74a77efc1d4a6a4094f2d16f711e80c4 SHA512 cc8410c20bd9ad66cd327acdd66cfa741d006c0937a4571d7a2571d0e03d93885f75e9065f2c244e06fd2add4a3997399e92530ff8618de6bad4a57e814284cd WHIRLPOOL fc1432d4df8ceb891cf02324d7e274efadc4f41fc8060870fd8a6c8efa1df2f984bd1404febc2a164f3638748251d37c3b32a322bc140623d71491d7c9f6ffdb DIST flask-socketio-2.2.tar.gz 8906 SHA256 caf02936196d3923adc75b021031f133e0afd43f1e1d9d5e36c83c00de81c3f3 SHA512 ba51c53052b8cf56d6f1ec3af82dc996fd8c1bb8d1549fb73c22273b3c2bd3b451e433c25817abd3fa7c59e0543f24596541efcd3b13d3480d15ff5386576d45 WHIRLPOOL f53d0e214ab3f347242504544259ef7ab501233d97f4bf5cf0f4693c2153f99899d027cf6834a2311d605ed39b0972e4e625fe502f9ff97c88156c592280834b +DIST flask-socketio-2.7.1.tar.gz 12096 SHA256 93407798fddd7258fdd1fc7f4c50251d2f7cbcc820194312920dac62748d0e65 SHA512 5666e3077d79d639f40244f914161020d974d403bb0ec6641537e929dc8017fbc3fbf3bfd6df71ca5c86e088b20ae3e91413cd700cc4484872966ce2452e012e WHIRLPOOL 981af192e015f8a52aef8efb4e1f42335688e40f3e0dfe39ec2bceef3929752222b57e9baaeee6426621cbfa2aebc0fc6f2f7dc8e1724950d21ba59eb7f1a53f diff --git a/dev-python/flask-socketio/flask-socketio-2.0.ebuild b/dev-python/flask-socketio/flask-socketio-2.0.ebuild deleted file mode 100644 index a70aef90e418..000000000000 --- a/dev-python/flask-socketio/flask-socketio-2.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 ) - -inherit distutils-r1 - -MY_PN="Flask-SocketIO" -DESCRIPTION="Socket.IO integration for Flask applications." -HOMEPAGE="https://flask-socketio.readthedocs.org/ https://github.com/miguelgrinberg/${MY_PN}/ https://pypi.python.org/pypi/${MY_PN}" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND=">=dev-python/flask-0.9[${PYTHON_USEDEP}] - dev-python/python-socketio[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/coverage[${PYTHON_USEDEP}] )" - -S="${WORKDIR}/${MY_PN}-${PV}" - -# pypi tarball does not contain tests -RESTRICT="test" - -python_test() { - PYTHONPATH="${PWD}" python ./test_socketio.py || die -} diff --git a/dev-python/flask-socketio/flask-socketio-2.1.ebuild b/dev-python/flask-socketio/flask-socketio-2.7.1.ebuild similarity index 89% rename from dev-python/flask-socketio/flask-socketio-2.1.ebuild rename to dev-python/flask-socketio/flask-socketio-2.7.1.ebuild index a70aef90e418..97dda0a1434d 100644 --- a/dev-python/flask-socketio/flask-socketio-2.1.ebuild +++ b/dev-python/flask-socketio/flask-socketio-2.7.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 ) +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy pypy3 ) inherit distutils-r1 diff --git a/dev-python/flower/Manifest b/dev-python/flower/Manifest index bfb3d6fa1b8b..c1829a6d90f7 100644 --- a/dev-python/flower/Manifest +++ b/dev-python/flower/Manifest @@ -1 +1,2 @@ DIST flower-0.8.4.tar.gz 2224949 SHA256 982c2aff14b1b01024cf3356ff90309bc19fba99f47faba3cdb6c3262331c66e SHA512 1f6dc52b011fabff4ea09180338fdc5a155da035daba378a0afb262964bf54bd5d6c90c68ece9a5740ab7e6e99d50e12b566fcd66d6de392163ea859f740f244 WHIRLPOOL 48556c044c7e6ad956288a96066ee985675d7f43116d3a8c749ec1aa3ab7090fb3e061f3e738ea57ef946c5a39e9a8b9290efc4cd8eeb2c8ef6d94a568645e03 +DIST flower-0.9.1.tar.gz 3880608 SHA256 bdd926b731e8024779a5373fa33bff4a30e2a2ae6cf3a591beb83fbde3dc352f SHA512 519d92209dbdb7956fde30c604956d1cbbc8ec7180ff160ea088847b5b63310cd42dc949d02eef1197588b0353470a0f3ac96b44b2e3ebb093a254d8f94fb407 WHIRLPOOL 3595137d6f83e2ace3d93281daa19bf3b46432f30467489ec46bef4ff437bbbd3975230c31d4bd3134fb54616ee0a6eea1136d23c088f3543a45da1f6a495db3 diff --git a/dev-python/flower/flower-0.9.1.ebuild b/dev-python/flower/flower-0.9.1.ebuild new file mode 100644 index 000000000000..14d496d6f949 --- /dev/null +++ b/dev-python/flower/flower-0.9.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_{4,5}} ) + +inherit distutils-r1 systemd user + +DESCRIPTION="Real-time monitor and web admin for Celery distributed task queue" +HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/mher/${PN}/ https://pypi.python.org/pypi/${PN}" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="test" + +RDEPEND=">=dev-python/celery-3.1.0[${PYTHON_USEDEP}] + >=www-servers/tornado-4.2.0[${PYTHON_USEDEP}] + >=dev-python/pytz-2015.7[${PYTHON_USEDEP}] + >=dev-python/Babel-2.2.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 /dev/null ${PN} +} + +src_prepare() { + eapply_user + sed -e 's:tornado==4.2.0:tornado>=4.2.0:' \ + -i requirements/default.txt || die +} + +src_install() { + distutils-r1_src_install + insinto /etc/flower + doins "${FILESDIR}/config.py" + newinitd "${FILESDIR}/${PN}.initd" "${PN}" + newconfd "${FILESDIR}/${PN}.confd" "${PN}" + systemd_dounit "${FILESDIR}/${PN}.service" + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotated" "${PN}" +} + +python_install() { + distutils-r1_python_install --install-scripts "${EPREFIX}/usr/libexec/flower" +} + +python_test() { + esetup.py test || die +} diff --git a/dev-python/google-api-python-client/Manifest b/dev-python/google-api-python-client/Manifest index 1fffb9aed488..92ba9f6b32b0 100644 --- a/dev-python/google-api-python-client/Manifest +++ b/dev-python/google-api-python-client/Manifest @@ -2,3 +2,4 @@ DIST google-api-python-client-1.1.tar.gz 71178 SHA256 bc88cae1c40446f22d58923fc5 DIST google-api-python-client-1.3.1.tar.gz 1480269 SHA256 5137c4d6e853cda1a2e32b7f1b1ce28b66f5d62e464d91386be22492c276b1f8 SHA512 385377bd99f006154f90bed2b6f55cb25786032d28ac7f15b9859882670cc8bf94acbfbd8485c4cf89abd665908f1a7f46f74e84f05faba992a62fe4b9fd5bd1 WHIRLPOOL cda6825e502738f6d3035e524494aadc159ac8d41ae12d3f682236f8c344dc41e2ecf03aee6b247233c5b9aa8c756ac8d598c98c95333dc8a8929901c3a82327 DIST google-api-python-client-1.4.2.tar.gz 2289731 SHA256 dfb7feab9733ae99952545927b5d87dda24cea308b2040fba2c505e7f0c57696 SHA512 ab5ce56142d96ed9b38d00294133e188dfeaf70aac78054f093f03fce7c4aee5b7b99f18ee27190aaef14b7fbe2bc8d0a4e2526ff6f166e41eb0b4b050e7c6b5 WHIRLPOOL 006e24d1a4e5d2bfabcbf2503fa163d6b0a3a28a839396014bf0a91a463454f02140f38dd179a141010a03e268711c2d22c9aa3158b594e5b465d9032997e7b9 DIST google-api-python-client-1.5.0.tar.gz 2683924 SHA256 1558d6a6bca8c4ea775be46c6a81364739dc35b7ad2afc660c3a3102a43165bb SHA512 082a89e2e52dff449b6c4b6800503e337c5f2aa7ea2ca45a8373743a312d18d24ad87a486aed77b2e26075ba897f36e1129852dc30a139750e75cce5a1c25aa4 WHIRLPOOL f306a91fda8f241774a0b121dd8741ed5342aafb920b1bb59ca46a296ac7eaee4072839480abcd592a52d92e01811b9032545f93e8528211edf51d0cbe07644b +DIST google-api-python-client-1.5.3.tar.gz 3622355 SHA256 1a89429cb591112463fe6fb7fcc23c9475e52bcaa337a3d9bb375891fbfe7525 SHA512 3f58af0d1f165fa7e045d08a0bfc282855b40dbea16d310bbc4cbce76f631b6303738a396048efc8ea114fdff1164d1ad303148999d0ab0ba0d2cc91df9408b3 WHIRLPOOL f878baac9a29065ce8cab67b41716697cc7f34205384e41b8849ef38271d75442c7d44922e56489cba7dc4871c216f37050e61ecc6d0302056adea72a57f9387 diff --git a/dev-python/google-api-python-client/google-api-python-client-1.5.3.ebuild b/dev-python/google-api-python-client/google-api-python-client-1.5.3.ebuild new file mode 100644 index 000000000000..fa427c26e85b --- /dev/null +++ b/dev-python/google-api-python-client/google-api-python-client-1.5.3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_{4,5}} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Google API Client for Python" +HOMEPAGE="https://code.google.com/p/google-api-python-client/ https://github.com/google/google-api-python-client" +SRC_URI="https://github.com/google/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/httplib2-0.8[${PYTHON_USEDEP}] + =dev-python/oauth2client-2[${PYTHON_USEDEP}] + =dev-python/uritemplate-0.6[${PYTHON_USEDEP}] + =dev-python/six-1.6.1[${PYTHON_USEDEP}] + > "${QT5_BUILD_DIR}"/.qmake.cache + fi + + qt_use_compile_test xcomposite + qt_use_disable_mod qml quick src/compositor/compositor_api/compositor_api.pri + + qt5-build_src_configure +} diff --git a/dev-qt/qtwebchannel/Manifest b/dev-qt/qtwebchannel/Manifest index e0988838dc7d..7796c9b22775 100644 --- a/dev-qt/qtwebchannel/Manifest +++ b/dev-qt/qtwebchannel/Manifest @@ -1,3 +1,4 @@ DIST qtwebchannel-opensource-src-5.5.1.tar.xz 96684 SHA256 7f4295ee57cd4ecba3cb263452d2a08d501b45c9a2b8b7794b6a97d7652f15d0 SHA512 018b36b150adb18ac681e76cf52c120e1873c10ac937a311397025e556b74800db3b7d472d2373ddeaa2f9527beeac5c1ca6f57a808aa3f5c19a558cdb2ac699 WHIRLPOOL 97ae4334148d02f7ee49194dfbfc21d05e07f8f9c0568bacc7e5785d657377a456427730b78a2135e33a518d3423ecfb0f4f36007e10b09f7308458ca6be2252 DIST qtwebchannel-opensource-src-5.6.1-1.tar.xz 98164 SHA256 878ab614b30bbf04ef3775af68acd47de9765973650c1db403464e79efd07e82 SHA512 ee384a1d083e29264a55757f706d139a1e4868765a48a2f98660df5d46c01e59d10d1e78c3fb33969b125ac7af78bbe52ef5cf8421577d2517cba9c1336ec56d WHIRLPOOL d3a853d995ffd4b84968e95a3e252af8735c82ace1b460003ea481efa24fb41cb27105cf080795fd527bb51777d8683949b93450c95f09a5c47e10af6a1dec94 +DIST qtwebchannel-opensource-src-5.6.2.tar.xz 119792 SHA256 700efdef5f51bdb77093f4db212afe275ad35a710ea08ba0e9e9cbc8f09f1a52 SHA512 76963aea9a287b360110086ffa146f0b93eac963e6a4adcd6ff6fec83fc5416aee1e374d50a4a47dd86edf25eb486f6f8ef23becdba46d891f5484ec5f336de4 WHIRLPOOL 62076abdec83d872abde159b923ab0a403ac659346824b0e7637cc2c6400fca8a97f1652df25faf0b08ce4cd89e801a5e2fdfda67c3555cdb04e44fbf8262b09 DIST qtwebchannel-opensource-src-5.7.0.tar.xz 119876 SHA256 3ab4cd177cc742ee5015f2b7f943c16ce13380b840f824436b5005485b749816 SHA512 e5b772366d5b4eeedc5b43d7034eedbeced9ced93c38dea92c419a93472ebe7f3e1743bd0c90e73e07c4d0b7e4e257b71fa9debcfa86abee379c1935fac51b64 WHIRLPOOL 1ae0feca61f417f4abdfef9450d182d2ed9e1793c1c0cdc50d1eea3b003441adfe9f69d60c198f5d0d93c1d629a0c6fe1143d90072b9fba8fc73ef38f6a36ede diff --git a/dev-qt/qtwebchannel/qtwebchannel-5.6.2.ebuild b/dev-qt/qtwebchannel/qtwebchannel-5.6.2.ebuild new file mode 100644 index 000000000000..cb879f49446b --- /dev/null +++ b/dev-qt/qtwebchannel/qtwebchannel-5.6.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 ~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 9231847cf94a..4d1e29d8b489 100644 --- a/dev-qt/qtwebengine/Manifest +++ b/dev-qt/qtwebengine/Manifest @@ -1,2 +1,3 @@ DIST qtwebengine-opensource-src-5.6.1-1.tar.xz 143729228 SHA256 c80e90237bb7bd52a3fa843415c17a8e8e6d779b65efd1393472f24f8642e04c SHA512 4612221fafd16c2d5ce38965bb264d2577b20b1c342792f34729e8a26978e9e430dc1425291530dfad254be5b3b42ebdafdec084c5d25edb23fc61bb3f71ac6f WHIRLPOOL dc05495c1afe755e51961c314b3305b43add7eee149816a0be3ab22b9a2ae10b54ebf5ca2861eaf8768e619c44533b35bd94645e12f94eb39cb5b9c8b19c1667 +DIST qtwebengine-opensource-src-5.6.2.tar.xz 143752452 SHA256 2f0a1648e1a8b22bad0134f2b37d69d185074393c398c1a3c6a83b910ff39740 SHA512 c30a270bfb254a18d4b89af8ae28789912d6157cd58010b6838461c332c32c667c15b683d290fd14615b9f0be20aca9957bd8657c4abaa8d77c28278c58f7282 WHIRLPOOL 94e627c369cfa18a7c878f75007698839aa1cd1b10df4de8e42b2f393dcd2dedec33930c1fa41c50bfa39e63089d66c7c5d0861ea7093356b1cc2e93a605893e DIST qtwebengine-opensource-src-5.7.0.tar.xz 165709640 SHA256 985762fff5cd8a1a0d2a644a4a51238676898685f9ff1a78c3f2800025d6dc5d SHA512 8f010ea8d7047880c0bc941749a4172deae0f363ff25e00412291ad2bb243ac4c51031403eae0bba11b4f42c3e3d414858d29e3a3fb0459703dcaaff9b7133cd WHIRLPOOL 112f80f8cc279d743641095f47512a95d43286c1fe32c678a5ada810a7da12b1ef6e4483401e1a08c32d7e0d6e23369c65fbaeeee5f9a4bc34e330f59359e648 diff --git a/dev-qt/qtwebengine/qtwebengine-5.6.2.ebuild b/dev-qt/qtwebengine/qtwebengine-5.6.2.ebuild new file mode 100644 index 000000000000..4d718addf4a7 --- /dev/null +++ b/dev-qt/qtwebengine/qtwebengine-5.6.2.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +inherit 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 ~x86" +fi + +IUSE="bindist geolocation +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/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:= + 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-${PV} ) + 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 +" + +src_prepare() { + qt_use_disable_mod geolocation positioning \ + src/core/core_common.pri \ + src/core/core_gyp_generator.pro + + qt_use_disable_mod widgets widgets src/src.pro + + qt5-build_src_prepare +} + +src_configure() { + export NINJA_PATH=/usr/bin/ninja + + 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 +} diff --git a/dev-qt/qtwebkit/Manifest b/dev-qt/qtwebkit/Manifest index eb19e8af150c..bfcf82faca57 100644 --- a/dev-qt/qtwebkit/Manifest +++ b/dev-qt/qtwebkit/Manifest @@ -3,4 +3,5 @@ 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.5.1.tar.xz 33489924 SHA256 77583f9dbd3e6ad874386df71b165dc3ce88efdabbc6e5d97a959ee2187d6d69 SHA512 a44ca088fee7dbf0b10df7e1f6c914f37b31cf7c3b95156c32e5b8373a8de54013cd51cdf5b18b72f165d60c21ce55bceca86b038de68b1eb78ae0cd4bb8228a WHIRLPOOL a54eabaf72fdd4ffba4317b0c64b57da239605f0d1c8020be4282c0ce802727fd9321c4da14f9cb977419bedc97a4ac44cbc34e7003ff80ae31cfd983a577dc9 DIST qtwebkit-opensource-src-5.6.1.tar.xz 35306084 SHA256 f5cfbfa5fad2b65a9be907d426f99694b86a04c3bb5a8814b21bd0ade4c672aa SHA512 fb244d1913fb4387757580758a43594becbfd3b9fedf53ce3026290ba66a7044f78e242e04269030e200648931bbd625a6192c3455374eafa6021bb7b35c682f WHIRLPOOL c3b00ad976c20f00b6984ba099fe0e03381629c78dde292ec524f2ef8b530c9875a1c57940a0a3652c9bd13afbab83414b66ce0c2e7c4752a9f729767921f70f +DIST qtwebkit-opensource-src-5.6.2.tar.xz 35306252 SHA256 528a6b8b1c5095367b26e8ce4f3a46bb739e2e9913ff4dfc6ef58a04fcd73966 SHA512 d3f795463c957b4927d61280df831d08282bf6c9e624cf1db2709ab56ab218eb028192a4efaef21e0bdb28edd42de8ec08995f37fc828bde99000cf6919c33c3 WHIRLPOOL 9667f2f68bb832fdf3f5de14da641afd3b71a0c270e436257bc37ae86ed7d8d3434cdcada3b8818ab73ac6866bd4a69892ae682618d6d6a00cccccd287bda4bf DIST qtwebkit-opensource-src-5.7.0.tar.xz 35304268 SHA256 c7a3253cbf8e6035c54c3b08d8a9457bd82efbce71d4b363c8f753fd07bd34df SHA512 63c36f35132535c4391f8d0925cc2dfd88d7ec69cc9adefe383fefaec24f6f25280dd57bfb07eadf993506c310712078c315a90965eab09784eb3af9b6096436 WHIRLPOOL b65217bd11798833fa47c82b7cfc88fda4789afe3eaf9af6ed7045bf16b260b9ac466377104b05e57095e3c02234ca8b928c607e8adf45b509ef0bd789e52108 diff --git a/dev-qt/qtwebkit/qtwebkit-5.6.2.ebuild b/dev-qt/qtwebkit/qtwebkit-5.6.2.ebuild new file mode 100644 index 000000000000..58876f11a703 --- /dev/null +++ b/dev-qt/qtwebkit/qtwebkit-5.6.2.ebuild @@ -0,0 +1,109 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +inherit python-any-r1 qt5-build + +DESCRIPTION="WebKit rendering library for the Qt5 framework (deprecated)" +SRC_URI="https://download.qt.io/community_releases/${PV%.*}/${PV}/${PN}-opensource-src-${PV}.tar.xz" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +fi + +# TODO: qttestlib + +IUSE="geolocation gstreamer gstreamer010 +jit multimedia opengl orientation printsupport qml webchannel webp" +REQUIRED_USE="?? ( gstreamer gstreamer010 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-${PV}[icu] + ~dev-qt/qtgui-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtsql-${PV} + ~dev-qt/qtwidgets-${PV} + 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-${PV} ) + 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-${PV}[widgets] ) + opengl? ( ~dev-qt/qtopengl-${PV} ) + orientation? ( ~dev-qt/qtsensors-${PV} ) + printsupport? ( ~dev-qt/qtprintsupport-${PV} ) + qml? ( ~dev-qt/qtdeclarative-${PV} ) + webchannel? ( ~dev-qt/qtwebchannel-${PV} ) + webp? ( media-libs/libwebp:0= ) +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + dev-lang/ruby + dev-util/gperf + sys-devel/bison + sys-devel/flex + virtual/rubygems +" + +PATCHES=( + "${FILESDIR}/${PN}-5.4.2-system-leveldb.patch" +) + +src_prepare() { + # ensure bundled library cannot be used + rm -r Source/ThirdParty/leveldb || 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_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 gstreamer010; then + PATCHES+=("${FILESDIR}/${PN}-5.3.2-use-gstreamer010.patch") + elif ! use gstreamer; then + PATCHES+=("${FILESDIR}/${PN}-5.2.1-disable-gstreamer.patch") + fi + + # bug 562396 + use jit || PATCHES+=("${FILESDIR}/${PN}-5.5.1-disable-jit.patch") + + use opengl || sed -i -e '/contains(QT_CONFIG, opengl): WEBKIT_CONFIG += use_3d_graphics/d' \ + Tools/qmake/mkspecs/features/features.prf || die + 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 +} diff --git a/dev-qt/qtwebsockets/Manifest b/dev-qt/qtwebsockets/Manifest index 539b17a97aba..de92f77840ac 100644 --- a/dev-qt/qtwebsockets/Manifest +++ b/dev-qt/qtwebsockets/Manifest @@ -1,3 +1,4 @@ DIST qtwebsockets-opensource-src-5.5.1.tar.xz 170440 SHA256 cf4e834a867b90337188be504ef20184c52666370f721e704952988f8cb12deb SHA512 1172269ed99eb0ef73935bb7adfb353cf7ea17240d1370cefbdb648f84151d79d8e3738258444eef15356ef733beae4912507835edbb34028d0960406dc6257f WHIRLPOOL 85bd75d47d9a274c6c8b0d1aca2e3247ed2495be12cb49cad0fc3f6aac2fa57234e9956d4860b762015f5bb69cd66625ce252d09ed360be90eaf3fb094e40622 DIST qtwebsockets-opensource-src-5.6.1-1.tar.xz 170956 SHA256 34620ca34ca580802509b2fb3e9eb843d5ad11416d6a211400ac7f700aeae0bb SHA512 74a31e814284ab54c63b61eb388879b6b6df471d4479c4a1615794683bc916cb0e1c49c1a2840ebcb62283f271f49f35564ec39d5e51837efcac82d3f8256adf WHIRLPOOL 7abf9b12d3fca3319513036c37bcaeb5d24496c3f353cd889cc9157b143b01e86ba53fd4d1d9fd996e2008389d480a381b45a809891c3430c851039fd8acc62e +DIST qtwebsockets-opensource-src-5.6.2.tar.xz 171004 SHA256 3cd9d4bbff8e6be5e252f00fc9ecb9ac2d8a193020288c7d1e82583daeb5ba35 SHA512 6b4adc5a2ba3403b6a733b84bb9bb7a696db50c264b26841f67b6cc20bff44bf9743d3fd2d95f94b3e68127be6f411c3398ed7e910480658c3065549302b1958 WHIRLPOOL cb26a843312bffc75cbf1f7742e96ba78ab1363970e692e78daedd165a525dc96d1ee1d898f762c7bb5d1bccb3c09011d8f1d569ef4a7255e0f18fd0649d71d5 DIST qtwebsockets-opensource-src-5.7.0.tar.xz 174280 SHA256 741be11a907f82807a786e6a53ae7316c0b3864491b692e8719c381e0f158b43 SHA512 b8f3fc49cfc15afb26333ca68e8bc4bd2991373878f0846ab79e6457a165ace609aad09b8c61bf10afd8e1ffa3f6f17385f057d6ed38a04e386e2677e38d50e0 WHIRLPOOL 909068519cf1a34abbc43c0ccd66251e27a0d40ec1c265de589d33300a87fb4abe5215c4ee821092a2198b7c7141253be0ccb31c355c6726802abfb34733e192 diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.6.2.ebuild b/dev-qt/qtwebsockets/qtwebsockets-5.6.2.ebuild new file mode 100644 index 000000000000..c62170c62c5c --- /dev/null +++ b/dev-qt/qtwebsockets/qtwebsockets-5.6.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Implementation of the WebSocket protocol for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~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/qtwidgets/Manifest b/dev-qt/qtwidgets/Manifest index 82fd07c4b3c3..d698071b8157 100644 --- a/dev-qt/qtwidgets/Manifest +++ b/dev-qt/qtwidgets/Manifest @@ -1,3 +1,4 @@ DIST qtbase-opensource-src-5.5.1.tar.xz 46389212 SHA256 dfa4e8a4d7e4c6b69285e7e8833eeecd819987e1bdbe5baa6b6facd4420de916 SHA512 4d31de136870025dfb7544f255798884af1ad4f3060b0c00a0467c98af1f7de368eb298d4c52ba6d1ad27e36060b30c0314ce7ba0744b15642420ec89587a575 WHIRLPOOL 8975a54a720105d1b12b4f50072b98157f6a91020ecd7bad12ab4a92b7ac4663713a82e87f033cc6ad49602a5f9468c6d3ee23120be6c15d63e55ea0b5a343c4 DIST qtbase-opensource-src-5.6.1-1.tar.xz 46788436 SHA256 329678347ec5ebb404225345300a8deb1e7c991322a4c50584be550c69be7c39 SHA512 e9660bee2e0acd91c3232831e4f1a99ad30b82b8ff26850494efec89a525499b721adfb63f7ede586408489d3ebf727b842cd12eab665c58769001454e7f661d WHIRLPOOL e26cf72d9644dbcb08d1269bdaa633be2e24de813deb62a1c77e448b6578f6761769664fc95c4131c342f077c092a777af8fed62ea35e5fdb0f2576d82b3c499 +DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.0.tar.xz 43993020 SHA256 3e7b6d123cab23a587ccbc45173296b33786faa409dba0494e4658fda3ede646 SHA512 c082b835839ff23ce10463ccc364a0ee6255b4f48409c485181be8e039f5cdf00efa41ec220ddbd9b41e5c8a9fa29327af0e3450e10294b64bb729053eb7c63d WHIRLPOOL 2ba79ed2717ac7876228d9ab6455f97e0689f5d297dfc2fa7d089bde6b1c6bc38f30a467477482bb3af9e19afe95f5f5dbd76bcc835281ce473564cf45a77a92 diff --git a/dev-qt/qtwidgets/qtwidgets-5.6.2.ebuild b/dev-qt/qtwidgets/qtwidgets-5.6.2.ebuild new file mode 100644 index 000000000000..531ef65d3d45 --- /dev/null +++ b/dev-qt/qtwidgets/qtwidgets-5.6.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 gtkstyle +png +xcb" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=,gtkstyle=,png=,xcb?] +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/tools/uic + src/widgets +) + +QT5_GENTOO_CONFIG=( + !:no-widgets: +) + +src_configure() { + local myconf=( + $(qt_use gtkstyle) + -opengl $(usex gles2 es2 desktop) + $(qt_use png libpng system) + $(qt_use xcb xcb system) + $(qt_use xcb xkbcommon system) + $(usex xcb '-xcb-xlib -xinput2 -xkb -xrender' '') + ) + qt5-build_src_configure +} diff --git a/dev-qt/qtx11extras/Manifest b/dev-qt/qtx11extras/Manifest index 4bc23c12ee83..6955b00d8645 100644 --- a/dev-qt/qtx11extras/Manifest +++ b/dev-qt/qtx11extras/Manifest @@ -1,3 +1,4 @@ DIST qtx11extras-opensource-src-5.5.1.tar.xz 33416 SHA256 6387a01d972b62e1ad39e5a25e07d0492200f62fc87cf4366122085aeeebeb65 SHA512 5c89324cc0335c97d8028894d3a190cabfde3a132403a9983a10f32d557d146de65cd534b9cf1a7fe85251e5f0f91e009072f8f02d9b03f58318543993cf7a14 WHIRLPOOL 3ee46bd3af9d3dfbeba8f0b2491cb94680f762099e5934c1b2bc6492dbf7dfaf7b4c70b3d98f45ebb30be1ab54055a1732b338a88bef3a8a1f882937a26976e0 DIST qtx11extras-opensource-src-5.6.1-1.tar.xz 33648 SHA256 be6cc815e9b33a20f5cd374fe77443b13ea5f1cd625616d75b3c4fdcc4f3457a SHA512 01b1d3dbd6770633652e6434a02f89b258e1d09957c79adcb73f91bf3f86ed6beb398030a4c09ae1f4ba97853d99f13afe10848d8f0917a4f1a05e7d20b2136b WHIRLPOOL c3c757876eee64f1ed140c8e26c4a591d19f49ebf6b940e008f54f17329570e8e9be86fdcfac6f7ef8118bc69417d4b0b22e3e9cf2bae88b836b5ab5ce5aba89 +DIST qtx11extras-opensource-src-5.6.2.tar.xz 33640 SHA256 71ffde1cfaeec310677b69ecd16cb5992e8885cf3e73b4cec7d6e7a115b40ced SHA512 52158b0de2d30ad629e066b34dff0665a70cb9ab895773f3bc129c15ca8072b82ec6759f4d7b9f5d893355e28f1a916a015c6726db289845d1854f9544336f31 WHIRLPOOL 2f0b09992a9a477eb4a40ea04ba05dbf1db08c2df745662c7d05d7abc3886aa51eb2cf7fec79a4dac6f1055fa636839a064cff7479835c5218e9d40574ef16cb DIST qtx11extras-opensource-src-5.7.0.tar.xz 35580 SHA256 fccb6dba7ff5b5b4626f4f163dfa9b12d6e8da0e9d0fada6c76baf862fb233fb SHA512 1bd20852a51a3cb402a7816628f6bef9b65c09c2cf0447046c4019d96fa7a522a5fda6ba093c9e2c2c7956ed2c75f213dc9047defd71912aa79af2891f73b27e WHIRLPOOL 84751361eea1425a8e258794d1409b3345d109c747944a37961d53656a90a59250ef4925bab14711ad22c0edd36d23bfed687b7e0119a171667657971f57a7b6 diff --git a/dev-qt/qtx11extras/qtx11extras-5.6.2.ebuild b/dev-qt/qtx11extras/qtx11extras-5.6.2.ebuild new file mode 100644 index 000000000000..a8962d30892a --- /dev/null +++ b/dev-qt/qtx11extras/qtx11extras-5.6.2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 82fd07c4b3c3..d698071b8157 100644 --- a/dev-qt/qtxml/Manifest +++ b/dev-qt/qtxml/Manifest @@ -1,3 +1,4 @@ DIST qtbase-opensource-src-5.5.1.tar.xz 46389212 SHA256 dfa4e8a4d7e4c6b69285e7e8833eeecd819987e1bdbe5baa6b6facd4420de916 SHA512 4d31de136870025dfb7544f255798884af1ad4f3060b0c00a0467c98af1f7de368eb298d4c52ba6d1ad27e36060b30c0314ce7ba0744b15642420ec89587a575 WHIRLPOOL 8975a54a720105d1b12b4f50072b98157f6a91020ecd7bad12ab4a92b7ac4663713a82e87f033cc6ad49602a5f9468c6d3ee23120be6c15d63e55ea0b5a343c4 DIST qtbase-opensource-src-5.6.1-1.tar.xz 46788436 SHA256 329678347ec5ebb404225345300a8deb1e7c991322a4c50584be550c69be7c39 SHA512 e9660bee2e0acd91c3232831e4f1a99ad30b82b8ff26850494efec89a525499b721adfb63f7ede586408489d3ebf727b842cd12eab665c58769001454e7f661d WHIRLPOOL e26cf72d9644dbcb08d1269bdaa633be2e24de813deb62a1c77e448b6578f6761769664fc95c4131c342f077c092a777af8fed62ea35e5fdb0f2576d82b3c499 +DIST qtbase-opensource-src-5.6.2.tar.xz 46825164 SHA256 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787 SHA512 ff55204e6f0b046ccb03430ac6a22bd743bc2f3822625f0c23a481a8a7acb5d93f5b8e900815c70f10554887fbe26b3ee79f6d702acfa5c370e4e3cbd1f2b321 WHIRLPOOL 4a68aae4e471b0cfac3abf3652bb18cac8ffce17c941c8589a154bf07eb8d26945fab535f2e1acb866a584584c1811e953aa19fb1b3709831d85a620f0b6dc5a DIST qtbase-opensource-src-5.7.0.tar.xz 43993020 SHA256 3e7b6d123cab23a587ccbc45173296b33786faa409dba0494e4658fda3ede646 SHA512 c082b835839ff23ce10463ccc364a0ee6255b4f48409c485181be8e039f5cdf00efa41ec220ddbd9b41e5c8a9fa29327af0e3450e10294b64bb729053eb7c63d WHIRLPOOL 2ba79ed2717ac7876228d9ab6455f97e0689f5d297dfc2fa7d089bde6b1c6bc38f30a467477482bb3af9e19afe95f5f5dbd76bcc835281ce473564cf45a77a92 diff --git a/dev-qt/qtxml/qtxml-5.6.2.ebuild b/dev-qt/qtxml/qtxml-5.6.2.ebuild new file mode 100644 index 000000000000..b92cc54b8495 --- /dev/null +++ b/dev-qt/qtxml/qtxml-5.6.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 cefe18d89f4f..88d0cb7fc1a1 100644 --- a/dev-qt/qtxmlpatterns/Manifest +++ b/dev-qt/qtxmlpatterns/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 qtxmlpatterns-opensource-src-5.5.1.tar.xz 1323560 SHA256 b537eb0252988e3805a32a16c65038973371d647baf246fdf703bde725d0e8ec SHA512 2d225f686e0f081f7833b3a79ca8cff85d02e49f57be59ba9daff028965d9fc8e2b0389778d7415578b540f056c86e5b9127c7f93c6af1d1828a4fe73d9bfa10 WHIRLPOOL 8f21f73bdeac9789b73e93e587b1c925d7861af7c56c4157807ae4a54a486aaaa5788c8d405c5e6d9bc56e8dbd67eebcce783397af81690cca24e15bbe597560 DIST qtxmlpatterns-opensource-src-5.6.1-1.tar.xz 1323880 SHA256 e1dac17a8e6cb2b03da2d666ae2a99f31c2d9b73790c79ca2c85197766cec6a4 SHA512 2c741808c318ad71c49152d7d817c88032f2c8119dbcc2e0dbae268e5873719e43b37b7186c531a711fa91c0c004e8fdb2a631979fbecc67b11f6ba608aa8b5a WHIRLPOOL 4b216fb7f19aae3b9f78eb6c87f64c61b849fa7dcc4ecd9069fdf5ce7f4d1384ead9eca2c69c71e18c7f8c57ba710081900bcd7d64a3c19bdb39b6a821f4564d +DIST qtxmlpatterns-opensource-src-5.6.2.tar.xz 1323576 SHA256 7c6df3eebf188d8ce6822a22cebbc63da5ac27047cf1bd7236d5b988244782cc SHA512 780864b839f312143975973b0a63f3d4ad105e8b87f5c71d8fb120c3e249578846e855693cea070510767c6680c2249589f7ad1bcc63488da979f4d8da8910ae WHIRLPOOL fb60edab215e053abd54b978c13e232167782d170db1528c234ccc83882a9bf6690769d037f159b7bdc8c315396a1c91bb2becaa3b329099dd2ea93903cbaf9f DIST qtxmlpatterns-opensource-src-5.7.0.tar.xz 1327660 SHA256 38882a4ea5d711be07d10695759359045f7f9d64727a65e1d5e6515d55c7e20b SHA512 0c93061254bae7a7c45acc40323ef653ddf9ccfc7328192c419c43d8505e4ebc3f2bd16ef22cce4a4f949310a7efa77f4f79a6ff4cc7f0c063d065e1a4365bbf WHIRLPOOL 539895783b6e6e041ef08ca809c448c5295fc28791a8aac33218d79d1092d842f185828cd31616cf4b3ae7e91d8f590e250f9f1a729be6cb26d3dd12ab169fe5 diff --git a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.6.2.ebuild b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.6.2.ebuild new file mode 100644 index 000000000000..e8c5d4f97382 --- /dev/null +++ b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.6.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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/games-util/pogo-manager-bin/Manifest b/games-util/pogo-manager-bin/Manifest new file mode 100644 index 000000000000..cd6478f4e278 --- /dev/null +++ b/games-util/pogo-manager-bin/Manifest @@ -0,0 +1 @@ +DIST pogo-manager-bin-0.1.4.zip 7453967 SHA256 1ae061bade7bf3e9e66df028027f408895a6a07a52b80efcb7cb709984163633 SHA512 0fe21b4146d125d281f1aacd405dbc0370d6c5c043e82d4c964ca7df14ac0130459bf4d943268b6efd58a99ef05ca0d22dbf392ecb3853ab32e87fdb074209fa WHIRLPOOL 8c6cb33b788a98fd27a1d66a6292d1f87d0e2bd8678454a7e87d28b465d93e472c07548a045ef75ce9b067adcc2cbd956c5a60ffadfd6b68c7fe0e198775da80 diff --git a/games-util/pogo-manager-bin/files/pogo-manager b/games-util/pogo-manager-bin/files/pogo-manager new file mode 100644 index 000000000000..9866fec91a84 --- /dev/null +++ b/games-util/pogo-manager-bin/files/pogo-manager @@ -0,0 +1,17 @@ +#!/bin/bash + +# Config files are written to current directory, so make a config dir and pushd there + +if [[ ! -z "${XDG_CONFIG_DIR}" ]] ; then + config_dir="${XDG_CONFIG_DIR}/pogo-manager" +elif [[ ! -z "${HOME}" ]] ; then + config_dir="${HOME}/.config/pogo-manager" +else + config_dir="$(mktemp -d)" +fi + +echo "Using ${config_dir} for configuration files" +mkdir -p "${config_dir}" +pushd "${config_dir}" > /dev/null +java -Dfile.encoding=UTF-8 -jar /opt/pogo-manager/pogo-manager.jar + diff --git a/games-util/pogo-manager-bin/metadata.xml b/games-util/pogo-manager-bin/metadata.xml new file mode 100644 index 000000000000..69f19ae21d9d --- /dev/null +++ b/games-util/pogo-manager-bin/metadata.xml @@ -0,0 +1,11 @@ + + + + + wizardedit@gentoo.org + Austin English + + + Utility to manage Pokemon Go accounts. Not sanctioned by Niantic, use at your own risk. + + diff --git a/games-util/pogo-manager-bin/pogo-manager-bin-0.1.4.ebuild b/games-util/pogo-manager-bin/pogo-manager-bin-0.1.4.ebuild new file mode 100644 index 000000000000..821b869f67e7 --- /dev/null +++ b/games-util/pogo-manager-bin/pogo-manager-bin-0.1.4.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +MY_PN="${PN/-bin}" + +DESCRIPTION="Pokemon Go manager" +HOMEPAGE="https://github.com/Wolfsblvt/BlossomsPokemonGoManager" +SRC_URI="https://github.com/Wolfsblvt/BlossomsPokemonGoManager/releases/download/v${PV}/BPGM_v${PV}.zip -> ${P}.zip" + +LICENSE="CC-BY-NC-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="|| ( dev-java/oracle-jdk-bin:1.8[javafx] dev-java/oracle-jre-bin:1.8[javafx] )" +DEPEND="app-arch/unzip" + +S="${WORKDIR}/BPGM_v${PV}" + +src_install() +{ + insinto /opt/${MY_PN} + newins BlossomsPogoManager.jar ${MY_PN}.jar + + dobin "${FILESDIR}/pogo-manager" +} + +pkg_postinst() +{ + ewarn "Use of this tool is not sanctioned by Niantic and could get you banned." + ewarn "You have been warned!" +} diff --git a/gnome-base/gnome-control-center/Manifest b/gnome-base/gnome-control-center/Manifest index 2bf95f234e17..7b467c56ebd0 100644 --- a/gnome-base/gnome-control-center/Manifest +++ b/gnome-base/gnome-control-center/Manifest @@ -1,2 +1,3 @@ DIST gnome-control-center-3.18.2.tar.xz 7113676 SHA256 36fe6157247d2b7c8a98dbb3dbcde1c3a6f9e5e8fcc9ccf357e2b2417578f8ad SHA512 fc1f1075bfd9e86bf2cd38483050895cdbeec1574aa0313245692b2c33fed2db9b92bce634a298e7309f8fc5bf230a122768be9da04f81d0ab1f1feaeaad7754 WHIRLPOOL 00a433686b4d0cb83bcf1e2b63a795bb086241d80441a997c7164476b063e07f006ef0329c7c9a57f0344cf46bb8fb69916984169143d7c455df6927a650a1ce DIST gnome-control-center-3.20.1.tar.xz 7160304 SHA256 ce6474fc60f78ed3cfaf555e55a52ec3ebb6437fa184e08ad6077bbec380a1ed SHA512 f730c5edc1b3995765929efce3aa59602398003949ab97d215bd261c7705eb9277762aec2296af54d1762c62df2b383838645c6b82dd233f046af7dad06ba420 WHIRLPOOL 76562946f839c1850cbc2082e467e7527f7a4b28d78dd91ad201c7f40a44a87d421ad54054ed5d6b2edc1ce3c46799a17073e4fe410bae1e42e52b409aafb05d +DIST gnome-control-center-3.20.2.tar.xz 7103716 SHA256 ae380d9cb7a2c6f7f336718606274cd87021cbbcdf828ec67b1a420a2605776e SHA512 d68bccf16e5e854db4cd8dbb7abb64c40ad1b7370a8c71ff5e8790ef6f2eeb19cd6b2d41f5506bb4b8d956f1d65f54afb26f5d2c4c87adde6561079f1477ff41 WHIRLPOOL ccb4a35211d2fa3adca34b2897a09687bfc854f5d89a512f80d43f46d822b15f586424983df5e746771e12df36115c5b9b7eee220582c4b7042d68e48c4ccf17 diff --git a/gnome-base/gnome-control-center/gnome-control-center-3.20.2.ebuild b/gnome-base/gnome-control-center/gnome-control-center-3.20.2.ebuild new file mode 100644 index 000000000000..f443827b64ed --- /dev/null +++ b/gnome-base/gnome-control-center/gnome-control-center-3.20.2.ebuild @@ -0,0 +1,160 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +GNOME2_LA_PUNT="yes" + +inherit autotools bash-completion-r1 gnome2 + +DESCRIPTION="GNOME's main interface to configure various aspects of the desktop" +HOMEPAGE="https://git.gnome.org/browse/gnome-control-center/" + +LICENSE="GPL-2+" +SLOT="2" +IUSE="+bluetooth +colord +cups debug +gnome-online-accounts +i18n input_devices_wacom kerberos networkmanager v4l wayland" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris" + +# False positives caused by nested configure scripts +QA_CONFIGURE_OPTIONS=".*" + +# gnome-session-2.91.6-r1 is needed so that 10-user-dirs-update is run at login +# g-s-d[policykit] needed for bug #403527 +# kerberos unfortunately means mit-krb5; build fails with heimdal +# udev could be made optional, only conditions gsd-device-panel +# (mouse, keyboards, touchscreen, etc) +COMMON_DEPEND=" + >=dev-libs/glib-2.44.0:2[dbus] + >=x11-libs/gdk-pixbuf-2.23.0:2 + >=x11-libs/gtk+-3.20.3:3[X,wayland?] + >=gnome-base/gsettings-desktop-schemas-3.19.3 + >=gnome-base/gnome-desktop-3.19.93:3= + >=gnome-base/gnome-settings-daemon-3.19.1[colord?,policykit] + + >=dev-libs/libpwquality-1.2.2 + dev-libs/libxml2:2 + gnome-base/libgtop:2= + media-libs/fontconfig + + >=media-libs/libcanberra-0.13[gtk3] + >=media-sound/pulseaudio-2[glib] + >=sys-auth/polkit-0.97 + >=sys-power/upower-0.99:= + >=x11-libs/libnotify-0.7.3:0= + + virtual/libgudev + virtual/opengl + x11-apps/xmodmap + x11-libs/cairo + x11-libs/libX11 + x11-libs/libXxf86misc + >=x11-libs/libXi-1.2 + + bluetooth? ( >=net-wireless/gnome-bluetooth-3.18.2:= ) + colord? ( + net-libs/libsoup:2.4 + >=x11-misc/colord-0.1.34:0= + >=x11-libs/colord-gtk-0.1.24 ) + cups? ( + >=net-print/cups-1.4[dbus] + || ( >=net-fs/samba-3.6.14-r1[smbclient] >=net-fs/samba-4.0.0[client] ) ) + gnome-online-accounts? ( + >=media-libs/grilo-0.3.0:0.3= + >=net-libs/gnome-online-accounts-3.15.1:= ) + i18n? ( >=app-i18n/ibus-1.5.2 ) + kerberos? ( app-crypt/mit-krb5 ) + networkmanager? ( + >=gnome-extra/nm-applet-0.9.7.995 + >=net-misc/networkmanager-0.9.8:=[modemmanager] + >=net-misc/modemmanager-0.7.990 ) + v4l? ( + media-libs/clutter-gtk:1.0 + >=media-video/cheese-3.5.91 ) + input_devices_wacom? ( + >=dev-libs/libwacom-0.7 + >=media-libs/clutter-1.11.3:1.0 + media-libs/clutter-gtk:1.0 + >=x11-libs/libXi-1.2 ) +" +# - + diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 41e35f096ff3..14989f8e3265 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 12 Oct 2016 07:10:38 +0000 +Wed, 12 Oct 2016 14:10:39 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 41e35f096ff3..14989f8e3265 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 12 Oct 2016 07:10:38 +0000 +Wed, 12 Oct 2016 14:10:39 +0000 diff --git a/metadata/md5-cache/app-admin/gkrellm-2.3.9 b/metadata/md5-cache/app-admin/gkrellm-2.3.9 new file mode 100644 index 000000000000..d4199eb198bb --- /dev/null +++ b/metadata/md5-cache/app-admin/gkrellm-2.3.9 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare setup +DEPEND=dev-libs/glib:2 hddtemp? ( app-admin/hddtemp ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) ) lm_sensors? ( sys-apps/lm_sensors ) nls? ( virtual/libintl ) ntlm? ( net-libs/libntlm ) X? ( x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/pango ) virtual/pkgconfig nls? ( sys-devel/gettext ) virtual/pkgconfig +DESCRIPTION=Single process stack of various system monitors +EAPI=6 +HOMEPAGE=http://www.gkrellm.net/ +IUSE=gnutls hddtemp libressl lm_sensors nls ntlm ssl kernel_FreeBSD X +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux +LICENSE=GPL-3 +RDEPEND=dev-libs/glib:2 hddtemp? ( app-admin/hddtemp ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) ) lm_sensors? ( sys-apps/lm_sensors ) nls? ( virtual/libintl ) ntlm? ( net-libs/libntlm ) X? ( x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/pango ) +SLOT=2 +SRC_URI=http://gkrellm.srcbox.net/gkrellm-2.3.9.tar.bz2 -> gkrellm-2.3.9.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 user 80aaa71614ced86f02ee1a513821dc87 +_md5_=fb5f72d5941838feb97bdb2144063816 diff --git a/metadata/md5-cache/app-admin/sudo-1.8.18_p1 b/metadata/md5-cache/app-admin/sudo-1.8.18_p1 new file mode 100644 index 000000000000..ec5df78a8f3e --- /dev/null +++ b/metadata/md5-cache/app-admin/sudo-1.8.18_p1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst prepare +DEPEND=pam? ( virtual/pam ) skey? ( >=sys-auth/skey-1.1.5-r1 ) ldap? ( >=net-nds/openldap-2.1.30-r1 dev-libs/cyrus-sasl ) sys-libs/zlib sys-devel/bison +DESCRIPTION=Allows users or groups to run commands as other users +EAPI=6 +HOMEPAGE=http://www.sudo.ws/ +IUSE=ldap nls pam offensive selinux skey +sendmail +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris +LICENSE=ISC BSD +RDEPEND=pam? ( virtual/pam ) skey? ( >=sys-auth/skey-1.1.5-r1 ) ldap? ( >=net-nds/openldap-2.1.30-r1 dev-libs/cyrus-sasl ) sys-libs/zlib selinux? ( sec-policy/selinux-sudo ) ldap? ( dev-lang/perl ) pam? ( sys-auth/pambase ) >=app-misc/editor-wrapper-3 virtual/editor sendmail? ( virtual/mta ) +REQUIRED_USE=pam? ( !skey ) skey? ( !pam ) +SLOT=0 +SRC_URI=http://www.sudo.ws/sudo/dist/sudo-1.8.18p1.tar.gz ftp://ftp.sudo.ws/pub/sudo/sudo-1.8.18p1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 +_md5_=ea220916e3884af338897d718523fa40 diff --git a/metadata/md5-cache/app-laptop/tp_smapi-0.42 b/metadata/md5-cache/app-laptop/tp_smapi-0.42-r1 similarity index 95% rename from metadata/md5-cache/app-laptop/tp_smapi-0.42 rename to metadata/md5-cache/app-laptop/tp_smapi-0.42-r1 index c2380ea1b01e..8041fac98d1e 100644 --- a/metadata/md5-cache/app-laptop/tp_smapi-0.42 +++ b/metadata/md5-cache/app-laptop/tp_smapi-0.42-r1 @@ -10,4 +10,4 @@ RDEPEND=sys-apps/dmidecode kernel_linux? ( virtual/modutils ) SLOT=0 SRC_URI=https://github.com/evgeni/tp_smapi/releases/download/tp-smapi/0.42/tp_smapi-0.42.tgz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc linux-info fd1e29abbb02cbc49f1a14299846e9c4 linux-mod 4755518412586c2fd655ff6e55780bcb multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=c99afb4b66ff1a1ec07c2a565b74aa81 +_md5_=ae7db64eb2be41e2acb557ea2170d963 diff --git a/metadata/md5-cache/dev-lang/solidity-0.4.2 b/metadata/md5-cache/dev-lang/solidity-0.4.2 new file mode 100644 index 000000000000..5dee1f9fda5e --- /dev/null +++ b/metadata/md5-cache/dev-lang/solidity-0.4.2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-libs/jsoncpp:= dev-libs/boost:= sys-devel/make >=dev-util/cmake-3.0.0 +DESCRIPTION=The Solidity Contract-Oriented Programming Language +EAPI=6 +HOMEPAGE=https://github.com/ethereum/solidity +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-libs/jsoncpp:= dev-libs/boost:= +SLOT=0 +SRC_URI=https://github.com/ethereum/solidity/archive/v0.4.2.tar.gz -> solidity-0.4.2.tar.gz +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=4123b088dc6ee79ac4d022d7ad1a8764 diff --git a/metadata/md5-cache/dev-libs/vrb-0.5.1-r1 b/metadata/md5-cache/dev-libs/vrb-0.5.1-r1 deleted file mode 100644 index 64bac61b8119..000000000000 --- a/metadata/md5-cache/dev-libs/vrb-0.5.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install -DESCRIPTION=Library for a virtual ring buffer -EAPI=6 -HOMEPAGE=http://vrb.slashusr.org/ -IUSE=static -KEYWORDS=~amd64 ~sparc ~x86 -LICENSE=LGPL-2.1 -RDEPEND=sys-libs/glibc -RESTRICT=strip -SLOT=0 -SRC_URI=http://vrb.slashusr.org/download/vrb-0.5.1.tar.bz2 -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 -_md5_=ccc177d63bd6e936c753564746d87c7f diff --git a/metadata/md5-cache/dev-perl/Gentoo-App-Pram-0.1.0 b/metadata/md5-cache/dev-perl/Gentoo-App-Pram-0.1.0 deleted file mode 100644 index 9c8b54c755d1..000000000000 --- a/metadata/md5-cache/dev-perl/Gentoo-App-Pram-0.1.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/Module-Build-Tiny dev-perl/File-Which dev-vcs/git dev-lang/perl:=[-build(-)] -DESCRIPTION=Readily merge Pull Requests from the Gentoo Github repository -EAPI=5 -HOMEPAGE=https://github.com/monsieurp/Gentoo-App-Pram -IUSE=test -KEYWORDS=amd64 ppc ~ppc64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/M/MO/MONSIEURP/Gentoo-App-Pram-0.001000.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module c584f9e0fe426f3dcc2c46c6f7cb95ce toolchain-funcs 6198c04daba0e1307bd844df7d37f423 unpacker 45d07319df5f40ee6af58418b0f930be -_md5_=a75cf9aa307a1de72caf186158584b95 diff --git a/metadata/md5-cache/dev-perl/Gentoo-App-Pram-0.3.0 b/metadata/md5-cache/dev-perl/Gentoo-App-Pram-0.3.0 index 3485f13a095c..a23b2a04573c 100644 --- a/metadata/md5-cache/dev-perl/Gentoo-App-Pram-0.3.0 +++ b/metadata/md5-cache/dev-perl/Gentoo-App-Pram-0.3.0 @@ -4,10 +4,10 @@ DESCRIPTION=Readily merge Pull Requests from the Gentoo Github repository EAPI=5 HOMEPAGE=https://github.com/monsieurp/Gentoo-App-Pram IUSE=test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ppc ~ppc64 x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MO/MONSIEURP/Gentoo-App-Pram-0.003000.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module c584f9e0fe426f3dcc2c46c6f7cb95ce toolchain-funcs 6198c04daba0e1307bd844df7d37f423 unpacker 45d07319df5f40ee6af58418b0f930be -_md5_=e497879f1e56cf1e14107a48ebc49060 +_md5_=31aadee22f9712aafb101f6c8e57f9f3 diff --git a/metadata/md5-cache/dev-python/curtsies-0.2.10 b/metadata/md5-cache/dev-python/curtsies-0.2.10 new file mode 100644 index 000000000000..88c08dfbb477 --- /dev/null +++ b/metadata/md5-cache/dev-python/curtsies-0.2.10 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/blessings-1.5[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyte[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/wcwidth-0.1.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyte[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Curses-like terminal wrapper, with colored strings +EAPI=5 +HOMEPAGE=https://github.com/thomasballinger/curtsies +IUSE=test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=>=dev-python/blessings-1.5[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyte[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/wcwidth-0.1.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/c/curtsies/curtsies-0.2.10.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=8ea770a660bd72c61dd401fe42e08bc5 diff --git a/metadata/md5-cache/dev-python/flask-socketio-2.0 b/metadata/md5-cache/dev-python/flask-socketio-2.0 deleted file mode 100644 index 5c677e668aaf..000000000000 --- a/metadata/md5-cache/dev-python/flask-socketio-2.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/flask-0.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/python-socketio[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] test? ( dev-python/coverage[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=Socket.IO integration for Flask applications. -EAPI=5 -HOMEPAGE=https://flask-socketio.readthedocs.org/ https://github.com/miguelgrinberg/Flask-SocketIO/ https://pypi.python.org/pypi/Flask-SocketIO -IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/flask-0.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/python-socketio[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://pypi/F/Flask-SocketIO/Flask-SocketIO-2.0.tar.gz -> flask-socketio-2.0.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=510e82e7d1d19039f94bca61f43f8941 diff --git a/metadata/md5-cache/dev-python/flask-socketio-2.1 b/metadata/md5-cache/dev-python/flask-socketio-2.1 deleted file mode 100644 index 4a7b417a5a77..000000000000 --- a/metadata/md5-cache/dev-python/flask-socketio-2.1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/flask-0.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/python-socketio[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] test? ( dev-python/coverage[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=Socket.IO integration for Flask applications. -EAPI=5 -HOMEPAGE=https://flask-socketio.readthedocs.org/ https://github.com/miguelgrinberg/Flask-SocketIO/ https://pypi.python.org/pypi/Flask-SocketIO -IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/flask-0.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/python-socketio[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://pypi/F/Flask-SocketIO/Flask-SocketIO-2.1.tar.gz -> flask-socketio-2.1.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=510e82e7d1d19039f94bca61f43f8941 diff --git a/metadata/md5-cache/dev-python/flask-socketio-2.7.1 b/metadata/md5-cache/dev-python/flask-socketio-2.7.1 new file mode 100644 index 000000000000..1275c6e3f90a --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-socketio-2.7.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/flask-0.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/python-socketio[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/coverage[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Socket.IO integration for Flask applications. +EAPI=6 +HOMEPAGE=https://flask-socketio.readthedocs.org/ https://github.com/miguelgrinberg/Flask-SocketIO/ https://pypi.python.org/pypi/Flask-SocketIO +IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/flask-0.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/python-socketio[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/F/Flask-SocketIO/Flask-SocketIO-2.7.1.tar.gz -> flask-socketio-2.7.1.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=116ae2f99e41725f3ceb80af403e8ac0 diff --git a/metadata/md5-cache/dev-python/flower-0.9.1 b/metadata/md5-cache/dev-python/flower-0.9.1 new file mode 100644 index 000000000000..9c0ddd1f3467 --- /dev/null +++ b/metadata/md5-cache/dev-python/flower-0.9.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/pkgconfig +DESCRIPTION=Real-time monitor and web admin for Celery distributed task queue +EAPI=6 +HOMEPAGE=https://flower.readthedocs.org/ https://github.com/mher/flower/ https://pypi.python.org/pypi/flower +IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/celery-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=www-servers/tornado-4.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pytz-2015.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/f/flower/flower-0.9.1.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 user 80aaa71614ced86f02ee1a513821dc87 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=b3404f0d5bbc2ea194b32d3004d5b767 diff --git a/metadata/md5-cache/dev-python/google-api-python-client-1.5.3 b/metadata/md5-cache/dev-python/google-api-python-client-1.5.3 new file mode 100644 index 000000000000..65fef1bf077b --- /dev/null +++ b/metadata/md5-cache/dev-python/google-api-python-client-1.5.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/httplib2-0.8[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/oauth2client-2[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/uritemplate-0.6[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/six-1.6.1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Google API Client for Python +EAPI=5 +HOMEPAGE=https://code.google.com/p/google-api-python-client/ https://github.com/google/google-api-python-client +IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/httplib2-0.8[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/oauth2client-2[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/uritemplate-0.6[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/six-1.6.1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=https://github.com/google/google-api-python-client/archive/v1.5.3.tar.gz -> google-api-python-client-1.5.3.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=53c4106236727dfa21f6b810b060233f diff --git a/metadata/md5-cache/dev-python/mimeparse-0.1.4-r2 b/metadata/md5-cache/dev-python/mimeparse-0.1.4-r2 new file mode 100644 index 000000000000..3e091948e523 --- /dev/null +++ b/metadata/md5-cache/dev-python/mimeparse-0.1.4-r2 @@ -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_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Basic functions for handling mime-types in python +EAPI=6 +HOMEPAGE=https://code.google.com/p/mimeparse https://github.com/dbtsai/python-mimeparse +IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-mimeparse/python-mimeparse-0.1.4.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=60dd7ce0f4f930cadec6824ec880ce6e diff --git a/metadata/md5-cache/dev-python/mimeparse-1.5.1 b/metadata/md5-cache/dev-python/mimeparse-1.5.1 deleted file mode 100644 index 336dc5359fb9..000000000000 --- a/metadata/md5-cache/dev-python/mimeparse-1.5.1 +++ /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_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -DESCRIPTION=Basic functions for handling mime-types in python -EAPI=5 -HOMEPAGE=https://code.google.com/p/mimeparse https://github.com/dbtsai/python-mimeparse -IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux -LICENSE=MIT -RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 ) -SLOT=0 -SRC_URI=mirror://pypi/p/python-mimeparse/python-mimeparse-1.5.1.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=58723595cab494e9d2bd285d436fe448 diff --git a/metadata/md5-cache/dev-python/mimeparse-1.5.2 b/metadata/md5-cache/dev-python/mimeparse-1.5.2 deleted file mode 100644 index 452b22eaa4e7..000000000000 --- a/metadata/md5-cache/dev-python/mimeparse-1.5.2 +++ /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_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -DESCRIPTION=Basic functions for handling mime-types in python -EAPI=5 -HOMEPAGE=https://code.google.com/p/mimeparse https://github.com/dbtsai/python-mimeparse -IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux -LICENSE=MIT -RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 ) -SLOT=0 -SRC_URI=mirror://pypi/p/python-mimeparse/python-mimeparse-1.5.2.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=58723595cab494e9d2bd285d436fe448 diff --git a/metadata/md5-cache/dev-python/mimeparse-1.5.2-r1 b/metadata/md5-cache/dev-python/mimeparse-1.5.2-r1 new file mode 100644 index 000000000000..fd543a9a93bd --- /dev/null +++ b/metadata/md5-cache/dev-python/mimeparse-1.5.2-r1 @@ -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_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Basic functions for handling mime-types in python +EAPI=6 +HOMEPAGE=https://code.google.com/p/mimeparse https://github.com/dbtsai/python-mimeparse +IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-mimeparse/python-mimeparse-1.5.2.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=60dd7ce0f4f930cadec6824ec880ce6e diff --git a/metadata/md5-cache/dev-python/python-socketio-0.7.0 b/metadata/md5-cache/dev-python/python-socketio-0.7.0 deleted file mode 100644 index f07915c53031..000000000000 --- a/metadata/md5-cache/dev-python/python-socketio-0.7.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/six-1.9.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-engineio-0.7.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !dev-python/gevent-socketio dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] test? ( dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/pbr[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=Python implementation of the Socket.IO realtime server. -EAPI=5 -HOMEPAGE=https://python-socketio.readthedocs.org/ https://github.com/miguelgrinberg/python-socketio/ https://pypi.python.org/pypi/python-socketio -IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/six-1.9.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-engineio-0.7.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !dev-python/gevent-socketio python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://pypi/p/python-socketio/python-socketio-0.7.0.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=28d62e146e62c50f264f84fd7c31a28a diff --git a/metadata/md5-cache/dev-python/python-socketio-1.6.0 b/metadata/md5-cache/dev-python/python-socketio-1.6.0 new file mode 100644 index 000000000000..b48496c49679 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-socketio-1.6.0 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/six-1.9.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-engineio-0.7.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !dev-python/gevent-socketio dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Python implementation of the Socket.IO realtime server. +EAPI=6 +HOMEPAGE=https://python-socketio.readthedocs.org/ https://github.com/miguelgrinberg/python-socketio/ https://pypi.python.org/pypi/python-socketio +IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/six-1.9.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-engineio-0.7.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !dev-python/gevent-socketio python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/p/python-socketio/python-socketio-1.6.0.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=77d8c864fc98b85c5993b78ff84542cf diff --git a/metadata/md5-cache/dev-python/uritemplate-0.6 b/metadata/md5-cache/dev-python/uritemplate-0.6 index 4078c38704f8..bc83ee771941 100644 --- a/metadata/md5-cache/dev-python/uritemplate-0.6 +++ b/metadata/md5-cache/dev-python/uritemplate-0.6 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/simplejson[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] !<=dev-python/google-api-python-client-1.3 python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DEPEND=dev-python/simplejson[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !<=dev-python/google-api-python-client-1.3 python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] DESCRIPTION=Python implementation of RFC6570, URI Template EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/uritemplate -IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 +IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 KEYWORDS=amd64 arm x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 -RDEPEND=dev-python/simplejson[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] !<=dev-python/google-api-python-client-1.3 python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) +RDEPEND=dev-python/simplejson[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !<=dev-python/google-api-python-client-1.3 python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/u/uritemplate/uritemplate-0.6.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=06b4ec4a2557424d0ccd4c1d1e25577a +_md5_=34be6782fcfbc3a4143a06f072e66971 diff --git a/metadata/md5-cache/dev-qt/assistant-5.6.2 b/metadata/md5-cache/dev-qt/assistant-5.6.2 new file mode 100644 index 000000000000..dde983f9f554 --- /dev/null +++ b/metadata/md5-cache/dev-qt/assistant-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=978732b6cb5f4506ee1d43b2b04e09ff diff --git a/metadata/md5-cache/dev-qt/designer-5.6.2 b/metadata/md5-cache/dev-qt/designer-5.6.2 new file mode 100644 index 000000000000..0e1cf2fe19d2 --- /dev/null +++ b/metadata/md5-cache/dev-qt/designer-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=3371b7a603488871bf2527eb87b20c16 diff --git a/metadata/md5-cache/dev-qt/linguist-5.6.2 b/metadata/md5-cache/dev-qt/linguist-5.6.2 new file mode 100644 index 000000000000..52f82c9f93ee --- /dev/null +++ b/metadata/md5-cache/dev-qt/linguist-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Graphical tool for translating Qt applications +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=85a1cbb0fde31b27801ef9756787e5d3 diff --git a/metadata/md5-cache/dev-qt/linguist-tools-5.6.2 b/metadata/md5-cache/dev-qt/linguist-tools-5.6.2 new file mode 100644 index 000000000000..b051b6df96b7 --- /dev/null +++ b/metadata/md5-cache/dev-qt/linguist-tools-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtxml-5.6.2 qml? ( ~dev-qt/qtdeclarative-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=d7a337705a8242b963f2236cc70fbbaf diff --git a/metadata/md5-cache/dev-qt/pixeltool-5.6.2 b/metadata/md5-cache/dev-qt/pixeltool-5.6.2 new file mode 100644 index 000000000000..f37d8ee0fbbd --- /dev/null +++ b/metadata/md5-cache/dev-qt/pixeltool-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Qt screen magnifier +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=fe1ce7d0ed550e533b1734ecc98b87c3 diff --git a/metadata/md5-cache/dev-qt/qdbus-5.6.2 b/metadata/md5-cache/dev-qt/qdbus-5.6.2 new file mode 100644 index 000000000000..b51699e73546 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qdbus-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Interface to Qt applications communicating over D-Bus +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdbus-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=55f8a44f51ddbc2ceee76c1977ae5de9 diff --git a/metadata/md5-cache/dev-qt/qdbusviewer-5.6.2 b/metadata/md5-cache/dev-qt/qdbusviewer-5.6.2 new file mode 100644 index 000000000000..c2b4a5cd1edd --- /dev/null +++ b/metadata/md5-cache/dev-qt/qdbusviewer-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=adef22043d3bfbbe05bee36246a23c01 diff --git a/metadata/md5-cache/dev-qt/qdoc-5.6.2 b/metadata/md5-cache/dev-qt/qdoc-5.6.2 new file mode 100644 index 000000000000..58175be487e4 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qdoc-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Qt documentation generator +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=4963deebbb4e36947b6633be890632c9 diff --git a/metadata/md5-cache/dev-qt/qt-docs-5.6.2_p0 b/metadata/md5-cache/dev-qt/qt-docs-5.6.2_p0 new file mode 100644 index 000000000000..c6dd897d6e95 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qt-docs-5.6.2_p0 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install +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 ~x86 +LICENSE=FDL-1.3 +SLOT=5 +SRC_URI=https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_56_src_doc_examples/qt.56.doc/5.6.2-0qt-everywhere-documentation-5.6.2.7z +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=c9b7e397f8f536be402e5f5701dc22fe diff --git a/metadata/md5-cache/dev-qt/qtbluetooth-5.6.2 b/metadata/md5-cache/dev-qt/qtbluetooth-5.6.2 new file mode 100644 index 000000000000..5244ede95e72 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtbluetooth-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Bluetooth support library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml debug test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=0329752f8eed84edec19742328acb6e6 diff --git a/metadata/md5-cache/dev-qt/qtconcurrent-5.6.2 b/metadata/md5-cache/dev-qt/qtconcurrent-5.6.2 new file mode 100644 index 000000000000..31aed8ce45d8 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtconcurrent-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=7d3ccf85ec0966d8d035f48d9939829d diff --git a/metadata/md5-cache/dev-qt/qtcore-5.6.2 b/metadata/md5-cache/dev-qt/qtcore-5.6.2 new file mode 100644 index 000000000000..22d7bc6ebc1b --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtcore-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=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-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=64174dac5cb9862e1ab627fcc3fe2208 diff --git a/metadata/md5-cache/dev-qt/qtdbus-5.6.2 b/metadata/md5-cache/dev-qt/qtdbus-5.6.2 new file mode 100644 index 000000000000..c45ebcca7bba --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtdbus-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=94e436b925850cf4b9da2121afb822a9 diff --git a/metadata/md5-cache/dev-qt/qtdeclarative-5.6.2 b/metadata/md5-cache/dev-qt/qtdeclarative-5.6.2 new file mode 100644 index 000000000000..067979622163 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtdeclarative-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=857b016f1c4b77316da75e036cf18fb7 diff --git a/metadata/md5-cache/dev-qt/qtdiag-5.6.2 b/metadata/md5-cache/dev-qt/qtdiag-5.6.2 new file mode 100644 index 000000000000..c426836d5189 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtdiag-5.6.2 @@ -0,0 +1,14 @@ +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[ssl=] dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DESCRIPTION=Tool for reporting diagnostic information about Qt and its environment +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=+ssl debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtnetwork-5.6.2[ssl=] 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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=b8dd5890e828069b343d09a5caaa2d21 diff --git a/metadata/md5-cache/dev-qt/qtgraphicaleffects-5.6.2 b/metadata/md5-cache/dev-qt/qtgraphicaleffects-5.6.2 new file mode 100644 index 000000000000..c68f62df9151 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtgraphicaleffects-5.6.2 @@ -0,0 +1,14 @@ +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 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DESCRIPTION=Set of QML types for adding visual effects to user interfaces +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=test debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtdeclarative-5.6.2 ~dev-qt/qtgui-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/qtgraphicaleffects-opensource-src-5.6.2.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=5d6ff4577d9c679b55cf1357ba90ccb3 diff --git a/metadata/md5-cache/dev-qt/qtgui-5.6.2 b/metadata/md5-cache/dev-qt/qtgui-5.6.2 new file mode 100644 index 000000000000..5b9ed5332dc3 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtgui-5.6.2 @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +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 test? ( ~dev-qt/qttest-5.6.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 gtkstyle ibus jpeg libinput +png tslib tuio +udev +xcb debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +PDEPEND=ibus? ( app-i18n/ibus ) +RDEPEND=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 ) dev-qt/qtchooser +REQUIRED_USE=|| ( eglfs xcb ) accessibility? ( dbus xcb ) eglfs? ( egl ) ibus? ( dbus ) libinput? ( udev ) xcb? ( gles2? ( egl ) ) +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=053dd67e7279d7ba6272f793e6cd2b9e diff --git a/metadata/md5-cache/dev-qt/qthelp-5.6.2 b/metadata/md5-cache/dev-qt/qthelp-5.6.2 new file mode 100644 index 000000000000..00e22b662c3d --- /dev/null +++ b/metadata/md5-cache/dev-qt/qthelp-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Qt5 module for integrating online documentation into applications +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=b0cef0929856d03c666eba4f74a8d3bb diff --git a/metadata/md5-cache/dev-qt/qtimageformats-5.6.2 b/metadata/md5-cache/dev-qt/qtimageformats-5.6.2 new file mode 100644 index 000000000000..b93bbf098a51 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtimageformats-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=49221c3c0f9bff5fc4ad5c11cb64e0b2 diff --git a/metadata/md5-cache/dev-qt/qtlocation-5.6.2 b/metadata/md5-cache/dev-qt/qtlocation-5.6.2 new file mode 100644 index 000000000000..f583ad75a9e3 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtlocation-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=The Location module for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=d44bf15376251db3c7c69f1c7e19ea1a diff --git a/metadata/md5-cache/dev-qt/qtmultimedia-5.6.2 b/metadata/md5-cache/dev-qt/qtmultimedia-5.6.2 new file mode 100644 index 000000000000..6c5593ab91e7 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtmultimedia-5.6.2 @@ -0,0 +1,15 @@ +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 ) gstreamer010? ( dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) 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 ) +DESCRIPTION=Multimedia (audio, video, radio, camera) library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=alsa gles2 gstreamer gstreamer010 openal pulseaudio qml widgets debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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 ) gstreamer010? ( dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) 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=] ) dev-qt/qtchooser +REQUIRED_USE=?? ( gstreamer gstreamer010 ) +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=bef8af3387911881248c974647baa417 diff --git a/metadata/md5-cache/dev-qt/qtnetwork-5.6.2 b/metadata/md5-cache/dev-qt/qtnetwork-5.6.2 new file mode 100644 index 000000000000..69a8a0d4d55f --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtnetwork-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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=] ) connman? ( net-misc/connman ) networkmanager? ( net-misc/networkmanager ) 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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=b64914a8e5a06a43fbd665861e214109 diff --git a/metadata/md5-cache/dev-qt/qtopengl-5.6.2 b/metadata/md5-cache/dev-qt/qtopengl-5.6.2 new file mode 100644 index 000000000000..7a779294a023 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtopengl-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=] ~dev-qt/qtwidgets-5.6.2[gles2=] virtual/opengl 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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=37a8d69b06c3ac9c126eaa0769346ec1 diff --git a/metadata/md5-cache/dev-qt/qtpaths-5.6.2 b/metadata/md5-cache/dev-qt/qtpaths-5.6.2 new file mode 100644 index 000000000000..8dd4385f0f5b --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtpaths-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Command line client to QStandardPaths +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=c3d93274d00b64118f100cdb4f6a516b diff --git a/metadata/md5-cache/dev-qt/qtplugininfo-5.6.2 b/metadata/md5-cache/dev-qt/qtplugininfo-5.6.2 new file mode 100644 index 000000000000..b80c83180c88 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtplugininfo-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Qt5 plugin metadata dumper +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=079456f02d85c230245edc6c37dbcc5e diff --git a/metadata/md5-cache/dev-qt/qtpositioning-5.6.2 b/metadata/md5-cache/dev-qt/qtpositioning-5.6.2 new file mode 100644 index 000000000000..cfeb5c7c54ea --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtpositioning-5.6.2 @@ -0,0 +1,15 @@ +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 ) +DESCRIPTION=Physical position determination library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=geoclue qml debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +PDEPEND=geoclue? ( app-misc/geoclue:0 ) +RDEPEND=~dev-qt/qtcore-5.6.2 geoclue? ( ~dev-qt/qtdbus-5.6.2 ) qml? ( ~dev-qt/qtdeclarative-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/qtlocation-opensource-src-5.6.2.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=b12f1c9506027e77c8d01162c9f72e49 diff --git a/metadata/md5-cache/dev-qt/qtprintsupport-5.6.2 b/metadata/md5-cache/dev-qt/qtprintsupport-5.6.2 new file mode 100644 index 000000000000..06ff91eee040 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtprintsupport-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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 ) 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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=a8cbfefcbf85720fb70fd1beb0ee3f96 diff --git a/metadata/md5-cache/dev-qt/qtquickcontrols-5.6.2 b/metadata/md5-cache/dev-qt/qtquickcontrols-5.6.2 new file mode 100644 index 000000000000..a48289688913 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtquickcontrols-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=705e0ca2cce1192ac5681ba224092724 diff --git a/metadata/md5-cache/dev-qt/qtscript-5.6.2 b/metadata/md5-cache/dev-qt/qtscript-5.6.2 new file mode 100644 index 000000000000..1e2a55c259c9 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtscript-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 scripttools? ( ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-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/qtscript-opensource-src-5.6.2.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=dea144415c708ef1e6a369e4d8151f6f diff --git a/metadata/md5-cache/dev-qt/qtsensors-5.6.2 b/metadata/md5-cache/dev-qt/qtsensors-5.6.2 new file mode 100644 index 000000000000..3020945c8e38 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtsensors-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Hardware sensor access library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=qml debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 qml? ( ~dev-qt/qtdeclarative-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/qtsensors-opensource-src-5.6.2.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=d21a645ad748ec10c5484ead44c34f00 diff --git a/metadata/md5-cache/dev-qt/qtserialport-5.6.2 b/metadata/md5-cache/dev-qt/qtserialport-5.6.2 new file mode 100644 index 000000000000..c75e46b9af8e --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtserialport-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Serial port abstraction library for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=d1ddf5d35267761fb1456b5174288aaa diff --git a/metadata/md5-cache/dev-qt/qtsql-5.6.2 b/metadata/md5-cache/dev-qt/qtsql-5.6.2 new file mode 100644 index 000000000000..f505f44dc74e --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtsql-5.6.2 @@ -0,0 +1,15 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~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-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=ff96525c0de2d173bc9fd35d4a0e8ccc diff --git a/metadata/md5-cache/dev-qt/qtsvg-5.6.2 b/metadata/md5-cache/dev-qt/qtsvg-5.6.2 new file mode 100644 index 000000000000..45f4cb416f28 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtsvg-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2 ~dev-qt/qtwidgets-5.6.2 >=sys-libs/zlib-1.2.5 dev-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=ea78fde025bfc5a4971068d8a1d5898d diff --git a/metadata/md5-cache/dev-qt/qttest-5.6.2 b/metadata/md5-cache/dev-qt/qttest-5.6.2 new file mode 100644 index 000000000000..189a50525143 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qttest-5.6.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=~dev-qt/qtcore-5.6.2 test? ( ~dev-qt/qtgui-5.6.2 ~dev-qt/qtxml-5.6.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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=e698b3422531a876391f4a8ea085afe9 diff --git a/metadata/md5-cache/dev-qt/qttranslations-5.6.2 b/metadata/md5-cache/dev-qt/qttranslations-5.6.2 new file mode 100644 index 000000000000..fac4a518aca8 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qttranslations-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=a21ed8dbfa3c80b8a6dffb921c629eae diff --git a/metadata/md5-cache/dev-qt/qtwayland-5.6.2 b/metadata/md5-cache/dev-qt/qtwayland-5.6.2 new file mode 100644 index 000000000000..4ee205dc1ae7 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwayland-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Wayland platform plugin for Qt +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=egl qml wayland-compositor xcomposite debug test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=>=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-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=bb58f0fc675218d65dae34ddc5755139 diff --git a/metadata/md5-cache/dev-qt/qtwebchannel-5.6.2 b/metadata/md5-cache/dev-qt/qtwebchannel-5.6.2 new file mode 100644 index 000000000000..2b8d101fe84e --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebchannel-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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 ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 qml? ( ~dev-qt/qtdeclarative-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/qtwebchannel-opensource-src-5.6.2.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=231d01b6ca4e3e9f856ee71ac7a3ae51 diff --git a/metadata/md5-cache/dev-qt/qtwebengine-5.6.2 b/metadata/md5-cache/dev-qt/qtwebengine-5.6.2 new file mode 100644 index 000000000000..51630ff1f153 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebengine-5.6.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.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:= 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 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.6.2 ) +DESCRIPTION=Library for rendering dynamic web content in Qt5 C++ and QML applications +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=bindist geolocation +system-ffmpeg +system-icu widgets debug test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=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:= 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-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=b7f34d013cc901a3ff6b038ee01fd3d8 diff --git a/metadata/md5-cache/dev-qt/qtwebkit-5.6.2 b/metadata/md5-cache/dev-qt/qtwebkit-5.6.2 new file mode 100644 index 000000000000..1e709de1b944 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebkit-5.6.2 @@ -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.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 ) +DESCRIPTION=WebKit rendering library for the Qt5 framework (deprecated) +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=geolocation gstreamer gstreamer010 +jit multimedia opengl orientation printsupport qml webchannel webp debug test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 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.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-qt/qtchooser +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=5206ccce2364f6aa674d6cb85328f497 diff --git a/metadata/md5-cache/dev-qt/qtwebsockets-5.6.2 b/metadata/md5-cache/dev-qt/qtwebsockets-5.6.2 new file mode 100644 index 000000000000..30cdc94173a9 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwebsockets-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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 ~hppa ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtnetwork-5.6.2[ssl=] qml? ( ~dev-qt/qtdeclarative-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/qtwebsockets-opensource-src-5.6.2.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=409c6c46c41a2569be70946183be14ec diff --git a/metadata/md5-cache/dev-qt/qtwidgets-5.6.2 b/metadata/md5-cache/dev-qt/qtwidgets-5.6.2 new file mode 100644 index 000000000000..0c7986314f28 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtwidgets-5.6.2 @@ -0,0 +1,14 @@ +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 ) +DESCRIPTION=Set of components for creating classic desktop-style UIs for the Qt5 framework +EAPI=6 +HOMEPAGE=https://www.qt.io/ +IUSE=gles2 gtkstyle +png +xcb debug test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +LICENSE=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +RDEPEND=~dev-qt/qtcore-5.6.2 ~dev-qt/qtgui-5.6.2[gles2=,gtkstyle=,png=,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/qtbase-opensource-src-5.6.2.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=3897fa33b10446a25544197181811761 diff --git a/metadata/md5-cache/dev-qt/qtx11extras-5.6.2 b/metadata/md5-cache/dev-qt/qtx11extras-5.6.2 new file mode 100644 index 000000000000..a903ae5f3514 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtx11extras-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=124c684f1f68896016fd30b51a194c9a diff --git a/metadata/md5-cache/dev-qt/qtxml-5.6.2 b/metadata/md5-cache/dev-qt/qtxml-5.6.2 new file mode 100644 index 000000000000..46a7a0c253ff --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtxml-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=3cc802ba3d09134f6ae299a2a9212f4a diff --git a/metadata/md5-cache/dev-qt/qtxmlpatterns-5.6.2 b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.6.2 new file mode 100644 index 000000000000..59ae7409bae4 --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.6.2 @@ -0,0 +1,14 @@ +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 ) +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=|| ( LGPL-2.1 LGPL-3 ) FDL-1.3 +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_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 qt5-build c08fc6c5028076eb1a42b7edc5847f42 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 +_md5_=d2b1cd7b2c6959f0d233868af8bfb668 diff --git a/metadata/md5-cache/games-util/pogo-manager-bin-0.1.4 b/metadata/md5-cache/games-util/pogo-manager-bin-0.1.4 new file mode 100644 index 000000000000..02dd7193dd3a --- /dev/null +++ b/metadata/md5-cache/games-util/pogo-manager-bin-0.1.4 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install postinst +DEPEND=app-arch/unzip +DESCRIPTION=Pokemon Go manager +EAPI=6 +HOMEPAGE=https://github.com/Wolfsblvt/BlossomsPokemonGoManager +KEYWORDS=~amd64 ~x86 +LICENSE=CC-BY-NC-SA-4.0 +RDEPEND=|| ( dev-java/oracle-jdk-bin:1.8[javafx] dev-java/oracle-jre-bin:1.8[javafx] ) +SLOT=0 +SRC_URI=https://github.com/Wolfsblvt/BlossomsPokemonGoManager/releases/download/v0.1.4/BPGM_v0.1.4.zip -> pogo-manager-bin-0.1.4.zip +_md5_=4218f1023018cb8e14b8ccaa850900ea diff --git a/metadata/md5-cache/gnome-base/gnome-control-center-3.20.2 b/metadata/md5-cache/gnome-base/gnome-control-center-3.20.2 new file mode 100644 index 000000000000..fd2f0a87ce18 --- /dev/null +++ b/metadata/md5-cache/gnome-base/gnome-control-center-3.20.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=dev-libs/glib-2.44.0:2[dbus] >=x11-libs/gdk-pixbuf-2.23.0:2 >=x11-libs/gtk+-3.20.3:3[X,wayland?] >=gnome-base/gsettings-desktop-schemas-3.19.3 >=gnome-base/gnome-desktop-3.19.93:3= >=gnome-base/gnome-settings-daemon-3.19.1[colord?,policykit] >=dev-libs/libpwquality-1.2.2 dev-libs/libxml2:2 gnome-base/libgtop:2= media-libs/fontconfig >=media-libs/libcanberra-0.13[gtk3] >=media-sound/pulseaudio-2[glib] >=sys-auth/polkit-0.97 >=sys-power/upower-0.99:= >=x11-libs/libnotify-0.7.3:0= virtual/libgudev virtual/opengl x11-apps/xmodmap x11-libs/cairo x11-libs/libX11 x11-libs/libXxf86misc >=x11-libs/libXi-1.2 bluetooth? ( >=net-wireless/gnome-bluetooth-3.18.2:= ) colord? ( net-libs/libsoup:2.4 >=x11-misc/colord-0.1.34:0= >=x11-libs/colord-gtk-0.1.24 ) cups? ( >=net-print/cups-1.4[dbus] || ( >=net-fs/samba-3.6.14-r1[smbclient] >=net-fs/samba-4.0.0[client] ) ) gnome-online-accounts? ( >=media-libs/grilo-0.3.0:0.3= >=net-libs/gnome-online-accounts-3.15.1:= ) i18n? ( >=app-i18n/ibus-1.5.2 ) kerberos? ( app-crypt/mit-krb5 ) networkmanager? ( >=gnome-extra/nm-applet-0.9.7.995 >=net-misc/networkmanager-0.9.8:=[modemmanager] >=net-misc/modemmanager-0.7.990 ) v4l? ( media-libs/clutter-gtk:1.0 >=media-video/cheese-3.5.91 ) input_devices_wacom? ( >=dev-libs/libwacom-0.7 >=media-libs/clutter-1.11.3:1.0 media-libs/clutter-gtk:1.0 >=x11-libs/libXi-1.2 ) x11-proto/xproto x11-proto/xf86miscproto x11-proto/kbproto dev-libs/libxml2:2 dev-libs/libxslt >=dev-util/intltool-0.40.1 >=sys-devel/gettext-0.17 virtual/pkgconfig gnome-base/gnome-common !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=GNOME's main interface to configure various aspects of the desktop +EAPI=6 +HOMEPAGE=https://git.gnome.org/browse/gnome-control-center/ +IUSE=+bluetooth +colord +cups debug +gnome-online-accounts +i18n input_devices_wacom kerberos networkmanager v4l wayland +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=GPL-2+ +PDEPEND=>=gnome-base/gnome-session-2.91.6-r1 +RDEPEND=>=dev-libs/glib-2.44.0:2[dbus] >=x11-libs/gdk-pixbuf-2.23.0:2 >=x11-libs/gtk+-3.20.3:3[X,wayland?] >=gnome-base/gsettings-desktop-schemas-3.19.3 >=gnome-base/gnome-desktop-3.19.93:3= >=gnome-base/gnome-settings-daemon-3.19.1[colord?,policykit] >=dev-libs/libpwquality-1.2.2 dev-libs/libxml2:2 gnome-base/libgtop:2= media-libs/fontconfig >=media-libs/libcanberra-0.13[gtk3] >=media-sound/pulseaudio-2[glib] >=sys-auth/polkit-0.97 >=sys-power/upower-0.99:= >=x11-libs/libnotify-0.7.3:0= virtual/libgudev virtual/opengl x11-apps/xmodmap x11-libs/cairo x11-libs/libX11 x11-libs/libXxf86misc >=x11-libs/libXi-1.2 bluetooth? ( >=net-wireless/gnome-bluetooth-3.18.2:= ) colord? ( net-libs/libsoup:2.4 >=x11-misc/colord-0.1.34:0= >=x11-libs/colord-gtk-0.1.24 ) cups? ( >=net-print/cups-1.4[dbus] || ( >=net-fs/samba-3.6.14-r1[smbclient] >=net-fs/samba-4.0.0[client] ) ) gnome-online-accounts? ( >=media-libs/grilo-0.3.0:0.3= >=net-libs/gnome-online-accounts-3.15.1:= ) i18n? ( >=app-i18n/ibus-1.5.2 ) kerberos? ( app-crypt/mit-krb5 ) networkmanager? ( >=gnome-extra/nm-applet-0.9.7.995 >=net-misc/networkmanager-0.9.8:=[modemmanager] >=net-misc/modemmanager-0.7.990 ) v4l? ( media-libs/clutter-gtk:1.0 >=media-video/cheese-3.5.91 ) input_devices_wacom? ( >=dev-libs/libwacom-0.7 >=media-libs/clutter-1.11.3:1.0 media-libs/clutter-gtk:1.0 >=x11-libs/libXi-1.2 ) || ( >=sys-apps/systemd-31 ( app-admin/openrc-settingsd sys-auth/consolekit ) ) >=sys-apps/accountsservice-0.6.39 x11-themes/adwaita-icon-theme colord? ( >=gnome-extra/gnome-color-manager-3 ) cups? ( app-admin/system-config-printer net-print/cups-pk-helper ) input_devices_wacom? ( gnome-base/gnome-settings-daemon[input_devices_wacom] ) i18n? ( >=gnome-base/libgnomekbd-3 ) wayland? ( dev-libs/libinput ) !wayland? ( >=x11-drivers/xf86-input-libinput-0.19.0 input_devices_wacom? ( >=x11-drivers/xf86-input-wacom-0.33.0 ) ) !=dev-libs/glib-2.48:2 >=x11-libs/gdk-pixbuf-2.34:2 >=x11-libs/pango-1.40 >=media-libs/clutter-1.26:1.0 >=x11-libs/gtk+-3.20.0:3[cups?] >=dev-libs/atk-2.20 >=x11-libs/libwnck-3.20.0:3 >=gnome-base/librsvg-2.40.16 >=gnome-base/gnome-desktop-3.20.0:3 >=x11-libs/startup-notification-0.12 >=gnome-base/gvfs-1.28 >=gnome-base/dconf-0.26 >=media-libs/gstreamer-1.8:1.0 >=media-libs/gst-plugins-base-1.8:1.0 >=media-libs/gst-plugins-good-1.8:1.0 python? ( >=dev-python/pygobject-3.20.0:3 ) +SLOT=3.0 +_md5_=21b8c8efaf03702173ee8bdbb399bc55 diff --git a/metadata/md5-cache/gnome-base/gnome-settings-daemon-3.20.2 b/metadata/md5-cache/gnome-base/gnome-settings-daemon-3.20.2 new file mode 100644 index 000000000000..3f9313552417 --- /dev/null +++ b/metadata/md5-cache/gnome-base/gnome-settings-daemon-3.20.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=dev-libs/glib-2.37.7:2[dbus] >=x11-libs/gtk+-3.15.3:3 >=gnome-base/gnome-desktop-3.11.1:3= >=gnome-base/gsettings-desktop-schemas-3.20 >=gnome-base/librsvg-2.36.2:2 media-fonts/cantarell media-libs/alsa-lib media-libs/fontconfig >=media-libs/lcms-2.2:2 media-libs/libcanberra[gtk3] >=media-sound/pulseaudio-2 >=sys-power/upower-0.99:= x11-libs/cairo x11-libs/gdk-pixbuf:2 >=x11-libs/libnotify-0.7.3:= x11-libs/libX11 x11-libs/libxkbfile x11-libs/libXi x11-libs/libXext x11-libs/libXfixes x11-libs/libXtst x11-libs/libXxf86misc x11-misc/xkeyboard-config >=app-misc/geoclue-2.3.1:2.0 >=dev-libs/libgweather-3.9.5:2= >=sci-geosciences/geocode-glib-3.10 >=sys-auth/polkit-0.103 colord? ( >=x11-misc/colord-1.0.2:= ) cups? ( >=net-print/cups-1.4[dbus] ) input_devices_wacom? ( >=dev-libs/libwacom-0.7 >=x11-libs/pango-1.20 x11-drivers/xf86-input-wacom virtual/libgudev:= ) networkmanager? ( >=net-misc/networkmanager-1.0 ) smartcard? ( >=dev-libs/nss-3.11.2 ) udev? ( virtual/libgudev:= ) wayland? ( dev-libs/wayland ) cups? ( sys-apps/sed ) test? ( || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-3.3.2-r2:3.3 >=dev-lang/python-2.7.5-r2:2.7 ) || ( ( dev-lang/python:3.5 dev-python/pygobject:3[python_targets_python3_5(-),python_single_target_python3_5(+)] ) ( dev-lang/python:3.4 dev-python/pygobject:3[python_targets_python3_4(-),python_single_target_python3_4(+)] ) ( >=dev-lang/python-3.3.2-r2:3.3 dev-python/pygobject:3[python_targets_python3_3(-),python_single_target_python3_3(+)] ) ( >=dev-lang/python-2.7.5-r2:2.7 dev-python/pygobject:3[python_targets_python2_7(-),python_single_target_python2_7(+)] ) ) gnome-base/gnome-session ) app-text/docbook-xsl-stylesheets dev-libs/libxml2:2 dev-libs/libxslt sys-devel/gettext >=dev-util/intltool-0.40 virtual/pkgconfig x11-proto/inputproto x11-proto/xf86miscproto >=x11-proto/xproto-7.0.15 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info virtual/pkgconfig virtual/pkgconfig test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Gnome Settings Daemon +EAPI=6 +HOMEPAGE=https://git.gnome.org/browse/gnome-settings-daemon +IUSE=+colord +cups debug input_devices_wacom -openrc-force networkmanager policykit smartcard test +udev wayland test +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.37.7:2[dbus] >=x11-libs/gtk+-3.15.3:3 >=gnome-base/gnome-desktop-3.11.1:3= >=gnome-base/gsettings-desktop-schemas-3.20 >=gnome-base/librsvg-2.36.2:2 media-fonts/cantarell media-libs/alsa-lib media-libs/fontconfig >=media-libs/lcms-2.2:2 media-libs/libcanberra[gtk3] >=media-sound/pulseaudio-2 >=sys-power/upower-0.99:= x11-libs/cairo x11-libs/gdk-pixbuf:2 >=x11-libs/libnotify-0.7.3:= x11-libs/libX11 x11-libs/libxkbfile x11-libs/libXi x11-libs/libXext x11-libs/libXfixes x11-libs/libXtst x11-libs/libXxf86misc x11-misc/xkeyboard-config >=app-misc/geoclue-2.3.1:2.0 >=dev-libs/libgweather-3.9.5:2= >=sci-geosciences/geocode-glib-3.10 >=sys-auth/polkit-0.103 colord? ( >=x11-misc/colord-1.0.2:= ) cups? ( >=net-print/cups-1.4[dbus] ) input_devices_wacom? ( >=dev-libs/libwacom-0.7 >=x11-libs/pango-1.20 x11-drivers/xf86-input-wacom virtual/libgudev:= ) networkmanager? ( >=net-misc/networkmanager-1.0 ) smartcard? ( >=dev-libs/nss-3.11.2 ) udev? ( virtual/libgudev:= ) wayland? ( dev-libs/wayland ) gnome-base/dconf !openrc-force? ( sys-apps/systemd ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Extra tables, filters, and various other addons for OpenSMTPD +EAPI=5 +HOMEPAGE=https://github.com/OpenSMTPD/OpenSMTPD-extras +IUSE=filter-monkey filter-stub filter-trace filter-void queue-null queue-python queue-ram queue-stub scheduler-python scheduler-ram scheduler-stub table-ldap table-mysql table-passwd table-postgres table-python table-redis table-socketmap table-sqlite table-stub libressl luajit +KEYWORDS=~amd64 ~x86 +LICENSE=ISC BSD BSD-1 BSD-2 BSD-4 +RDEPEND=mail-mta/opensmtpd dev-libs/libevent !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) table-sqlite? ( dev-db/sqlite:3 ) table-mysql? ( virtual/mysql ) table-postgres? ( dev-db/postgresql:* ) table-redis? ( dev-libs/hiredis ) table-python? ( dev-lang/python:2.7 ) scheduler-python? ( dev-lang/python:2.7 ) queue-python? ( dev-lang/python:2.7 ) +SLOT=0 +SRC_URI=https://www.opensmtpd.org/archives/opensmtpd-extras-201609141255.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=8308494d6ba0c93867b2c511e07976b5 diff --git a/metadata/md5-cache/mail-mta/opensmtpd-6.0.1_p1 b/metadata/md5-cache/mail-mta/opensmtpd-6.0.1_p1 new file mode 100644 index 000000000000..a7dae651c71b --- /dev/null +++ b/metadata/md5-cache/mail-mta/opensmtpd-6.0.1_p1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst preinst prepare +DEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) sys-libs/zlib pam? ( virtual/pam ) sys-libs/db:= dev-libs/libevent app-misc/ca-certificates net-mail/mailbase net-libs/libasr !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/mini-qmail !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/postfix !mail-mta/qmail-ldap !mail-mta/sendmail !mail-mta/ssmtp[mta] !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DESCRIPTION=Lightweight but featured SMTP daemon from OpenBSD +EAPI=5 +HOMEPAGE=http://www.opensmtpd.org/ +IUSE=libressl pam +mta +KEYWORDS=~amd64 ~x86 +LICENSE=ISC BSD BSD-1 BSD-2 BSD-4 +RDEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) sys-libs/zlib pam? ( virtual/pam ) sys-libs/db:= dev-libs/libevent app-misc/ca-certificates net-mail/mailbase net-libs/libasr !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/mini-qmail !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/postfix !mail-mta/qmail-ldap !mail-mta/sendmail !mail-mta/ssmtp[mta] +SLOT=0 +SRC_URI=https://www.opensmtpd.org/archives/opensmtpd-6.0.1p1.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 user 80aaa71614ced86f02ee1a513821dc87 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=717ad097627605948f22f5981dcfbe04 diff --git a/metadata/md5-cache/media-gfx/eog-3.20.5 b/metadata/md5-cache/media-gfx/eog-3.20.5 new file mode 100644 index 000000000000..1ab96a730766 --- /dev/null +++ b/metadata/md5-cache/media-gfx/eog-3.20.5 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=dev-libs/glib-2.42.0:2[dbus] >=dev-libs/libpeas-0.7.4:=[gtk] >=gnome-base/gnome-desktop-2.91.2:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=x11-libs/gtk+-3.19.11:3[introspection,X] >=x11-misc/shared-mime-info-0.20 >=x11-libs/gdk-pixbuf-2.30.0:2[jpeg?,tiff?] x11-libs/libX11 exif? ( >=media-libs/libexif-0.6.14 ) introspection? ( >=dev-libs/gobject-introspection-0.9.3:= ) jpeg? ( virtual/jpeg:0 ) lcms? ( media-libs/lcms:2 ) svg? ( >=gnome-base/librsvg-2.36.2:2 ) xmp? ( media-libs/exempi:2 ) >=dev-util/gtk-doc-am-1.16 >=dev-util/intltool-0.50.1 dev-util/itstool sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=The Eye of GNOME image viewer +EAPI=6 +HOMEPAGE=https://wiki.gnome.org/Apps/EyeOfGnome +IUSE=debug +exif +introspection +jpeg lcms +svg tiff xmp +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.42.0:2[dbus] >=dev-libs/libpeas-0.7.4:=[gtk] >=gnome-base/gnome-desktop-2.91.2:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=x11-libs/gtk+-3.19.11:3[introspection,X] >=x11-misc/shared-mime-info-0.20 >=x11-libs/gdk-pixbuf-2.30.0:2[jpeg?,tiff?] x11-libs/libX11 exif? ( >=media-libs/libexif-0.6.14 ) introspection? ( >=dev-libs/gobject-introspection-0.9.3:= ) jpeg? ( virtual/jpeg:0 ) lcms? ( media-libs/lcms:2 ) svg? ( >=gnome-base/librsvg-2.36.2:2 ) xmp? ( media-libs/exempi:2 ) +REQUIRED_USE=exif? ( jpeg ) +SLOT=1 +SRC_URI=mirror://gnome/sources/eog/3.20/eog-3.20.5.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=269694984f58badf6268a0cb41b28d44 diff --git a/metadata/md5-cache/media-gfx/imagemagick-6.9.6.2 b/metadata/md5-cache/media-gfx/imagemagick-6.9.6.2 index 10fb63cb5adb..6650a21913bc 100644 --- a/metadata/md5-cache/media-gfx/imagemagick-6.9.6.2 +++ b/metadata/md5-cache/media-gfx/imagemagick-6.9.6.2 @@ -4,7 +4,7 @@ DESCRIPTION=A collection of tools and libraries for many image formats EAPI=6 HOMEPAGE=http://www.imagemagick.org/ IUSE=autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q64 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib -KEYWORDS=alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=imagemagick RDEPEND=dev-libs/libltdl:0 autotrace? ( >=media-gfx/autotrace-0.31.1 ) bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( >=dev-lang/perl-5.8.8:0= ) png? ( media-libs/libpng:0= ) postscript? ( app-text/ghostscript-gpl ) raw? ( media-gfx/ufraw ) svg? ( gnome-base/librsvg ) tiff? ( media-libs/tiff:0= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:0= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zlib? ( sys-libs/zlib:= ) REQUIRED_USE=corefonts? ( truetype ) test? ( corefonts ) @@ -12,4 +12,4 @@ RESTRICT=perl? ( userpriv ) SLOT=0/6.9.6.2 SRC_URI=mirror://imagemagick/ImageMagick-6.9.6-2.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=17a54e03c2507725de24d67a5c6ad8b2 +_md5_=e4f70dbcf4f8c1593e37d1cc405d2939 diff --git a/metadata/md5-cache/net-im/skypeforlinux-1.10.0.1 b/metadata/md5-cache/net-im/skypeforlinux-1.10.0.1 new file mode 100644 index 000000000000..b76e3ab3d8bc --- /dev/null +++ b/metadata/md5-cache/net-im/skypeforlinux-1.10.0.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install postinst prepare unpack +DEPEND=>=app-arch/rpm2targz-9.0.0.3g +DESCRIPTION=P2P Internet Telephony (VoiceIP) client +EAPI=6 +HOMEPAGE=http://www.skype.com/ +KEYWORDS=~amd64 +LICENSE=Skype-TOS no-source-code +RDEPEND=virtual/ttf-fonts !net-im/skype:1 dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss gnome-base/gconf:2 gnome-base/libgnome-keyring media-libs/alsa-lib media-libs/fontconfig:1.0 media-libs/freetype:2 net-print/cups sys-apps/dbus x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 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 x11-libs/pango +RESTRICT=mirror bindist strip +SLOT=0 +SRC_URI=https://repo.skype.com/rpm/stable/skypeforlinux_1.10.0.1-1.x86_64.rpm +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 rpm 3e120fdd74b358f9fb42b825a6558f61 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 +_md5_=3e70c5ed7bc84ee766766df335152833 diff --git a/metadata/md5-cache/net-libs/ignition-transport-1.2.0 b/metadata/md5-cache/net-libs/ignition-transport-1.2.0 deleted file mode 100644 index e2156f332cd6..000000000000 --- a/metadata/md5-cache/net-libs/ignition-transport-1.2.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-libs/protobuf:= >=net-libs/zeromq-3.2.0:= sys-apps/util-linux net-libs/cppzmq virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.12 -DESCRIPTION=Combines ZeroMQ with Protobufs to create a fast and efficient message passing system -EAPI=5 -HOMEPAGE=http://ignitionrobotics.org/libraries/transport -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=dev-libs/protobuf:= >=net-libs/zeromq-3.2.0:= sys-apps/util-linux net-libs/cppzmq -SLOT=0/0 -SRC_URI=http://gazebosim.org/distributions/ign-transport/releases/ignition-transport-1.2.0.tar.bz2 -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ef79922f88526026f50819140e64ab8b diff --git a/metadata/md5-cache/net-libs/ignition-transport-1.1.0 b/metadata/md5-cache/net-libs/ignition-transport-1.4.0 similarity index 92% rename from metadata/md5-cache/net-libs/ignition-transport-1.1.0 rename to metadata/md5-cache/net-libs/ignition-transport-1.4.0 index c0219e9778e7..663d8ec6f107 100644 --- a/metadata/md5-cache/net-libs/ignition-transport-1.1.0 +++ b/metadata/md5-cache/net-libs/ignition-transport-1.4.0 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 LICENSE=Apache-2.0 RDEPEND=dev-libs/protobuf:= >=net-libs/zeromq-3.2.0:= sys-apps/util-linux net-libs/cppzmq SLOT=0/0 -SRC_URI=http://gazebosim.org/distributions/ign-transport/releases/ignition-transport-1.1.0.tar.bz2 +SRC_URI=http://gazebosim.org/distributions/ign-transport/releases/ignition-transport-1.4.0.tar.bz2 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ef79922f88526026f50819140e64ab8b +_md5_=7d17a7f094b3a610d273de74f25ee98e diff --git a/metadata/md5-cache/net-misc/tinc-1.1_pre14 b/metadata/md5-cache/net-misc/tinc-1.1_pre14 index 797a8b9844b8..3a8f7397089f 100644 --- a/metadata/md5-cache/net-misc/tinc-1.1_pre14 +++ b/metadata/md5-cache/net-misc/tinc-1.1_pre14 @@ -1,4 +1,4 @@ -DEFINED_PHASES=configure install postinst setup +DEFINED_PHASES=configure install postinst prepare setup DEPEND=ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) lzo? ( dev-libs/lzo:2 ) ncurses? ( sys-libs/ncurses:= ) readline? ( sys-libs/readline:= ) upnp? ( net-libs/miniupnpc ) zlib? ( sys-libs/zlib ) DESCRIPTION=tinc is an easy to configure VPN implementation EAPI=5 @@ -10,4 +10,4 @@ RDEPEND=ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl: SLOT=0 SRC_URI=http://www.tinc-vpn.org/packages/tinc-1.1pre14.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 -_md5_=c1d6cb81de07ff19410c7292996dceb1 +_md5_=9fcb9512cc400365d96c66bf43cf79f1 diff --git a/metadata/md5-cache/net-p2p/go-ethereum-1.4.17 b/metadata/md5-cache/net-p2p/go-ethereum-1.4.17-r1 similarity index 66% rename from metadata/md5-cache/net-p2p/go-ethereum-1.4.17 rename to metadata/md5-cache/net-p2p/go-ethereum-1.4.17-r1 index 71a9a989074d..c2539c5c1b94 100644 --- a/metadata/md5-cache/net-p2p/go-ethereum-1.4.17 +++ b/metadata/md5-cache/net-p2p/go-ethereum-1.4.17-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install -DEPEND=dev-lang/go:= +DEPEND=dev-lang/go:= opencl? ( virtual/opencl ) DESCRIPTION=Official golang implementation of the Ethereum protocol EAPI=6 HOMEPAGE=https://github.com/ethereum/go-ethereum -IUSE=evm +IUSE=evm opencl KEYWORDS=~amd64 ~x86 LICENSE=GPL-3+ LGPL-3+ -RDEPEND=dev-lang/go:= +RDEPEND=dev-lang/go:= opencl? ( virtual/opencl ) SLOT=0 SRC_URI=https://github.com/ethereum/go-ethereum/archive/v1.4.17.tar.gz -> go-ethereum-1.4.17.tar.gz -_md5_=96b67598d828b7b3407c1ea6b62f3862 +_md5_=6b0e502011cb293b65e5114f45993c2b diff --git a/metadata/md5-cache/sci-electronics/gazebo-7.4.0 b/metadata/md5-cache/sci-electronics/gazebo-7.4.0 new file mode 100644 index 000000000000..8c0ba1d082fe --- /dev/null +++ b/metadata/md5-cache/sci-electronics/gazebo-7.4.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-libs/protobuf-2:= virtual/opengl media-libs/openal net-misc/curl dev-libs/tinyxml dev-libs/tinyxml2 dev-libs/libtar dev-cpp/tbb >=dev-games/ogre-1.7.4 sci-libs/libccd libav? ( >=media-video/libav-9:0= ) !libav? ( >=media-video/ffmpeg-2.6:0= ) sci-libs/gts >=sci-physics/bullet-2.82 >=dev-libs/sdformat-4.1:= dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtwebkit:4 dev-qt/qtxmlpatterns:4 dev-libs/boost:=[threads] sci-libs/gdal virtual/libusb:1 dev-libs/libspnav media-libs/freeimage sci-libs/hdf5:= sys-apps/util-linux media-gfx/graphviz >=sci-libs/ignition-math-2.3:2= net-libs/ignition-transport:= dev-qt/qttest:4 app-text/ronn virtual/pkgconfig x11-apps/mesa-progs test? ( dev-libs/libxslt ) sys-devel/make >=dev-util/cmake-2.8.12 +DESCRIPTION=A 3D multiple robot simulator with dynamics +EAPI=5 +HOMEPAGE=http://gazebosim.org/ +IUSE=cpu_flags_x86_sse2 libav test +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=dev-libs/protobuf-2:= virtual/opengl media-libs/openal net-misc/curl dev-libs/tinyxml dev-libs/tinyxml2 dev-libs/libtar dev-cpp/tbb >=dev-games/ogre-1.7.4 sci-libs/libccd libav? ( >=media-video/libav-9:0= ) !libav? ( >=media-video/ffmpeg-2.6:0= ) sci-libs/gts >=sci-physics/bullet-2.82 >=dev-libs/sdformat-4.1:= dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtwebkit:4 dev-qt/qtxmlpatterns:4 dev-libs/boost:=[threads] sci-libs/gdal virtual/libusb:1 dev-libs/libspnav media-libs/freeimage sci-libs/hdf5:= sys-apps/util-linux media-gfx/graphviz >=sci-libs/ignition-math-2.3:2= net-libs/ignition-transport:= +SLOT=0 +SRC_URI=http://osrf-distributions.s3.amazonaws.com/gazebo/releases/gazebo-7.4.0.tar.bz2 +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=1f479a9e689274839a4b8e16d8d95a8e diff --git a/metadata/md5-cache/sys-apps/baselayout-2.3 b/metadata/md5-cache/sys-apps/baselayout-2.3 index 5fe214ff1d76..7a9147eb63ab 100644 --- a/metadata/md5-cache/sys-apps/baselayout-2.3 +++ b/metadata/md5-cache/sys-apps/baselayout-2.3 @@ -3,9 +3,9 @@ DESCRIPTION=Filesystem baselayout and init scripts EAPI=5 HOMEPAGE=https://www.gentoo.org/ IUSE=build kernel_linux -KEYWORDS=alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +KEYWORDS=alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 SLOT=0 SRC_URI=https://dev.gentoo.org/~williamh/dist/baselayout-2.3.tar.bz2 _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 -_md5_=bfb7885c81cdc3b50e76f6a6bbb0acbd +_md5_=09db2e0432657c028a5d64aa53a51351 diff --git a/metadata/md5-cache/sys-freebsd/freebsd-sources-11.0 b/metadata/md5-cache/sys-freebsd/freebsd-sources-11.0 index aba88c0593e7..96daa3a18ddf 100644 --- a/metadata/md5-cache/sys-freebsd/freebsd-sources-11.0 +++ b/metadata/md5-cache/sys-freebsd/freebsd-sources-11.0 @@ -11,4 +11,4 @@ RESTRICT=strip binchecks SLOT=0 SRC_URI=mirror://freebsd/releases/i386/11.0-RELEASE/src.txz -> freebsd-src-11.0.tar.xz _eclasses_=bsdmk ab5891d0c251fc8638ada4d0bbe04bfb eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc freebsd 28ffc748f8cb894e5e5b61286cf91140 multilib 165fc17c38d1b11dac2008280dab6e80 portability bb1a0ed8ea152b957d17339f01d4d7f5 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=0ac2f90caa90e813b12c10777fa37f74 +_md5_=09c065a02b7275477f0aac6575428bf4 diff --git a/metadata/md5-cache/sys-freebsd/freebsd-ubin-10.3-r1 b/metadata/md5-cache/sys-freebsd/freebsd-ubin-10.3-r2 similarity index 91% rename from metadata/md5-cache/sys-freebsd/freebsd-ubin-10.3-r1 rename to metadata/md5-cache/sys-freebsd/freebsd-ubin-10.3-r2 index a03e6956e449..df75cf1a7a3e 100644 --- a/metadata/md5-cache/sys-freebsd/freebsd-ubin-10.3-r1 +++ b/metadata/md5-cache/sys-freebsd/freebsd-ubin-10.3-r2 @@ -8,6 +8,6 @@ KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=BSD zfs? ( CDDL ) RDEPEND==sys-freebsd/freebsd-lib-10.3*[usb?,bluetooth?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ssl? ( dev-libs/openssl:0= ) kerberos? ( virtual/krb5 ) ar? ( >=app-arch/libarchive-3 ) virtual/pam sys-libs/zlib >=sys-libs/ncurses-5.9:0= !sys-process/fuser-bsd !dev-util/csup !dev-libs/libiconv !sys-freebsd/freebsd-contrib >=sys-auth/pambase-20080219.1 sys-process/cronbase SLOT=0 -SRC_URI=mirror://freebsd/releases/i386/10.3-RELEASE/src.txz -> freebsd-src-10.3.tar.xz https://security.freebsd.org/patches/SA-16:25/bspatch.patch -> freebsd-ubin-SA-1625-bspatch.patch +SRC_URI=mirror://freebsd/releases/i386/10.3-RELEASE/src.txz -> freebsd-src-10.3.tar.xz https://security.freebsd.org/patches/SA-16:25/bspatch.patch -> freebsd-ubin-SA-1625-bspatch.patch https://security.freebsd.org/patches/SA-16:29/bspatch.patch -> freebsd-ubin-SA-1629-bspatch.patch _eclasses_=bsdmk ab5891d0c251fc8638ada4d0bbe04bfb eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc freebsd 28ffc748f8cb894e5e5b61286cf91140 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 portability bb1a0ed8ea152b957d17339f01d4d7f5 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=65fce7f063154eb7a0be0d89c755647a +_md5_=269297a611ce18c0c9eda86b66a65f7c diff --git a/metadata/md5-cache/sys-freebsd/freebsd-ubin-11.0 b/metadata/md5-cache/sys-freebsd/freebsd-ubin-11.0 index ca98ec4d2d57..606b0d5f66fc 100644 --- a/metadata/md5-cache/sys-freebsd/freebsd-ubin-11.0 +++ b/metadata/md5-cache/sys-freebsd/freebsd-ubin-11.0 @@ -10,4 +10,4 @@ RDEPEND==sys-freebsd/freebsd-lib-11.0*[usb?,bluetooth?,abi_x86_32(-)?,abi_x86_64 SLOT=0 SRC_URI=mirror://freebsd/releases/i386/11.0-RELEASE/src.txz -> freebsd-src-11.0.tar.xz _eclasses_=bsdmk ab5891d0c251fc8638ada4d0bbe04bfb eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc freebsd 28ffc748f8cb894e5e5b61286cf91140 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc pam 3ecd5b75e39b0bb05a3183c08fcdfdb4 portability bb1a0ed8ea152b957d17339f01d4d7f5 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=9d3de1a7b1c6ef65627ec69b9f7c0898 +_md5_=0eb484aecf24dc4bfbbb5a3a4e1e2a35 diff --git a/metadata/md5-cache/sys-freebsd/freebsd-usbin-10.3 b/metadata/md5-cache/sys-freebsd/freebsd-usbin-10.3-r1 similarity index 90% rename from metadata/md5-cache/sys-freebsd/freebsd-usbin-10.3 rename to metadata/md5-cache/sys-freebsd/freebsd-usbin-10.3-r1 index 6f90cf8c6af7..a5a64356b841 100644 --- a/metadata/md5-cache/sys-freebsd/freebsd-usbin-10.3 +++ b/metadata/md5-cache/sys-freebsd/freebsd-usbin-10.3-r1 @@ -8,6 +8,6 @@ KEYWORDS=~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=BSD zfs? ( CDDL ) RDEPEND==sys-freebsd/freebsd-lib-10.3*[usb?,bluetooth?,netware?] =sys-freebsd/freebsd-libexec-10.3* build? ( sys-apps/baselayout ) ssl? ( dev-libs/openssl:0 ) >=app-arch/libarchive-3 sys-apps/tcp-wrappers dev-util/dialog >=dev-libs/libedit-20120311.3.0-r1 net-libs/libpcap kerberos? ( app-crypt/heimdal ) SLOT=0 -SRC_URI=mirror://freebsd/releases/i386/10.3-RELEASE/src.txz -> freebsd-src-10.3.tar.xz +SRC_URI=mirror://freebsd/releases/i386/10.3-RELEASE/src.txz -> freebsd-src-10.3.tar.xz https://security.freebsd.org/patches/SA-16:30/portsnap-10.patch -> freebsd-usbin-SA-1630-portsnap-10.patch _eclasses_=bsdmk ab5891d0c251fc8638ada4d0bbe04bfb eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc freebsd 28ffc748f8cb894e5e5b61286cf91140 multilib 165fc17c38d1b11dac2008280dab6e80 portability bb1a0ed8ea152b957d17339f01d4d7f5 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=7f446c10d16c9cdf03ae4003ba0d53ac +_md5_=a1529042936e3af3ae20dcc42445e90b diff --git a/metadata/md5-cache/sys-fs/dosfstools-4.0-r1 b/metadata/md5-cache/sys-fs/dosfstools-4.0-r1 index 2f0deb338627..3f5e907eda3d 100644 --- a/metadata/md5-cache/sys-fs/dosfstools-4.0-r1 +++ b/metadata/md5-cache/sys-fs/dosfstools-4.0-r1 @@ -4,11 +4,11 @@ DESCRIPTION=DOS filesystem tools - provides mkdosfs, mkfs.msdos, mkfs.vfat EAPI=5 HOMEPAGE=https://github.com/dosfstools/dosfstools IUSE=compat +udev -KEYWORDS=alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux LICENSE=GPL-3 RDEPEND=udev? ( virtual/libudev ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/dosfstools/dosfstools/releases/download/v4.0/dosfstools-4.0.tar.xz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 -_md5_=6a645b1be72cceb13271b7b0be0045f1 +_md5_=a007aad57b0ad02d795289d7ef5333b8 diff --git a/metadata/md5-cache/sys-kernel/genkernel-9999 b/metadata/md5-cache/sys-kernel/genkernel-9999 index 6177e0d48ef0..602420accadd 100644 --- a/metadata/md5-cache/sys-kernel/genkernel-9999 +++ b/metadata/md5-cache/sys-kernel/genkernel-9999 @@ -5,8 +5,8 @@ EAPI=5 HOMEPAGE=https://www.gentoo.org IUSE=cryptsetup ibm selinux LICENSE=GPL-2 -RDEPEND=sys-fs/e2fsprogs selinux? ( sys-libs/libselinux ) cryptsetup? ( sys-fs/cryptsetup ) app-arch/cpio >=app-misc/pax-utils-0.2.1 !=app-misc/pax-utils-0.2.1 sys-kernel/linux-firmware !=sys-apps/util-linux-2.22 sys-block/eject sys-block/eject-bsd ) +RDEPEND=|| ( >=sys-apps/util-linux-2.22 sys-block/eject-bsd ) SLOT=0 -_md5_=34155ba192d2a15912e7e1332832a28f +_md5_=ac90a56c3b34758b25a27eae26f04844 diff --git a/metadata/md5-cache/www-apps/tt-rss-20160527 b/metadata/md5-cache/www-apps/tt-rss-20160527 index f11b7e520f1a..f5f6f417542b 100644 --- a/metadata/md5-cache/www-apps/tt-rss-20160527 +++ b/metadata/md5-cache/www-apps/tt-rss-20160527 @@ -1,14 +1,14 @@ DEFINED_PHASES=install postinst prepare prerm setup unpack -DEPEND=daemon? ( dev-lang/php:*[mysql?,postgres?,pcntl,curl] ) !daemon? ( dev-lang/php:*[mysql?,postgres?,curl] ) virtual/httpd-php:* || ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 +DEPEND=daemon? ( dev-lang/php:*[mysqli?,postgres?,pcntl,curl] ) !daemon? ( dev-lang/php:*[mysqli?,postgres?,curl] ) virtual/httpd-php:* || ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 DESCRIPTION=Tiny Tiny RSS - A web-based news feed (RSS/Atom) aggregator using AJAX EAPI=5 HOMEPAGE=http://tt-rss.org/ -IUSE=daemon +mysql postgres vhosts +IUSE=daemon +mysqli postgres vhosts KEYWORDS=~amd64 ~mips ~x86 LICENSE=GPL-3 -RDEPEND=daemon? ( dev-lang/php:*[mysql?,postgres?,pcntl,curl] ) !daemon? ( dev-lang/php:*[mysql?,postgres?,curl] ) virtual/httpd-php:* >=app-admin/webapp-config-1.50.15 -REQUIRED_USE=|| ( mysql postgres ) +RDEPEND=daemon? ( dev-lang/php:*[mysqli?,postgres?,pcntl,curl] ) !daemon? ( dev-lang/php:*[mysqli?,postgres?,curl] ) virtual/httpd-php:* >=app-admin/webapp-config-1.50.15 +REQUIRED_USE=|| ( mysqli postgres ) SLOT=20160527 SRC_URI=https://dev.gentoo.org/~tomka/files/tt-rss-20160527.tar.bz2 _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 user 80aaa71614ced86f02ee1a513821dc87 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd webapp 42c6ef7af496b228f9854b3c81e4b226 -_md5_=8ba9692a78bfd56ccaff4cda5fd995d9 +_md5_=8f7cd4e3627de1e70320211f8df312be diff --git a/metadata/md5-cache/www-apps/tt-rss-20160930 b/metadata/md5-cache/www-apps/tt-rss-20160930 index e59e81d93e81..c27410cb094e 100644 --- a/metadata/md5-cache/www-apps/tt-rss-20160930 +++ b/metadata/md5-cache/www-apps/tt-rss-20160930 @@ -1,14 +1,14 @@ DEFINED_PHASES=install postinst prepare prerm setup unpack -DEPEND=daemon? ( dev-lang/php:*[mysql?,postgres?,pcntl,curl] ) !daemon? ( dev-lang/php:*[mysql?,postgres?,curl] ) virtual/httpd-php:* || ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 +DEPEND=daemon? ( dev-lang/php:*[mysqli?,postgres?,pcntl,curl] ) !daemon? ( dev-lang/php:*[mysqli?,postgres?,curl] ) virtual/httpd-php:* || ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 DESCRIPTION=Tiny Tiny RSS - A web-based news feed (RSS/Atom) aggregator using AJAX EAPI=5 HOMEPAGE=http://tt-rss.org/ -IUSE=daemon +mysql postgres vhosts +IUSE=daemon +mysqli postgres vhosts KEYWORDS=~amd64 ~mips ~x86 LICENSE=GPL-3 -RDEPEND=daemon? ( dev-lang/php:*[mysql?,postgres?,pcntl,curl] ) !daemon? ( dev-lang/php:*[mysql?,postgres?,curl] ) virtual/httpd-php:* >=app-admin/webapp-config-1.50.15 -REQUIRED_USE=|| ( mysql postgres ) +RDEPEND=daemon? ( dev-lang/php:*[mysqli?,postgres?,pcntl,curl] ) !daemon? ( dev-lang/php:*[mysqli?,postgres?,curl] ) virtual/httpd-php:* >=app-admin/webapp-config-1.50.15 +REQUIRED_USE=|| ( mysqli postgres ) SLOT=20160930 SRC_URI=https://dev.gentoo.org/~tomka/files/tt-rss-20160930.tar.bz2 _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 user 80aaa71614ced86f02ee1a513821dc87 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd webapp 42c6ef7af496b228f9854b3c81e4b226 -_md5_=8ba9692a78bfd56ccaff4cda5fd995d9 +_md5_=8f7cd4e3627de1e70320211f8df312be diff --git a/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.635 b/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.635 deleted file mode 100644 index 31c228c9ea9e..000000000000 --- a/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.635 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prerm setup test unpack -DEPEND=amd64? ( abi_x86_32? ( !abi_x86_64? ( www-plugins/nspluginwrapper ) ) ) app-arch/unzip -DESCRIPTION=Adobe Flash Player -EAPI=5 -HOMEPAGE=http://www.adobe.com/products/flashplayer.html http://get.adobe.com/flashplayer/ https://helpx.adobe.com/security/products/flash-player.html -IUSE=debug kde selinux cpu_flags_x86_sse2 abi_x86_32 abi_x86_64 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=-* amd64 x86 -LICENSE=AdobeFlash-11.x -RDEPEND=amd64? ( abi_x86_32? ( !abi_x86_64? ( www-plugins/nspluginwrapper ) ) ) abi_x86_64? ( dev-libs/atk dev-libs/glib:2 dev-libs/nspr dev-libs/nss kde? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 kde-base/kdelibs x11-libs/libICE x11-libs/libSM x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libXpm ) media-libs/fontconfig media-libs/freetype >=sys-libs/glibc-2.4 x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXrender x11-libs/libXt x11-libs/pango ) abi_x86_32? ( amd64? ( >=dev-libs/atk-2.10.0[abi_x86_32(-)] >=dev-libs/glib-2.34.3:2[abi_x86_32(-)] >=dev-libs/nspr-4.10.4[abi_x86_32(-)] >=dev-libs/nss-3.15.4[abi_x86_32(-)] >=media-libs/fontconfig-2.10.92[abi_x86_32(-)] >=media-libs/freetype-2.5.0.1[abi_x86_32(-)] >=x11-libs/cairo-1.12.14-r4[abi_x86_32(-)] >=x11-libs/gdk-pixbuf-2.30.7[abi_x86_32(-)] >=x11-libs/gtk+-2.24.23:2[abi_x86_32(-)] >=x11-libs/libX11-1.6.2[abi_x86_32(-)] >=x11-libs/libXcursor-1.1.14[abi_x86_32(-)] >=x11-libs/libXext-1.3.2[abi_x86_32(-)] >=x11-libs/libXrender-0.9.8[abi_x86_32(-)] >=x11-libs/libXt-1.1.4[abi_x86_32(-)] >=x11-libs/pango-1.36.3[abi_x86_32(-)] ) x86? ( dev-libs/atk dev-libs/glib:2 dev-libs/nspr dev-libs/nss kde? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 kde-base/kdelibs x11-libs/libICE x11-libs/libSM x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libXpm ) media-libs/fontconfig media-libs/freetype >=sys-libs/glibc-2.4 x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXrender x11-libs/libXt x11-libs/pango ) ) || ( media-fonts/liberation-fonts media-fonts/corefonts ) selinux? ( sec-policy/selinux-flash ) -REQUIRED_USE=cpu_flags_x86_sse2 debug? ( abi_x86_32 ) || ( abi_x86_64 abi_x86_32 ) -RESTRICT=strip mirror -SLOT=0 -SRC_URI=abi_x86_32? ( !debug? ( http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.635/install_flash_player_11_linux.i386.tar.gz -> adobe-flash-11.2.202.635.i386.tar.gz ) debug? ( http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz -> adobe-flash-11.2.202.635-debug.i386.tar.gz ) ) abi_x86_64? ( http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.635/install_flash_player_11_linux.x86_64.tar.gz -> adobe-flash-11.2.202.635.x86_64.tar.gz ) -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 mozextension 3d8ee4835f89ff39d4666656aa603433 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 nsplugins bf5bfcef1d2f0adad7e6230455df8e91 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=7524a2f74d9f0d50382ef6411dea3fe3 diff --git a/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.637 b/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.637 index f23bdc6e241b..4ae91b936372 100644 --- a/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.637 +++ b/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.637 @@ -4,7 +4,7 @@ DESCRIPTION=Adobe Flash Player EAPI=6 HOMEPAGE=http://www.adobe.com/products/flashplayer.html http://get.adobe.com/flashplayer/ https://helpx.adobe.com/security/products/flash-player.html IUSE=debug kde selinux cpu_flags_x86_sse2 abi_x86_32 abi_x86_64 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=-* ~amd64 ~x86 +KEYWORDS=-* amd64 x86 LICENSE=AdobeFlash-11.x RDEPEND=amd64? ( abi_x86_32? ( !abi_x86_64? ( www-plugins/nspluginwrapper ) ) ) abi_x86_64? ( dev-libs/atk dev-libs/glib:2 dev-libs/nspr dev-libs/nss kde? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 kde-base/kdelibs x11-libs/libICE x11-libs/libSM x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libXpm ) media-libs/fontconfig media-libs/freetype >=sys-libs/glibc-2.4 x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXrender x11-libs/libXt x11-libs/pango ) abi_x86_32? ( amd64? ( >=dev-libs/atk-2.10.0[abi_x86_32(-)] >=dev-libs/glib-2.34.3:2[abi_x86_32(-)] >=dev-libs/nspr-4.10.4[abi_x86_32(-)] >=dev-libs/nss-3.15.4[abi_x86_32(-)] >=media-libs/fontconfig-2.10.92[abi_x86_32(-)] >=media-libs/freetype-2.5.0.1[abi_x86_32(-)] >=x11-libs/cairo-1.12.14-r4[abi_x86_32(-)] >=x11-libs/gdk-pixbuf-2.30.7[abi_x86_32(-)] >=x11-libs/gtk+-2.24.23:2[abi_x86_32(-)] >=x11-libs/libX11-1.6.2[abi_x86_32(-)] >=x11-libs/libXcursor-1.1.14[abi_x86_32(-)] >=x11-libs/libXext-1.3.2[abi_x86_32(-)] >=x11-libs/libXrender-0.9.8[abi_x86_32(-)] >=x11-libs/libXt-1.1.4[abi_x86_32(-)] >=x11-libs/pango-1.36.3[abi_x86_32(-)] ) x86? ( dev-libs/atk dev-libs/glib:2 dev-libs/nspr dev-libs/nss kde? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 kde-base/kdelibs x11-libs/libICE x11-libs/libSM x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libXpm ) media-libs/fontconfig media-libs/freetype >=sys-libs/glibc-2.4 x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXrender x11-libs/libXt x11-libs/pango ) ) || ( media-fonts/liberation-fonts media-fonts/corefonts ) selinux? ( sec-policy/selinux-flash ) REQUIRED_USE=cpu_flags_x86_sse2 debug? ( abi_x86_32 ) || ( abi_x86_64 abi_x86_32 ) @@ -12,4 +12,4 @@ RESTRICT=strip mirror SLOT=0 SRC_URI=abi_x86_32? ( !debug? ( http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.637/install_flash_player_11_linux.i386.tar.gz -> adobe-flash-11.2.202.637.i386.tar.gz ) debug? ( http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz -> adobe-flash-11.2.202.637-debug.i386.tar.gz ) ) abi_x86_64? ( http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.637/install_flash_player_11_linux.x86_64.tar.gz -> adobe-flash-11.2.202.637.x86_64.tar.gz ) _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 mozextension 3d8ee4835f89ff39d4666656aa603433 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 nsplugins bf5bfcef1d2f0adad7e6230455df8e91 toolchain-funcs 6198c04daba0e1307bd844df7d37f423 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=3b758af58f3241b094867b0cbd64c84c +_md5_=6745231b0815fd694ab0f33e7da695d4 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 41e35f096ff3..14989f8e3265 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Wed, 12 Oct 2016 07:10:38 +0000 +Wed, 12 Oct 2016 14:10:39 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index c5413d48e518..b5046a744fe6 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed Oct 12 07:09:43 UTC 2016 +Wed Oct 12 14:09:44 UTC 2016 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 18a2b0658f26..0badf337a756 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 12 Oct 2016 07:30:01 +0000 +Wed, 12 Oct 2016 14:30:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 3b0d714da017..92a412aa4187 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1476256201 Wed 12 Oct 2016 07:10:01 AM UTC +1476281401 Wed 12 Oct 2016 02:10:01 PM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 41e35f096ff3..14989f8e3265 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Wed, 12 Oct 2016 07:10:38 +0000 +Wed, 12 Oct 2016 14:10:39 +0000 diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest index ca5e07d71aa0..65fbe410ded3 100644 --- a/net-im/skypeforlinux/Manifest +++ b/net-im/skypeforlinux/Manifest @@ -1 +1,2 @@ +DIST skypeforlinux_1.10.0.1-1.x86_64.rpm 62779116 SHA256 24e83f598b0729649e9562f0265ca12236cc53775d7bc1bc9e14cf5de48848ff SHA512 f3e9947588bab83fcc3cdedf455e18d93da9ae1098cb55acb7494552b1f8f97508abac6cdf987f67db779fa5f2786c1fd8e22032936f6100258260c5fb399272 WHIRLPOOL ad5078392d8f49c33a1810afc653175e9ad36e2ece118f92818c3c1cc2a1b6ed0328f9f623958aefd635048ba586ec6f2b502aed6a4ef76bb970e1f25528eab2 DIST skypeforlinux_1.9.0.2-1.x86_64.rpm 62767691 SHA256 9b838d5c0aa72287a96a5a11b150dbf647c50fe65aa2a386be8af7002e477e61 SHA512 9390c60f0cd7e643e8806596b6a1cdadffb45086fc456218f59361ffe74adb2adfbba4893d3276b59f1435067146d90becd1c644008932c6efcc978bd4288c8c WHIRLPOOL 631b471593e590aa7f2642e410c58971b07dd42f6c1bd8447c070c9b29dd18514f4d38f73c63e296d3e449d8a12ac5fb088f38ecdd6e81d922fd0b173c969d42 diff --git a/net-im/skypeforlinux/skypeforlinux-1.10.0.1.ebuild b/net-im/skypeforlinux/skypeforlinux-1.10.0.1.ebuild new file mode 100644 index 000000000000..106a1e5e078f --- /dev/null +++ b/net-im/skypeforlinux/skypeforlinux-1.10.0.1.ebuild @@ -0,0 +1,125 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +#inherit eutils rpm pax-utils +inherit eutils rpm + +DESCRIPTION="P2P Internet Telephony (VoiceIP) client" +HOMEPAGE="http://www.skype.com/" +SRC_URI="https://repo.skype.com/rpm/stable/${PN}_${PV}-1.x86_64.rpm" + +LICENSE="Skype-TOS no-source-code" +SLOT="0" +KEYWORDS="~amd64" +#IUSE="pax_kernel selinux" +IUSE="" + +S="${WORKDIR}" +QA_PREBUILT=opt/skypeforlinux/skypeforlinux +RESTRICT="mirror bindist strip" #299368 + +RDEPEND="virtual/ttf-fonts + !net-im/skype:1 + dev-libs/atk + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + gnome-base/gconf:2 + gnome-base/libgnome-keyring + media-libs/alsa-lib + media-libs/fontconfig:1.0 + media-libs/freetype:2 + net-print/cups + sys-apps/dbus + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:2 + 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 + x11-libs/pango" +# selinux? ( sec-policy/selinux-skype )" + +src_unpack () { + rpm_src_unpack ${A} +} + +src_prepare() { + default + sed -e "s!^SKYPE_PATH=.*!SKYPE_PATH=${EROOT%/}/opt/skypeforlinux/skypeforlinux!" \ + -i usr/bin/skypeforlinux || die + sed -e "s!^Exec=.*!Exec=${EROOT%/}/opt/bin/skypeforlinux!" \ + -e "s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \ + -i usr/share/applications/skypeforlinux.desktop || die +} + +src_install() { + insinto /opt/skypeforlinux/locales + doins usr/share/skypeforlinux/locales/*.pak + + insinto /opt/skypeforlinux/resources/app.asar.unpacked/node_modules/keytar/build/Release + doins usr/share/skypeforlinux/resources/app.asar.unpacked/node_modules/keytar/build/Release/keytar.node + + insinto /opt/skypeforlinux/resources + doins usr/share/skypeforlinux/resources/*.asar + + insinto /opt/skypeforlinux + doins usr/share/skypeforlinux/*.pak + doins usr/share/skypeforlinux/*.bin + doins usr/share/skypeforlinux/*.dat + doins usr/share/skypeforlinux/version + exeinto /opt/skypeforlinux + doexe usr/share/skypeforlinux/*.so + doexe usr/share/skypeforlinux/skypeforlinux + + into /opt + dobin usr/bin/skypeforlinux + fowners root:audio /opt/bin/skypeforlinux /opt/skypeforlinux/skypeforlinux + +# insinto /etc/dbus-1/system.d +# doins ${PN}.conf + + dodoc -r usr/share/doc/skypeforlinux/. + + doicon usr/share/pixmaps/skypeforlinux.png + + local res + for res in 16 32 256 512; do + newicon -s ${res} usr/share/icons/hicolor/${res}x${res}/apps/skypeforlinux.png skypeforlinux.png + done + + domenu usr/share/applications/skypeforlinux.desktop + +# if use pax_kernel; then +# if use apulse; then +# pax-mark Cm "${ED}"/opt/bin/${PN}-bin || die +# else +# pax-mark Cm "${ED}"/opt/bin/${PN} || die +# fi +# eqawarn "You have set USE=pax_kernel meaning that you intend to run" +# eqawarn "${PN} under a PaX enabled kernel. To do so, we must modify" +# eqawarn "the ${PN} binary itself and this *may* lead to breakage! If" +# eqawarn "you suspect that ${PN} is being broken by this modification," +# eqawarn "please open a bug." +# fi + +# echo PRELINK_PATH_MASK=/opt/bin/${PN} > ${T}/99${PN} +# doenvd "${T}"/99${PN} #430142 +} + +pkg_postinst() { + einfo "See https://support.skype.com/en/faq/FA34656" + einfo "for more information about Skype for Linux Alpha." +} diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest index 84353cce16a3..838fe790c81c 100644 --- a/net-libs/ignition-transport/Manifest +++ b/net-libs/ignition-transport/Manifest @@ -1,3 +1,2 @@ -DIST ignition-transport-1.1.0.tar.bz2 346403 SHA256 ed3617e7b1de58d3457f7cf79e6b70111f42a83e8f0c46dde834fce9516ffb7f SHA512 3493b0d3b00472544ee71d05faa6994b3f8fade0c56a886f797c458d9da82e894991188d59fca8de7474f482b86beacd440b51f0f590d710051dd83267cbc4a7 WHIRLPOOL 67dd0705ab501e0eaef6f9f61ef63e928581153bac5ca5d7b4d637e3e124c7e7a7bac12708d0eca887c236836a252dcd442f021572a4e0841a4a018b00eb0920 -DIST ignition-transport-1.2.0.tar.bz2 351845 SHA256 80935b712aa175c7f72d66269a7c03c8db0082539fc2bea5f9e8d896754240cc SHA512 3826c8d267fcf702497c338db0f18e2297e03ce0f6de721773a0a61f16a4b505dda5269be335af4dfecf0d59402a098650ef41be6ba45d7a6ce53ee2f619ee95 WHIRLPOOL b982d75c980a7eed6c0f7cb753c17ebf9478b2b0dc9a47191562a64d249194faca00d3213809c042a2156dd1bbf97df50c8fedc1df151a63f4b70c3a9e882961 DIST ignition-transport-1.3.0.tar.bz2 348943 SHA256 5fd2d54b6554bd61b10d66cf5e4d597b44a55e30e16c8ba3e1f4382efcdee006 SHA512 a374325840263464ef6b1eef84f332106ac999ba3c2cb2dc425f5eecead27768007a3178f188cdb450ea72423148098333ee34a37344130afaaa4f6b75112d02 WHIRLPOOL 1e8d703757cedd67d0c6bcb36ee62e78c662eb7875426e928e5d7af5e141bf9fdf0998ab8c918e2786e890daa71c72c9ea40926d197628fe61c9a4dafbded31f +DIST ignition-transport-1.4.0.tar.bz2 349098 SHA256 bc612e9781f9cab81cc4111ed0de07c4838303f67c25bc8b663d394b40a8f5d4 SHA512 23f1d1b6982441786a764f902a849d8466943c457a989638ab5d57e936c9a0d4bab324d60c8d7190e40ecc153736d55cf903df6a57cb2cbbda86bbe79ba1055d WHIRLPOOL 6b019c025bc41ad6e7f3e94f220767a652442a05678718f5e686c71f1e2ed30be60f16fb29cfd8df976d87827647f74b3b8664aeea319cb68e44802fbd9f81fa diff --git a/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild deleted file mode 100644 index 94fde8b25100..000000000000 --- a/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit cmake-utils vcs-snapshot flag-o-matic - -DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system" -HOMEPAGE="http://ignitionrobotics.org/libraries/transport" -SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2" - -LICENSE="Apache-2.0" -SLOT="0/0" -KEYWORDS="~amd64" -IUSE="" - -DEPEND=" - dev-libs/protobuf:= - >=net-libs/zeromq-3.2.0:= - sys-apps/util-linux - net-libs/cppzmq -" -RDEPEND="${DEPEND}" -DEPEND="${DEPEND} - virtual/pkgconfig" -CMAKE_BUILD_TYPE=RelWithDebInfo -PATCHES=( "${FILESDIR}/protobuf3.patch" ) - -src_configure() { - # upstream appends this conditionally... - append-flags "-fPIC" - echo "set (CMAKE_C_FLAGS_ALL \"${CXXFLAGS} \${CMAKE_C_FLAGS_ALL}\")" > "${S}/cmake/HostCFlags.cmake" - sed -i -e "s/LINK_FLAGS_RELWITHDEBINFO \" \"/LINK_FLAGS_RELWITHDEBINFO \" ${LDFLAGS} \"/" cmake/DefaultCFlags.cmake || die - cmake-utils_src_configure -} diff --git a/net-libs/ignition-transport/ignition-transport-1.2.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.4.0.ebuild similarity index 96% rename from net-libs/ignition-transport/ignition-transport-1.2.0.ebuild rename to net-libs/ignition-transport/ignition-transport-1.4.0.ebuild index 94fde8b25100..51f5f088c76b 100644 --- a/net-libs/ignition-transport/ignition-transport-1.2.0.ebuild +++ b/net-libs/ignition-transport/ignition-transport-1.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ diff --git a/net-misc/tinc/files/tinc-1.1_pre14-upnp.patch b/net-misc/tinc/files/tinc-1.1_pre14-upnp.patch new file mode 100644 index 000000000000..1d037efe8c3d --- /dev/null +++ b/net-misc/tinc/files/tinc-1.1_pre14-upnp.patch @@ -0,0 +1,13 @@ +diff --git a/src/upnp.c b/src/upnp.c +index abd2f92..3bfc770 100644 +--- a/src/upnp.c ++++ b/src/upnp.c +@@ -57,7 +57,7 @@ static struct UPNPDev *upnp_discover(int delay, int *error) { + + #elif MINIUPNPC_API_VERSION <= 14 + +- return upnpDiscover(delay, NULL NULL, false, false, 2, error); ++ return upnpDiscover(delay, NULL, NULL, false, false, 2, error); + + #else + diff --git a/net-misc/tinc/tinc-1.1_pre14.ebuild b/net-misc/tinc/tinc-1.1_pre14.ebuild index 96313dca9b16..3a9eb67ae291 100644 --- a/net-misc/tinc/tinc-1.1_pre14.ebuild +++ b/net-misc/tinc/tinc-1.1_pre14.ebuild @@ -38,6 +38,10 @@ RDEPEND="${DEPEND} S="${WORKDIR}/${MY_P}" +src_prepare() { + epatch "${FILESDIR}"/${P}-upnp.patch +} + src_configure() { econf \ --enable-jumbograms \ diff --git a/net-p2p/go-ethereum/go-ethereum-1.4.17.ebuild b/net-p2p/go-ethereum/go-ethereum-1.4.17-r1.ebuild similarity index 83% rename from net-p2p/go-ethereum/go-ethereum-1.4.17.ebuild rename to net-p2p/go-ethereum/go-ethereum-1.4.17-r1.ebuild index e5c4fb7ef62a..28bfc26b14b2 100644 --- a/net-p2p/go-ethereum/go-ethereum-1.4.17.ebuild +++ b/net-p2p/go-ethereum/go-ethereum-1.4.17-r1.ebuild @@ -11,12 +11,16 @@ SRC_URI="https://github.com/ethereum/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3+ LGPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="evm" +IUSE="evm opencl" -DEPEND="dev-lang/go:=" +DEPEND="dev-lang/go:= + opencl? ( virtual/opencl ) +" RDEPEND="${DEPEND}" src_compile() { + use opencl && export GO_OPENCL=true + emake geth use evm && emake evm } diff --git a/net-p2p/go-ethereum/metadata.xml b/net-p2p/go-ethereum/metadata.xml index d54331023213..8a476b0cf138 100644 --- a/net-p2p/go-ethereum/metadata.xml +++ b/net-p2p/go-ethereum/metadata.xml @@ -11,5 +11,6 @@ Build Ethereum Virtual Machine (EVM) + Add OpenCL GPU mining support diff --git a/profiles/package.mask b/profiles/package.mask index 864a59d24d59..03f6f3ab8c7c 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,7 +30,6 @@ #--- END OF EXAMPLES --- - # Patrice Clement (11 Oct 2016) # Upstream's homepage is dead and nowhere to be found. # Masked for removal in 30 days. @@ -426,13 +425,6 @@ dev-haskell/base64-conduit # now provides 'agda' binary. sci-mathematics/agda-executable -# Patrice Clement (10 Sep 2016) -# Upstream dead. This package tries very hard to outsmart autotools and -# reinvent the wheel by coming up with its own configure script. A complete -# disaster resulting in a gigantic wave of QA errors. -# Masked for removal in 30 days. -dev-libs/vrb - # Pawel Hajdan jr (10 Sep 2016) # Dev channel releases are only for people who are developers or want more # experimental features and accept a more unstable release. diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 2d76116364d3..b7de44a3a31c 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -6417,6 +6417,7 @@ net-p2p/eiskaltdcpp:libcanberra - Enable sound notifications support over libcan net-p2p/eiskaltdcpp:minimal - Don't install headers net-p2p/fms:frost - Add support for frost boards net-p2p/go-ethereum:evm - Build Ethereum Virtual Machine (EVM) +net-p2p/go-ethereum:opencl - Add OpenCL GPU mining support net-p2p/go-ipfs-bin:fuse - Enable runtime support for sys-fs/fuse net-p2p/i2p:ecdsa - Enables additional checks to make sure a setup is available that is capable of using I2Ps ECDSA provisions. I2P will work without it, but you will likely see warnings. net-p2p/i2p:nls - Adds Native Language Support using GNU gettext. diff --git a/sci-electronics/gazebo/Manifest b/sci-electronics/gazebo/Manifest index 1cfa60bb8272..e704c174fd3f 100644 --- a/sci-electronics/gazebo/Manifest +++ b/sci-electronics/gazebo/Manifest @@ -1,2 +1,3 @@ DIST gazebo-7.2.0.tar.bz2 51084680 SHA256 3e10501379236146f5393fcf02be419ce343bfa76b0f6670d43cc5bc13cd6fb1 SHA512 b484ef589fbcbe3262b257a6741f253ba23837c3585f42a857e7b03acf6dcbf7209a65f1fce9e4ee6df3b8a45a5124015c99e8708644f259e6d1275bbadab503 WHIRLPOOL 595146621ed9f6bbeecb325fddcacf048fadaff69338c2c8cefccb6e82669494d92000ae194e0a1941094491be3ec759165e8f8220fb7649cdb209ee66e5b60a DIST gazebo-7.3.1.tar.bz2 50992794 SHA256 aeff031d9b1b72c94b06b2a87790e6b561f4cba0e1dce155269108b3237e5c62 SHA512 2ecf89efd5312efe2d7c2b27c898467b49f94e2dbe75c69c2e403262e11361bea0a701a61134bbbfe01f1723621e5ccfc44c6d40698c7c2e8608292e275b5ea5 WHIRLPOOL 50886561eb6d8fffaabeb90466ddee1ed57aefc9b9d8ef4d65cc9a311355a8abea62034289dcd15bbf185c697bda1575d2365f80b52f8922af734dbd5586f37f +DIST gazebo-7.4.0.tar.bz2 50061936 SHA256 a033b2273383f16e5dd5b5bfe597551dc3618b98e64abecfa8a41bdddd6542f7 SHA512 924c0f20484af552190fd09a92f3148af2371ca4948db6783711083157324d97f49de58df97df3a67ffa5d8c61b1503096556b17b4451efcefa4f5253ac4d2ae WHIRLPOOL 090fa669ae514b0fd705368b04493eee18dad70be9205de52c6c06e07e24bb42b55ef4f5dc75b47718f991339fdb7149f8ecb1354f6ef5f73eb2ecb9ecf91b88 diff --git a/sci-electronics/gazebo/gazebo-7.4.0.ebuild b/sci-electronics/gazebo/gazebo-7.4.0.ebuild new file mode 100644 index 000000000000..8abc8c93ddbe --- /dev/null +++ b/sci-electronics/gazebo/gazebo-7.4.0.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils versionator vcs-snapshot flag-o-matic + +DESCRIPTION="A 3D multiple robot simulator with dynamics" +HOMEPAGE="http://gazebosim.org/" +SRC_URI="http://osrf-distributions.s3.amazonaws.com/gazebo/releases/${P}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="cpu_flags_x86_sse2 libav test" + +RDEPEND=" + >=dev-libs/protobuf-2:= + virtual/opengl + media-libs/openal + net-misc/curl + dev-libs/tinyxml + dev-libs/tinyxml2 + dev-libs/libtar + dev-cpp/tbb + >=dev-games/ogre-1.7.4 + sci-libs/libccd + libav? ( >=media-video/libav-9:0= ) + !libav? ( >=media-video/ffmpeg-2.6:0= ) + sci-libs/gts + >=sci-physics/bullet-2.82 + >=dev-libs/sdformat-4.1:= + dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-qt/qtwebkit:4 + dev-qt/qtxmlpatterns:4 + dev-libs/boost:=[threads] + sci-libs/gdal + virtual/libusb:1 + dev-libs/libspnav + media-libs/freeimage + sci-libs/hdf5:= + sys-apps/util-linux + media-gfx/graphviz + >=sci-libs/ignition-math-2.3:2= + net-libs/ignition-transport:= +" +DEPEND="${RDEPEND} + dev-qt/qttest:4 + app-text/ronn + virtual/pkgconfig + x11-apps/mesa-progs + test? ( dev-libs/libxslt ) +" +CMAKE_BUILD_TYPE=RelWithDebInfo + +src_configure() { + # doesnt build without it + append-cxxflags "-std=c++11" + # doesnt build with as-needed either + append-ldflags "-Wl,--no-as-needed" + + local mycmakeargs=( + "-DUSE_UPSTREAM_CFLAGS=OFF" + "-DSSE2_FOUND=$(usex cpu_flags_x86_sse2 TRUE FALSE)" + "-DUSE_HOST_CFLAGS=FALSE" + "-DENABLE_TESTS_COMPILATION=$(usex test TRUE FALSE)" + "-DENABLE_SCREEN_TESTS=FALSE" + "-DUSE_EXTERNAL_TINYXML2=TRUE" + ) + cmake-utils_src_configure +} diff --git a/sys-apps/baselayout/baselayout-2.3.ebuild b/sys-apps/baselayout/baselayout-2.3.ebuild index db61e2331843..46090674e297 100644 --- a/sys-apps/baselayout/baselayout-2.3.ebuild +++ b/sys-apps/baselayout/baselayout-2.3.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~williamh/dist/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="build kernel_linux" pkg_setup() { diff --git a/sys-freebsd/freebsd-sources/freebsd-sources-11.0.ebuild b/sys-freebsd/freebsd-sources/freebsd-sources-11.0.ebuild index aebc8cfbebd5..8cde959519ae 100644 --- a/sys-freebsd/freebsd-sources/freebsd-sources-11.0.ebuild +++ b/sys-freebsd/freebsd-sources/freebsd-sources-11.0.ebuild @@ -136,7 +136,7 @@ src_install() { insinto "/usr/src/sys" doins -r "${S}/". - if use zfs ; then + if use dtrace ; then insinto "/usr/src/cddl" doins -r "${WORKDIR}/cddl/". fi diff --git a/sys-freebsd/freebsd-ubin/Manifest b/sys-freebsd/freebsd-ubin/Manifest index 67bbfb2e4c7e..6546d4e1ed97 100644 --- a/sys-freebsd/freebsd-ubin/Manifest +++ b/sys-freebsd/freebsd-ubin/Manifest @@ -17,3 +17,4 @@ DIST freebsd-sys-9.1.tar.bz2 32588103 SHA256 b93a7ac8334ac16cc9f60665048e5ef812c DIST freebsd-ubin-8.2.tar.bz2 1808012 SHA256 6b99554f3ad6ee052069b347eb6e6219b71598d7b222acb90a24cbfc805c7b68 SHA512 48d0103323e820c431aa4f62d3be40cb3b200fb62e3de01f36c88760395bf2ba3367c51f3fa72da4dbccc2812176a051a12ca5cb7e84125c3e0fc78d4cab2c29 WHIRLPOOL ea8f3a29a37b42c2b5bcc0f2c343fa1538522157ef075363c94606a4620a590e9a03f856ce2494e3e727935b62431991d0aa9fde71de699e78b4fe225bdf1c2c DIST freebsd-ubin-9.1.tar.bz2 1910472 SHA256 ff6e586f213534b6ec2e65002c0dee64063d76ddad515c12221b1a80a1815e48 SHA512 74ae0aceec8597aa66c3f1ab313f0685a3c63d7273c36ae7baf8794275ad9bca241c60c3f6281cccf6d531d250d7611099977d3b1a27279cef3586401b6af05e WHIRLPOOL c85a3c9cf2bceff2c60ff03556bcc81d3aca22b0bce3c9538990071ac0a907236eee5ae7743ad22c5fd309b047ebf392aaaf2fe177ef5790ea869aff3da7e2fe DIST freebsd-ubin-SA-1625-bspatch.patch 286 SHA256 22ab941e324509a1cd2608407ef7ca998ac1b4bd9602c8ef643b4c078c5b4134 SHA512 f2a0210e582076bac93faa3a226cd9301b6d0245938d6c5a17e1aa275401934d7848bcb908f63a689f5e36f961dfbf1d0a0b5717ff54f67a76b5d1908ae39703 WHIRLPOOL 15a1dc7546964556bab0dbaf7054c4644c3be1bce6c2cc3e8baa74ccb49871d0dd3fc4b702c21e0a5a5a68298f225da6b19e1f2736f29cdf394a8a9f081ea507 +DIST freebsd-ubin-SA-1629-bspatch.patch 9323 SHA256 087fcfb0e4f6c63e58656cf6a6f30411bc6183d81e0a1a2dcd40f9b41cb640e4 SHA512 ae061869db3a01e0002b2159306ff72c5629147b8e594f0fda5f6d3aa956f4a73a4a3fbc299ef2c69231cf619049e8eb5bed34067be6d5d419f108958c97f59f WHIRLPOOL 9dd2fab13103bdeca6df6060948b755f8552bd3216167bc417ce137b8f28080e129667f3e483badd5cf2ae3b8926d22493b5654a85cfcbc744915e683b56ec52 diff --git a/sys-freebsd/freebsd-ubin/freebsd-ubin-10.3-r1.ebuild b/sys-freebsd/freebsd-ubin/freebsd-ubin-10.3-r2.ebuild similarity index 98% rename from sys-freebsd/freebsd-ubin/freebsd-ubin-10.3-r1.ebuild rename to sys-freebsd/freebsd-ubin/freebsd-ubin-10.3-r2.ebuild index 3cdde79636c6..c9651c6572ca 100644 --- a/sys-freebsd/freebsd-ubin/freebsd-ubin-10.3-r1.ebuild +++ b/sys-freebsd/freebsd-ubin/freebsd-ubin-10.3-r2.ebuild @@ -12,7 +12,8 @@ IUSE="ar atm audit bluetooth ipv6 kerberos netware nis ssl usb build zfs" LICENSE="BSD zfs? ( CDDL )" # Security Advisory and Errata patches. -UPSTREAM_PATCHES=( "SA-16:25/bspatch.patch" ) +UPSTREAM_PATCHES=( "SA-16:25/bspatch.patch" + "SA-16:29/bspatch.patch" ) if [[ ${PV} != *9999* ]]; then KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd" diff --git a/sys-freebsd/freebsd-ubin/freebsd-ubin-11.0.ebuild b/sys-freebsd/freebsd-ubin/freebsd-ubin-11.0.ebuild index 537aad0cbd77..8cca4ec508e1 100644 --- a/sys-freebsd/freebsd-ubin/freebsd-ubin-11.0.ebuild +++ b/sys-freebsd/freebsd-ubin/freebsd-ubin-11.0.ebuild @@ -144,13 +144,14 @@ setup_multilib_vars() { } src_compile() { + local MULTIBUILD_VARIANTS="${DEFAULT_ABI}" # Preparing to build addr2line, elfcopy, m4 for dir in libelftc libpe libopenbsd ; do cd "${WORKDIR}/lib/${dir}" || die - freebsd_src_compile -j1 + multibuild_foreach_variant freebsd_multilib_multibuild_wrapper freebsd_src_compile -j1 done - local MULTIBUILD_VARIANTS=( $(multilib_get_enabled_abis) ) + MULTIBUILD_VARIANTS=( $(multilib_get_enabled_abis) ) multibuild_foreach_variant freebsd_multilib_multibuild_wrapper setup_multilib_vars freebsd_src_compile -j1 } diff --git a/sys-freebsd/freebsd-usbin/Manifest b/sys-freebsd/freebsd-usbin/Manifest index a566584081c5..c039bc919b71 100644 --- a/sys-freebsd/freebsd-usbin/Manifest +++ b/sys-freebsd/freebsd-usbin/Manifest @@ -20,3 +20,4 @@ DIST freebsd-ubin-8.2.tar.bz2 1808012 SHA256 6b99554f3ad6ee052069b347eb6e6219b71 DIST freebsd-ubin-9.1.tar.bz2 1910472 SHA256 ff6e586f213534b6ec2e65002c0dee64063d76ddad515c12221b1a80a1815e48 SHA512 74ae0aceec8597aa66c3f1ab313f0685a3c63d7273c36ae7baf8794275ad9bca241c60c3f6281cccf6d531d250d7611099977d3b1a27279cef3586401b6af05e WHIRLPOOL c85a3c9cf2bceff2c60ff03556bcc81d3aca22b0bce3c9538990071ac0a907236eee5ae7743ad22c5fd309b047ebf392aaaf2fe177ef5790ea869aff3da7e2fe DIST freebsd-usbin-8.2.tar.bz2 2443024 SHA256 aa7cabf10f5c3a9daabea32e4de24d04ec312247842981476da666eff5054603 SHA512 bcb8ff3df54848b9107bbb52e5ced7a91e24bb181f06769b6997221729b8064ec17652eaf7500de3268cbcb63ff5760beb54d15fc78c27b02687b5b1067c74a6 WHIRLPOOL 20f5278e2a1dd387a75b44f10507958d6c0e84a2faa1bddbf808c14ab86d8dd14a956192911bbc1880f5f5f7bd05972dcbb4aec85d241f0dcf91bf4246883f0a DIST freebsd-usbin-9.1.tar.bz2 2670916 SHA256 b938c20b8c09aa9a610e13b69b9afeea72f561ab3636a59fba2bdac290f4db75 SHA512 21c234312f70eb35cd2926519efc1f61592892f5d0940786dbeb959c3c5ec7819a51ae95c6e8a1a06aa01f669350fe0fd3dd7c4ec8a84dd6b90f24cb192356ca WHIRLPOOL 7f6ad2eb5410cc5e685881654a788807848af026b1277a974682755ab7c9db28f576bfd1576441ea10c5f1e9edb7d30a4a23fb8eccd6d69d86ecc9ce4c9adc7e +DIST freebsd-usbin-SA-1630-portsnap-10.patch 1660 SHA256 c1efafadbba72324c4addf3fd07223119361f335a192cc33f21a4c4e756e5cd3 SHA512 43814a98a29b8ef0176de949ad513f16f4ac2cbea23eb260a6c5484b16d0dcc525569e44cfd00bce1f7aa3ecf6c537220098f6514790457372849da941d38d4a WHIRLPOOL 3f61afb6071c2b4f5b2bae995de5edb2b7c62729cdba06f3b97f870b3608a967065f0f6d8553116ab2ee959128f5953f32abcd832c5f4e7491901ca3d9eb79dd diff --git a/sys-freebsd/freebsd-usbin/freebsd-usbin-10.3.ebuild b/sys-freebsd/freebsd-usbin/freebsd-usbin-10.3-r1.ebuild similarity index 98% rename from sys-freebsd/freebsd-usbin/freebsd-usbin-10.3.ebuild rename to sys-freebsd/freebsd-usbin/freebsd-usbin-10.3-r1.ebuild index 28374e5fdf6b..8e63f5b2ae10 100644 --- a/sys-freebsd/freebsd-usbin/freebsd-usbin-10.3.ebuild +++ b/sys-freebsd/freebsd-usbin/freebsd-usbin-10.3-r1.ebuild @@ -10,6 +10,9 @@ DESCRIPTION="FreeBSD /usr/sbin tools" SLOT="0" LICENSE="BSD zfs? ( CDDL )" +# Security Advisory and Errata patches. +UPSTREAM_PATCHES=( "SA-16:30/portsnap-10.patch" ) + if [[ ${PV} != *9999* ]]; then KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd" SRC_URI="${SRC_URI} diff --git a/sys-fs/dosfstools/dosfstools-4.0-r1.ebuild b/sys-fs/dosfstools/dosfstools-4.0-r1.ebuild index 73aa27d83c33..70d69831f499 100644 --- a/sys-fs/dosfstools/dosfstools-4.0-r1.ebuild +++ b/sys-fs/dosfstools/dosfstools-4.0-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/dosfstools/dosfstools/releases/download/v${PV}/${P}. LICENSE="GPL-3" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" IUSE="compat +udev" CDEPEND="udev? ( virtual/libudev )" diff --git a/sys-kernel/genkernel/genkernel-9999.ebuild b/sys-kernel/genkernel/genkernel-9999.ebuild index 2a5ada30eb48..343794db86a1 100644 --- a/sys-kernel/genkernel/genkernel-9999.ebuild +++ b/sys-kernel/genkernel/genkernel-9999.ebuild @@ -59,6 +59,7 @@ RDEPEND="${DEPEND} cryptsetup? ( sys-fs/cryptsetup ) app-arch/cpio >=app-misc/pax-utils-0.2.1 + sys-kernel/linux-firmware !&2 - "${@}" || die "Compile of flashplugin-lahf-fix.so failed" - fi -} - -multilib_src_install() { - # PLUGINS_DIR comes from nsplugins.eclass - exeinto /usr/$(get_libdir)/${PLUGINS_DIR} - doexe libflashplayer.so - - if [[ ${ABI} == amd64 && ${need_lahf_wrapper} ]]; then - # This experimental wrapper, from Maks Verver via bug #268336 should - # emulate the missing lahf instruction affected platforms. - doexe flashplugin-lahf-fix.so - fi - - if multilib_is_native_abi; then - if use kde; then - local pkglibdir=lib - [[ -d usr/lib64 ]] && pkglibdir=lib64 - - exeinto /usr/$(get_libdir)/kde4 - doexe usr/${pkglibdir}/kde4/kcm_adobe_flash_player.so - insinto /usr/share/kde4/services - doins usr/share/kde4/services/kcm_adobe_flash_player.desktop - else - # No KDE applet, so allow the GTK utility to show up in KDE: - sed -i usr/share/applications/flash-player-properties.desktop \ - -e "/^NotShowIn=KDE;/d" || die "sed of .desktop file failed" - fi - - # The userland 'flash-player-properties' standalone app: - dobin usr/bin/flash-player-properties - - # Icon and .desktop for 'flash-player-properties' - insinto /usr/share - doins -r usr/share/{icons,applications} - dosym ../icons/hicolor/48x48/apps/flash-player-properties.png \ - /usr/share/pixmaps/flash-player-properties.png - fi - - # The magic config file! - insinto "/etc/adobe" - doins "${FILESDIR}/mms.cfg" -} - -unregister_pluginwrapper() { - # TODO: Perhaps parse the output of 'nspluginwrapper -l' - # TODO: However, the 64b flash plugin makes - # TODO: 'nspluginwrapper -l' segfault. - local FLASH_WRAPPER="${ROOT}/usr/lib64/${PLUGINS_DIR}/npwrapper.libflashplayer.so" - if has_version 'www-plugins/nspluginwrapper' && [[ -f ${FLASH_WRAPPER} ]]; then - einfo "Removing 32-bit plugin wrapper" - nspluginwrapper -r "${FLASH_WRAPPER}" - fi -} - -pkg_postinst() { - if use amd64 ; then - if [[ ${need_lahf_wrapper} ]]; then - ewarn "Your processor does not support the 'lahf' instruction which is used" - ewarn "by Adobe's 64-bit flash binary. We have installed a wrapper which" - ewarn "should allow this plugin to run. If you encounter problems, please" - ewarn "adjust your USE flags to install only the 32-bit version and reinstall:" - ewarn " ${CATEGORY}/${PN}[abi_x86_32,-abi_x86_64]" - elog - fi - # needed to clean up upgrades from older installs - if use abi_x86_64 && [[ -n ${REPLACING_VERSIONS} ]]; then - unregister_pluginwrapper - fi - if has_version 'www-plugins/nspluginwrapper'; then - if use abi_x86_32 && ! use abi_x86_64; then - einfo "nspluginwrapper detected: Installing plugin wrapper" - local oldabi="${ABI}" - ABI="x86" - local FLASH_SOURCE="${ROOT}/usr/lib32/${PLUGINS_DIR}/libflashplayer.so" - nspluginwrapper -i "${FLASH_SOURCE}" - ABI="${oldabi}" - fi - elif use abi_x86_32; then - elog "To use the 32-bit flash player in a native 64-bit browser," - elog "you must install www-plugins/nspluginwrapper" - fi - fi -} - -pkg_prerm() { - use amd64 && use abi_x86_32 && ! use abi_x86_64 && \ - unregister_pluginwrapper -} diff --git a/www-plugins/adobe-flash/adobe-flash-11.2.202.637.ebuild b/www-plugins/adobe-flash/adobe-flash-11.2.202.637.ebuild index c503fe5daf65..74548673002e 100644 --- a/www-plugins/adobe-flash/adobe-flash-11.2.202.637.ebuild +++ b/www-plugins/adobe-flash/adobe-flash-11.2.202.637.ebuild @@ -34,7 +34,7 @@ REQUIRED_USE=" " SLOT="0" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 x86" LICENSE="AdobeFlash-11.x" RESTRICT="strip mirror"