diff options
613 files changed, 7544 insertions, 2351 deletions
diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index e78fe4ddbaf8..2eaaf86ccb3c 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -7,3 +7,4 @@ DIST awscli-1.19.83.tar.gz 2008544 BLAKE2B e970d95e9caad606e66f1985dcf2500670ded DIST awscli-1.19.84.tar.gz 2011045 BLAKE2B 581a7d1c22f7f92c434b6726cae34cdfde1f6da73c9b4470c73386389b1969872825850623685ddfc5958e99bc1d065b9f7afad8f88185329f0752dcb79c0b82 SHA512 4408bae1564346c873693e82124d33c17563a0a35fa41c8e2896a8ab4df23c5c41d17c87b522e7c2222335146dab0b9b32aa671f6c0e9f769bdeccf36948ae72 DIST awscli-1.19.85.tar.gz 2014586 BLAKE2B 7d7ec1d8ece349875403258988ac1732e48a70293471b76b0b3e5278877d606b9390cf3a01166914b3db78696f31598d30c4de1a0f1e5dcc2cc3582bbcf9a493 SHA512 738d433997f7d9a21db2d9d236cf5c1cc0a61ebf601cc2a96f292e22f9fdd4bbb6e6377fb55d161814275b653f61974c13b399d450ecea888b26543c6e3cf955 DIST awscli-1.19.86.tar.gz 2014916 BLAKE2B acebaf9c5d6b672333162ec578f29781f74e66c4eeda212be8b7722d05b30839ba835f03f4f4e9d780cdb4df3e7e9a5ad4a407a0660ddc4f6a8a60f7073c6440 SHA512 dcf9c23a6b11272a6ffdd04f8ba74bd85624692c5de28b6dc87ae75ac5d8b68a1b73d09cf02d29939f83d7d68860c21b2043d4cdc300b5664e0b221a47344956 +DIST awscli-1.19.87.tar.gz 2015321 BLAKE2B 02cc3f0cc2588c9e0d2c7b8d38248455692f3b30dfeaecc076edfc3ce072128c6e788e8503e110eedf4d45ec71f3309c5db7871fd75018da3aaa424ed9d5fe4c SHA512 5bb6fb4ae62a1c4c5e83f59f32840ceab656d17cdee80dfd5530606f2d24e7b77aa78b8d62a020ca44a74c6f73de2cb4f625da5af68de3a90e704d4020703d7a diff --git a/app-admin/awscli/awscli-1.19.87.ebuild b/app-admin/awscli/awscli-1.19.87.ebuild new file mode 100644 index 000000000000..ec221770074d --- /dev/null +++ b/app-admin/awscli/awscli-1.19.87.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) + +inherit bash-completion-r1 distutils-r1 + +DESCRIPTION="Universal Command Line Environment for AWS" +HOMEPAGE="https://pypi.org/project/awscli/" +#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" +SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/aws-cli-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +# botocore is x.(y+1).z +BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 1)).$(ver_cut 3-)" +RDEPEND=" + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] + dev-python/colorama[${PYTHON_USEDEP}] + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/rsa[${PYTHON_USEDEP}] + >=dev-python/s3transfer-0.4.0[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests --install nose + +PATCHES=( + "${FILESDIR}"/awscli-1.19.47-py39.patch +) + +python_test() { + distutils_install_for_testing + # integration tests require AWS credentials and Internet access + nosetests -v tests/{functional,unit} || + die "Tests failed for ${EPYTHON}" +} + +python_install_all() { + newbashcomp bin/aws_bash_completer aws + + insinto /usr/share/zsh/site-functions + newins bin/aws_zsh_completer.sh _aws + + distutils-r1_python_install_all + + rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || die +} diff --git a/app-dicts/myspell-af/myspell-af-20080701.ebuild b/app-dicts/myspell-af/myspell-af-20080701.ebuild index f41cceaf9c70..080373d09f84 100644 --- a/app-dicts/myspell-af/myspell-af-20080701.ebuild +++ b/app-dicts/myspell-af/myspell-af-20080701.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "af_ZA.aff" @@ -12,9 +12,6 @@ MYSPELL_HYPH=( "hyph_af_ZA.dic" ) -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Afrikaans dictionaries for myspell/hunspell" @@ -24,4 +21,3 @@ SRC_URI="mirror://sourceforge/aoo-extensions/1109/0/dict-af.oxt" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-bg/myspell-bg-4.3.ebuild b/app-dicts/myspell-bg/myspell-bg-4.3.ebuild index 0dcf4a6a7a6a..51cecd98d012 100644 --- a/app-dicts/myspell-bg/myspell-bg-4.3.ebuild +++ b/app-dicts/myspell-bg/myspell-bg-4.3.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MY_P="OOo-full-pack-bg-${PV}" diff --git a/app-dicts/myspell-ca/Manifest b/app-dicts/myspell-ca/Manifest index 7ea1aa2663f1..195fdc1f251e 100644 --- a/app-dicts/myspell-ca/Manifest +++ b/app-dicts/myspell-ca/Manifest @@ -1,2 +1,2 @@ -DIST ca.3.0.6.oxt 1729644 BLAKE2B d20655f9f3533aa280706463b9db0263e30294e3ca9468dad4f3f9273ff19d91d65c247e7a5ab954d9497f7f1f388129ca596759067c718899575e92110ff778 SHA512 4d5b867bd1a923bb2d52fba4b30d73f9e5b4d441c78c77aa88b0d67cf9d7ebef9cac0f0ea1addbaf873b6395590a1295fc43f7a9a0567af79f351d1dc2618259 DIST myspell-ca-2.3.0.oxt 441719 BLAKE2B 4f58648eac1f77a6e1e2cc571a2528d474c961ce15cab00b822638937bfe450330f4decc8744284b66e5e2b5d58ccf2b03110303d86286e1aa5e7508fd2362a8 SHA512 77513fa6b2d819963bc03aece59aeb2fe6df7674c0fea4fa9a406e6c27efdfbca3ebfc4b36aca4275d79f09678ab58a56c3d6470a815a2192b2ffc4e01c779bf +DIST myspell-ca-3.0.6.oxt 1729644 BLAKE2B d20655f9f3533aa280706463b9db0263e30294e3ca9468dad4f3f9273ff19d91d65c247e7a5ab954d9497f7f1f388129ca596759067c718899575e92110ff778 SHA512 4d5b867bd1a923bb2d52fba4b30d73f9e5b4d441c78c77aa88b0d67cf9d7ebef9cac0f0ea1addbaf873b6395590a1295fc43f7a9a0567af79f351d1dc2618259 diff --git a/app-dicts/myspell-ca/myspell-ca-2.3.0.ebuild b/app-dicts/myspell-ca/myspell-ca-2.3.0.ebuild index d498c12c7ea7..31c6b74e741a 100644 --- a/app-dicts/myspell-ca/myspell-ca-2.3.0.ebuild +++ b/app-dicts/myspell-ca/myspell-ca-2.3.0.ebuild @@ -1,29 +1,22 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "ca_ES.aff" "ca_ES.dic" ) -MYSPELL_HYPH=( -) - -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Catalan dictionaries for myspell/hunspell" -HOMEPAGE="http://www.softcatala.org/wiki/Rebost:Corrector_ortogr%C3%A0fic_de_catal%C3%A0_%28general%29_per_a_l%27OpenOffice.org" +HOMEPAGE="https://www.softcatala.org" SRC_URI="http://www.softcatala.org/diccionaris/actualitzacions/OOo/catalan.oxt -> ${P}.oxt" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" src_prepare() { default diff --git a/app-dicts/myspell-ca/myspell-ca-3.0.6.ebuild b/app-dicts/myspell-ca/myspell-ca-3.0.6.ebuild index ba020ff6f8a6..50be65f0cb4c 100644 --- a/app-dicts/myspell-ca/myspell-ca-3.0.6.ebuild +++ b/app-dicts/myspell-ca/myspell-ca-3.0.6.ebuild @@ -23,7 +23,7 @@ inherit myspell-r2 DESCRIPTION="Catalan dictionaries for myspell/hunspell" HOMEPAGE="https://www.softcatala.org/programes/corrector-ortografic-de-catala-general-per-al-libreoffice-i-lapache-openoffice/ https://github.com/Softcatala/catalan-dict-tools/" -SRC_URI="https://github.com/Softcatala/catalan-dict-tools/releases/download/v${PV}/ca.${PV}.oxt" +SRC_URI="https://github.com/Softcatala/catalan-dict-tools/releases/download/v${PV}/ca.${PV}.oxt -> ${P}.oxt" LICENSE="GPL-2 LGPL-2.1" SLOT="0" diff --git a/app-dicts/myspell-cs/myspell-cs-20181003.ebuild b/app-dicts/myspell-cs/myspell-cs-20181003.ebuild index 81b35fdb8268..f8b22a26626b 100644 --- a/app-dicts/myspell-cs/myspell-cs-20181003.ebuild +++ b/app-dicts/myspell-cs/myspell-cs-20181003.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -25,4 +25,3 @@ SRC_URI="https://extensions.libreoffice.org/extensions/czech-dictionaries/2018.1 LICENSE="GPL-2 MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="" diff --git a/app-dicts/myspell-cy/myspell-cy-20130708.ebuild b/app-dicts/myspell-cy/myspell-cy-20130708.ebuild index 213bf202112d..32d09437c1db 100644 --- a/app-dicts/myspell-cy/myspell-cy-20130708.ebuild +++ b/app-dicts/myspell-cy/myspell-cy-20130708.ebuild @@ -1,19 +1,13 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "cy_GB.aff" "cy_GB.dic" ) -MYSPELL_HYPH=( -) - -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Welsh dictionaries for myspell/hunspell" @@ -23,4 +17,3 @@ SRC_URI="mirror://sourceforge/aoo-extensions/geiriadur-cy.oxt -> ${P}.oxt" LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" -IUSE="" diff --git a/app-dicts/myspell-da/Manifest b/app-dicts/myspell-da/Manifest index 55552d4e86d4..049b7123e6a3 100644 --- a/app-dicts/myspell-da/Manifest +++ b/app-dicts/myspell-da/Manifest @@ -1 +1,2 @@ DIST dict-da-2-3.oxt 1861736 BLAKE2B 18c22f55012a9701cff1ecadc53dece7cdc2e59619c1704159343960951096c49ab970bb248d844eaf24379053ea7ac35bd89b4741aa54cfb4b711e99320b256 SHA512 28428096ba6d79801fdf47a61bedc06c9ee2d667ae32307bd57f9b7cdc1cb06e84ac2bd78fba11c87dd35dc88d78c5e0f81588e5145267577ca0992b35ea301a +DIST myspell-da-2.6.oxt 2013864 BLAKE2B 4dd9fcecd79258331f3149f940a4251127517a68b0827797cb9ea6b7261bcaae57c76099dbc349b1e52d107e3fb969ccd094c046411404c0adb771321e16b271 SHA512 d5f07da5526468aa93869218bf409314afe20dd2987a192354c9cc08a71314b11290392ebf08c12dfb246e805af12b9a4a1e1f56ec8971e9bb9511b4757086ed diff --git a/app-dicts/myspell-da/myspell-da-2.6.ebuild b/app-dicts/myspell-da/myspell-da-2.6.ebuild new file mode 100644 index 000000000000..ac3028ffa204 --- /dev/null +++ b/app-dicts/myspell-da/myspell-da-2.6.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "da_DK.aff" + "da_DK.dic" +) + +MYSPELL_HYPH=( + "hyph_da_DK.dic" +) + +inherit myspell-r2 + +DESCRIPTION="Danish dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extensions/stavekontrolden-danish-dictionary" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/110/da_DK-2.6.001.oxt -> ${P}.oxt" + +LICENSE="GPL-2 LGPL-2.1 MPL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-de/myspell-de-2017.01.12.ebuild b/app-dicts/myspell-de/myspell-de-2017.01.12.ebuild index 4f0d3cf4fe92..8a010614a251 100644 --- a/app-dicts/myspell-de/myspell-de-2017.01.12.ebuild +++ b/app-dicts/myspell-de/myspell-de-2017.01.12.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=7 MYSPELL_DICT=( "de_AT.aff" diff --git a/app-dicts/myspell-de_1901/Manifest b/app-dicts/myspell-de_1901/Manifest index 1c021b2ede19..7863ae20a2f2 100644 --- a/app-dicts/myspell-de_1901/Manifest +++ b/app-dicts/myspell-de_1901/Manifest @@ -1 +1,2 @@ +DIST dict-de-de-1901-oldspell-2017-06-22.oxt 11531519 BLAKE2B 4d2e1e1b6f79fde2fe4662a816e32037861b53633400a3097330a268d33d47be3de21520c01e1a459146d5e582d35c72abb5d1b0830dd65521586ca772ec15b7 SHA512 48f57da9f405f84af91455a987a36759eb7687a9925785af630ad3dfd961526f17ea9c30b61110ad7b75aaac7ca6dfdbd73695cad652ff2a0d64903df5cfbc51 DIST dict-de_de-1901_oldspell_2016-04-03.oxt 8197279 BLAKE2B 5f930ee3d727ad7e6ce37ca1062a200b09d3a922a446dde201c192842c898e5754b7405cf92dd58f9981bb4445d7223131f30f336a39d1c84001f8a61cd08eca SHA512 af6a353e52505895e4084378d91578956452d7db402a14073e6b2387d7b5377bcf652414bf90e113d976f24e082adf138ba138d54fa321c55bcb2c4d93c83cdc diff --git a/app-dicts/myspell-de_1901/myspell-de_1901-20170622.ebuild b/app-dicts/myspell-de_1901/myspell-de_1901-20170622.ebuild new file mode 100644 index 000000000000..640f8b8c5a97 --- /dev/null +++ b/app-dicts/myspell-de_1901/myspell-de_1901-20170622.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "de_DE_1901.aff" + "de_DE_1901.dic" +) + +MYSPELL_HYPH=( + "hyph_de_DE_1901.dic" +) + +inherit myspell-r2 + +DESCRIPTION="German (traditional orthography) dictionaries for myspell/hunspell" +HOMEPAGE="http://extensions.libreoffice.org/extension-center/german-de-de-1901-old-spelling-dictionaries" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/dict-de-de-1901-oldspell-2017-06-22.oxt" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +src_prepare() { + default + # Nicely rename; http://www.iana.org/assignments/language-subtag-registry + mv de_DE_OLDSPELL.aff de_DE_1901.aff || die + mv de_DE_OLDSPELL.dic de_DE_1901.dic || die + mv hyph_de_DE_OLDSPELL.dic hyph_de_DE_1901.dic || die + # Remove thesaurus for new spelling to avoid installing its readme file + rm th_de_DE_v2* || die +} diff --git a/app-dicts/myspell-el/myspell-el-0.9.ebuild b/app-dicts/myspell-el/myspell-el-0.9.ebuild index 2e66b4735528..ee41a6b0fcea 100644 --- a/app-dicts/myspell-el/myspell-el-0.9.ebuild +++ b/app-dicts/myspell-el/myspell-el-0.9.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "el_GR.aff" @@ -12,9 +12,6 @@ MYSPELL_HYPH=( "hyph_el.dic" ) -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Greek dictionaries for myspell/hunspell" @@ -24,4 +21,3 @@ SRC_URI="http://elspell.math.upatras.gr/files/ooffice/el_GR-${PV}.zip http://els LICENSE="GPL-2 LGPL-2.1 MPL-1.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-en/Manifest b/app-dicts/myspell-en/Manifest index e36ade664428..4d68180e559e 100644 --- a/app-dicts/myspell-en/Manifest +++ b/app-dicts/myspell-en/Manifest @@ -1,3 +1,4 @@ DIST dict-en-20170101.oxt 5960816 BLAKE2B 65505ed6e8323f28377728ac29e550cf151688517b83209b055966be4e7e14465aacc1d1677d22bc005089d7623e78e63bf91dcdffcde3a790532dba87b54615 SHA512 fae05d3e4bdc9bbd5dda6eb2c0de2f5d0860973e75fe0931bcb0d0e0a5015fb6042beec7f811bee0011f519d13d0f3b52b09fbd906a75340bf311177885ccc1d DIST dict-en-20181101.oxt 6052772 BLAKE2B 46825cb406406a3d64e8495f047ae81d6b693e6ff5cd89152a9c829a80d7be1920dfb3572a84aedb2e8f8e5c767aa49ed7e71ab330aca83b3936133699f1098a SHA512 1f351b97c4fc907c5751a35b6665b6d91b1157b6a952a378f565989249b1900395f08f0204407a21b0bcb999fe695c14707c4744f5da32d521ee8d75f73c89f9 DIST dict-en-20190101.oxt 6058651 BLAKE2B 617ded8d7df6e62767083be7b0651e1bd1e039f78ebb67e8371228805519195dd5acd4ca7d415a29b68697a369d070eafa5545d1b8bbcbab58774db61f03e8e5 SHA512 06e6a21b524c378041655cc44e04f26a35b16e1606a478c0702b96fcbeb86180593fc02d00cae8e05700ead0bd6568239434e8d3d733937587e7b009245dfe4c +DIST dict-en-20210601.oxt 6104083 BLAKE2B 192252e85918d3d47167ff9243f70178bc548de3e93152c4139e64ffb013e147fda1fa9c7741ce7bf74b149ec0ab6e001760990cd1ee33dad06fd5e3813ef591 SHA512 c9d791a12aa97d6c2a0928f9f500b22492208b415f877d6b5bd192b5da4c243c32b8d0b7af6b3f5cbfefe6b1c695626db204fc29a922dc4b083538ed144cb472 diff --git a/app-dicts/myspell-en/myspell-en-20210601.ebuild b/app-dicts/myspell-en/myspell-en-20210601.ebuild new file mode 100644 index 000000000000..9e0f8c06340d --- /dev/null +++ b/app-dicts/myspell-en/myspell-en-20210601.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit myspell-r2 + +DESCRIPTION="English dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extensions/english-dictionaries" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/41/dict-en-20210601.oxt" + +LICENSE="BSD MIT LGPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" + +PLOCALES=( "en" "en-AU" "en-CA" "en-GB" "en-US" "en-ZA" ) +IUSE+="${PLOCALES[@]/#/l10n_}" +REQUIRED_USE="|| ( ${IUSE[@]} )" + +src_prepare() { + if use l10n_en-GB || use l10n_en; then + MYSPELL_HYPH=( "hyph_en_GB.dic" ) + fi + if use l10n_en-US || use l10n_en; then + MYSPELL_THES=( + "th_en_US_v2.dat" + "th_en_US_v2.idx" + ) + fi + + MYSPELL_DICT=( ) + for lang in "${PLOCALES[@]}"; do + if [[ "${lang}" == "en" ]]; then + continue + fi + local mylinguas="${lang//-/_}" + if use "l10n_${lang}" || use l10n_en; then + MYSPELL_DICT+=( "${mylinguas}.aff" "${mylinguas}.dic" ) + else + rm "README_${mylinguas}.txt" || die + if [[ ${lang} == "en-US" ]]; then + rm "README_hyph_en_US.txt" || die + fi + if [[ ${lang} == "en-GB" ]]; then + rm "README_hyph_en_GB.txt" || die + rm "README_en_GB_thes.txt" || die + fi + fi + done + + default +} diff --git a/app-dicts/myspell-eo/Manifest b/app-dicts/myspell-eo/Manifest index 8ebe654b54c0..09973d8b58c1 100644 --- a/app-dicts/myspell-eo/Manifest +++ b/app-dicts/myspell-eo/Manifest @@ -1 +1,2 @@ +DIST dict-eo.oxt 262322 BLAKE2B 9fd1ad4c2db88db773ebce6ba64646cafaf595e4fc501d9d14f43b4abe0942eca4ef04c6a58ea40500fdf1cf342338930a7b06c1466b3919acef7364ab30b53e SHA512 aabb701cfa794595c2efc8bdb7b1eef3753b457928fcd6ee64f4bafb62b0baeb3139c9c667f8b194eede56f2a05418b256ade049db12b1b040ae4ce15c295a21 DIST myspell-eo-1.0.oxt 186407 BLAKE2B 9bf51c6fa343d5417811580f0db36d5d5c5d37b6939ee545a87ef1b3f661fa5268ff92dafddb8ff9b4ad7512c5d578bfa20c6bcf276c5a00d90cdbd67ee7197c SHA512 b5cf3a14672fb0e6b810e5b4d811f430b3c3cc38cf09a0083b7e26471597c6df055242349a2a239607621301f71527e8bf225dc03de727c5863e7b7b1c821824 diff --git a/app-dicts/myspell-eo/myspell-eo-1.01.ebuild b/app-dicts/myspell-eo/myspell-eo-1.01.ebuild new file mode 100644 index 000000000000..09018b1e835f --- /dev/null +++ b/app-dicts/myspell-eo/myspell-eo-1.01.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "eo.aff" + "eo.dic" +) + +MYSPELL_HYPH=( "hyph_eo.dic" ) + +MYSPELL_THES=( + "th_eo.dat" + "th_eo.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Esperanto dictionaries for myspell/hunspell" +HOMEPAGE="http://nlp.fi.muni.cz/projekty/esperanto_spell_checker/" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/dict-eo.oxt" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +DOCS=( changelog.txt desc_en.txt desc_eo.txt ) + +src_prepare() { + default + rm -r license-en.txt || die # delete license +} diff --git a/app-dicts/myspell-es/myspell-es-2.6.ebuild b/app-dicts/myspell-es/myspell-es-2.6.ebuild index e00728fc4603..d2e8b76d5c3e 100644 --- a/app-dicts/myspell-es/myspell-es-2.6.ebuild +++ b/app-dicts/myspell-es/myspell-es-2.6.ebuild @@ -1,15 +1,13 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MUTATIONS=( - "es" "es_AR" "es_BO" "es_CL" "es_CO" "es_CR" "es_CU" "es_DO" "es_EC" - "es_ES" "es_GT" "es_HN" "es_MX" "es_NI" "es_PA" "es_PE" "es_PH" "es_PR" - "es_PY" "es_SV" "es_US" "es_UY" "es_VE" + "es" "es_AR" "es_BO" "es_CL" "es_CO" "es_CR" "es_CU" "es_DO" "es_EC" "es_ES" "es_GT" "es_HN" + "es_MX" "es_NI" "es_PA" "es_PE" "es_PH" "es_PR" "es_PY" "es_SV" "es_US" "es_UY" "es_VE" ) -MYSPELL_DICT=( ) MYSPELL_HYPH=( "hyph_es.dic" ) @@ -18,7 +16,6 @@ MYSPELL_THES=( "th_es_v2.idx" ) -SRC_URI="" for i in "${MUTATIONS[@]}"; do MYSPELL_DICT+=( "${i}.dic" @@ -26,16 +23,16 @@ for i in "${MUTATIONS[@]}"; do ) SRC_URI+=" https://github.com/sbosio/rla-es/releases/download/v${PV}/${i}.oxt -> ${i}-${PV}.oxt" done + unset i MUTATIONS inherit myspell-r2 DESCRIPTION="Spanish dictionaries for myspell/hunspell" HOMEPAGE="https://github.com/sbosio/rla-es" -LICENSE="GPL-3 LGPL-3 MPL-1.1" +LICENSE="GPL-3+ LGPL-3+ MPL-1.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="" src_prepare() { # remove license files diff --git a/app-dicts/myspell-et/myspell-et-20030606.ebuild b/app-dicts/myspell-et/myspell-et-20030606.ebuild index 32def5e7a538..f2be5a80b8d8 100644 --- a/app-dicts/myspell-et/myspell-et-20030606.ebuild +++ b/app-dicts/myspell-et/myspell-et-20030606.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "latin-9/et_EE.aff" @@ -12,9 +12,6 @@ MYSPELL_HYPH=( "hyph_et_EE.dic" ) -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Estonian dictionaries for myspell/hunspell" @@ -24,7 +21,6 @@ SRC_URI="http://www.meso.ee/~jjpp/speller/ispell-et_${PV}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" S="${WORKDIR}/ispell-et-${PV}" @@ -32,5 +28,4 @@ src_prepare() { default # naming handling to be inline with others mv hyph_et.dic hyph_et_EE.dic || die - } diff --git a/app-dicts/myspell-fo/myspell-fo-0.4.2.ebuild b/app-dicts/myspell-fo/myspell-fo-0.4.2.ebuild index bbbbf306b08d..bdc2462902f7 100644 --- a/app-dicts/myspell-fo/myspell-fo-0.4.2.ebuild +++ b/app-dicts/myspell-fo/myspell-fo-0.4.2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "${P}/fo_FO.aff" @@ -12,19 +12,12 @@ MYSPELL_HYPH=( "hyph_fo_FO.dic" ) -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Faroese dictionaries for myspell/hunspell" HOMEPAGE="https://fo.speling.org/" -SRC_URI=" - https://fo.speling.org/filer/${P}.tar.bz2 - https://fo.speling.org/filer/hyph_fo_FO-20040420a.zip -" +SRC_URI="https://fo.speling.org/filer/${P}.tar.bz2 https://fo.speling.org/filer/hyph_fo_FO-20040420a.zip" LICENSE="GPL-2 LGPL-2.1 MPL-1.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-fr/Manifest b/app-dicts/myspell-fr/Manifest index 2fb854d7348b..cf64c31b9a35 100644 --- a/app-dicts/myspell-fr/Manifest +++ b/app-dicts/myspell-fr/Manifest @@ -1,3 +1,4 @@ +DIST lo-oo-ressources-linguistiques-fr-v5-7.oxt 3419712 BLAKE2B e74657424b460b222b68a2753a21bfdbcaec8ad60e02014bb6b49b3f4bb9f2b7c8b26a0d73bdd83b28d52a70b3c2656b1112f028107598a16e642b3262bff3e1 SHA512 9406fdb7401908ed7a9797735ac9f7b9769373ddc0f016b310344f85d36ae48853ab9300bcae9ac290442f482318ab1b743983d359679e9a7c9f211b4ab35405 DIST ooo-dictionnaire-fr-classique-reforme1990-v4.5.oxt 2271004 BLAKE2B 80c5c43a096c595e8cf5687336e69df5300bf52a84dbd331da6bada5b8bd430d94ac608cd51569ffceb63e3f4ee1f20ac3c7c2583ae02389805a6c1a841ce47b SHA512 7cfec4838551ff8a14db97cea08ae5280de4cd35ac1b49346484790dff18f156ef5cf2f05e90d61d1809e91780d77cfff3cf59d01f91f949580244e257a1c17b DIST ooo-dictionnaire-fr-classique-v4.5.oxt 2251909 BLAKE2B 3ea0901efcee126b2702efebe279cb32b0e496d6b92b8e2a9dd16671bd999b6357086faf99ced6db5f4babe726ee933f3f85858c84a80c8b656b945b23d2aaa7 SHA512 f45b1e12b24e2ef2a9e3944b310631ee5c52ef7cd94a9d2d461ec91b320b40e6d380db7820d386ad75627873b6033e80451b2371f0a42817ead77ce5f03edf77 DIST ooo-dictionnaire-fr-moderne-v4.5.oxt 2248032 BLAKE2B 4e935186b621810f468e6915e61c7389aa95f8d8e00d8960bd1a9cb8622521669c6147c0b535fffa85a36abb9fcb739a45c00bd9036e5d019953c5b7d13321d5 SHA512 b493f0c57d3d48b93a2c0d9fbd065728ed011c68d11286def203a0b798fe02381acdb2927805475c69c1ff7d0a7ff53469e84581c4724dd57bf0211d85c52655 diff --git a/app-dicts/myspell-fr/myspell-fr-5.7.ebuild b/app-dicts/myspell-fr/myspell-fr-5.7.ebuild new file mode 100644 index 000000000000..06041dd698cc --- /dev/null +++ b/app-dicts/myspell-fr/myspell-fr-5.7.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "fr-classique.aff" + "fr-classique.dic" + "fr-moderne.aff" + "fr-moderne.dic" + "fr-reforme1990.aff" + "fr-reforme1990.dic" + "fr-toutesvariantes.aff" + "fr-toutesvariantes.dic" +) + +MYSPELL_HYPH=( + "hyph_fr.dic" + "hyph_fr.iso8859-1.dic" +) + +MYSPELL_THES=( + "thes_fr.dat" + "thes_fr.idx" +) + +inherit myspell-r2 + +DESCRIPTION="French dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extension-center/dictionnaires-francais" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/lo-oo-ressources-linguistiques-fr-v5-7.oxt" + +LICENSE="GPL-2 LGPL-2.1 MPL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x86-linux" + +DOCS=( package-description.txt README_dict_fr.txt README_hyph_fr-2.9.txt README_hyph_fr-3.0.txt README_thes_fr.txt ) + +src_prepare() { + default + rm -r french_flag_16.bmp french_flag.png || die +} diff --git a/app-dicts/myspell-ga/Manifest b/app-dicts/myspell-ga/Manifest index 31335380d0e4..e2e279f703a4 100644 --- a/app-dicts/myspell-ga/Manifest +++ b/app-dicts/myspell-ga/Manifest @@ -1 +1,2 @@ DIST myspell-ga-20160213.oxt 8475451 BLAKE2B f8fbd0c763df5022142ec824eb7771ee14d0091a9defc5578b5cc830e02d646f031907fd970f69320a8668465c9aa50aa978d05d293fe8c4be24e553052340ec SHA512 bf1d17c8edd174a84c853489a6404da51a21fd47e7abbbd6f1bac98753a6327c6ada7213ffb0fa6bf5ecd62510e8119e35697ae868db00b2086503a801895d0b +DIST myspell-ga-20171203.oxt 8748465 BLAKE2B 5fe5147d8f297228bc1e968e60546281110095ab2c3155be2bb31eadd8e486a0f56b7f41bbe661ea568ff191233134955a3a26d271d99d97b3ff82f2f1761e16 SHA512 37c5e03998fd3c036df90f45fa28aba7fbb16fca32df1f82ea3ffeafdb19081b739e6716c5be448f7344b9ec548bbeef09d0bbc4423f6312d53a7a5468c4512c diff --git a/app-dicts/myspell-ga/myspell-ga-20171203.ebuild b/app-dicts/myspell-ga/myspell-ga-20171203.ebuild new file mode 100644 index 000000000000..f5e7dee3d531 --- /dev/null +++ b/app-dicts/myspell-ga/myspell-ga-20171203.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "ga_IE.aff" + "ga_IE.dic" +) + +MYSPELL_HYPH=( + "hyph_ga_IE.dic" +) + +MYSPELL_THES=( + "th_ga_IE_v2.dat" + "th_ga_IE_v2.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Irish dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/irish-language-spell-checker-thesaurus-and-hyphenation-patterns" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/focloiri-gaeilge-5-0.oxt -> ${P}.oxt" + +LICENSE="FDL-1.2 GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-gl/Manifest b/app-dicts/myspell-gl/Manifest index 44c6c05076b5..f2dfc86d4e75 100644 --- a/app-dicts/myspell-gl/Manifest +++ b/app-dicts/myspell-gl/Manifest @@ -1 +1,2 @@ DIST myspell-gl-20131013.oxt 771221 BLAKE2B cee0815ae69d00334cca4341ed5c694c3d8f97a3904f5427b7deb94d706947e536adc890b2bfbff41c666b8ae6c5c277edc4843f4c4ef4131548145a42b2313d SHA512 ae13d7137e6b8e51570bcbeba00f73d9887a24556c2409249a39858d385168a03aff3ec2cf3222cad50686a4169debbe310a05ce3bd40aaab408de3ed01885ee +DIST myspell-gl-20180710.oxt 1929371 BLAKE2B f5ffbcd9417935828db5e951b1b37deb6a72c22f19afd48cc9e03f167bbc3285b3ae3141c2393aeff50be48752cd8620167e2539f6d2eb28f29c72ca56f88c84 SHA512 ea19a917a3f4a7d6a144a9219e30f1a8cdd4865c98c1a3f901dd2ffb8a20143c2e80c4b458ea71ce97684042a4209852c9d21861710c52658fa7391eb221c7a4 diff --git a/app-dicts/myspell-gl/myspell-gl-20180710.ebuild b/app-dicts/myspell-gl/myspell-gl-20180710.ebuild new file mode 100644 index 000000000000..1d5e545c3378 --- /dev/null +++ b/app-dicts/myspell-gl/myspell-gl-20180710.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "gl_ES.aff" + "gl_ES.dic" +) + +MYSPELL_HYPH=( + "hyph_gl_ES.dic" +) + +MYSPELL_THES=( + "thes_gl_ES.dat" + "thes_gl_ES.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Galician dictionaries for myspell/hunspell" +LICENSE="GPL-2 LGPL-2.1" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/corrector-ortografico-para-galego" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/corrector-18-07-para-galego.oxt -> ${P}.oxt" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +DOCS=( changelog.txt package-description.txt readme.txt readme-gl.txt readme_hyph-gl.txt readme_th_gl.txt ) + +src_prepare() { + default + # Naming correctly + mv gl.aff gl_ES.aff || die + mv gl.dic gl_ES.dic || die + mv hyph_gl.dic hyph_gl_ES.dic || die + mv thesaurus_gl.dat thes_gl_ES.dat || die + mv thesaurus_gl.idx thes_gl_ES.idx || die +} diff --git a/app-dicts/myspell-he/myspell-he-2012.08.15.ebuild b/app-dicts/myspell-he/myspell-he-2012.08.15.ebuild index 675fb1548a31..3fb4ffced19a 100644 --- a/app-dicts/myspell-he/myspell-he-2012.08.15.ebuild +++ b/app-dicts/myspell-he/myspell-he-2012.08.15.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "he_IL.aff" @@ -23,4 +23,3 @@ SRC_URI="https://extensions.libreoffice.org/extensions/hebrew-he-spell-check-dic LICENSE="GPL-2 LGPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-hr/myspell-hr-20080813.ebuild b/app-dicts/myspell-hr/myspell-hr-20080813.ebuild index a8d4c2b54069..0016e3a92a06 100644 --- a/app-dicts/myspell-hr/myspell-hr-20080813.ebuild +++ b/app-dicts/myspell-hr/myspell-hr-20080813.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "hr_HR.aff" @@ -12,9 +12,6 @@ MYSPELL_HYPH=( "hyph_hr.dic" ) -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Croatian dictionaries for myspell/hunspell" @@ -24,4 +21,3 @@ SRC_URI="mirror://sourceforge/aoo-extensions/dict-hr.oxt -> ${P}.oxt" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-hu/Manifest b/app-dicts/myspell-hu/Manifest index 12558c8df19d..98d86ca077e1 100644 --- a/app-dicts/myspell-hu/Manifest +++ b/app-dicts/myspell-hu/Manifest @@ -1,3 +1,4 @@ DIST LibO_3.6.0.4_Linux_x86_langpack-rpm_hu.tar.gz 3764761 BLAKE2B f85c0dcad7dcbcd0a644720a4a0fb48098918be5cb38bc4168134c4db29002449763b864449299a099e15b91a7bc42f7d0e726a6bef945862eceb8cf5e13a48e SHA512 088a2c898299b61ff10f9397f68aba404bac4de7ead1880088dd16f841b7b403059a82bde7a5e719dda772e494f02d014255782f8e5c43c7a8eb2c07358c66bf +DIST LibreOffice_7.1.3.2_Linux_x86-64_rpm_langpack_hu.tar.gz 3315084 BLAKE2B 5cd3c33f66aacf4b1474d6c418c025dde77667e59027916c0ace16281a85f7e14fa37e607f18ad94e1b2fd04e65e692998652f739ac0180fd27274254b3d92d9 SHA512 b45be281c8ea37d92236676f6d69e77874399412737d2cd4f13f876a39b70db2f61e94a58924bf52d30d8b59a94611d63de4b2e2378f607292c397f3729017be DIST hu_HU-1.6.1.tar.gz 730641 BLAKE2B 53d08ee9aa073e4a2b5810a90b1a4a8ec42f95b507f0b9c3f1ac401cac39d4d667f18886745352ced180441f231651829bf8480a7a98b336c53cd1fb61337f8d SHA512 7ae1f99b16b714158c33b41ee5c7a3aaeb84bf59a1d1c13a02b0ba30972bfd2b3dd0d04a28997f0f5a97943a89d3cf9f0da55fb219ce24917ae1e3aed0a5484f DIST huhyphn_v20110815_LibO.tar.gz 545413 BLAKE2B b65bc84c01a5a34a1650e6fb6d491f71afd8486e9b8f49b4d3d41850f6e2086518ac7360287f376015551e7897033bada50435d67d81e26015cc57dfda05e08e SHA512 147d3d74c5d7278075bdf3734492662c723970630da10e5b1520f960d3f3d89916cd674d44f3b27ccf8e9b81031a75bbf6311614a296f76a39b1de576ad34b10 diff --git a/app-dicts/myspell-hu/myspell-hu-7.1.3.2.ebuild b/app-dicts/myspell-hu/myspell-hu-7.1.3.2.ebuild new file mode 100644 index 000000000000..373ebbe007c6 --- /dev/null +++ b/app-dicts/myspell-hu/myspell-hu-7.1.3.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "opt/libreoffice7.1/share/extensions/dict-hu/hu_HU.aff" + "opt/libreoffice7.1/share/extensions/dict-hu/hu_HU.dic" +) + +MYSPELL_HYPH=( + "opt/libreoffice7.1/share/extensions/dict-hu/hyph_hu_HU.dic" +) + +MYSPELL_THES=( + "opt/libreoffice7.1/share/extensions/dict-hu/th_hu_HU_v2.dat" + "opt/libreoffice7.1/share/extensions/dict-hu/th_hu_HU_v2.idx" +) + +inherit rpm myspell-r2 + +DESCRIPTION="Hungarian dictionaries for myspell/hunspell" +HOMEPAGE="https://sourceforge.net/projects/magyarispell/" +SRC_URI="https://downloadarchive.documentfoundation.org/libreoffice/old/7.1.3.2/rpm/x86_64/LibreOffice_7.1.3.2_Linux_x86-64_rpm_langpack_hu.tar.gz" + +LICENSE="GPL-3 GPL-2 LGPL-2.1 MPL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="" + +src_unpack() { + myspell-r2_src_unpack + + rpm_unpack ./LibreOffice_7.1.3.2_Linux_x86-64_rpm_langpack_hu/RPMS/libreoffice7.1-dict-hu-7.1.3.2-2.x86_64.rpm +} diff --git a/app-dicts/myspell-ia/myspell-ia-20140518.ebuild b/app-dicts/myspell-ia/myspell-ia-20140518.ebuild index c0f6aaafdf2c..7a66d3bbd143 100644 --- a/app-dicts/myspell-ia/myspell-ia-20140518.ebuild +++ b/app-dicts/myspell-ia/myspell-ia-20140518.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MY_PV=${PV::4}-${PV:4:2}-${PV:6} @@ -14,9 +14,6 @@ MYSPELL_HYPH=( "ia-hyph.dic" ) -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Interlingua dictionaries for myspell/hunspell" @@ -26,4 +23,3 @@ SRC_URI="mirror://sourceforge/aoo-extensions/dict-ia-${MY_PV}.oxt -> ${P}.oxt" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-id/myspell-id-2.0.ebuild b/app-dicts/myspell-id/myspell-id-2.0.ebuild index 84aca8f25747..ee8f8ba50c67 100644 --- a/app-dicts/myspell-id/myspell-id-2.0.ebuild +++ b/app-dicts/myspell-id/myspell-id-2.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "id_ID.aff" @@ -12,16 +12,12 @@ MYSPELL_HYPH=( "hyph_id_ID.dic" ) -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Indonesian dictionaries for myspell/hunspell" HOMEPAGE="https://extensions.libreoffice.org/extension-center/indonesian-dictionary-kamus-indonesia-by-benitius" -SRC_URI="https://extensions.libreoffice.org/extension-center/indonesian-dictionary-kamus-indonesia-by-benitius/releases/${PV}/id_id.oxt -> ${P}.oxt" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/id-id.oxt -> ${P}.oxt" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-is/Manifest b/app-dicts/myspell-is/Manifest index 44319670b954..430924733f16 100644 --- a/app-dicts/myspell-is/Manifest +++ b/app-dicts/myspell-is/Manifest @@ -1 +1,2 @@ DIST hunspell-is-2012.09.01.oxt 678230 BLAKE2B f8a4fa14c1cc9c89213a236d38fbd6b3621fbbaa4803eb3bb70761ec387cddc0404546c3b9ee719c104c0321f5736394506993e153e0b575b790376d2081818f SHA512 39af86809f735e5f0698b060d514bc2d9d53cc4ec7ef4edb6edbd92674af337ea48fc69bfaddb2dc2532be74ae5a079068cd691212042bac70a622d1f02eebe6 +DIST hunspell-is-2014-08-18.oxt 763157 BLAKE2B 123c833075f5cd1404c316ba6d564be04c290fc12c219804f34f849fa7ba73294221cbd1317fcea8621c7fa5caecf42802daf1a01f9b71a2d2858278ca800788 SHA512 62f81d57064761e9367b984ae6347149e6c16069733fa7c3b68f0603830c21b44aa03d1512772634287be6f760b1bffb66754c02d0ee5a7faa3b257e46b78f0c diff --git a/app-dicts/myspell-is/myspell-is-20140808.ebuild b/app-dicts/myspell-is/myspell-is-20140808.ebuild new file mode 100644 index 000000000000..a21825d167fe --- /dev/null +++ b/app-dicts/myspell-is/myspell-is-20140808.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "is.aff" + "is.dic" +) + +MYSPELL_THES=( + "th_is.dat" + "th_is.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Icelandic dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extension-center/hunspell-is-the-icelandic-spelling-dictionary-project" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/hunspell-is-2014-08-18.oxt" + +LICENSE="CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-it/Manifest b/app-dicts/myspell-it/Manifest index 1dcfe97d6268..ad06570888d3 100644 --- a/app-dicts/myspell-it/Manifest +++ b/app-dicts/myspell-it/Manifest @@ -1 +1,2 @@ DIST Dizionari.IT_20081129.oxt 1433036 BLAKE2B 0e0aa03fafa34957a00b054070de67aec3f742d4cf177c6185c8a6b8a4005ea94f4041fb2e29a0ab7fa87a7d04c5f2148f98bd446e196470104ccf1b3ad97a0c SHA512 f0576f62448d368680545a66bf99d3d44c75562a0b5bc72c9020cef707c5543182ea1f45934826970b9e3ea588b9f2e29686cd08f7b8fdddcfdbd067e6536071 +DIST myspell-it-20150925.oxt 1373663 BLAKE2B 89748d0dceca6a8f3aba7b76913693ac248f2a5c925e04b76e50f23edebd6b0194da72646837e806882ce6258784d5dfb6c212046f13315479603d953d95b769 SHA512 b48a5ac075b9a20b0370235cb4fc225c91a67e6311eb9e7a96b008ad5e64e56af3daf4b192d38d5892e8d23d5f6e0c962e35f8cfec11a97ed8708e29796e09d3 diff --git a/app-dicts/myspell-it/metadata.xml b/app-dicts/myspell-it/metadata.xml index aa2cee7925bd..e607f7d3be48 100644 --- a/app-dicts/myspell-it/metadata.xml +++ b/app-dicts/myspell-it/metadata.xml @@ -9,9 +9,7 @@ <email>proxy-maint@gentoo.org</email> <name>Proxy Maintainers</name> </maintainer> - <upstream> - <remote-id type="sourceforge">linguistico</remote-id> - </upstream> + <origin>gentoo-staging</origin> <stabilize-allarches/> </pkgmetadata>
\ No newline at end of file diff --git a/app-dicts/myspell-it/myspell-it-20150925.ebuild b/app-dicts/myspell-it/myspell-it-20150925.ebuild new file mode 100644 index 000000000000..581a8f1bdb9f --- /dev/null +++ b/app-dicts/myspell-it/myspell-it-20150925.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "it_IT.aff" + "it_IT.dic" +) + +MYSPELL_HYPH=( + "hyph_it_IT.dic" +) + +MYSPELL_THES=( + "th_it_IT_v2.dat" + "th_it_IT_v2.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Italian dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/italian-dictionary-thesaurus-hyphenation-patterns" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/874d181c_dict-it.oxt -> ${P}.oxt" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +DOCS=( CHANGELOG.txt desc_en.txt desc_it.txt it_IT_notes.txt it_IT_README.txt README_hyph_it_IT.txt README.txt ) + +src_prepare() { + default + # remove useless license files. + rm -r ico.png it_IT_COPYING thes_gpl.txt th_it_IT_COPYING it_IT_todo.txt \ + th_it_IT_Lingua.png th_it_IT_Linguistica-Modifica.png th_it_IT_sinonimi.jpg || die +} diff --git a/app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild b/app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild index f7e2a4412dfb..72dd8a3d9317 100644 --- a/app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild +++ b/app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "kk_KZ.aff" diff --git a/app-dicts/myspell-km/Manifest b/app-dicts/myspell-km/Manifest index 94c41e784cfb..b40e2b8531ab 100644 --- a/app-dicts/myspell-km/Manifest +++ b/app-dicts/myspell-km/Manifest @@ -1 +1,2 @@ DIST sbbic-khmer-spelling-checker-1.6.oxt 355760 BLAKE2B f9b87b3ab40204cb756440b0d705156c9b7d7d2220db9a1baba8b3c5247b6cee76c7326e7e5f69d6f7f2ae926b0e865fd7dc2f1c38db40608ddaee5159f407b2 SHA512 0cbe28a5b9c1c7aebe8cb14ab76115dd3d08c75f20200bd0685d05b5d462b2c53b3e658b150d58a44dcf1589df99eb92a68aae3f5d5afb63591ae19a338230b8 +DIST sbbic-khmer-spelling-checker-libreoffice-1-82.oxt 606267 BLAKE2B 9b876a252266f933eaecc065869b0a6f52d202a4122d24d229b438585dc39cbb0798fc5c5dc84f0fc7cb38b4a1653cb53339bd8a0ddefd5f69ae50bbefa9cb3a SHA512 b73daa7a0363880aeebcafa0b4f38b48d9a2d24858cdcf393d04dd367a119fa86047ccd72f7bbd184c0883369d53c08dcf48a3fb2c29639ae42c8d801a869e96 diff --git a/app-dicts/myspell-km/myspell-km-1.82.ebuild b/app-dicts/myspell-km/myspell-km-1.82.ebuild new file mode 100644 index 000000000000..5e3550948148 --- /dev/null +++ b/app-dicts/myspell-km/myspell-km-1.82.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "km_KH.aff" + "km_KH.dic" +) + +MYSPELL_HYPH=( + "hyph_km_KH.dic" +) + +inherit myspell-r2 + +DESCRIPTION="Khmer dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extension-center/khmer-spelling-checker-sbbic-version" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/sbbic-khmer-spelling-checker-libreoffice-1-82.oxt" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +LICENSE="GPL-3" +SLOT="0" diff --git a/app-dicts/myspell-ku/myspell-ku-0.21.ebuild b/app-dicts/myspell-ku/myspell-ku-0.21.ebuild index 685e6094b336..a4625793fd5b 100644 --- a/app-dicts/myspell-ku/myspell-ku-0.21.ebuild +++ b/app-dicts/myspell-ku/myspell-ku-0.21.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "ku_TR/ku_TR.aff" @@ -23,4 +23,3 @@ SRC_URI="mirror://sourceforge/myspellkurdish/ku_TR-${PV/./}.zip" LICENSE="GPL-3 LGPL-3 MPL-1.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-lt/Manifest b/app-dicts/myspell-lt/Manifest index 69c7cc6b43e5..234704d54b9f 100644 --- a/app-dicts/myspell-lt/Manifest +++ b/app-dicts/myspell-lt/Manifest @@ -1 +1,2 @@ DIST myspell-lt-1.3.zip 339657 BLAKE2B 9549d1968d3b60a2b712360dab35fe696369afbdb34097eb7484ea0497b67becb43592878cec5e64691e0069babc9d56817b4d170dbb1ef092d50de64b076420 SHA512 e18f22efb665e3c4cfe0398bafc9e0626c4322009e4b056f3f5cb074778af851bd463be05c55e1bb0bfbc1a04d06d022a3aa37c89e7efac2aa38b525ab415cf2 +DIST openoffice-spellcheck-lt-1-3.oxt 327929 BLAKE2B 9dbc0018e0b077748ecb6312239cc987157b6ba00beb0a19c54c249647b177f9b9a4d44c9e1aad921824154f3655f5b6f52569e26bc0d4d961f04210cfb507fd SHA512 c16e420f0b0c0bd764c144cc771986398d1a72588fc84e0b486991bd424a562f9df5e3e0615db69dee06bd9c630e714ffe8a691da7c23981a573ccc49782f501 diff --git a/app-dicts/myspell-lt/myspell-lt-1.3-r1.ebuild b/app-dicts/myspell-lt/myspell-lt-1.3-r1.ebuild new file mode 100644 index 000000000000..6bdc64c4fe5f --- /dev/null +++ b/app-dicts/myspell-lt/myspell-lt-1.3-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "lt_LT.aff" + "lt_LT.dic" +) + +MYSPELL_HYPH=( + "hyph_lt_LT.dic" +) + +inherit myspell-r2 + +DESCRIPTION="Lithuanian dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/lithuanian-spellcheck-and-hyphenation-dictionaries" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/openoffice-spellcheck-lt-1-3.oxt" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +src_prepare() { + default + # renaming correctly + mv lt.aff lt_LT.aff || die + mv lt.dic lt_LT.dic || die + mv hyph_lt.dic hyph_lt_LT.dic || die +} diff --git a/app-dicts/myspell-lv/myspell-lv-1.3.0.ebuild b/app-dicts/myspell-lv/myspell-lv-1.3.0.ebuild index 1fc2aad70eb3..1401a85b5d3f 100644 --- a/app-dicts/myspell-lv/myspell-lv-1.3.0.ebuild +++ b/app-dicts/myspell-lv/myspell-lv-1.3.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 MYSPELL_DICT=( "lv_LV.aff" @@ -12,9 +12,6 @@ MYSPELL_HYPH=( "hyph_lv_LV.dic" ) -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Latvian dictionaries for myspell/hunspell" @@ -24,6 +21,5 @@ SRC_URI="http://dict.dv.lv/download/lv_LV-${PV}.zip -> ${P}.zip" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" DEPEND="app-arch/unzip" diff --git a/app-dicts/myspell-mi/Manifest b/app-dicts/myspell-mi/Manifest index 317411a0f9da..9bf5a92592ac 100644 --- a/app-dicts/myspell-mi/Manifest +++ b/app-dicts/myspell-mi/Manifest @@ -1 +1,2 @@ +DIST myspell-mi-20190630.tar.gz 79193 BLAKE2B c6055c9d8c31a982a77180a59265ed294856cb9e7c7d8ab5b31274792c3b3340ed52da9336683abb287b6f8da749527b27c2aaf32c51237f3dd9012d9d631d60 SHA512 a8a5212f3a8b41b19d20776fa9db04d2fd67b6bbce4fa5b94ddde54a22aabaff46d0bc8a91f44a35e66caad31e9a99b8e50b02c95bbbec5314a16e4bea3f61ef DIST myspell-mi_NZ-20060316.zip 78777 BLAKE2B 4e694d2ee35c86d677ec9abef3346e4c47364c80ae327178cab8556a514dc810f71af589349e5730367a9ac952165fe634545d426f8352bbe99096d22cf33e83 SHA512 391f70bbd7d66ede4c8df7f7d5544bc7f40c3e97b80b509ce887e74770f9183ca98475715dbf9e6ceecb3445d1d3c5c1de35d1ea540e13a3a17eef690c91925d diff --git a/app-dicts/myspell-mi/myspell-mi-20190630.ebuild b/app-dicts/myspell-mi/myspell-mi-20190630.ebuild new file mode 100644 index 000000000000..7b7362ac15ff --- /dev/null +++ b/app-dicts/myspell-mi/myspell-mi-20190630.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "mi_NZ.aff" + "mi_NZ.dic" +) + +inherit myspell-r2 + +DESCRIPTION="Maori dictionaries for myspell/hunspell" +LICENSE="LGPL-2.1" +HOMEPAGE="http://lingucomponent.openoffice.org/" +SRC_URI="https://github.com/scardracs/gentoo-packages/releases/download/mi-${PV}/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-mk/myspell-mk-20091211.ebuild b/app-dicts/myspell-mk/myspell-mk-20091211.ebuild index 670e4b3b0df2..0b7fea5c8485 100644 --- a/app-dicts/myspell-mk/myspell-mk-20091211.ebuild +++ b/app-dicts/myspell-mk/myspell-mk-20091211.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "mk_MK.aff" @@ -23,4 +23,3 @@ SRC_URI="mirror://sourceforge/aoo-extensions/dict-mk.oxt -> ${P}.oxt" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-ms/myspell-ms-20100407.ebuild b/app-dicts/myspell-ms/myspell-ms-20100407.ebuild index ad6078bb8893..269cd437daf3 100644 --- a/app-dicts/myspell-ms/myspell-ms-20100407.ebuild +++ b/app-dicts/myspell-ms/myspell-ms-20100407.ebuild @@ -1,19 +1,13 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "ms_MY.aff" "ms_MY.dic" ) -MYSPELL_HYPH=( -) - -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Malay dictionaries for myspell/hunspell" @@ -23,4 +17,3 @@ SRC_URI="mirror://sourceforge/aoo-extensions/ms_my.oxt -> ${P}.oxt" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-nb/Manifest b/app-dicts/myspell-nb/Manifest index 0071c282782c..3d5bb5877f99 100644 --- a/app-dicts/myspell-nb/Manifest +++ b/app-dicts/myspell-nb/Manifest @@ -1 +1,2 @@ +DIST dictionary-no-no-1-0.oxt 3212600 BLAKE2B 38c1771ad680079ae63a3466c51a4dbe99365be65180ee18f6c54aad1b92aa3530c2630703ae83ad5ba9774198bff20a05563cacea82557ee858cd7868996189 SHA512 23339e6a660039d045413f24828ab0df5eb0c4ac76fd323f4bb0e7ca72e91fb8f74f7dc99c12854eb0f7a8baf50fbd0692c50aae31b7fc1847499d76e208d961 DIST no_NO-pack2-2.0.10.zip 3221701 BLAKE2B b064fa40f9ee6429d5309040270f9c5dea655a0f6810d2ed876345a031a12b7d6318ff4e7b9ff32b7ea4f3b4aea7d6679bd7d971bdbf5557dd9edfee28327211 SHA512 af7ee5c465035aa419c60ef8621d6697e86e5fbed39737e86565bb3fe4851ee35d57f832e56ef0d27ce9b26682d5b32ef2213dd6c3323074cde2784fb236298c diff --git a/app-dicts/myspell-nb/myspell-nb-2.0.10-r1.ebuild b/app-dicts/myspell-nb/myspell-nb-2.0.10-r1.ebuild new file mode 100644 index 000000000000..96b2f5da5a48 --- /dev/null +++ b/app-dicts/myspell-nb/myspell-nb-2.0.10-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "nb_NO.aff" + "nb_NO.dic" +) + +MYSPELL_HYPH=( + "hyph_nb_NO.dic" +) + +MYSPELL_THES=( + "th_nb_NO_v2.dat" + "th_nb_NO_v2.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Norwegian dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/norsk-stavekontroll-bokmal-og-nynorsk" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/dictionary-no-no-1-0.oxt" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-nb/myspell-nb-2.0.10.ebuild b/app-dicts/myspell-nb/myspell-nb-2.0.10.ebuild index 4c43ac4aea44..0ba969f2dc45 100644 --- a/app-dicts/myspell-nb/myspell-nb-2.0.10.ebuild +++ b/app-dicts/myspell-nb/myspell-nb-2.0.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 diff --git a/app-dicts/myspell-nn/myspell-nn-2.0.10.ebuild b/app-dicts/myspell-nn/myspell-nn-2.0.10.ebuild index 437ddec88eeb..ed8ef0842299 100644 --- a/app-dicts/myspell-nn/myspell-nn-2.0.10.ebuild +++ b/app-dicts/myspell-nn/myspell-nn-2.0.10.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "nn_NO.aff" @@ -26,7 +26,6 @@ SRC_URI="https://alioth.debian.org/frs/download.php/2357/no_NO-pack2-${PV}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" src_unpack() { myspell-r2_src_unpack diff --git a/app-dicts/myspell-pl/Manifest b/app-dicts/myspell-pl/Manifest index f499c1053209..a2a87d3077cf 100644 --- a/app-dicts/myspell-pl/Manifest +++ b/app-dicts/myspell-pl/Manifest @@ -1,3 +1,4 @@ DIST myspell-pl-20130306-hyph.zip 14013 BLAKE2B aef123b7936d2e15b632955b56e3ab7d7043185d3e236c43f65dd626ee65986662beb8ab65eb25c23a631acc2e5b2af6ae8c3a75117b7e933101fc121a68ecd2 SHA512 931c9fb2e58b0c5d65edc19a7f4bde7e0ccef496d76466944c8b0e249506370145d21c10d9209b6703dddd58887651ac8a2cc7579a1aab8deeed0ccac2908605 DIST myspell-pl-20130306-thes.zip 1576689 BLAKE2B ebd21dcf7670821d6fa4db4a7d5448cccf8b6e0094e5e8c91a962fc44f5fb14c30e219c8555d2ddb9155c1f36521c939057e18d84f2a399203e504fd738b6ea3 SHA512 c9f5c9c0e5acb0f079c99120ec517d37d39155af22c727bcd9b3af987afc9e217ae0d84539e491246c6a4bfcd2667b556b141ff7003df06927ce873f4572aca2 +DIST myspell-pl-20210428.tar.gz 2111971 BLAKE2B edbf08abcd9e0b0120be3df2b74320698cc6d86dec47dce39e7aa4dc82531bd6ec51cfdfced7216052cebea4293cac94c74407505249de682a1648839d30db6b SHA512 2d1142d83dd113ddb4601b1d7a835a96b1c39eb4eab8ae34eab2ce78817dbdedb177eb96f84a295aabafe10d5b2474e1f8c4b17848e19c377ff0de24916dd979 DIST sjp-myspell-pl-20130306.zip 1126237 BLAKE2B e627de2424dbbe0ea20750d41ebb809cc95b237e8a635e6a31d0a149dc67cf3747d6561055210deddcdda35ba09775d7d140996fbc11a174cb2e4e0fc7fac172 SHA512 1cd53dfe956be6ab23f10c95a28a7589c4859fb41a217b643870c2662e68bf94c96be421f0437ca196fbdce4ca4bc60696e07a1d783a238c544b35cec7f25ec5 diff --git a/app-dicts/myspell-pl/myspell-pl-20210428.ebuild b/app-dicts/myspell-pl/myspell-pl-20210428.ebuild new file mode 100644 index 000000000000..08eed980c043 --- /dev/null +++ b/app-dicts/myspell-pl/myspell-pl-20210428.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "pl_PL.aff" + "pl_PL.dic" +) + +MYSPELL_HYPH=( + "hyph_pl_PL.dic" +) + +MYSPELL_THES=( + "th_pl_PL_v2.dat" +) + +inherit myspell-r2 + +DESCRIPTION="Polish dictionaries for myspell/hunspell" +HOMEPAGE="http://www.sjp.pl/slownik/en/" +SRC_URI="https://github.com/scardracs/gentoo-packages/releases/download/pl-${PV}/${P}.tar.gz" + +LICENSE="CC-SA-1.0 Apache-2.0 LGPL-2.1+ GPL-2+ MPL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-pt-br/Manifest b/app-dicts/myspell-pt-br/Manifest index fff0ea0f8131..42bc7e6304be 100644 --- a/app-dicts/myspell-pt-br/Manifest +++ b/app-dicts/myspell-pt-br/Manifest @@ -1,2 +1,4 @@ DIST VeroptBRV300AOG.oxt 1834826 BLAKE2B 479c26994a35bf3083e713f469dcdb5f5224150654e6b05b99e1bbec67be0cc5fd8a8ef774ca1807a08cfb79113836ce09db4194660f49528cbaa67dc0475e27 SHA512 1211af8aba9d9d9eae2ec9885a922d2ad70097d55c3628080754e00f30d46c061eb3eead634c7c4729837c96d722a6f3b615fd85f12b57afe417151c0e332351 DIST myspell-pt-br-3.0.0-thes.oxt 4561516 BLAKE2B 5016f8ffdb64ae3d6545fd723b502c6bccf6d95f88faa8f1ff41c32033046b25ff00e56bf09eeb70fa03ce5bcfd86a75b5602eaa9219f01495a7171861c7bf67 SHA512 194e8b547ca65a1b7d3c8fbffe6674f539e116840dc546e3ebba03a58d67d6ae649d0387f1addcc05e8df1a80f7941b036580acaa984df016b1ba55c7597a260 +DIST myspell-pt-br-3.2.0-thes.oxt 4561516 BLAKE2B 5016f8ffdb64ae3d6545fd723b502c6bccf6d95f88faa8f1ff41c32033046b25ff00e56bf09eeb70fa03ce5bcfd86a75b5602eaa9219f01495a7171861c7bf67 SHA512 194e8b547ca65a1b7d3c8fbffe6674f539e116840dc546e3ebba03a58d67d6ae649d0387f1addcc05e8df1a80f7941b036580acaa984df016b1ba55c7597a260 +DIST veroptbrv320aoc.oxt 2065441 BLAKE2B 91f8d059132364b96980f6310ad2b1830624138dee68334b1a2f5848103ce305697a07777b4b571cbeeb0b3abc142a19a5a5d0facca268181c2db7e1603e3003 SHA512 217d25ecc532c4b3386593cea4d430094ec4badb81e12648d3ca87a7f2e29243a94028a1287ff50db4532c6e1a33e52a0839fd0d45ae8c167bc89df940209b14 diff --git a/app-dicts/myspell-pt-br/myspell-pt-br-3.2.0.ebuild b/app-dicts/myspell-pt-br/myspell-pt-br-3.2.0.ebuild new file mode 100644 index 000000000000..82d8e944f1cc --- /dev/null +++ b/app-dicts/myspell-pt-br/myspell-pt-br-3.2.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "pt_BR.aff" + "pt_BR.dic" +) + +MYSPELL_HYPH=( + "hyph_pt_BR.dic" +) + +MYSPELL_THES=( + "th_pt_BR.dat" + "th_pt_BR.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Brazilian dictionaries for myspell/hunspell" +HOMEPAGE="http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ortografico/" +SRC_URI=" + https://extensions.libreoffice.org/assets/downloads/z/veroptbrv320aoc.oxt + http://wiki.documentfoundation.org/images/f/ff/DicSin-BR.oxt -> ${P}-thes.oxt +" + +LICENSE="LGPL-3 MPL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-pt/myspell-pt-20120420.ebuild b/app-dicts/myspell-pt/myspell-pt-20120420.ebuild index 557667734062..c71e55cc515b 100644 --- a/app-dicts/myspell-pt/myspell-pt-20120420.ebuild +++ b/app-dicts/myspell-pt/myspell-pt-20120420.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "pt_PT.aff" diff --git a/app-dicts/myspell-ro/myspell-ro-3.3.10.ebuild b/app-dicts/myspell-ro/myspell-ro-3.3.10.ebuild index 14b672a7bed7..9e97fd7343b0 100644 --- a/app-dicts/myspell-ro/myspell-ro-3.3.10.ebuild +++ b/app-dicts/myspell-ro/myspell-ro-3.3.10.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 MYSPELL_DICT=( "ro_RO.aff" @@ -30,4 +30,3 @@ SRC_URI=" LICENSE="GPL-2 LGPL-2.1 MPL-1.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-dicts/myspell-ru/Manifest b/app-dicts/myspell-ru/Manifest index 2449f3b6e3ee..2caab9f1c8a0 100644 --- a/app-dicts/myspell-ru/Manifest +++ b/app-dicts/myspell-ru/Manifest @@ -1,2 +1,3 @@ DIST dict_pack_ru-aot-0-4-0.oxt 1509261 BLAKE2B bdda8be3d0a9266285215ffaa4ad8916312c7904266ed34dffc832b4761887d7d316793c5b0863fdb4cf95808b7afaa24914598c1cdd839e3e073f08aee1fab6 SHA512 00e63f5abcfbb2fecd72dc2a2b80dc5ebb4d16aac909b2f63670235edadd0d22a5ed3ae0508bfdb273a85f32ee60df4e84dc620fa1a44f42543848b71a9d1b01 DIST dict_pack_ru-aot-0-4-3.oxt 1393032 BLAKE2B 8fa0587ae31a155631f799dc7c0214cab0f6c58a059d6948c540061afd7111eee26c18cc638a560928201ff718a638178cebcbd1b7eb17e65b45709217b47332 SHA512 17c0f4d75c397014e3fcb653c8e20d907d9acb2594ba9e43986312d1081f46638a0e3737cb1bf3932d602342f53add26f02efc4edb7e24dd29522aba901f240a +DIST dict_pack_ru-aot-0.4.5.oxt 1584360 BLAKE2B 14282262644c8a2c1b1f7951f4c5e330213302d20b25f6fdcd431a72dbd0d42e47302402862b8bf5774d202b9c7975669cf395822d5926f6d6bf02f5a81cb342 SHA512 85391cbadbb152aecb30aee148ef936d950d1dc39d0722cc28650f50241cc0fae32c60ccc57d2a9fe8746dbb4df4579f5c002a6beefebd936322ed480aa13bd0 diff --git a/app-dicts/myspell-ru/myspell-ru-20180627.ebuild b/app-dicts/myspell-ru/myspell-ru-20180627.ebuild index 7fd7ad659e85..c5b3a4ca275b 100644 --- a/app-dicts/myspell-ru/myspell-ru-20180627.ebuild +++ b/app-dicts/myspell-ru/myspell-ru-20180627.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 diff --git a/app-dicts/myspell-ru/myspell-ru-20200606.ebuild b/app-dicts/myspell-ru/myspell-ru-20200606.ebuild new file mode 100644 index 000000000000..e71dbfe9fab9 --- /dev/null +++ b/app-dicts/myspell-ru/myspell-ru-20200606.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( ru_RU.{dic,aff} ) +MYSPELL_HYPH=( hyph_ru_RU.dic ) +MYSPELL_THES=( ru_th_aot.{dat,idx} ) + +inherit myspell-r2 + +DESCRIPTION="Russian spellcheck dictionary based on works of AOT group for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extensions/russian-dictionary-pack" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/48/dict_pack_ru-aot-0.4.5.oxt" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux" + +src_prepare() { + default + mv russian-aot.dic ru_RU.dic || die + mv russian-aot.aff ru_RU.aff || die +} diff --git a/app-dicts/myspell-sk/Manifest b/app-dicts/myspell-sk/Manifest index 3fd6583b5694..eb405a22243e 100644 --- a/app-dicts/myspell-sk/Manifest +++ b/app-dicts/myspell-sk/Manifest @@ -1 +1,2 @@ DIST myspell-sk-20110224.zip 1351228 BLAKE2B c2f5862083d541e9d9d0f169150e06a120c527cb63b19d1275095c47d1205424eaa48f1567eba381098523f317fca6dc6704b2b62355e2d44e179ee4aed78cfe SHA512 853790825816b3c2ad547c072f38d4441dc35fe6435d602de3741cae6a2ba4890e42fefe38dfda8f7bcfc2db61461a1a4220faee0edaf06c51875a1516fedf1b +DIST slovak-dictionaries-2020-05.oxt 1229188 BLAKE2B 9aacfceaecc04e7259eae30dcf4e82cf9bd172b0a64d8bf48fd5aaacb5d4ddcd99f951db9064876459a38eb2793de1bbed466fb65b183246eb3b68e99e25ae04 SHA512 d6d4b49c435037eb04515ce86aeafce418dffcbc0d8b4716a3cf653c3e6b88eccc402190538188c81d4f644081b036a98054c8d4ef731c925cdac7a12da3d1c5 diff --git a/app-dicts/myspell-sk/myspell-sk-20200501.ebuild b/app-dicts/myspell-sk/myspell-sk-20200501.ebuild new file mode 100644 index 000000000000..c8256ba766c4 --- /dev/null +++ b/app-dicts/myspell-sk/myspell-sk-20200501.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "sk_SK.aff" + "sk_SK.dic" +) + +MYSPELL_HYPH=( + "hyph_sk_SK.dic" +) + +MYSPELL_THES=( + "th_sk_SK_v2.dat" + "th_sk_SK_v2.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Slovak dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/874" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/84/slovak-dictionaries-2020-05.oxt" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-sl/Manifest b/app-dicts/myspell-sl/Manifest index 368a798c17e9..5b2438ceb265 100644 --- a/app-dicts/myspell-sl/Manifest +++ b/app-dicts/myspell-sl/Manifest @@ -1 +1,2 @@ +DIST myspell-sl-20201231.oxt 1606834 BLAKE2B 10a1bcebcd00809d863228c7b03011548153bf4dbdc8861dc89d1a7c18bead3231dc3e4415f4a5360f95ee8b8dbd07f6665f3c2241924bbfee4832774118dfc2 SHA512 0e0ca6dee5ce0a68ca4deca46652a4b385ca4077e8e542d5591f173f9c67b7544f7e2523ff7ea20a46030404f08ae899cb9f5da8a435a5fc88d09db5a527558e DIST pack-sl.oxt 1506739 BLAKE2B 801c7dd557c534c3b83e1360a765555b146eb23387a12e8ec779f9f4878760b9a87115ab97d6eb667bdde72bc367ee4c59d28fc2492cff764b5b44d33244c94f SHA512 7309e1f9e5c42ed41c660a195421b5dbfc9995c4970641c9da087d0f4f44126c5a98ddeaaae13f7ba563314cfaf981c8216c45d80fae2fda1d7c49fd943c32ee diff --git a/app-dicts/myspell-sl/myspell-sl-20201231.ebuild b/app-dicts/myspell-sl/myspell-sl-20201231.ebuild new file mode 100644 index 000000000000..f2fdc93cccd9 --- /dev/null +++ b/app-dicts/myspell-sl/myspell-sl-20201231.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "sl_SI.aff" + "sl_SI.dic" +) + +MYSPELL_HYPH=( + "hyph_sl_SI.dic" +) + +MYSPELL_THES=( + "th_sl_SI_v2.dat" + "th_sl_SI_v2.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Slovenian dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extension-center/slovenian-dictionary-pack" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/752/pack-sl.oxt -> ${P}.oxt" + +LICENSE="GPL-3 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-sq/myspell-sq-1.6.4.ebuild b/app-dicts/myspell-sq/myspell-sq-1.6.4.ebuild index f518757d2dac..69b4e5560492 100644 --- a/app-dicts/myspell-sq/myspell-sq-1.6.4.ebuild +++ b/app-dicts/myspell-sq/myspell-sq-1.6.4.ebuild @@ -1,19 +1,13 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MYSPELL_DICT=( "sq_AL.dic" "sq_AL.aff" ) -MYSPELL_HYPH=( -) - -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Albanian dictionaries for myspell/hunspell" @@ -23,6 +17,5 @@ SRC_URI="http://www.shkenca.org/shkarkime/${PN}_AL-${PV}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" S="${WORKDIR}/${PN}_AL-${PV}" diff --git a/app-dicts/myspell-sv/Manifest b/app-dicts/myspell-sv/Manifest index 2faeabb5f2e2..89a5e64e650d 100644 --- a/app-dicts/myspell-sv/Manifest +++ b/app-dicts/myspell-sv/Manifest @@ -1,3 +1,6 @@ DIST myspell-sv-2.14-hyph.oxt 44382 BLAKE2B 2f25cd604c79d51549d47110d06e8877431bd9be521a57e7eeb172817d32b2f11b07e6c1c212c4f6f9d49ce7a4d3b54ecdb18bbab41a7cd26bc3c8de9a553fc1 SHA512 0f71809d2d401bb917037bb50a2fa88ffe825cac081cb14e9378ffeebc447144b733a9d4fd99cc5bc1f1a37835cc880210512ccc79341a4ba8c6cb5dcc38fc40 DIST myspell-sv-2.14-thes.oxt 306542 BLAKE2B 0a5ebf5577e6fb8c492b13529ea904d1aceded3814e97f79e8581c55122cc647e4a32ce2bba148b123f97612aef156c5b6f425e8940d1cf80b808c259eef6fd5 SHA512 e637dc92bfc9bc86ccf10710fac1b036a99b0abc2888d30ea7dbdaca1c3cbec57fd7a184648d922b120a26f7c151b7cc043f783fb35b7e121ae22458f0a72103 +DIST myspell-sv-2.42-dict.oxt 1466823 BLAKE2B 8be0ab5be29dc3d4e3316732992e2a6f37f50fad1035f0913cb069e33fe7c1b453cdb814701512ba75029592dfc7d2548a341018bb7fd3319ce571bc042c4135 SHA512 9aab2a1d0def637195c676e93712c84391f78fd14fefd8a0734099a3957cf99b9b3e0d41bf9cbaf7b6cb6c6aa5de58bc92169b844f0c69343b87483b324423e0 +DIST myspell-sv-2.42-hyph.oxt 51981 BLAKE2B b2b6f1c913019795da532115b04947f143d78fcc9e0e8ee3f12a65841281900a3a8c24e158fa9122da9ce64af3f4d6ed8d0efa02143cb3aeb2db0ec0f011a292 SHA512 2dea472c191dc1992eaf28718e575f9b07526e0acdf511f8359588b118c7fc2578f8b5b53d23eeda34f1391807546ff5a0ba6de088c42588ec94daca4232cf7a +DIST myspell-sv-2.42-thes.oxt 306542 BLAKE2B 0a5ebf5577e6fb8c492b13529ea904d1aceded3814e97f79e8581c55122cc647e4a32ce2bba148b123f97612aef156c5b6f425e8940d1cf80b808c259eef6fd5 SHA512 e637dc92bfc9bc86ccf10710fac1b036a99b0abc2888d30ea7dbdaca1c3cbec57fd7a184648d922b120a26f7c151b7cc043f783fb35b7e121ae22458f0a72103 DIST ooo_swedish_dict_2.14.oxt 1288382 BLAKE2B 54a46792386e794dc836e0178929cdad75e29007ac981aaeeeb74da996d765ff8d737796568576662431c95899824d6460f099c6814fed673844ba295967627b SHA512 77ab715ccb66c7e14ed84189dd0847c809824a3cf0881ee39d08f6d4ef89eccfeafcdbde1759bfa8224650b1907760d9a48f40e464211ae12593ed5525d6372b diff --git a/app-dicts/myspell-sv/myspell-sv-2.42.ebuild b/app-dicts/myspell-sv/myspell-sv-2.42.ebuild new file mode 100644 index 000000000000..370ca80a1eca --- /dev/null +++ b/app-dicts/myspell-sv/myspell-sv-2.42.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "sv_FI.aff" + "sv_FI.dic" + "sv_SE.aff" + "sv_SE.dic" +) + +MYSPELL_HYPH=( + "hyph_sv_SE.dic" +) + +MYSPELL_THES=( + "th_sv_SE.dat" + "th_sv_SE.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Swedish dictionaries for myspell/hunspell" +HOMEPAGE=" + https://extensions.libreoffice.org/extension-center/swedish-spelling-dictionary-den-stora-svenska-ordlistan + https://extensions.libreoffice.org/extension-center/swedish-hyphenation + https://extensions.libreoffice.org/extension-center/swedish-thesaurus-based-on-synlex +" +SRC_URI=" + https://extensions.libreoffice.org/assets/downloads/z/ooo-swedish-dict-2-42.oxt -> ${P}-dict.oxt + https://extensions.libreoffice.org/assets/downloads/z/hyph-sv.oxt -> ${P}-hyph.oxt + https://extensions.libreoffice.org/assets/downloads/z/swedishthesaurus.oxt -> ${P}-thes.oxt +" + +LICENSE="CC-BY-SA-3.0 GPL-2 LGPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +src_prepare () { + default + mv hyph_sv.dic hyph_sv_SE.dic || die +} diff --git a/app-dicts/myspell-sw/Manifest b/app-dicts/myspell-sw/Manifest index 98e26debe53e..8b0e7ee6ae18 100644 --- a/app-dicts/myspell-sw/Manifest +++ b/app-dicts/myspell-sw/Manifest @@ -1 +1,2 @@ DIST myspell-sw-20110106.oxt 423064 BLAKE2B 32e74434714c62b4f5248775ac0ca0262d774a339c84899c822d0099ba1d90830620f748796d246373b566f5b1bbeddbb0b46fd3cf5d9c02168e2f0c18263dbf SHA512 734e760fb3ed95905f7ececc38ad3d4d87f77d5a953e5427d6d242ec73567a35311fea26d1298edb5d1650d6e07a6859c82bff8a6f309d226307873067cc7e98 +DIST swahilidictionary-2013-03-12.oxt 423284 BLAKE2B 0b25ba69bd363234c21049e34a69c8addbe0b56f0b7b7a06108b0007a3fe388629323a6054fdb1e9035a5f4e06d7faffc6eb2d9ce0ae62fb9054571cf0ebe1f8 SHA512 e2980e682263b67179dbadea185c6bfe8e1871adbe62b217d09512e4b673547f8201dfcbe27187bb9eaf4915f456e83da8dfa24427c5bea5aab79354f64e76be diff --git a/app-dicts/myspell-sw/myspell-sw-20130312.ebuild b/app-dicts/myspell-sw/myspell-sw-20130312.ebuild new file mode 100644 index 000000000000..2f5cfdb793f0 --- /dev/null +++ b/app-dicts/myspell-sw/myspell-sw-20130312.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "sw_KE.aff" + "sw_KE.dic" + "sw_TZ.aff" + "sw_TZ.dic" +) + +inherit myspell-r2 + +DESCRIPTION="Kiswahili dictionaries for myspell/hunspell" +LICENSE="LGPL-2.1" +HOMEPAGE="https://extensions.openoffice.org/en/project/swahili-dictionary" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/swahilidictionary-2013-03-12.oxt" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-tn/Manifest b/app-dicts/myspell-tn/Manifest index 910b1c98e846..c81b4c8fda76 100644 --- a/app-dicts/myspell-tn/Manifest +++ b/app-dicts/myspell-tn/Manifest @@ -1 +1,2 @@ +DIST hunspell-tn-2-0-0.oxt 185743 BLAKE2B e583fd22e72e64f3824665faaf69b84bd25bd6944383c2e08a5b0e256a9621c2d0bf620f89cb81ce9b1d58cc94b6ce4d86f21cc3638fea5cf7fc372daf4e52b5 SHA512 4d591985e3c6b176c385c3a8e5f975c6b1b347e2ef070b1b6264a079403963d4eeddb12d5a61fe43b9fb1ec70d4f029a9cde243bfb54b2e8625a6d8229a9cb57 DIST myspell-tn_ZA-20060316.zip 17125 BLAKE2B 74832b044863dd74c4b486d7ad57aec20c3caa32dc87ccecade5b3e19c2ad9fdfd2fd76525eb174e473db7c29c2c71f934f158adb8f40314e5b6d8967b61d869 SHA512 5cf59152ff423686e736356525fd3b35059158b410e8229ea7707597b99b0f5933b4a03f5ba9f851d77d02b7ef06d72b3dd37f690064f1d2d3902c459d0be50d diff --git a/app-dicts/myspell-tn/myspell-tn-20150904.ebuild b/app-dicts/myspell-tn/myspell-tn-20150904.ebuild new file mode 100644 index 000000000000..480bbfa97c56 --- /dev/null +++ b/app-dicts/myspell-tn/myspell-tn-20150904.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "tn_BW.aff" + "tn_BW.dic" +) + +inherit myspell-r2 + +DESCRIPTION="Setswana dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/setswana-spellchecker" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/hunspell-tn-2-0-0.oxt" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-tr/Manifest b/app-dicts/myspell-tr/Manifest new file mode 100644 index 000000000000..e16e2d2531c1 --- /dev/null +++ b/app-dicts/myspell-tr/Manifest @@ -0,0 +1 @@ +DIST oo-turkish-dict-v1-2.oxt 2109286 BLAKE2B 1097492cb0176f0c66d5c22f3de8e1a51aab0a7a9e1b4ce66b8d77c9633eca03ba0917263340b98ad2a85d8dba3ba26c63536250746e7fa46806af61a0ed4e0d SHA512 f3ce6f2250142bfa7835061b74a85c7ea3278a9d51b556571cb45c9078274d6eb44493b19a21f2dc3f2441ef146c858c8b12a04c9a207bff93d9dc21307ce9dd diff --git a/app-dicts/myspell-tr/metadata.xml b/app-dicts/myspell-tr/metadata.xml new file mode 100644 index 000000000000..f0609a5259d1 --- /dev/null +++ b/app-dicts/myspell-tr/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> +<pkgmetadata> + + <origin>gentoo-staging</origin> + <stabilize-allarches/> +</pkgmetadata>
\ No newline at end of file diff --git a/app-dicts/myspell-tr/myspell-tr-1.2.ebuild b/app-dicts/myspell-tr/myspell-tr-1.2.ebuild new file mode 100644 index 000000000000..6269601fc4ab --- /dev/null +++ b/app-dicts/myspell-tr/myspell-tr-1.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "tr_TR.aff" + "tr_TR.dic" +) + +inherit myspell-r2 + +DESCRIPTION="Turkish dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/turkish-spellcheck-dictionary" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/oo-turkish-dict-v1-2.oxt" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +src_prepare() { + default + mv tr-TR.aff tr_TR.aff || die + mv tr-TR.dic tr_TR.dic || die +} diff --git a/app-dicts/myspell-uk/Manifest b/app-dicts/myspell-uk/Manifest index 4730c644c243..5f4aa19139b6 100644 --- a/app-dicts/myspell-uk/Manifest +++ b/app-dicts/myspell-uk/Manifest @@ -1 +1,2 @@ +DIST dict-uk_UA-5.3.1.oxt 1787200 BLAKE2B 1dcc1fc2427f71ba8cc71df0638e8608beba2c3b65aea7ba915b1edfaf0a759c2768d0b6c32f6df5d70feb685f505364e6d9eddfc95a84dbbe7c2f818074922e SHA512 6a1d17a7f7b358eeef84451384f0ad951b70a76070097b7c1519eab79a67da086f9cae9b4e775e8feb723f2b8d77d744890ab5a83e47237e055ac4e5f7374873 DIST dict-uk_ua-1.6.5.oxt 854246 BLAKE2B f8fba14ad3a57279993dc7f98b0084ba9a1f30054ce88747dfe817e3873394643b5365c2bcf9640065ba30263946580f6d510fc22c6cdcd7df6583ce01de2d91 SHA512 e1b74e299909af291e40674a6b783eacd289b16c7419e3311ea153c47520e06db70ff45a497db6d3f1cbe44bff10260e9fa6c7382d7a87e3efb2211ce1cb5ce8 diff --git a/app-dicts/myspell-uk/myspell-uk-5.3.1.ebuild b/app-dicts/myspell-uk/myspell-uk-5.3.1.ebuild new file mode 100644 index 000000000000..7b75abc8fc4a --- /dev/null +++ b/app-dicts/myspell-uk/myspell-uk-5.3.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "uk_UA.aff" + "uk_UA.dic" +) + +MYSPELL_HYPH=( + "hyph_uk_UA.dic" +) + +MYSPELL_THES=( + "th_uk_UA.dat" + "th_uk_UA.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Ukrainian dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extension-center/ukrainian-spelling-dictionary-and-thesaurus" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/521/dict-uk_UA-5.3.1.oxt" + +LICENSE="GPL-3 LGPL-2.1 MPL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" diff --git a/app-dicts/myspell-zu/myspell-zu-20100126.ebuild b/app-dicts/myspell-zu/myspell-zu-20100126.ebuild index cceb7046647e..1473e1239761 100644 --- a/app-dicts/myspell-zu/myspell-zu-20100126.ebuild +++ b/app-dicts/myspell-zu/myspell-zu-20100126.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MY_PV=${PV::4}.${PV:4:2}.${PV:6} @@ -10,12 +10,6 @@ MYSPELL_DICT=( "zu_ZA.dic" ) -MYSPELL_HYPH=( -) - -MYSPELL_THES=( -) - inherit myspell-r2 DESCRIPTION="Zulu dictionaries for myspell/hunspell" @@ -25,4 +19,3 @@ SRC_URI="mirror://sourceforge/aoo-extensions/dict-zu_za-${MY_PV}.oxt -> ${P}.oxt SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="" diff --git a/app-editors/emacs/emacs-27.2.ebuild b/app-editors/emacs/emacs-27.2.ebuild index 34b8dd062d84..b5355a44356d 100644 --- a/app-editors/emacs/emacs-27.2.ebuild +++ b/app-editors/emacs/emacs-27.2.ebuild @@ -33,7 +33,7 @@ else fi SLOT="${PV%%.*}" [[ ${PV} == *.*.* ]] && SLOT+="-vcs" - KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" fi DESCRIPTION="The extensible, customizable, self-documenting real-time display editor" diff --git a/app-emulation/cloud-init/Manifest b/app-emulation/cloud-init/Manifest index d58fd680a08b..e01f048a6070 100644 --- a/app-emulation/cloud-init/Manifest +++ b/app-emulation/cloud-init/Manifest @@ -1,2 +1,3 @@ DIST cloud-init-20.1.tar.gz 1088152 BLAKE2B 1c075676bcf7454965beafaaa38f3cdf08f321ddd0303b7f710c49d2a69e0fb2ec8a81870a632b7504c47af6436555c97ea9fa9c8416955de78f8f551b5509b7 SHA512 ad28e4a0290165308ef2cdb8a935778ad99039978a204bee1098460de006bc3f375a3b81d0d72971fc4f4195d5d2ade9c648fb19e6d6eba12decf750dc54b6eb DIST cloud-init-20.4.tar.gz 1228898 BLAKE2B c5697af31e7219a060a82732fbae2e89dd00786e5b0feb638f1f64f6ce861df041ef687a6095cc3bdb5478f4f4c1504286155808102aea9cae853caa97d4ba1b SHA512 da2fa4673b253468380c4472795fd449809c8ac84d8f13ec1472b9b7e7d54e187ae06e5a81a36774793b05f4e1212dca57bc19aa8955b4c7fa7183cb100bfbb9 +DIST cloud-init-21.2.tar.gz 1278878 BLAKE2B 74e07649a24fc85df54aafcd72797a05f0bdbcceb90fe90c6af7024da09e876780b67bb1d7963cd164d03e3151715944b1f3fd5709d3557ac341a09061409fcc SHA512 8cc24945efc6f16b3c64411c5e7e5b83582d337f1c3f546163d52c14a6177ff752e91ba1fec04b7ade800f921c2b79c04d032df62c2b4171930ca1fb74c49a7d diff --git a/app-emulation/cloud-init/cloud-init-21.2.ebuild b/app-emulation/cloud-init/cloud-init-21.2.ebuild new file mode 100644 index 000000000000..4cd7aa353a31 --- /dev/null +++ b/app-emulation/cloud-init/cloud-init-21.2.ebuild @@ -0,0 +1,96 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +if [[ ${PV} == *9999 ]];then + inherit git-r3 + EGIT_REPO_URI="https://git.launchpad.net/cloud-init" +else + SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +DESCRIPTION="Cloud instance initialisation magic" +HOMEPAGE="https://launchpad.net/cloud-init" + +LICENSE="GPL-3" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +CDEPEND=" + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/oauthlib[${PYTHON_USEDEP}] + dev-python/pyserial[${PYTHON_USEDEP}] + >=dev-python/configobj-5.0.2[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/jsonpatch[${PYTHON_USEDEP}] + dev-python/jsonschema[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +DEPEND=" + test? ( + ${CDEPEND} + >=dev-python/httpretty-0.7.1[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/unittest2[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/contextlib2[${PYTHON_USEDEP}] + ) +" +RDEPEND=" + ${CDEPEND} + net-analyzer/macchanger + sys-apps/iproute2 + sys-fs/growpart + virtual/logger +" + +PATCHES=( + # Fix Gentoo support + # https://code.launchpad.net/~gilles-dartiguelongue/cloud-init/+git/cloud-init/+merge/358777 + "${FILESDIR}/${PN}-18.4-fix-packages-module.patch" + "${FILESDIR}/${PN}-21.2-gentoo-support-upstream-templates.patch" + "${FILESDIR}"/18.4-fix-filename-for-storing-locale.patch + "${FILESDIR}"/18.4-fix-update_package_sources-function.patch + "${FILESDIR}"/18.4-add-support-for-package_upgrade.patch +) + +python_prepare_all() { + # Fix location of documentation installation + sed -i "s:USR + '/share/doc/cloud-init:USR + '/share/doc/${PF}:" setup.py || die + sed -i 's/version=get_version(),/version=9999,/g' setup.py || die + distutils-r1_python_prepare_all +} + +python_test() { + # Do not use Makefile target as it does not setup environment correclty + esetup.py nosetests -v --where cloudinit --where tests/unittests || die +} + +python_install() { + distutils-r1_python_install --init-system=sysvinit_openrc,systemd --distro gentoo +} + +python_install_all() { + keepdir /etc/cloud + + distutils-r1_python_install_all + + # installs as non-executable + chmod +x "${D}"/etc/init.d/* +} + +pkg_postinst() { + elog "cloud-init-local needs to be run in the boot runlevel because it" + elog "modifies services in the default runlevel. When a runlevel is started" + elog "it is cached, so modifications that happen to the current runlevel" + elog "while you are in it are not acted upon." +} diff --git a/app-emulation/cloud-init/cloud-init-9999.ebuild b/app-emulation/cloud-init/cloud-init-9999.ebuild index 4ec7a522d9b3..4cd7aa353a31 100644 --- a/app-emulation/cloud-init/cloud-init-9999.ebuild +++ b/app-emulation/cloud-init/cloud-init-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ if [[ ${PV} == *9999 ]];then EGIT_REPO_URI="https://git.launchpad.net/cloud-init" else SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="~amd64 ~arm64 ~x86" fi DESCRIPTION="Cloud instance initialisation magic" @@ -57,7 +57,7 @@ PATCHES=( # Fix Gentoo support # https://code.launchpad.net/~gilles-dartiguelongue/cloud-init/+git/cloud-init/+merge/358777 "${FILESDIR}/${PN}-18.4-fix-packages-module.patch" - "${FILESDIR}/${PN}-20.1-gentoo-support-upstream-templates.patch" + "${FILESDIR}/${PN}-21.2-gentoo-support-upstream-templates.patch" "${FILESDIR}"/18.4-fix-filename-for-storing-locale.patch "${FILESDIR}"/18.4-fix-update_package_sources-function.patch "${FILESDIR}"/18.4-add-support-for-package_upgrade.patch diff --git a/app-emulation/cloud-init/files/cloud-init-21.2-gentoo-support-upstream-templates.patch b/app-emulation/cloud-init/files/cloud-init-21.2-gentoo-support-upstream-templates.patch new file mode 100644 index 000000000000..fb4eed77fcbc --- /dev/null +++ b/app-emulation/cloud-init/files/cloud-init-21.2-gentoo-support-upstream-templates.patch @@ -0,0 +1,101 @@ +From 823454f1ea140ec47f5f9c5c3c5ad62eb458eb8a Mon Sep 17 00:00:00 2001 +From: Gilles Dartiguelongue <eva@gentoo.org> +Date: Wed, 24 Oct 2018 10:52:46 +0200 +Subject: [PATCH 2/5] Add support for gentoo in cloud.cfg and templates + +--- + config/cloud.cfg.tmpl | 8 ++++++-- + templates/hosts.gentoo.tmpl | 24 ++++++++++++++++++++++++ + tools/render-cloudcfg | 2 +- + 3 files changed, 31 insertions(+), 3 deletions(-) + create mode 100644 templates/hosts.gentoo.tmpl + +diff --git a/config/cloud.cfg.tmpl b/config/cloud.cfg.tmpl +index 1fef133a..3f5a41a2 100644 +--- a/config/cloud.cfg.tmpl ++++ b/config/cloud.cfg.tmpl +@@ -134,7 +134,7 @@ cloud_final_modules: + # (not accessible to handlers/transforms) + system_info: + # This will affect which distro class gets used +-{% if variant in ["alpine", "amazon", "arch", "centos", "debian", +- "fedora", "freebsd", "netbsd", "openbsd", "rhel", +- "suse", "ubuntu"] %} ++{% if variant in ["alpine", "amazon", "arch", "centos", "debian", ++ "fedora", "freebsd", "gentoo", "netbsd", ++ "openbsd", "rhel", "suse", "ubuntu"] %} + distro: {{ variant }} + {% else %} + # Unknown/fallback distro. +@@ -172,7 +172,7 @@ system_info: + primary: http://ports.ubuntu.com/ubuntu-ports + security: http://ports.ubuntu.com/ubuntu-ports + ssh_svcname: ssh +-{% elif variant in ["alpine", "amazon", "arch", "centos", "fedora", +- "rhel", "suse"] %} ++{% elif variant in ["alpine", "amazon", "arch", "centos", "fedora", ++ "gentoo", "rhel", "suse"] %} + # Default user name + that default users groups (if added/used) + default_user: + name: {{ variant }} +@@ -180,6 +180,10 @@ system_info: + {% endif %} + {% if variant == "suse" %} + groups: [cdrom, users] ++{% elif variant == "gentoo" %} ++ groups: [users, wheel] ++ primary_group: users ++ no_user_group: true + {% elif variant == "arch" %} + groups: [wheel, users] + {% else %} +diff --git a/templates/hosts.gentoo.tmpl b/templates/hosts.gentoo.tmpl +new file mode 100644 +index 00000000..cd045fa6 +--- /dev/null ++++ b/templates/hosts.gentoo.tmpl +@@ -0,0 +1,24 @@ ++## template:jinja ++{# ++This file /etc/cloud/templates/hosts.gentoo.tmpl is only utilized ++if enabled in cloud-config. Specifically, in order to enable it ++you need to add the following to config: ++ manage_etc_hosts: True ++-#} ++# Your system has configured 'manage_etc_hosts' as True. ++# As a result, if you wish for changes to this file to persist ++# then you will need to either ++# a.) make changes to the master file in /etc/cloud/templates/hosts.gentoo.tmpl ++# b.) change or remove the value of 'manage_etc_hosts' in ++# /etc/cloud/cloud.cfg or cloud-config from user-data ++# ++# The following lines are desirable for IPv4 capable hosts ++127.0.0.1 {{fqdn}} {{hostname}} ++127.0.0.1 localhost.localdomain localhost ++127.0.0.1 localhost4.localdomain4 localhost4 ++ ++# The following lines are desirable for IPv6 capable hosts ++::1 {{fqdn}} {{hostname}} ++::1 localhost.localdomain localhost ++::1 localhost6.localdomain6 localhost6 ++ +diff --git a/tools/render-cloudcfg b/tools/render-cloudcfg +index 8b7cb875..d109044e 100755 +--- a/tools/render-cloudcfg ++++ b/tools/render-cloudcfg +@@ -4,7 +4,7 @@ import argparse + import os + import sys + +-VARIANTS = ["alpine", "amazon", "arch", "centos", "debian", "fedora", +- "freebsd", "netbsd", "openbsd", "rhel", "suse", "ubuntu", +- "unknown"] ++VARIANTS = ["alpine", "amazon", "arch", "centos", "debian", "fedora", ++ "freebsd", "gentoo", "netbsd", "openbsd", "rhel", "suse", ++ "ubuntu", "unknown"] + + if "avoid-pep8-E402-import-not-top-of-file": + _tdir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) +-- +2.19.1 + diff --git a/app-emulation/fuse/fuse-1.6.0.ebuild b/app-emulation/fuse/fuse-1.6.0.ebuild index e1cb4cf10b8b..f7232c881e13 100644 --- a/app-emulation/fuse/fuse-1.6.0.ebuild +++ b/app-emulation/fuse/fuse-1.6.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="alsa ao backend-X backend-fbcon +backend-gtk3 backend-sdl backend-svga gpm joystick memlimit png -pulseaudio +xml +zlib" +IUSE="alsa ao backend-X backend-fbcon +backend-gtk3 backend-sdl backend-svga gpm joystick memlimit png pulseaudio +xml +zlib" # TODO: # - allow using sdl audio driver without using for the UI diff --git a/app-emulation/nemu/nemu-2.5.0.ebuild b/app-emulation/nemu/nemu-2.5.0.ebuild index 5bd8dd55f4c8..a9bc2ac75bbe 100644 --- a/app-emulation/nemu/nemu-2.5.0.ebuild +++ b/app-emulation/nemu/nemu-2.5.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/nemuTUI/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.g LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="dbus network-map +ovf +savevm spice +vnc-client" RDEPEND=" diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest index cddc6df7345c..b81b36693a60 100644 --- a/app-forensics/lynis/Manifest +++ b/app-forensics/lynis/Manifest @@ -1 +1 @@ -DIST lynis-3.0.3.tar.gz 331182 BLAKE2B 7b424da8726e474992bcf6b13b6b82b48568b2d1f4268d0cb57f11560c4edbcd60d009c67fd333445392a184f1dbe38a55fde7cb7456498f89c451bc51ba3e8f SHA512 850f832fd45a2e440973c414f2c98caf3add1666573f60ea70bf36f57dbf3ac1b354632f09271b34f85eba25079e564d758e237dcded743a132da771c5bce151 +DIST lynis-3.0.4.tar.gz 332004 BLAKE2B a68d85d679aae19304edc2ea7a982686d03897d806a7b44ca4c5318d8aa753a8b41b5ec2d80fbcda4bf69d35b5a6a0497b42d9b68c869763b09bfcb4922f5f83 SHA512 0e31cab00302678019d4a3d617e376fa1e8ca981b5eeb5dd22ce6f821f33957db351a4cd81a06f44eb0a8ca5094b1a5c062021c637b37e848ed0451de0f6c7c4 diff --git a/app-forensics/lynis/lynis-3.0.3.ebuild b/app-forensics/lynis/lynis-3.0.3.ebuild deleted file mode 100644 index f8eca98da98e..000000000000 --- a/app-forensics/lynis/lynis-3.0.3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit bash-completion-r1 - -DESCRIPTION="Security and system auditing tool" -HOMEPAGE="https://cisofy.com/lynis/" -SRC_URI="https://cisofy.com/files/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="app-shells/bash" - -S="${WORKDIR}/${PN}" - -src_install() { - doman lynis.8 - dodoc FAQ README - newdoc CHANGELOG.md CHANGELOG - - # Remove the old one during the next stabilize progress - exeinto /etc/cron.daily - newexe "${FILESDIR}"/lynis.cron-new lynis - - dobashcomp extras/bash_completion.d/lynis - - # stricter default perms - bug 507436 - diropts -m0700 - insopts -m0600 - - insinto /usr/share/${PN} - doins -r db/ include/ plugins/ - - dosbin lynis - - insinto /etc/${PN} - doins default.prf -} - -pkg_postinst() { - einfo - einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis." - einfo -} diff --git a/app-forensics/lynis/lynis-3.0.3-r2.ebuild b/app-forensics/lynis/lynis-3.0.4.ebuild index 0de67b2421e8..0de67b2421e8 100644 --- a/app-forensics/lynis/lynis-3.0.3-r2.ebuild +++ b/app-forensics/lynis/lynis-3.0.4.ebuild diff --git a/app-i18n/librime/librime-1.7.3.ebuild b/app-i18n/librime/librime-1.7.3.ebuild index 5339fe327172..0cfa7aec1dfd 100644 --- a/app-i18n/librime/librime-1.7.3.ebuild +++ b/app-i18n/librime/librime-1.7.3.ebuild @@ -22,7 +22,7 @@ fi LICENSE="BSD" SLOT="0/1-${PV}" -KEYWORDS="amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="debug test" RESTRICT="!test? ( test )" diff --git a/app-misc/gcstar/gcstar-1.7.1-r1.ebuild b/app-misc/gcstar/gcstar-1.7.1-r2.ebuild index ea98b214b1e1..a56f85b253e0 100644 --- a/app-misc/gcstar/gcstar-1.7.1-r1.ebuild +++ b/app-misc/gcstar/gcstar-1.7.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -39,7 +39,7 @@ RDEPEND="dev-lang/perl mp3? ( dev-perl/MP3-Info dev-perl/MP3-Tag ) spell? ( dev-perl/gtk2-spell ) stats? ( dev-perl/Date-Calc - dev-perl/GD[png,truetype] ) + dev-perl/GD[png(+),truetype(+)] ) tellico? ( virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 ) vorbis? ( dev-perl/Ogg-Vorbis-Header-PurePerl )" diff --git a/app-office/gnucash/gnucash-4.4.ebuild b/app-office/gnucash/gnucash-4.4.ebuild index bb5adabecf94..2dd5306f9078 100644 --- a/app-office/gnucash/gnucash-4.4.ebuild +++ b/app-office/gnucash/gnucash-4.4.ebuild @@ -17,7 +17,7 @@ LICENSE="GPL-2" KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86" IUSE="aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres - python quotes -register2 smartcard sqlite test" + python quotes register2 smartcard sqlite test" RESTRICT="!test? ( test )" # Examples doesn't build unless GUI is also built diff --git a/app-office/gnucash/gnucash-4.5.ebuild b/app-office/gnucash/gnucash-4.5.ebuild index 3a4ef8b4701b..61d7577d215a 100644 --- a/app-office/gnucash/gnucash-4.5.ebuild +++ b/app-office/gnucash/gnucash-4.5.ebuild @@ -16,7 +16,7 @@ LICENSE="GPL-2" KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86" IUSE="aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres - python quotes -register2 smartcard sqlite test" + python quotes register2 smartcard sqlite test" RESTRICT="!test? ( test )" # Examples doesn't build unless GUI is also built diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest index 188c8dca2f33..d866b5780118 100644 --- a/app-portage/gemato/Manifest +++ b/app-portage/gemato/Manifest @@ -1,3 +1 @@ -DIST gemato-15.2.tar.gz 72679 BLAKE2B 83e28fa3bc83976538610fec87c3a31e91a18847c107dc7793e16b5421eba69f7b60f8f05195f345ef6f4f8486203e4acbc01bad706b55c20a11480e85a3420c SHA512 5a98040dab0beac64e5e54bd54c6565cd301399709beda9e030ae9206111caf9e792260aa3c6586040060d4be71df3f1368e7554dff6affaa899c4157116faf3 -DIST gemato-16.1.tar.gz 79946 BLAKE2B 54452ae113cee98f5c8f9ebc880b4ae424510766eb7cd8bc2775c85573388005343061aa9de8f505a72ee92801756f3cb7b67dfd39d9923d0030a4da301f7ce2 SHA512 df21eb8784cc6724874e38ba0192e1e5657483aa031656855fc0c2396179f7352f9450df6b41205425214cf70f2c812a7ee6f55a25334f0fd012b7e710c1de2c DIST gemato-16.2.tar.gz 80178 BLAKE2B c973c36bb1277d07618ba8d90f7d6820508d78aedae200f0678c8b2e1dde38e3b7f4d7dc24791dedb9c88791d3b71711c9bdeb749b5fc091a20aa87f71ad70d3 SHA512 9d59ba360afaf237e47c5ded0e5bc29ec44d5b1d73eadadc19ff834a1966e1e620da258eb7a1b6afbff5c66cbd7e39454fd5920f2f82fc510c2f8836c0b80462 diff --git a/app-portage/gemato/gemato-15.2.ebuild b/app-portage/gemato/gemato-15.2.ebuild deleted file mode 100644 index 6d10bb223dcc..000000000000 --- a/app-portage/gemato/gemato-15.2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 ) -PYTHON_REQ_USE='threads(+)' - -inherit distutils-r1 - -DESCRIPTION="Stand-alone Manifest generation & verification tool" -HOMEPAGE="https://github.com/mgorny/gemato" -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux" -IUSE="+gpg tools" - -RDEPEND=" - gpg? ( - >=app-crypt/gnupg-2.2.20-r1 - dev-python/requests[${PYTHON_USEDEP}] - )" -BDEPEND=" - test? ( - >=app-crypt/gnupg-2.2.20-r1 - >=dev-python/pytest-5[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/responses[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -python_install_all() { - distutils-r1_python_install_all - - if use tools; then - exeinto /usr/share/gemato - doexe utils/*.{bash,py} - fi -} diff --git a/app-portage/gemato/gemato-16.1.ebuild b/app-portage/gemato/gemato-16.1.ebuild deleted file mode 100644 index 969a38a894b3..000000000000 --- a/app-portage/gemato/gemato-16.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 ) -PYTHON_REQ_USE='threads(+)' - -inherit distutils-r1 - -DESCRIPTION="Stand-alone Manifest generation & verification tool" -HOMEPAGE="https://github.com/mgorny/gemato" -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux" -IUSE="+gpg tools" - -RDEPEND=" - gpg? ( - >=app-crypt/gnupg-2.2.20-r1 - dev-python/requests[${PYTHON_USEDEP}] - )" -BDEPEND=" - test? ( - >=app-crypt/gnupg-2.2.20-r1 - >=dev-python/pytest-5[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/responses[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -python_install_all() { - distutils-r1_python_install_all - - if use tools; then - exeinto /usr/share/gemato - doexe utils/*.{bash,py} - fi -} diff --git a/app-portage/gemato/gemato-16.2.ebuild b/app-portage/gemato/gemato-16.2.ebuild index f892825da7e8..22e8052fc63d 100644 --- a/app-portage/gemato/gemato-16.2.ebuild +++ b/app-portage/gemato/gemato-16.2.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 ) PYTHON_REQ_USE='threads(+)' diff --git a/app-portage/gemato/gemato-9999.ebuild b/app-portage/gemato/gemato-9999.ebuild index a0fe08079f07..7c46f981f2ba 100644 --- a/app-portage/gemato/gemato-9999.ebuild +++ b/app-portage/gemato/gemato-9999.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 ) PYTHON_REQ_USE='threads(+)' diff --git a/app-text/sword-modules/sword-modules-2.3.ebuild b/app-text/sword-modules/sword-modules-2.3.ebuild index c69774346873..a010666f5900 100644 --- a/app-text/sword-modules/sword-modules-2.3.ebuild +++ b/app-text/sword-modules/sword-modules-2.3.ebuild @@ -11,7 +11,7 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" LANGS=" af ar az be bea bg bla br ch chr ckb cop cs cu cy da de el en eo es et eu fa fi fr ga gd gez got grc gv he hi hr ht hu hy it ja kek kk km ko kpg ktu la ln lt lv mg mi ml mn my nb nd nl nn pl pon pot ppk prs pt rmq ro ru sl sml sn so sq sr sv sw syr th tl tlh tr tsg ug uk ur vi vls zh" -IUSE="-esoteric ${LANGS// / l10n_}" +IUSE="esoteric ${LANGS// / l10n_}" RDEPEND=" || ( app-dicts/sword-Eusebian_num app-dicts/sword-Eusebian_vs ) diff --git a/app-text/xapian-omega/xapian-omega-1.4.18.ebuild b/app-text/xapian-omega/xapian-omega-1.4.18.ebuild index d14660eaed5a..c3cf578974f8 100644 --- a/app-text/xapian-omega/xapian-omega-1.4.18.ebuild +++ b/app-text/xapian-omega/xapian-omega-1.4.18.ebuild @@ -10,7 +10,7 @@ S="${WORKDIR}/xapian-omega-${PV}" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86" IUSE="" DEPEND="~dev-libs/xapian-1.4.18:0/30 diff --git a/dev-ada/gnatcoll-core/Manifest b/dev-ada/gnatcoll-core/Manifest index d6fb26ddb5a8..d230879259d9 100644 --- a/dev-ada/gnatcoll-core/Manifest +++ b/dev-ada/gnatcoll-core/Manifest @@ -1 +1,2 @@ DIST gnatcoll-core-2020-20200429-19B7C-src.tar.gz 1396475 BLAKE2B 329e7f799ad62dfc6f71ca78a736bfc8c768a576f817d03b0d73e25b6e97ae0de0ad5a055bb800f7b83d7449ef8fe703c2779f73fc13a09bbcc1d3d8cc880fd1 SHA512 320878335f2ea1ce91a7770cc181e9cc228c80b1f7a3926a4e27c3822eb8f58726c62a014e2fa4c3f8699851ea87424be26d619ab4931b2e969e3a2e96e58b73 +DIST gnatcoll-core-2021-20210518-19ADF-src.tar.gz 1460647 BLAKE2B 42954ed9dfc41914f34973fcfe950b4415af455d8319e802a213994107c7d7a45a6a42b2d260f165fe5ec6589873a7a2c75665b68b97431b13d7694f48273b8c SHA512 6a58920a057dee656df9f64f610f9f1398bc3cbc4ed74a740e8693f2b45da83628c3ce8f76f624bdb101d348603a24bccb47aa770ade1ffbf24da806f4d1de20 diff --git a/dev-ada/gnatcoll-core/gnatcoll-core-2020-r1.ebuild b/dev-ada/gnatcoll-core/gnatcoll-core-2020-r1.ebuild index 625f0692fdc0..b7350caaeb9f 100644 --- a/dev-ada/gnatcoll-core/gnatcoll-core-2020-r1.ebuild +++ b/dev-ada/gnatcoll-core/gnatcoll-core-2020-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -ADA_COMPAT=( gnat_201{6,7,8,9} gnat_2020 ) +ADA_COMPAT=( gnat_201{6..9} gnat_2020 ) inherit ada multiprocessing MYP=${P}-20200429-19B7C diff --git a/dev-ada/gnatcoll-core/gnatcoll-core-2021.ebuild b/dev-ada/gnatcoll-core/gnatcoll-core-2021.ebuild new file mode 100644 index 000000000000..37e4d267930d --- /dev/null +++ b/dev-ada/gnatcoll-core/gnatcoll-core-2021.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +ADA_COMPAT=( gnat_202{0..1} ) +inherit ada multiprocessing + +MYP=${P}-${PV}0518-19ADF +ADAMIRROR=https://community.download.adacore.com/v1 +ID=425b044d5cb112f096c7ac5ebbafb0d8e5297913 + +DESCRIPTION="GNAT Component Collection Core packages" +HOMEPAGE="http://libre.adacore.com" +SRC_URI="${ADAMIRROR}/${ID}?filename=${MYP}-src.tar.gz -> ${MYP}-src.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+shared static-libs static-pic" + +RDEPEND=" + >=dev-ada/libgpr-2021[${ADA_USEDEP},shared?,static-libs?,static-pic?] +" +DEPEND="${RDEPEND} + dev-ada/gprbuild[${ADA_USEDEP}]" + +REQUIRED_USE="${ADA_REQUIRED_USE}" + +S="${WORKDIR}"/${MYP}-src + +PATCHES=( "${FILESDIR}"/${PN}-2018-gentoo.patch ) + +src_prepare() { + default + sed -i \ + -e "s:@GNATLS@:${GNATLS}:g" \ + src/gnatcoll-projects.ads \ + || die +} + +src_configure() { + emake setup +} + +src_compile() { + build () { + gprbuild -p -m -j$(makeopts_jobs) \ + -XBUILD=PROD -v -XGNATCOLL_VERSION=${PV} \ + -XLIBRARY_TYPE=$1 -XXMLADA_BUILD=$* -XGPR_BUILD=$1 \ + gnatcoll.gpr -cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} || die + } + if use shared; then + build relocatable + fi + if use static-pic; then + build static-pic + fi + if use static-libs; then + build static + fi +} + +src_install() { + if use shared; then + emake prefix="${D}"/usr install-relocatable + fi + if use static-pic; then + emake prefix="${D}"/usr install-static-pic + fi + if use static-libs; then + emake prefix="${D}"/usr install-static + fi + rm -r "${D}"/usr/share/gpr/manifests || die + einstalldocs +} diff --git a/dev-db/mycli/Manifest b/dev-db/mycli/Manifest index c90950a0d659..35d77ffde0d9 100644 --- a/dev-db/mycli/Manifest +++ b/dev-db/mycli/Manifest @@ -1 +1,2 @@ DIST mycli-1.22.2_p20201026.tar.gz 269338 BLAKE2B 42f4349e65a43829691fd7fa0fa1a57968cf34ffba04156ae221d7a2713179826fc09903e45b6f05fbf05688f956a9cd95e87393179992378766b3a3a6ef9c6e SHA512 70d68d7517322b28783c324d463664c2794ba26cc78e0eee056891ce43dbce57c4dd9c13982ac2976af07ff1fa3d4552cb22bf42b9c7885c93483ba86b873636 +DIST mycli-1.24.1.tar.gz 275983 BLAKE2B cc03ebd0f4de1fabbd1c186139aac04a50d01529190972cac63765a4d3e688e994c112d001489bf1dfb17541370e0c348a368d85a86b7eed335b775b96897765 SHA512 5f8ffb98fd285d2e556bef7cefdc77588983c0028c7c24084710633fb469ae3c5ab2232ca23e87406d44d87e503c113039e6884ec9efd603f45b3ab7ed7c0925 diff --git a/dev-db/mycli/mycli-1.24.1.ebuild b/dev-db/mycli/mycli-1.24.1.ebuild new file mode 100644 index 000000000000..4da22b8f36a6 --- /dev/null +++ b/dev-db/mycli/mycli-1.24.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +DISTUTILS_SINGLE_IMPL=yes +inherit distutils-r1 + +MY_PV=$(ver_cut 1-3) +S="${WORKDIR}/${PN}-${MY_PV}" + +DESCRIPTION="CLI for MySQL Database with auto-completion and syntax highlighting" +HOMEPAGE="https://www.mycli.net" +SRC_URI="https://github.com/dbcli/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ssh" + +RDEPEND=" + $(python_gen_cond_dep ' + >=dev-python/cli_helpers-2.0.1[${PYTHON_USEDEP}] + >=dev-python/click-7.0[${PYTHON_USEDEP}] + >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}] + >=dev-python/cryptography-1.0.0[${PYTHON_USEDEP}] + >=dev-python/prompt_toolkit-3.0.0[${PYTHON_USEDEP}] + <dev-python/prompt_toolkit-4.0.0[${PYTHON_USEDEP}] + dev-python/pyaes[${PYTHON_USEDEP}] + >=dev-python/pygments-2.0[${PYTHON_USEDEP}] + >=dev-python/pymysql-0.9.2[${PYTHON_USEDEP}] + dev-python/pyperclip[${PYTHON_USEDEP}] + >=dev-python/sqlparse-0.3.0[${PYTHON_USEDEP}] + <dev-python/sqlparse-0.5.0[${PYTHON_USEDEP}] + ssh? ( dev-python/paramiko[${PYTHON_USEDEP}] )') +" +distutils_enable_tests pytest + +PATCHES=( "${FILESDIR}/mycli-1.21.1-fix-test-install.patch" ) + +python_test() { + epytest --capture=sys \ + --doctest-modules \ + --doctest-ignore-import-errors \ + --ignore=setup.py \ + --ignore=mycli/magic.py \ + --ignore=mycli/packages/parseutils.py \ + --ignore=test/features \ + --ignore=mycli/packages/paramiko_stub/__init__.py +} diff --git a/dev-db/mycli/mycli-9999.ebuild b/dev-db/mycli/mycli-9999.ebuild index a9f1d80bf1ea..753836d98949 100644 --- a/dev-db/mycli/mycli-9999.ebuild +++ b/dev-db/mycli/mycli-9999.ebuild @@ -25,15 +25,14 @@ RDEPEND=" >=dev-python/cryptography-1.0.0[${PYTHON_USEDEP}] >=dev-python/prompt_toolkit-3.0.0[${PYTHON_USEDEP}] <dev-python/prompt_toolkit-4.0.0[${PYTHON_USEDEP}] + dev-python/pyaes[${PYTHON_USEDEP}] >=dev-python/pygments-2.0[${PYTHON_USEDEP}] >=dev-python/pymysql-0.9.2[${PYTHON_USEDEP}] + dev-python/pyperclip[${PYTHON_USEDEP}] >=dev-python/sqlparse-0.3.0[${PYTHON_USEDEP}] <dev-python/sqlparse-0.5.0[${PYTHON_USEDEP}] ssh? ( dev-python/paramiko[${PYTHON_USEDEP}] )') " -BDEPEND=" - test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]') )" - distutils_enable_tests pytest PATCHES=( "${FILESDIR}/mycli-1.21.1-fix-test-install.patch" ) diff --git a/dev-db/pgbouncer/pgbouncer-1.15.0.ebuild b/dev-db/pgbouncer/pgbouncer-1.15.0.ebuild index f1d854b8b322..584e135f9540 100644 --- a/dev-db/pgbouncer/pgbouncer-1.15.0.ebuild +++ b/dev-db/pgbouncer/pgbouncer-1.15.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://www.pgbouncer.org/downloads/files/${PV}/pgbouncer-${PV}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86" -IUSE="+c-ares debug doc pam ssl systemd -udns" +IUSE="+c-ares debug doc pam ssl systemd udns" # At-most-one-of, one can be enabled but not both REQUIRED_USE="?? ( c-ares udns )" diff --git a/dev-games/mygui/mygui-3.2.2.ebuild b/dev-games/mygui/mygui-3.2.2.ebuild index dc3766716faf..8d9f41e07cc2 100644 --- a/dev-games/mygui/mygui-3.2.2.ebuild +++ b/dev-games/mygui/mygui-3.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -16,7 +16,7 @@ SRC_URI="https://github.com/MyGUI/mygui/archive/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" -IUSE="debug doc +ogre -opengl plugins samples static-libs test tools l10n_ru" +IUSE="debug doc +ogre opengl plugins samples static-libs test tools l10n_ru" RESTRICT="!test? ( test )" REQUIRED_USE="ogre? ( !opengl ) opengl? ( !ogre )" diff --git a/dev-games/mygui/mygui-3.4.0.ebuild b/dev-games/mygui/mygui-3.4.0.ebuild index 896d211683f2..ab008898965f 100644 --- a/dev-games/mygui/mygui-3.4.0.ebuild +++ b/dev-games/mygui/mygui-3.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,7 +17,7 @@ SRC_URI="https://github.com/MyGUI/mygui/archive/${MY_P}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="debug doc +ogre -opengl plugins samples static-libs test tools l10n_ru" +IUSE="debug doc +ogre opengl plugins samples static-libs test tools l10n_ru" RESTRICT="!test? ( test )" REQUIRED_USE="ogre? ( !opengl ) opengl? ( !ogre )" diff --git a/dev-java/jdbc-mysql/jdbc-mysql-8.0.25.ebuild b/dev-java/jdbc-mysql/jdbc-mysql-8.0.25.ebuild index 84cd206cdcc2..417722c0319f 100644 --- a/dev-java/jdbc-mysql/jdbc-mysql-8.0.25.ebuild +++ b/dev-java/jdbc-mysql/jdbc-mysql-8.0.25.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://repo1.maven.org/maven2/mysql/mysql-connector-java/${PV}/mysql-c LICENSE="GPL-2-with-MySQL-FLOSS-exception" SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" +KEYWORDS="amd64 ppc64 x86" # Common dependencies # POM: mysql-connector-java-${PV}.pom.xml diff --git a/dev-libs/concurrencykit/Manifest b/dev-libs/concurrencykit/Manifest index c0d171d83c16..30c95878f4cd 100644 --- a/dev-libs/concurrencykit/Manifest +++ b/dev-libs/concurrencykit/Manifest @@ -1 +1,2 @@ DIST concurrencykit-0.7.0.tar.gz 245574 BLAKE2B 14c386eb35c76297933d2935cdfc1cb0d21071d4fe1784eeb27595c2e75a8edc5add349df6795d03372b30711cda4deeb7957bdcfd7e62ba89b254fb41ba6a55 SHA512 509fe5bc1575a6fd646d30fbcd74204ba4683092f154dc1fb55ed6fc17e734e17759bacfc3f42344db4c243ca6b239f7d207cf2ebc609e2a37d7ddfd1bdcc3a1 +DIST concurrencykit-0.7.1.tar.gz 252802 BLAKE2B 907db3b244544a9c46db7432f2c3d07c20652882067157974ce54c71c27f21fdc87d41e068efc71f88392a94895e0de1a8f3ae90605b4267606cfa7d29c7dc35 SHA512 48768e7adf05b818f2951b246c90185071d6c3f874218349183d96b7887830f9505f9fa58576e9933862486e8543097df0ee667518009a3946d1edc19fc253f7 diff --git a/dev-libs/concurrencykit/concurrencykit-0.7.1.ebuild b/dev-libs/concurrencykit/concurrencykit-0.7.1.ebuild new file mode 100644 index 000000000000..489b1bab3ea6 --- /dev/null +++ b/dev-libs/concurrencykit/concurrencykit-0.7.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +MY_PN="ck" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A library with concurrency related algorithms and data structures in C" +HOMEPAGE="http://concurrencykit.org" +SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="Apache-2.0 BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +# The 'libck.so' has a name collision. +# See #616762 for more information. +RDEPEND="!sys-cluster/charm" + +src_configure() { + tc-export AR CC LD + $(usex x86 'export PROFILE=x86' '') + + local myeconfargs=( + "--disable-static" + ) + + GZIP="" econf ${myeconfargs[@]} +} diff --git a/dev-libs/libuv/libuv-1.41.0.ebuild b/dev-libs/libuv/libuv-1.41.0.ebuild index b44be25cce65..828d1707e652 100644 --- a/dev-libs/libuv/libuv-1.41.0.ebuild +++ b/dev-libs/libuv/libuv-1.41.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} = 9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi LICENSE="BSD BSD-2 ISC MIT" diff --git a/dev-libs/libxml2/libxml2-2.9.12-r2.ebuild b/dev-libs/libxml2/libxml2-2.9.12-r2.ebuild index c4401d94b8b3..53f749e305c2 100644 --- a/dev-libs/libxml2/libxml2-2.9.12-r2.ebuild +++ b/dev-libs/libxml2/libxml2-2.9.12-r2.ebuild @@ -34,7 +34,7 @@ S="${WORKDIR}/${PN}-${PV%_rc*}" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="debug examples icu ipv6 lzma +python readline static-libs test" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" diff --git a/dev-libs/xapian/xapian-1.4.18.ebuild b/dev-libs/xapian/xapian-1.4.18.ebuild index 6b339e2a294b..e92a0c0daef0 100644 --- a/dev-libs/xapian/xapian-1.4.18.ebuild +++ b/dev-libs/xapian/xapian-1.4.18.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz" LICENSE="GPL-2" SLOT="0/30" # ABI version of libxapian.so -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-macos ~x64-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-macos ~x64-solaris" IUSE="doc static-libs cpu_flags_x86_sse cpu_flags_x86_sse2 +inmemory +remote" DEPEND="sys-libs/zlib" diff --git a/dev-lisp/clisp/clisp-2.49.92.ebuild b/dev-lisp/clisp/clisp-2.49.92.ebuild index 6a4e241457ee..1403a5e81c59 100644 --- a/dev-lisp/clisp/clisp-2.49.92.ebuild +++ b/dev-lisp/clisp/clisp-2.49.92.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="2/8" KEYWORDS="~alpha amd64 ~ia64 ppc ~sparc x86" -IUSE="hyperspec X berkdb dbus fastcgi gdbm gtk +pcre postgres +readline svm -threads +unicode +zlib" +IUSE="hyperspec X berkdb dbus fastcgi gdbm gtk +pcre postgres +readline svm threads +unicode +zlib" # "jit" disabled ATM RDEPEND=">=dev-lisp/asdf-2.33-r3 diff --git a/dev-perl/Bio-Graphics/Bio-Graphics-2.400.0.ebuild b/dev-perl/Bio-Graphics/Bio-Graphics-2.400.0-r1.ebuild index 49bd6518bd84..3b523ece82d4 100644 --- a/dev-perl/Bio-Graphics/Bio-Graphics-2.400.0.ebuild +++ b/dev-perl/Bio-Graphics/Bio-Graphics-2.400.0-r1.ebuild @@ -15,7 +15,7 @@ IUSE="" RDEPEND=" dev-perl/CGI - >=dev-perl/GD-2.300.0[jpeg] + >=dev-perl/GD-2.300.0[jpeg(+)] >=dev-perl/Statistics-Descriptive-2.600.0 <=sci-biology/bioperl-1.6.924 >=sci-biology/bioperl-1.5.9.1 diff --git a/dev-perl/Business-ISBN/Business-ISBN-3.5.0.ebuild b/dev-perl/Business-ISBN/Business-ISBN-3.5.0.ebuild deleted file mode 100644 index 360f6fa32f37..000000000000 --- a/dev-perl/Business-ISBN/Business-ISBN-3.5.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=BDFOY -DIST_VERSION=3.005 -DIST_EXAMPLES=("examples/*") -inherit perl-module - -DESCRIPTION="Work with ISBN as objects" -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~x86" -IUSE="test barcode" -RESTRICT="!test? ( test )" - -RDEPEND=" - barcode? ( - dev-perl/GD-Barcode - dev-perl/GD[png] - ) - >=dev-perl/Business-ISBN-Data-20191107.0.0 -" -BDEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - >=virtual/perl-Test-Simple-0.950.0 - ) -" -PERL_RM_FILES=( - "t/pod.t" - "t/pod_coverage.t" -) -src_prepare() { - sed -i -e '/^pod\.t/d;/^pod_coverage\.t/d' t/test_manifest || die "Can't fix test_manifest" - perl-module_src_prepare -} diff --git a/dev-perl/Business-ISBN/Business-ISBN-3.6.0.ebuild b/dev-perl/Business-ISBN/Business-ISBN-3.6.0-r1.ebuild index 597ec032b37b..b28425bcadd6 100644 --- a/dev-perl/Business-ISBN/Business-ISBN-3.6.0.ebuild +++ b/dev-perl/Business-ISBN/Business-ISBN-3.6.0-r1.ebuild @@ -11,14 +11,14 @@ inherit perl-module DESCRIPTION="Work with ISBN as objects" LICENSE="Artistic-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86" IUSE="test barcode" RESTRICT="!test? ( test )" RDEPEND=" barcode? ( dev-perl/GD-Barcode - dev-perl/GD[png] + dev-perl/GD[png(+)] ) >=dev-perl/Business-ISBN-Data-20191107.0.0 " diff --git a/dev-perl/Business-ISBN/Manifest b/dev-perl/Business-ISBN/Manifest index 8c2bb1c4ecca..03f8ba32e8f6 100644 --- a/dev-perl/Business-ISBN/Manifest +++ b/dev-perl/Business-ISBN/Manifest @@ -1,2 +1 @@ -DIST Business-ISBN-3.005.tar.gz 361815 BLAKE2B 1c6feb5ca5eaa88b01739ed63af997e39d32cae3efe6c9f0b803b306764e9710c66c01977564058585fa6797ab820801dc24f7cd0b67576787a2ba80f6816006 SHA512 f341a0d24c717032e9e6f179fa800bf7bb4be3e340cbd2f23a480b8f76fa24db58cdcbb41c1ee2fe063408bf6d2f7b0191ee657387723090d3f497582cf61579 DIST Business-ISBN-3.006.tar.gz 362014 BLAKE2B 4bbebed021c99a0db692d4a296c1942f6d6dd0e8dd96b7180235c2ee99b274d8ddcf10edcdb690c50d674948eebf0c03602d39c9571ddd9d72d5c65bf6eb0323 SHA512 a30344409fedf2833c390fb61654a82620b00bb5647a7e366e6e1667ef68d210ca7884aa228266d0fde75e17e05a4b2cc89d8e2abc2dcaf6a17a7132ed404ee7 diff --git a/dev-perl/Chart/Chart-2.4.10-r1.ebuild b/dev-perl/Chart/Chart-2.4.10-r2.ebuild index 75caa8c91992..b6f4cb4ea112 100644 --- a/dev-perl/Chart/Chart-2.4.10-r1.ebuild +++ b/dev-perl/Chart/Chart-2.4.10-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,6 +19,6 @@ RESTRICT="!test? ( test )" RDEPEND=">=dev-perl/GD-2.0.36" BDEPEND="${RDEPEND} test? ( - dev-perl/GD[png,jpeg] + dev-perl/GD[png(+),jpeg(+)] ) " diff --git a/dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild b/dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild index acf78ca0256c..20c549c387ee 100644 --- a/dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild +++ b/dev-perl/File-HomeDir/File-HomeDir-1.6.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Get home directory for self or other user" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="+xdg test" RESTRICT="!test? ( test )" diff --git a/dev-perl/File-Listing/File-Listing-6.70.0.ebuild b/dev-perl/File-Listing/File-Listing-6.70.0.ebuild index 1f7897a8fd97..22f2a3df6dcd 100644 --- a/dev-perl/File-Listing/File-Listing-6.70.0.ebuild +++ b/dev-perl/File-Listing/File-Listing-6.70.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Parse directory listings" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/File-MimeInfo/File-MimeInfo-0.290.0.ebuild b/dev-perl/File-MimeInfo/File-MimeInfo-0.290.0.ebuild index 9355c3515392..c75b5b1fca9e 100644 --- a/dev-perl/File-MimeInfo/File-MimeInfo-0.290.0.ebuild +++ b/dev-perl/File-MimeInfo/File-MimeInfo-0.290.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Determine file type" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/File-Remove/File-Remove-1.580.0.ebuild b/dev-perl/File-Remove/File-Remove-1.580.0.ebuild index 6a477025e076..d87d2796ebdc 100644 --- a/dev-perl/File-Remove/File-Remove-1.580.0.ebuild +++ b/dev-perl/File-Remove/File-Remove-1.580.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Remove files and directories" LICENSE="|| ( Artistic GPL-1+ ) || ( CC0-1.0 public-domain MIT )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild b/dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild index 2bc067d2b5a2..cc620b7c0764 100644 --- a/dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild +++ b/dev-perl/File-ShareDir-Install/File-ShareDir-Install-0.130.0.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Install shared files" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/File-Slurp/File-Slurp-9999.320.0.ebuild b/dev-perl/File-Slurp/File-Slurp-9999.320.0.ebuild index 822a0c22f254..2fdf50f23302 100644 --- a/dev-perl/File-Slurp/File-Slurp-9999.320.0.ebuild +++ b/dev-perl/File-Slurp/File-Slurp-9999.320.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Simple and Efficient Reading/Writing/Modifying of Complete Files" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/File-Which/File-Which-1.230.0.ebuild b/dev-perl/File-Which/File-Which-1.230.0.ebuild index e223e4c1fe2b..2941c024b325 100644 --- a/dev-perl/File-Which/File-Which-1.230.0.ebuild +++ b/dev-perl/File-Which/File-Which-1.230.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Perl module implementing 'which' internally" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test pwhich" RESTRICT="!test? ( test )" diff --git a/dev-perl/File-pushd/File-pushd-1.16.0.ebuild b/dev-perl/File-pushd/File-pushd-1.16.0.ebuild index 8c47d4ce88c9..286ca1f7a8a0 100644 --- a/dev-perl/File-pushd/File-pushd-1.16.0.ebuild +++ b/dev-perl/File-pushd/File-pushd-1.16.0.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="Change directory temporarily for a limited scope" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.140.0.ebuild b/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.140.0.ebuild index c5756fd3af15..9414f8ef1abf 100644 --- a/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.140.0.ebuild +++ b/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.140.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Simple and dumb file system watcher" SLOT="0" -KEYWORDS="~alpha amd64 ~ia64 ~ppc ppc64 sparc ~x86" +KEYWORDS="~alpha amd64 ~ia64 ~ppc ppc64 sparc x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/Filter/Filter-1.600.0.ebuild b/dev-perl/Filter/Filter-1.600.0.ebuild index 9eed54474999..2c19da853d8a 100644 --- a/dev-perl/Filter/Filter-1.600.0.ebuild +++ b/dev-perl/Filter/Filter-1.600.0.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Interface for creation of Perl Filters" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" BDEPEND=" virtual/perl-ExtUtils-MakeMaker diff --git a/dev-perl/Finance-YahooQuote/Finance-YahooQuote-0.260.0.ebuild b/dev-perl/Finance-YahooQuote/Finance-YahooQuote-0.260.0.ebuild index 3771feec0990..6006866d8609 100644 --- a/dev-perl/Finance-YahooQuote/Finance-YahooQuote-0.260.0.ebuild +++ b/dev-perl/Finance-YahooQuote/Finance-YahooQuote-0.260.0.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="Get stock quotes from Yahoo! Finance" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc x86" RDEPEND=" >=dev-perl/HTML-Parser-2.200.0 diff --git a/dev-perl/GD-Barcode/GD-Barcode-1.150.0-r1.ebuild b/dev-perl/GD-Barcode/GD-Barcode-1.150.0-r2.ebuild index 1c2acad01e01..390ce254aad9 100644 --- a/dev-perl/GD-Barcode/GD-Barcode-1.150.0-r1.ebuild +++ b/dev-perl/GD-Barcode/GD-Barcode-1.150.0-r2.ebuild @@ -1,19 +1,16 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -MODULE_AUTHOR=KWITKNR -MODULE_VERSION=1.15 +DIST_AUTHOR=KWITKNR +DIST_VERSION=1.15 inherit perl-module -DESCRIPTION="GD::Barcode - Create barcode image with GD" +DESCRIPTION="Create barcode images with GD" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" -IUSE="" RDEPEND="dev-perl/GD" -DEPEND="${RDEPEND}" - -SRC_TEST="do" +BDEPEND="${RDEPEND}" diff --git a/dev-perl/GD-Graph3d/GD-Graph3d-0.630.0-r1.ebuild b/dev-perl/GD-Graph3d/GD-Graph3d-0.630.0-r1.ebuild deleted file mode 100644 index eed218eb4c48..000000000000 --- a/dev-perl/GD-Graph3d/GD-Graph3d-0.630.0-r1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=WADG -MODULE_VERSION=0.63 -inherit perl-module - -DESCRIPTION="Create 3D Graphs with GD and GD::Graph" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris" -IUSE="" - -RDEPEND=">=dev-perl/GD-1.18 - >=dev-perl/GDGraph-1.30 - dev-perl/GDTextUtil" -DEPEND="${RDEPEND}" diff --git a/dev-perl/GD-SVG/GD-SVG-0.330.0-r1.ebuild b/dev-perl/GD-SVG/GD-SVG-0.330.0-r2.ebuild index 6d34fc262a61..e0af267239df 100644 --- a/dev-perl/GD-SVG/GD-SVG-0.330.0-r1.ebuild +++ b/dev-perl/GD-SVG/GD-SVG-0.330.0-r2.ebuild @@ -1,20 +1,17 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -MODULE_AUTHOR=TWH -MODULE_VERSION=0.33 +DIST_AUTHOR=TWH +DIST_VERSION=0.33 inherit perl-module DESCRIPTION="Seamlessly enable SVG output from scripts written using GD" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" -DEPEND="dev-perl/GD +RDEPEND="dev-perl/GD dev-perl/SVG" -RDEPEND="${DEPEND}" - -SRC_TEST="do" +BDEPEND="${RDEPEND}" diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild index 7c2acda1ecf6..6d099c37daa2 100644 --- a/dev-perl/GD/GD-2.730.0.ebuild +++ b/dev-perl/GD/GD-2.730.0-r1.ebuild @@ -12,19 +12,14 @@ DESCRIPTION="Interface to Thomas Boutell's gd library" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc" -IUSE="animgif fcgi gif jpeg png test truetype xpm" +IUSE="animgif fcgi test truetype xpm" RDEPEND=" - >=media-libs/gd-2.2.3 - png? ( - media-libs/gd[png] - media-libs/libpng:0 - sys-libs/zlib - ) - jpeg? ( - media-libs/gd[jpeg] - virtual/jpeg:0 - ) + >=media-libs/gd-2.2.3[png,jpeg] + media-libs/giflib + media-libs/libpng:0 + sys-libs/zlib + virtual/jpeg:0 truetype? ( media-libs/gd[truetype] media-libs/freetype:2 @@ -36,7 +31,6 @@ RDEPEND=" fcgi? ( dev-libs/fcgi ) - gif? ( media-libs/giflib ) " DEPEND="${RDEPEND} " @@ -61,12 +55,15 @@ src_prepare() { src_configure() { local myconf myconf="VERSION_33,GD_UNCLOSEDPOLY,GD_FTCIRCLE" # Per line 284 of Makefile.PL + + # The following flags do not work properly. This is why we force-enable + # at least some of them. See bug 787404 as tracker. use gif && use animgif && myconf+=",ANIMGIF" - use jpeg && myconf+=",JPEG" + myconf+=",JPEG" use truetype && myconf+=",FT" - use png && myconf+=",PNG" + myconf+=",PNG" use xpm && myconf+=",XPM" - use gif && myconf+=",GIF" + myconf+=",GIF" myconf="-options '${myconf}'" use fcgi && myconf+=" --fcgi" perl-module_src_configure diff --git a/dev-perl/GDGraph/GDGraph-1.490.0.ebuild b/dev-perl/GDGraph/GDGraph-1.490.0.ebuild deleted file mode 100644 index 8b6ddb3d4c86..000000000000 --- a/dev-perl/GDGraph/GDGraph-1.490.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=RUZ -MODULE_VERSION=1.49 -inherit perl-module - -DESCRIPTION="Perl5 module to create charts using the GD module" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris" -IUSE="" - -RDEPEND="dev-perl/GDTextUtil - dev-perl/GD - media-libs/gd" -DEPEND="${RDEPEND}" diff --git a/dev-perl/GDGraph/GDGraph-1.510.0.ebuild b/dev-perl/GDGraph/GDGraph-1.510.0.ebuild deleted file mode 100644 index 1154f99a5543..000000000000 --- a/dev-perl/GDGraph/GDGraph-1.510.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=RUZ -DIST_VERSION=1.51 -inherit perl-module - -DESCRIPTION="Perl5 module to create charts using the GD module" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-perl/GD-1.180.0 - >=dev-perl/GDTextUtil-0.800.0 - media-libs/gd -" -DEPEND="${RDEPEND} - >=virtual/perl-ExtUtils-MakeMaker-6.640.0 - test? ( - >=dev-perl/Capture-Tiny-0.300.0 - >=dev-perl/Test-Exception-0.400.0 - >=virtual/perl-Test-Simple-0.880.0 - ) -" diff --git a/dev-perl/GDGraph/GDGraph-1.520.0.ebuild b/dev-perl/GDGraph/GDGraph-1.520.0.ebuild deleted file mode 100644 index 720c67c5fe79..000000000000 --- a/dev-perl/GDGraph/GDGraph-1.520.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=RUZ -DIST_VERSION=1.52 -inherit perl-module - -DESCRIPTION="Perl5 module to create charts using the GD module" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-perl/GD-1.180.0 - >=dev-perl/GDTextUtil-0.800.0 - media-libs/gd -" -DEPEND="${RDEPEND} - >=virtual/perl-ExtUtils-MakeMaker-6.640.0 - test? ( - >=dev-perl/Capture-Tiny-0.300.0 - >=dev-perl/Test-Exception-0.400.0 - >=virtual/perl-Test-Simple-0.880.0 - ) -" diff --git a/dev-perl/GDGraph/Manifest b/dev-perl/GDGraph/Manifest index 71b80dfc1560..67da43196bc6 100644 --- a/dev-perl/GDGraph/Manifest +++ b/dev-perl/GDGraph/Manifest @@ -1,4 +1 @@ -DIST GDGraph-1.49.tar.gz 155643 BLAKE2B da76c442d51713b8839ee89c22734345730121f698f4ed45cc3cc5f5ec6a09f409dc2744cccc8979ac003b5aa6bca922a73ba22af8a8fc22d966e4f7a852a002 SHA512 720cc51dda41963be087bb39418642f75dade1bbab54cd4d788c18c9328f3fbd6a5c0f73027bb0be64d44cd94b0c5f2d67c48d4b0c3c34736ac8f7bc8cba95ab -DIST GDGraph-1.51.tar.gz 156175 BLAKE2B d2cee141c9702c7584a90bf652f47670d5492ac8836c1c9d229010084ab606caba7cc12f0578e1b89b9b8f7c9b22a3f28d9c222777ed4a3df73576cb0857acad SHA512 c9cafdc90905fea8689cac32d0429ae987a933ae090de9894c9f70668db5c636e9363e76a656898df667dd0b0b4f593a64f3327f0b8a9738f74cd2cd937005e0 -DIST GDGraph-1.52.tar.gz 156349 BLAKE2B 93eefa2a1c342e0e8822bc3bd49837b9a5a882f15085aaf1888511631d064d5c6069b4c95ea11fa519edc3fb061dfe4a4e1dbf2d07cf4db1eba7dd20fe1bedb5 SHA512 9a213a5fb44608f3984ed763659fb0cb631bdbc34e89683eb3d4cb776de7fdd1cf4c9e339cf02e0035d4978bfd0d82723e1576c40720af917f50bb0363fd26e0 DIST GDGraph-1.54.tar.gz 157158 BLAKE2B d427f135998c8e60e62ea0e94d1a8c2c48756fdd3d7fe2ab230f342657a684cacc3b3a9633cfdac16a5e65d01e2093043b5d8d4050082821e95b30ababc545e4 SHA512 0dd0da5fa0e879cf2addcbfdd02ee8e9e6af715b88b451dc29fe5028f30d7ba7fa0e126d07e7bb4f9a63e40b3be95a9cc0f6c061ea8644ba0ee7fdd2a7964fce diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild index a2cdfad546c9..a7dd5a44c26d 100644 --- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild +++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -13,7 +13,7 @@ DESCRIPTION="Perl XS frontend to the Xapian C++ search library" LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="examples test" RESTRICT="!test? ( test )" diff --git a/dev-perl/Template-GD/Template-GD-2.660.0-r1.ebuild b/dev-perl/Template-GD/Template-GD-2.660.0-r2.ebuild index eb06ad545ba9..32993ed15f52 100644 --- a/dev-perl/Template-GD/Template-GD-2.660.0-r1.ebuild +++ b/dev-perl/Template-GD/Template-GD-2.660.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -20,6 +20,6 @@ RDEPEND="dev-perl/GD dev-perl/GD-Graph3d >=dev-perl/Template-Toolkit-2.15-r1" DEPEND="${RDEPEND} - test? ( dev-perl/GD[png] )" + test? ( dev-perl/GD[png(+)] )" SRC_TEST="do" diff --git a/dev-python/Faker/Faker-8.5.0.ebuild b/dev-python/Faker/Faker-8.5.0.ebuild index ee753c20e0d8..0473bf2016c8 100644 --- a/dev-python/Faker/Faker-8.5.0.ebuild +++ b/dev-python/Faker/Faker-8.5.0.ebuild @@ -20,6 +20,7 @@ RDEPEND=">=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}] BDEPEND=" test? ( dev-python/freezegun[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP},tiff] dev-python/random2[${PYTHON_USEDEP}] dev-python/validators[${PYTHON_USEDEP}] )" diff --git a/dev-python/Faker/Faker-8.5.1.ebuild b/dev-python/Faker/Faker-8.5.1.ebuild new file mode 100644 index 000000000000..0473bf2016c8 --- /dev/null +++ b/dev-python/Faker/Faker-8.5.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +inherit distutils-r1 + +DESCRIPTION="A Python package that generates fake data for you" +HOMEPAGE="https://github.com/joke2k/faker" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}] + >=dev-python/text-unidecode-1.3[${PYTHON_USEDEP}] + !dev-ruby/faker" +BDEPEND=" + test? ( + dev-python/freezegun[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP},tiff] + dev-python/random2[${PYTHON_USEDEP}] + dev-python/validators[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest diff --git a/dev-python/Faker/Manifest b/dev-python/Faker/Manifest index f7b92101150a..0c52de43a1e8 100644 --- a/dev-python/Faker/Manifest +++ b/dev-python/Faker/Manifest @@ -3,3 +3,4 @@ DIST Faker-8.2.1.tar.gz 1144260 BLAKE2B 3c523e394043d2294e9973c0a2764a7c7961ea89 DIST Faker-8.3.0.tar.gz 1144870 BLAKE2B fba95fdc3023dc583345d0a7890b4ac6318ca87157270e1d844a2978bd2866c1cd8e8a334e41bc0b8689a1c8814a5353ab4adbb08af49a31779217d82b913ce6 SHA512 7f046e60636dc7c2a584eb75e832a674715424b91de5eac6dba423d40100ce44b5baec178976bcf2b00b5edb81c5796f5eeebed0572984e7740c9e3279afd51a DIST Faker-8.4.0.tar.gz 1146293 BLAKE2B 9ec37d76ebfe486a9671f5fc97e321420b9cf83811894db4f7264430f441ab63309e2abed0b5c900467685d7fe979001c216a9e32323c764867f127025706558 SHA512 03abef5c85edccf924191f2bc5be1dd64d56f827bc4307fed16becac7981c0340fa900748e767f2bbbf37721075c03ac068892870f2ac895f8d748403ae8bb08 DIST Faker-8.5.0.tar.gz 1147011 BLAKE2B 497a3f46a61519707ab3e8d78240ea5dd796b247268930ee4117647b24e4822a023ddda2ffdc1333dde4e35eedc1b7110f2103d0f49d0227ea7991c75c60c7df SHA512 29de2928109281bada27923a76ccb7cfd9e31211d0474cb47473197ea0c89983ac10e3dc990eb987ea3b45b5f5aa324b53004b60b5e20d922969bc552de96f01 +DIST Faker-8.5.1.tar.gz 1147272 BLAKE2B 5842f7ea74cb5eb02bd149e95fbff3d6a75bb007e1e9de98a808854c37b59bd337f17617c4dd8cd899a6740babd4a501bb09bf840cfbbb689c529517ff30271d SHA512 a787bbf4bacd06e7af777e4f10714167d7e9e8ad743cf99d51a3a4c312ded8e5085559f667ab6fca3a6df87650feabf88b0ec647e049c26576e65b3a77191ad4 diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index cfbe961bdefd..64ae47d33edd 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -8,3 +8,4 @@ DIST boto3-1.17.83.tar.gz 376963 BLAKE2B 0bdcae1097a8ee4250c08fe639419ea99b83e33 DIST boto3-1.17.84.tar.gz 377284 BLAKE2B dbbc6b8643b720a8a5409c334e268b6de465e7db05684ff5a70d95c91e7e2feff3c3db94ad85f400ac7451e8f37537732ed416602c35bf37955d840701bf5bb4 SHA512 19d224c9bd7135d1de4da807b51f72a3366d5774dba970896388bffb1308b348b001453c0632de5eee8f03bdf0c2b8cf3e9da894e73cb16e10551e060beef5fe DIST boto3-1.17.85.tar.gz 377940 BLAKE2B 7fdfa25b7fd6467f484dc988bac280b0e4e7044f2a064625efdc5e6f9725b038f08b88f63442452b151541ae4f0ff26ae395816f6422b49474d2e8d93df3a7da SHA512 126e78056b8ac52cba3db5965563c4b6c1451f5aeba2d7d775f358e75f810229102328230e0f5dd1ef3767468106f1d7f3af5575e51422c6b63ef6b509318e70 DIST boto3-1.17.86.tar.gz 378144 BLAKE2B 35d6bfec515c985ead488811e7f2ad021f671e8eee1e63ae1aaade8f4a03dcca228483ec81c4911d12c290b3e4b3363ae92e9153eda83a638258394d0c7b4fcf SHA512 0b267b2333925e830237c830ef5258fa8834fd584f6f4132c012141b4ad5e38b6e6977de019d60f0ba93e3c8b4d9a1036d0c989366145a9d25ac0e5e7e4d39ae +DIST boto3-1.17.87.tar.gz 378759 BLAKE2B 21ad4c735f34edbd82767043653ed0cee9604f0b36328f40cb22c4f9cd57758e0bc89ae93fd798babc1dded019e2b1531bbffa0574edd7ce3e07515374cd97cf SHA512 da3f2cb772d3f9708f5cbb102907ef58622435d4acdec8fe0abde80511f0734e6cc9739f0652150edc9e4f12039c0c7ee62bcc0059b42d86d5af0e809d779fab diff --git a/dev-python/boto3/boto3-1.17.87.ebuild b/dev-python/boto3/boto3-1.17.87.ebuild new file mode 100644 index 000000000000..76a508785b03 --- /dev/null +++ b/dev-python/boto3/boto3-1.17.87.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +inherit distutils-r1 + +DESCRIPTION="The AWS SDK for Python" +HOMEPAGE="https://github.com/boto/boto3" +LICENSE="Apache-2.0" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/boto/boto3" + inherit git-r3 + BOTOCORE_PV=${PV} +else + SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" + + # botocore is x.(y+3).z + BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" +fi + +RDEPEND=" + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] + >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx docs/source \ + 'dev-python/guzzle_sphinx_theme' +distutils_enable_tests nose + +python_prepare_all() { + # don't lock versions to narrow ranges + sed -e '/botocore/ d' \ + -e '/jmespath/ d' \ + -e '/s3transfer/ d' \ + -i setup.py || die + + # prevent an infinite loop + rm tests/functional/docs/test_smoke.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" +} diff --git a/dev-python/boto3/boto3-9999.ebuild b/dev-python/boto3/boto3-9999.ebuild index fbd1003ed88a..76a508785b03 100644 --- a/dev-python/boto3/boto3-9999.ebuild +++ b/dev-python/boto3/boto3-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 + PYTHON_COMPAT=( python3_{6,7,8,9,10} ) -DISTUTILS_USE_SETUPTOOLS=bdepend inherit distutils-r1 DESCRIPTION="The AWS SDK for Python" @@ -17,7 +17,7 @@ if [[ "${PV}" == "9999" ]]; then BOTOCORE_PV=${PV} else SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" # botocore is x.(y+3).z BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest index a9b6812d1810..64628b3caf3b 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -8,3 +8,4 @@ DIST botocore-1.20.83.tar.gz 7786168 BLAKE2B 1bd8864da814ed502c4e0860d8c7a82c6c1 DIST botocore-1.20.84.tar.gz 7792555 BLAKE2B e9459fad976bb81541ce933666edccdbfe9910674cde9f23b264388845cb3e98cae77639a3333cb3fec00c33602af8fea82681fbd387775ff9ed47245e4d0e4f SHA512 da19ffb81c24c2e7a10c5e0647179f36ebf89c097f795cb16d723a3e0311a81e9c835b7b3795d02047d084a098507f4b6e0cc502129877e4258691a6a6ee1cee DIST botocore-1.20.85.tar.gz 7795550 BLAKE2B 483b6fef456de9a37b00dbaf0f2af766079447f70fb992c96f0ab8208c3ce0e39a459d89a29e07b7e9fed9e1b39ddfeac28c3de5bfac1ddde1aac2cbecfe4056 SHA512 1a3e07da2c1b60680c858e4b732fe340563b18ec10aad7a9250bff7e7a11a97ccd3e952245187b90fe84b2fddd8f48568d70d69a03612782da5d90a8e2d06de3 DIST botocore-1.20.86.tar.gz 7798788 BLAKE2B 93450262bf1e34a627a64f8972e4d8b02dc24e1646633e89d4911751b0c919b9dd3515021cfffcd0c79223b237a8bb283220f6793c8e411d399a75321cd7b369 SHA512 fd630d93645861a94173a38b50c7b2ef1c646e33ad30d75eccb4b92bfa0ce08c06ac39ea6bb38f7e5c551f625b919b00170c4a243e67d5d66789a011ee5390a1 +DIST botocore-1.20.87.tar.gz 7800088 BLAKE2B ba98b0f910216a340f48adb5ddf14aa9239ca44202641c97ca91da69f34a67716c50d9bc6a330021fd630f7c309062fc0326543e46ee1207c294870baefd0aeb SHA512 b922e40030a1708ce2e5a2fa60012e21e28b955c6d30fbced5d1a93dafe189e83430b5cee162e2ab73e80c7dfa18657c2ca42057c17e943c0d421c6cd9969b53 diff --git a/dev-python/botocore/botocore-1.20.87.ebuild b/dev-python/botocore/botocore-1.20.87.ebuild new file mode 100644 index 000000000000..ca62b7dad65f --- /dev/null +++ b/dev-python/botocore/botocore-1.20.87.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) + +inherit distutils-r1 + +DESCRIPTION="Low-level, data-driven core of boto 3" +HOMEPAGE="https://github.com/boto/botocore" +LICENSE="Apache-2.0" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/boto/botocore" + inherit git-r3 +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/jmespath[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/jsonschema[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" +) + +distutils_enable_sphinx docs/source \ + 'dev-python/guzzle_sphinx_theme' +distutils_enable_tests nose + +src_prepare() { + # unpin deps + sed -i -e "s:>=.*':':" setup.py || die + # very unstable + sed -i -e 's:test_stress_test_token_bucket:_&:' \ + tests/functional/retries/test_bucket.py || die + distutils-r1_src_prepare +} + +python_test() { + # note: suites need to be run separately as one of the unit tests + # seems to be leaking mocks and breaking a few functional tests + nosetests -v tests/unit || + die "unit tests failed under ${EPYTHON}" + nosetests -v tests/functional || + die "functional tests failed under ${EPYTHON}" +} diff --git a/dev-python/botocore/botocore-9999.ebuild b/dev-python/botocore/botocore-9999.ebuild index f63e2e19f991..ca62b7dad65f 100644 --- a/dev-python/botocore/botocore-9999.ebuild +++ b/dev-python/botocore/botocore-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,15 +16,14 @@ if [[ "${PV}" == "9999" ]]; then inherit git-r3 else SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" fi RDEPEND=" dev-python/six[${PYTHON_USEDEP}] - dev-python/docutils[${PYTHON_USEDEP}] dev-python/jmespath[${PYTHON_USEDEP}] dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/urllib3[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] " BDEPEND=" test? ( @@ -35,7 +34,6 @@ BDEPEND=" PATCHES=( "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" - "${FILESDIR}/botocore-1.16.7-unlock-deps.patch" ) distutils_enable_sphinx docs/source \ @@ -43,9 +41,8 @@ distutils_enable_sphinx docs/source \ distutils_enable_tests nose src_prepare() { - # py3.9 - find -name '*.py' -exec \ - sed -i -e 's:cElementTree:ElementTree:' {} + || die + # unpin deps + sed -i -e "s:>=.*':':" setup.py || die # very unstable sed -i -e 's:test_stress_test_token_bucket:_&:' \ tests/functional/retries/test_bucket.py || die diff --git a/dev-python/cfn-python-lint/Manifest b/dev-python/cfn-python-lint/Manifest index d2160d438d81..8ce3cb058d39 100644 --- a/dev-python/cfn-python-lint/Manifest +++ b/dev-python/cfn-python-lint/Manifest @@ -1,4 +1,5 @@ DIST cfn-lint-0.49.2.tar.gz 7012647 BLAKE2B 1508c7c2c400ea4fdd878961a00d79b6c464de70f6ff5269069c73d4c524317e37e9431fba0a686da16958b7c575d4d3629a83c31c3f89d81a68f5c320355b14 SHA512 7e7b97d727b06649b2a56b67f1251c24df2646c9759821a7525842796a81e834f560fe5a09431220ead9fd68ad0fa9978a65bb1d9bdeab907aba0a76095fd712 +DIST cfn-lint-0.50.0.tar.gz 7061105 BLAKE2B bba39823b729b0a53dcc97341b6408654190bceb86acd7de0e2ee1a4ae34234ca6ddc3a4d374c38115632faa0fbbb51fbf07cf717853dd917a262ef5c1116ac9 SHA512 9dc5c00946a9bb142771a4b63571043056b1f522348f11256d7d3181e750c251cfab805a66df884b496fd7639442da0e72f65c0a43cc2ce2ed35f214031c7b1a DIST cfn-python-lint-0.48.3.tar.gz 6758651 BLAKE2B a8aeaffb0791789b25c94c630532ced223432f9902cf60664e4b111d162b4379d6307eda5c8f8074f7d2917ff25f44657016894b2140c8ea1dbf3259b24dde38 SHA512 ab1555719edb9b3541bfe60ce2701cca9e2ab9f4627c1b46ab8f4920477531f56f14f393b3575525da81b6aefd087b6c3cac516bdd6eb1db0f31304d7c63e1cb DIST cfn-python-lint-0.49.0.tar.gz 6797106 BLAKE2B aa60c3e5eb246c45997af57f934d2710b56c4966babb61f56cc538c49606e3befd130f6a4298b124d38401927ae40127e699fba6a1f69ee177c07c9bf5d880e4 SHA512 4b656cda70de686aa3bb404908eac6ff66cabc0ebb064d5ccbe554a10551e8a5a7a308e3480826ec52b87549a8626f2a9cbbf51bd44613d94344db8dcd4443a7 DIST cfn-python-lint-0.49.1.tar.gz 6906770 BLAKE2B 3115e610a73f072f56f0ed45ab8c88f7a906115437081d8974a135b3a9fbfcec4f677bdc108fa0ed37814caa6f0cc1e22fa7892d715c658e9ef05c8299f377a6 SHA512 4ceda24495aa43ad84ca7e63aa566521aab339f01308f5754372289a7f595d6805d6b1ac9bf637ba20a05bf17b93f8a06d5d1fd4dca3b8955094f54a62e28313 diff --git a/dev-python/cfn-python-lint/cfn-python-lint-0.50.0.ebuild b/dev-python/cfn-python-lint/cfn-python-lint-0.50.0.ebuild new file mode 100644 index 000000000000..7602d69e05bf --- /dev/null +++ b/dev-python/cfn-python-lint/cfn-python-lint-0.50.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +inherit distutils-r1 + +# TODO: pkgmove to cfn-lint +MY_P=${P/-python} +DESCRIPTION="CloudFormation Linter" +HOMEPAGE="https://pypi.org/project/cfn-lint/ https://github.com/aws-cloudformation/cfn-lint/" +SRC_URI=" + https://github.com/aws-cloudformation/cfn-lint/archive/v${PV}.tar.gz + -> ${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + >=dev-python/aws-sam-translator-1.35.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/importlib_resources[${PYTHON_USEDEP}] + ' python3_6) + dev-python/jsonpatch[${PYTHON_USEDEP}] + >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}] + dev-python/junit-xml[${PYTHON_USEDEP}] + dev-python/networkx[${PYTHON_USEDEP}] + >=dev-python/pyyaml-5.4[${PYTHON_USEDEP}] + >=dev-python/requests-2.15.0[${PYTHON_USEDEP}] + >=dev-python/six-1.11[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests --install unittest + +PATCHES=( + "${FILESDIR}/cfn-python-lint-0.30.1-tests.patch" +) + +src_prepare() { + # unpin the deps + sed -e 's:~=[0-9.]*::' -i setup.py || die + # requires git checkout + sed -e 's:test_update_docs:_&:' \ + -i test/unit/module/maintenance/test_update_documentation.py || die + # requires Internet + sed -e 's:test_update_resource_specs_python:_&:' \ + -i test/unit/module/maintenance/test_update_resource_specs.py || die + distutils-r1_src_prepare +} diff --git a/dev-python/google-api-core/Manifest b/dev-python/google-api-core/Manifest index 45d66e57ec34..575a88003575 100644 --- a/dev-python/google-api-core/Manifest +++ b/dev-python/google-api-core/Manifest @@ -1,3 +1,4 @@ DIST google-api-core-1.26.3.tar.gz 133409 BLAKE2B ca3c63769f87cc79483d5ac52646cb044fa21e4f702a945994aeffad71b5be6bd1105e7aa3ec489c943d8adb1148f1c5eb868d64d71f0bcc4a6084ff470acf05 SHA512 8a7753ee30f6f3bb78265b083d8fb80a48021ab32c849ddadaf969263e5a63bfaeb3010b584440d5c5f1c4e0dcd4e8fcd4df16321ccb03d3c0932e19502bbe4c DIST google-api-core-1.27.0.tar.gz 134035 BLAKE2B be074208ac51b6e33466a2304e5780894d6a420ccf7ea36e5b98b6d9f920cd6f0cc9f94dababb154731ebe4a36d8b863897f5c654e00068a0f12753ceecb6e8c SHA512 5e8ca58c7f1dc9aa3e612ea635feb84a115c0f21bde2a3152cd54be5b041841ab1c0d2c725660794e15d42e63a4b6955a5318d3dec20bbbb3e7d683c630a5f5e DIST google-api-core-1.28.0.tar.gz 133640 BLAKE2B 8134e39cc3ff2fbb850d5e774d08589e3e64b83ca5d5209279f5d1b7fc2eb350a523bbe2890fba6d907689149df3872a7e0a11991b1ecc62fc64a4753dce38e4 SHA512 3702d27613e621394209047451729c1308beb88c917033b4340e3fa96bf4a5ec36ad2594c98ed14439c578f69a202d95a96d30472438a30417484cff6e06fe7d +DIST google-api-core-1.29.0.tar.gz 134251 BLAKE2B 46455f34ad18bd57b21afe70b237466a51d5dbaca8f46f31491d00fcc7e6339fcf48e150418ef71100a628245cc5333984e6377e27eec00b9b55e0c1a3de86e2 SHA512 b8a7b19ba737172e04c0a322af7c60299b72002b17a099fbaa9445c4965b94fd6f3087380fa4262f4440113af4304d5235cd062f22c27cd997e62b276ea67471 diff --git a/dev-python/google-api-core/google-api-core-1.29.0.ebuild b/dev-python/google-api-core/google-api-core-1.29.0.ebuild new file mode 100644 index 000000000000..b40ab82c7645 --- /dev/null +++ b/dev-python/google-api-core/google-api-core-1.29.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="Core Library for Google Client Libraries" +HOMEPAGE="https://github.com/googleapis/python-api-core + https://googleapis.dev/python/google-api-core/latest" +SRC_URI="https://github.com/googleapis/${PN//google/python}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P//google/python}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + dev-python/namespace-google[${PYTHON_USEDEP}] + dev-python/protobuf-python[${PYTHON_USEDEP}] + dev-python/googleapis-common-protos[${PYTHON_USEDEP}] + >=dev-python/google-auth-1.25.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.18.0[${PYTHON_USEDEP}] + <dev-python/requests-3[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/grpcio[${PYTHON_USEDEP}] + dev-python/rsa[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests --install pytest + +python_install_all() { + distutils-r1_python_install_all + find "${D}" -name '*.pth' -delete || die +} diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest index 3682d71caa6a..55bca9156656 100644 --- a/dev-python/hypothesis/Manifest +++ b/dev-python/hypothesis/Manifest @@ -2,6 +2,7 @@ DIST hypothesis-python-6.10.1.tar.gz 9126246 BLAKE2B cc8cb3436d1de5d3d65a13cb5ed DIST hypothesis-python-6.13.0.tar.gz 9128293 BLAKE2B be618d42639602bc6617f8b5e9374812298e9d6150b6510a8060ca7c489ea69f1d6bd2cf9322c325c9bffc3c3f886fb4a4fb038159fa2c81920541ac4cb668cd SHA512 66fd6e7842b7b257c92cf756db4cf97bfb64006c89e3e58cda154ebe9345302f0264297df8d9de0685033a0f4e43909d65e76495689a8ded9968ecda586b668c DIST hypothesis-python-6.13.10.tar.gz 9132876 BLAKE2B fb9b48465fd6e6ce08423384753ef3149aac6e2b57230f44119ad685c530ac68fac0b1a1925f2ab98586265055151e9564fa287262b06aefe68c2a78d8b3ae4d SHA512 f166a025dee3ec31033d8f8a3909e6f9ee4b2e14420ae41777a41163384502cfe9f20632fb134e38797817ee19972a7068e4233e64417fb4cf5af51427a1963c DIST hypothesis-python-6.13.11.tar.gz 9133504 BLAKE2B b9cb54dc05aafd57424a2f9fff097a66e3ba5e55408f8a4587eb7aee079f1ad494e3a9cc18a7797c09fa4444715290dc49c58b98e722dc0722d8cad0d6cbbe0d SHA512 9cb8ce31a7062ab98db829300c1f68e1e24bf02a39ebf4ffbbf47554741dd0bdb96edd69aa7a360570405ca85b1fd7956eb26c5b9a6898f6f8f6f79177522bf6 +DIST hypothesis-python-6.13.12.tar.gz 9133873 BLAKE2B 161e323d9dad6d6a91641336b6e66fe0b00bcc902d844480ed0cea59b89c455eaaf8f57122636af464719d63cf96d0dfeb42dbd855d5599856636b4f4e1520bd SHA512 e58d9a676b9f6592134f4f4997d7585001c28980697e77f8f3216c5bba65256c15784e7eec5458f58684b61cc5a0d9ef2465748412a601a867a70e5b72fde91d DIST hypothesis-python-6.13.2.tar.gz 9130008 BLAKE2B 3ca5c306ac402002a1435b8ccbc034f2a7acf1553eb6095e0394ff1ddf778f47ef6f72359cb5219db924edc18623b22732b4a94bd7c269217ec632b8d59adc1c SHA512 8c7e1a5de011ef66f5105009aa82f2b23ff36f0b0906554ae65e2e55e10c4df743c894b6264002c86bae3fc5e1dd7ded7e913f0866ed725e1afd4c9f54022b7c DIST hypothesis-python-6.13.4.tar.gz 9130435 BLAKE2B eeb78cc647df49ea11fb0e0f4d8412e20095e7c33bb0601dcbaad2b9e9929423729b25b1bfbf2a27b05e87ae38ced4e9aeba5bae4de76cfc81aae2d073248de0 SHA512 93db99bdbe408ddbad4baf983b00b3e7624fd28d15a0d4c1453437328a51b0733db13e3b7b04b40bc60aa05e2e8364ce5b186d81a2d33e50b49f5a406fec95d6 DIST hypothesis-python-6.13.5.tar.gz 9131314 BLAKE2B 3de7ba681ab9c0907920ea7ad562a4434f06009a7bced47b98bf46da5d15aea35085350f4aca24fd41ba9fd14957e4de1d56092d49e757ea60a1575f59371add SHA512 06765607be1a49d92382d426105021ed9dca91c5b41674ba45f0a29ce7cb06537edf706ea7305300f9aae7d8c9b1827bcaf807e3c4aece9594a55b3c0122c622 diff --git a/dev-python/hypothesis/hypothesis-6.13.12.ebuild b/dev-python/hypothesis/hypothesis-6.13.12.ebuild new file mode 100644 index 000000000000..3858e9c1e208 --- /dev/null +++ b/dev-python/hypothesis/hypothesis-6.13.12.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 ) +PYTHON_REQ_USE="threads(+),sqlite" + +inherit distutils-r1 multiprocessing optfeature + +DESCRIPTION="A library for property based testing" +HOMEPAGE="https://github.com/HypothesisWorks/hypothesis https://pypi.org/project/hypothesis/" +SRC_URI="https://github.com/HypothesisWorks/${PN}/archive/${PN}-python-${PV}.tar.gz" +S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +IUSE="cli" + +RDEPEND=" + >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}] + >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}] + cli? ( + $(python_gen_cond_dep ' + dev-python/black[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + ' python3_{7..9}) + ) +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pexpect[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + !!dev-python/pytest-describe + !!<dev-python/typing-3.7.4.1 + ) +" + +distutils_enable_tests --install pytest + +python_prepare() { + if ! use cli || ! has "${EPYTHON}" python3_{7..9}; then + sed -i -e '/console_scripts/d' setup.py || die + fi +} + +python_test() { + distutils_install_for_testing + epytest tests/cover tests/pytest tests/quality \ + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" +} + +pkg_postinst() { + optfeature "datetime support" dev-python/pytz + optfeature "dateutil support" dev-python/python-dateutil + optfeature "numpy support" dev-python/numpy + optfeature "django support" dev-python/django dev-python/pytz + optfeature "pandas support" dev-python/pandas + optfeature "pytest support" dev-python/pytest +} diff --git a/dev-python/identify/Manifest b/dev-python/identify/Manifest index 4875122a6599..81dddcfddb70 100644 --- a/dev-python/identify/Manifest +++ b/dev-python/identify/Manifest @@ -1,3 +1,4 @@ DIST identify-2.2.4.tar.gz 100967 BLAKE2B 9473a157ce2aed13ed45d6e8d83b4510c40ae977406b9d7b211caa70c27d1850cf49da8848495841281b1f192b576d269a5372215effd7d89c9211e51d51151d SHA512 25e255fd62d0e75aafa7037085362b7bf2ba8ae142bfb11e0e20452d503d8ec3f90ec84c8ef8966fb021fe1054c226862b3ce99d2288ec9aaa758a8971d1c87a DIST identify-2.2.6.tar.gz 101016 BLAKE2B eac32751d54379e3ba5ca5970c3fc02b6ac9f677a26f7a2c91986ba6ce8773a8e51ed98f17b6b12ba920cabd3d66ca23cd765d2cb6c48253ff97c34ddb9cb81e SHA512 09694ea3d92265385a79464ef948effb5b074f5b67a8a25171b4872b2cd70537a17c87c2aa94b66e3079f2047b290300beb7ed74be50ecdf09cb723948bc11d9 DIST identify-2.2.7.tar.gz 101032 BLAKE2B 988aecb3f32b1d1416984ad7cb5937f85600e222a1053d2800dda1c498fea2660f86ee42208611c71e29b9827e212992fed35697a3d24f02814cc6ea8a560615 SHA512 f3c4073a9018ba595c8535447c7ccb20ca1f8d8bb006b4662db19b3356afc33d810b2073810b86d7dec4572b151c53301feca09bf0662d4d683febbdf7735e06 +DIST identify-2.2.8.tar.gz 101040 BLAKE2B 46bf6631c6006ad2326f175257ee2cb4324ac463419cb50df0919768b2787afcc135dc1982ee1feb4a5efef6990f3224f63fb2dea19dc6795a3fe736e6b8555e SHA512 d166f37fa60cafc0fb624cac9626115adaecd8ec88f42ce71b81794b6aa8301e42f459bfbc1da3d81709ee5681184e927e9111a906a22ec8c977b24f1e9dc17f diff --git a/dev-python/identify/identify-2.2.8.ebuild b/dev-python/identify/identify-2.2.8.ebuild new file mode 100644 index 000000000000..5e6f8e81442f --- /dev/null +++ b/dev-python/identify/identify-2.2.8.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +inherit distutils-r1 + +DESCRIPTION="File identification library for Python" +HOMEPAGE="https://github.com/pre-commit/identify" +SRC_URI="https://github.com/pre-commit/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/editdistance-s[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest diff --git a/dev-python/lxml/lxml-4.6.3-r1.ebuild b/dev-python/lxml/lxml-4.6.3-r1.ebuild index 8f725382d9a0..0b2bdc880159 100644 --- a/dev-python/lxml/lxml-4.6.3-r1.ebuild +++ b/dev-python/lxml/lxml-4.6.3-r1.ebuild @@ -14,7 +14,7 @@ S=${WORKDIR}/lxml-${P} LICENSE="BSD ElementTree GPL-2 PSF-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc examples +threads test" RESTRICT="!test? ( test )" diff --git a/dev-python/pip/pip-21.1.1.ebuild b/dev-python/pip/pip-21.1.1.ebuild index 30f594b36ca6..f76b1bede4e9 100644 --- a/dev-python/pip/pip-21.1.1.ebuild +++ b/dev-python/pip/pip-21.1.1.ebuild @@ -30,7 +30,7 @@ SRC_URI=" LICENSE="MIT" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos" SLOT="0" -IUSE="test -vanilla" +IUSE="test vanilla" RESTRICT="!test? ( test )" RDEPEND=" diff --git a/dev-python/pip/pip-21.1.2.ebuild b/dev-python/pip/pip-21.1.2.ebuild index ff52156abe93..6a29ad431e71 100644 --- a/dev-python/pip/pip-21.1.2.ebuild +++ b/dev-python/pip/pip-21.1.2.ebuild @@ -29,7 +29,7 @@ SRC_URI=" LICENSE="MIT" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" SLOT="0" -IUSE="test -vanilla" +IUSE="test vanilla" RESTRICT="!test? ( test )" RDEPEND=" diff --git a/dev-python/pkgconfig/Manifest b/dev-python/pkgconfig/Manifest index 479933744bf2..5c45e4e51fcf 100644 --- a/dev-python/pkgconfig/Manifest +++ b/dev-python/pkgconfig/Manifest @@ -1,2 +1,3 @@ DIST pkgconfig-1.5.2.tar.gz 6984 BLAKE2B 1d3b724853498505ef9f60de89b9f90e049334f42451202f07f29a0dc5efc21eb13045afebef3d20b0ed0bdedda053eb37ccbda0a8977febb408d3c69a2efb12 SHA512 7f457fd956f2b4e2580433311d166dd5537cafb95c0842a85f69bf84bbbde58861023acb7d221383b4306ec0ce31badc0481b2394b3e737de0db2e194c5e250f DIST pkgconfig-1.5.3.tar.gz 7310 BLAKE2B 361439cadf3f21a76d379a8b7eede9d2c73fa114c5816e8964b7086e867ca0d089dbcfdc219ea0d481934940fcf0a0ca2398b0850448bd3e577befb1266034a6 SHA512 00cb148977fb2b25d747ab1aa8d99deaf250df67d8c3ec0f47160714aabce4de3d96cd43e7292a8e4ccf850de1aceabc96d5516995365da088e00a731d538c24 +DIST pkgconfig-1.5.4.tar.gz 7323 BLAKE2B 3edc17a5491d788e23de875fabf01482e88d289b2376b4594c0a62fac5b761974c1b6b563f12862d202aeb9e63badb1cb105aebc9ac22b813f36d46952459c0e SHA512 c50593427122b24d3328fcbdf0d13eb9ce3ede068a23cd7c43d19a518386bf06ba42ac07d647d69bfda056baf8b6549955f9dfef78d785e64596833c4af5b831 diff --git a/dev-python/pkgconfig/pkgconfig-1.5.4.ebuild b/dev-python/pkgconfig/pkgconfig-1.5.4.ebuild new file mode 100644 index 000000000000..5cabb0c9e816 --- /dev/null +++ b/dev-python/pkgconfig/pkgconfig-1.5.4.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 ) +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +inherit distutils-r1 + +DESCRIPTION="Interface Python with pkg-config" +HOMEPAGE="https://pypi.org/project/pkgconfig/ https://github.com/matze/pkgconfig" +SRC_URI="https://github.com/matze/pkgconfig/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND="virtual/pkgconfig" + +distutils_enable_tests pytest diff --git a/dev-python/pycairo/Manifest b/dev-python/pycairo/Manifest index 567b04530540..baf457c5c371 100644 --- a/dev-python/pycairo/Manifest +++ b/dev-python/pycairo/Manifest @@ -1 +1,2 @@ DIST pycairo-1.20.0.tar.gz 344370 BLAKE2B b72a3dfd3ad6332f6be2c0fc0650ef87d97a51881bd239421cdb6355016e952093f9fa05b7872d7cce4a50bc4bac27ff0fb4c11e446e51ada9d7c1adc019a175 SHA512 d32d008b741653d02324b206a438f5fd85f2a433201d6f8b98c8f1adc712abea611a4b5ed95c55258efb662dc579eed6b2f752b10d9fc2b6a7c8e5edd19e5266 +DIST pycairo-1.20.1.tar.gz 344639 BLAKE2B 7327a1b9aacc62eb7b2630ac2b9ce43ad7a44e60cb749b60a2973fb9036a84c1f3f4264da428d720158a5e32cd47f679d5956ebf3ce094e75d742584a68adda4 SHA512 bb2340170c1d39d50dd8ceeb1b6ceadd96ddbd27d78a8a5b7dadf7dc427558d766f65d62e1ceeae19ab200e7ffb5ad122b5e51daa8ef9bff08fcd97a44005697 diff --git a/dev-python/pycairo/pycairo-1.20.1.ebuild b/dev-python/pycairo/pycairo-1.20.1.ebuild new file mode 100644 index 000000000000..c0a2f00f2e56 --- /dev/null +++ b/dev-python/pycairo/pycairo-1.20.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Python bindings for the cairo library" +HOMEPAGE="https://www.cairographics.org/pycairo/ https://github.com/pygobject/pycairo" +SRC_URI="https://github.com/pygobject/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="|| ( LGPL-2.1 MPL-1.1 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +IUSE="examples" + +BDEPEND=" + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + ) +" +RDEPEND=" + >=x11-libs/cairo-1.15.10[svg] +" +DEPEND="${RDEPEND}" + +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme +distutils_enable_tests setup.py + +python_install() { + distutils-r1_python_install \ + install_pkgconfig --pkgconfigdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig" +} + +python_install_all() { + if use examples; then + dodoc -r examples + fi + + distutils-r1_python_install_all +} diff --git a/dev-python/python-magic/Manifest b/dev-python/python-magic/Manifest index fc4007252a89..4afe78c48a6f 100644 --- a/dev-python/python-magic/Manifest +++ b/dev-python/python-magic/Manifest @@ -1,2 +1,3 @@ DIST python-magic-0.4.22.gh.tar.gz 863567 BLAKE2B 6994869e4cc5ba5ff7ae1a6ac6117f5b1553a11079fb5faaa23b48ee241b2615e2514270f66c55b417b4051d6a5aedd7c289f139c23842979e4af0cdb7a34e3a SHA512 7f16c090a713be4ecc25727f0195bddfadfa9f54507899e35f48bd268ea1d78637ca024ecf02e331a8988a931e430f7346bb5f4b46e58ddc1ff03ec678640e6d DIST python-magic-0.4.23.gh.tar.gz 863739 BLAKE2B 7adcf4f8662cb5c6dab1d680a48f80db03f78d6f2f67a81f9d1464a79b820d8ed28a69ca5aa1c8eaa1b016556217dcab0878725a370318db0905985d332561f4 SHA512 8f6093ba6e1138e8c81e7afc596946c3657ddea55554edcf555f6490e2d19c936f41367cd27a04554a344b3116d033ab760c2c954ac6ffd017b9c319abe44b00 +DIST python-magic-0.4.24.gh.tar.gz 863700 BLAKE2B 09ecc8bea1696343ec2462e6989da8059c40f88e401390c8c491e531540ef0b38e5a8eac1fb8a3356203e25cf2e5caa6dad0c13d24eb34a7a299b5a071ae29b3 SHA512 b3ec148da398293465299938fabf691b56c4b3876f6abbb7a734a9c0a5180cc758a15f7085bbf1bf40ec6031697ec84d98c161db1fd04301133af09928c611fc diff --git a/dev-python/python-magic/python-magic-0.4.24.ebuild b/dev-python/python-magic/python-magic-0.4.24.ebuild new file mode 100644 index 000000000000..023fc69a8768 --- /dev/null +++ b/dev-python/python-magic/python-magic-0.4.24.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Access the libmagic file type identification library" +HOMEPAGE="https://github.com/ahupp/python-magic" +SRC_URI=" + https://github.com/ahupp/python-magic/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="BSD-2 MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="sys-apps/file[-python]" +BDEPEND=" + test? ( sys-apps/file ) +" + +python_test() { + local -x LC_ALL=en_US.UTF-8 + "${EPYTHON}" test/test.py -v || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/snakeoil/snakeoil-0.9.6.ebuild b/dev-python/snakeoil/snakeoil-0.9.6.ebuild index 8ed6ede57986..d8ad5918910c 100644 --- a/dev-python/snakeoil/snakeoil-0.9.6.ebuild +++ b/dev-python/snakeoil/snakeoil-0.9.6.ebuild @@ -4,6 +4,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7,8,9,10} ) PYTHON_REQ_USE="threads(+)" +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 if [[ ${PV} == *9999 ]] ; then diff --git a/dev-python/sphinx-panels/Manifest b/dev-python/sphinx-panels/Manifest index 94dd6b5569a6..a1ec7508ccc3 100644 --- a/dev-python/sphinx-panels/Manifest +++ b/dev-python/sphinx-panels/Manifest @@ -1 +1,2 @@ DIST sphinx-panels-0.5.2.tar.gz 400415 BLAKE2B af103b3a10032590def4b41c650e9023fe94ec6e2fe764a09237cad4d928b1ff429a7a385770f2d07724897413f001ae4037c6e8638b3a9c1d63362c361fd999 SHA512 6d4eb566623543d0553790136e420e3f3a23e06f38b64642e2bb535a5401a954719135a9af89b3655190aebcd35024cecd40b887e7b2bb1394a2a575447316c0 +DIST sphinx-panels-0.6.0.tar.gz 400548 BLAKE2B 685b241ffe839face392950ccaa5c00d5613ee4076a4f8d62fdff32158f2d02c444375b7f656a89d4712f8bf895b937ff9fe650cab98670f03b0c4d75e545f97 SHA512 74064538ff8cd1c7c44b5daeda272217618ed33394694883046972b4262d503e1426e7573d8b49040d4b426651377b89fd4ad2a085f1e62827e7ef51e6912e5f diff --git a/dev-python/sphinx-panels/sphinx-panels-0.6.0.ebuild b/dev-python/sphinx-panels/sphinx-panels-0.6.0.ebuild new file mode 100644 index 000000000000..ffd511a75b35 --- /dev/null +++ b/dev-python/sphinx-panels/sphinx-panels-0.6.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) + +inherit distutils-r1 + +DESCRIPTION="A sphinx extension for creating panels in a grid layout" +HOMEPAGE="https://github.com/executablebooks/sphinx-panels" +SRC_URI="https://github.com/executablebooks/sphinx-panels/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" + +BDEPEND="test? ( dev-python/pytest-regressions[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest +distutils_enable_sphinx docs dev-python/sphinx_rtd_theme diff --git a/dev-python/sphinxcontrib-doxylink/Manifest b/dev-python/sphinxcontrib-doxylink/Manifest index 99bfb5a222a6..3e227fc8ec6b 100644 --- a/dev-python/sphinxcontrib-doxylink/Manifest +++ b/dev-python/sphinxcontrib-doxylink/Manifest @@ -1,2 +1 @@ -DIST sphinxcontrib-doxylink-1.6.1.tar.gz 10173 BLAKE2B 2bb341576c459715a8bfc0a6a7b971e76afdcfba6a082b3f95844678e54c248e814e1a45a1a5d63d85407dcc6d2f7e56e4211b9603014b8478c7eb35e8b9a73d SHA512 c27983cbd54d6ff2c4110b0269d630cd81b8aff6bf7f6b1b006dbb18fc3643d59a25ecff0ec9c92785c697e38861e755fb44a95382314b8b2888da9e8e191637 DIST sphinxcontrib-doxylink-1.8.tar.gz 20005 BLAKE2B e435a65f3931c91e0d7d44d1cb4ebc8e7683ab906864e37a0ac31fc6655dba60cf53ef3d91b9e0ce440e86319ec45e0d81cf43459e02ac7e45c8d1ecbc2a9881 SHA512 1c53af2502fbb493a5834ae3eb05428dd296300f8027b5dd8d93cd67a03ea572ac81a0c3c8e6ddc9017a0b7a0859757d61ea67b73b3ed69fb1db76244ffd6874 diff --git a/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.6.1.ebuild b/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.6.1.ebuild deleted file mode 100644 index 7265cc0c6847..000000000000 --- a/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.6.1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8,9,10} ) - -inherit distutils-r1 - -DESCRIPTION="Extension to link to external Doxygen API documentation" -HOMEPAGE="https://pypi.org/project/sphinxcontrib-doxylink/ https://pythonhosted.org/sphinxcontrib-doxylink/ https://github.com/sphinx-contrib/doxylink" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - >=dev-python/sphinx-1.0[${PYTHON_USEDEP}] - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}] - dev-python/pyparsing[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -python_install_all() { - distutils-r1_python_install_all - find "${ED}" -name '*.pth' -delete || die -} diff --git a/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.8.ebuild b/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.8.ebuild index 2f253c918a63..4f4c4f6bbd98 100644 --- a/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.8.ebuild +++ b/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.8.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/doxylink-${PV}" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm arm64 ~x86 ~amd64-linux ~x86-linux" RDEPEND=" >=dev-python/sphinx-1.0[${PYTHON_USEDEP}] diff --git a/dev-python/zeep/zeep-3.4.0.ebuild b/dev-python/zeep/zeep-3.4.0.ebuild index 9722301c460f..327bd2b84dec 100644 --- a/dev-python/zeep/zeep-3.4.0.ebuild +++ b/dev-python/zeep/zeep-3.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" -IUSE="async -tornado" +IUSE="async tornado" RDEPEND=" >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}] diff --git a/dev-util/idea-community/Manifest b/dev-util/idea-community/Manifest index 9b349f139c02..cad91d79ea78 100644 --- a/dev-util/idea-community/Manifest +++ b/dev-util/idea-community/Manifest @@ -1,2 +1,2 @@ -DIST ideaIC-1.1.211.7142.45.tar.gz 652283495 BLAKE2B 601111752b8bab9bc4988c6f5f12a841cd46a2ce504772a82968a094f471566f9cd6f15731c30dca6d332e74fbd3cbeef026d05587fee9ad65ebc3c5921656ec SHA512 ccfb941b074f04701bb9ad3a4e4001582fac268048bb07ab7958b5f18b10f2385e0a242d518f525e2550b9da901a052653cee6147edf6559fab1978b8dfe6fe9 +DIST ideaIC-1.2.211.7442.40.tar.gz 650671989 BLAKE2B f4c585fb4ccbcdf3bef5ad18e7a26a76703ffdaf8a3e2f4625aa084fb1185835b1d2ad12f013235b09b7dfb986ec0f6fb1fa189c3113a6a3180d814ef6aa1167 SHA512 5d9ef9fc5ca95455726326616d3a9eb75559dc58a1aa5335287f873c17b77b944c3bf1503b32c8ec0b39e23efcf6bbab68825901b92a7db15030e1747af64561 DIST jbr-11_0_10-linux-x64-b1304.4.tar.gz 201507596 BLAKE2B aa83f396dd37a96c769806c3f95a4c78bcc31e9c8eda047903cbee932a84029ad7133fc03496a248c017795ec45ff42f30f3860780a00d9d766ac7b262019905 SHA512 0de75baac30dad42927fa0cef3b78dc183f4dd317f8426021dd51cf1288680bbc65ed934e867dfa3ca9397d9bd5cff4b4d6896eb4878323c8b0aaa2b39d33d82 diff --git a/dev-util/idea-community/idea-community-2021.1.1.211.7142.45.ebuild b/dev-util/idea-community/idea-community-2021.1.2.211.7442.40.ebuild index 9d686a4fb000..743e9e574dfb 100644 --- a/dev-util/idea-community/idea-community-2021.1.1.211.7142.45.ebuild +++ b/dev-util/idea-community/idea-community-2021.1.2.211.7442.40.ebuild @@ -12,7 +12,7 @@ MY_PN="idea" # ( jre 11.0.10 build 1304.4 ) JRE11_BASE="11_0_10" JRE11_VER="1304.4" -IDEA_VER="2.236075331.371301151.1620596360-682219170.1619910833" +IDEA_VER="2.23517177.257203969.1622674002-682219170.1619910833" # distinguish settings for official stable releases and EAP-version releases if [[ "$(ver_cut 7)"x = "prex" ]] diff --git a/dev-util/pkgdev/Manifest b/dev-util/pkgdev/Manifest index 4fc969723002..94500f15b1d0 100644 --- a/dev-util/pkgdev/Manifest +++ b/dev-util/pkgdev/Manifest @@ -1,3 +1,4 @@ DIST pkgdev-0.1.2.tar.gz 32579 BLAKE2B 42ecd7403dcb49b256539e12c22a6bca72884bf55139c5f0972961fbebf4f976dedd3a4fac1186cc1d5af62d339ac7dd3eb20106ff1dcc7b8c264e1c4c53c3de SHA512 c224a054612fd6caa9c66855be9bb5ed439c3ac2abf5b32c4ac516d87fa4e345fc8bc328aa74b4fec44d7fd319322bb42af48f6dfdfff941e3b819a75b9fae9b DIST pkgdev-0.1.3.tar.gz 35226 BLAKE2B 7e22331b39bc2b31a0492842d91b3389217ccf3e017796d239364888d691bb7f9c443b12f8a8019f3774276fb9f492a054e27b76cc447ebcfa584261b34e17dc SHA512 b64addebe81995968b4cca04de2d2a5ac63485b76744bde8d2f1b67a0207259712cf72fe76440a6c18eeb580c9de9fd594f48f08ba4870675efbc8c830751993 DIST pkgdev-0.1.4.tar.gz 53247 BLAKE2B cc89f6637bdd0df230b47b30233415c2c2e55ea3dccd7134e22614b16c0ce8c95302c9edb5f64ca8b1928ddd2f678006d6bdf8c6241deb5d95dee6f6ec488dfb SHA512 60a23e7e3c0974677ebfcda4d709ad6dc15517d02f4190f318f61aeb0ceecc5b2bb8c663542313c3423a1102099d880a683e6623de1afe3c30bc92d59821d632 +DIST pkgdev-0.1.5.tar.gz 54386 BLAKE2B 1e3b87cbae263dba5dbb46f6a5df95d1f2b76382e52bff10a445abcf9af7c965cadd6e0134c3cfdb550fcdd9c96e0f4f40f3f4d6d9097913ef3ba9f309885b98 SHA512 4617f5f2e15bd3833debf76fdf02cdb9bc10e27285e18ca5958e197ab89d7392731a7f5e3846e92764d90b643f38eb1834c8d0a724e934f623edd1675a705b9e diff --git a/dev-util/pkgdev/pkgdev-0.1.5.ebuild b/dev-util/pkgdev/pkgdev-0.1.5.ebuild new file mode 100644 index 000000000000..7c16c37e4b45 --- /dev/null +++ b/dev-util/pkgdev/pkgdev-0.1.5.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +DISTUTILS_IN_SOURCE_BUILD=1 +inherit distutils-r1 + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/pkgcore/pkgdev.git" + inherit git-r3 +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~ppc64 ~riscv ~x64-macos" +fi + +DESCRIPTION="Collection of tools for Gentoo development" +HOMEPAGE="https://github.com/pkgcore/pkgdev" + +LICENSE="BSD MIT" +SLOT="0" + +if [[ ${PV} == *9999 ]] ; then + # https://github.com/pkgcore/pkgdev/blob/main/requirements/dev.txt + RDEPEND=" + ~dev-python/snakeoil-9999[${PYTHON_USEDEP}] + ~dev-util/pkgcheck-9999[${PYTHON_USEDEP}] + ~sys-apps/pkgcore-9999[${PYTHON_USEDEP}] + " +else + # https://github.com/pkgcore/pkgdev/blob/main/requirements/install.txt + RDEPEND=" + >=dev-python/snakeoil-0.9.6[${PYTHON_USEDEP}] + >=dev-util/pkgcheck-0.10.0[${PYTHON_USEDEP}] + >=sys-apps/pkgcore-0.12.0[${PYTHON_USEDEP}] + " +fi + +# Uses pytest but we want to use the setup.py runner to get generated modules +BDEPEND+="test? ( dev-python/pytest )" +RDEPEND+="dev-vcs/git" + +distutils_enable_sphinx doc +distutils_enable_tests setup.py + +python_install_all() { + # We'll generate man pages ourselves + # Revisit when a release is made + # to pregenerate them, making USE=doc + # for generating the real HTML docs only. + if use doc ; then + cd doc || die + emake man + doman _build/man/* + fi + + cd .. || die + + # HTML pages only + sphinx_compile_all + + distutils-r1_python_install_all +} diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest index 8f24edccdb71..e5039c3871d5 100644 --- a/dev-util/stripe-mock/Manifest +++ b/dev-util/stripe-mock/Manifest @@ -1,3 +1,4 @@ DIST stripe-mock-0.103.0.tar.gz 567107 BLAKE2B 76dbc6bbb1d62ea68c30291fea894e563a426790c8928e7bc5a444eca8d48c8bcc23067459c1a249449af305a6809c70168918543087a1ef5e38cf7609421a7c SHA512 65ec61ccf94d1931389c4a16288dfac4d820a6fdf641cad1028347dfcb298aa4370d97d2dd4e468e17b8a702ce6b7611213b0707f1d5e37cd20aec46772e6a9c DIST stripe-mock-0.104.0.tar.gz 574936 BLAKE2B 681dcc2b02f5d4ca946024d1c049e499ce1c05c5a00653ca5a1af25325ce66b651e307df12ac0137fb38478332a8a04fb09ced39afa697a81a4afcc69a1cf314 SHA512 6d9c5fe5e5e83e8721ae441ae15e16594c690360a62934e825627add8acf6d58b0c4f52bd2c6d787c934fe0e974790b35b7c63d02f097647744549626b1708c5 DIST stripe-mock-0.105.0.tar.gz 583483 BLAKE2B 8015699be4cd7a0c6e81c8f89cebe23fadb02904a175fef15c5e1fe156b01b001a03ba4b42ddffd453203142b1108d5981782d23e1369bab61181e0ef3964734 SHA512 539c3315c3e4896584a656fa3157ac69331bdaf2c77b6a7433b8709971e3b248fe89f1df3eab3f3178580847109460b86f975f0a378aef48ca3c29466b076f52 +DIST stripe-mock-0.106.0.tar.gz 592320 BLAKE2B 2154898ecb13516d11fe5188012829af5618a0520b19d6c3899c976ef719e5ddfe0a1bfe0c6787b9e51c695734d90e2297b8df6abc7d055a8d4df8e747d16b08 SHA512 30d5db6ace639435f0c97ce2ff38c02acdb464a09d5cf59a90ea3892b5f277e05ffb67d068b74739c2cdca3e73b2db74054079335bb28536c57457b46251bd6d diff --git a/dev-util/stripe-mock/stripe-mock-0.106.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.106.0.ebuild new file mode 100644 index 000000000000..05a7220e34b0 --- /dev/null +++ b/dev-util/stripe-mock/stripe-mock-0.106.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGO_SRC="github.com/stripe/stripe-mock" +EGO_PN=${EGO_SRC}/... +inherit golang-build golang-vcs-snapshot + +DESCRIPTION="Mock HTTP server that responds like the real Stripe API" +HOMEPAGE="https://github.com/stripe/stripe-mock" +SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64 ~x86" + +LICENSE="MIT ISC BSD-2" +SLOT="0" + +src_install() { + golang-build_src_install + dobin bin/stripe-mock + rm -rf "${D}$(get_golibdir_gopath)" || die +} diff --git a/dev-util/valgrind/valgrind-3.17.0.ebuild b/dev-util/valgrind/valgrind-3.17.0.ebuild index 6987ba864099..56f858162a01 100644 --- a/dev-util/valgrind/valgrind-3.17.0.ebuild +++ b/dev-util/valgrind/valgrind-3.17.0.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} == "9999" ]]; then inherit git-r3 else SRC_URI="ftp://sourceware.org/pub/valgrind/${P}.tar.bz2" - KEYWORDS="-* amd64 ~arm ~arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" + KEYWORDS="-* amd64 ~arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" fi DEPEND="mpi? ( virtual/mpi )" diff --git a/dev-vcs/fossil/fossil-2.12.1.ebuild b/dev-vcs/fossil/fossil-2.12.1.ebuild index 71d847dfb53c..2a0190cc2661 100644 --- a/dev-vcs/fossil/fossil-2.12.1.ebuild +++ b/dev-vcs/fossil/fossil-2.12.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ SRC_URI="https://fossil-scm.org/home/uv/fossil-src-${PV}.tar.gz" LICENSE="BSD-2" SLOT="0" KEYWORDS="amd64 arm ppc ppc64 x86" -IUSE="debug fusefs json -miniz system-sqlite +ssl static tcl tcl-stubs +IUSE="debug fusefs json miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks" REQUIRED_USE="ssl? ( !miniz )" diff --git a/dev-vcs/fossil/fossil-2.13.ebuild b/dev-vcs/fossil/fossil-2.13.ebuild index edbf33e450ca..d15ac6e0ea52 100644 --- a/dev-vcs/fossil/fossil-2.13.ebuild +++ b/dev-vcs/fossil/fossil-2.13.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ SRC_URI="https://fossil-scm.org/home/uv/fossil-src-${PV}.tar.gz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="debug fusefs json -miniz system-sqlite +ssl static tcl tcl-stubs +IUSE="debug fusefs json miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks" REQUIRED_USE="ssl? ( !miniz )" diff --git a/dev-vcs/fossil/fossil-2.14.ebuild b/dev-vcs/fossil/fossil-2.14.ebuild index cec9cc187d00..c1c0418835cb 100644 --- a/dev-vcs/fossil/fossil-2.14.ebuild +++ b/dev-vcs/fossil/fossil-2.14.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://fossil-scm.org/home/uv/fossil-src-${PV}.tar.gz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="debug fusefs json -miniz system-sqlite +ssl static tcl tcl-stubs +IUSE="debug fusefs json miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks" REQUIRED_USE="ssl? ( !miniz )" diff --git a/dev-vcs/gitstats/gitstats-0_pre20201124.ebuild b/dev-vcs/gitstats/gitstats-0_pre20201124.ebuild index 66528515c079..0c57538aad5f 100644 --- a/dev-vcs/gitstats/gitstats-0_pre20201124.ebuild +++ b/dev-vcs/gitstats/gitstats-0_pre20201124.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 diff --git a/eclass/librewolf-r1.eclass b/eclass/librewolf-r1.eclass index 0c334530b189..40da23cc21d0 100644 --- a/eclass/librewolf-r1.eclass +++ b/eclass/librewolf-r1.eclass @@ -47,19 +47,19 @@ mk_add_options MOZ_TELEMETRY_REPORTING=0 END # Remove some pre-installed addons that might be questionable - eapply "${WORKDIR}/common/patches/remove_addons.patch" + eapply "${WORKDIR}/patches/remove_addons.patch" # Disable (some) megabar functionality # Adapted from https://github.com/WesleyBranton/userChrome.css-Customizations - eapply "${WORKDIR}/common/patches/megabar.patch" + eapply "${WORKDIR}/patches/megabar.patch" # Disabling Pocket sed -i "s/'pocket'/#'pocket'/g" "${S}"/browser/components/moz.build - eapply "${WORKDIR}/common/patches/context-menu.patch" + eapply "${WORKDIR}/patches/context-menu.patch" # Remove mozilla vpn ads - eapply "${WORKDIR}/common/patches/mozilla-vpn-ad.patch" + eapply "${WORKDIR}/patches/mozilla-vpn-ad.patch" # this one only to remove an annoying error message: sed -i 's#SaveToPocket.init();#// SaveToPocket.init();#g' "${S}"/browser/components/BrowserGlue.jsm @@ -110,6 +110,34 @@ librewolf-r1_src_unpack() { git-r3_checkout "$repo" "${WORKDIR}/${_repo}" done popd + + # Grab patches + # pre-89 patches can be grabed from the 'linux' librewolf repository + # after 89 patches were moved to 'common' + patch_list=( + "remove_addons.patch" + "megabar.patch" + "context-menu.patch" + "mozilla-vpn-ad.patch" + ) + + if ver_test -lt "89.0"; then + git-r3_fetch "https://gitlab.com/librewolf-community/browser/linux.git" \ + "v${LIBREWOLF_PV}" + git-r3_checkout "https://gitlab.com/librewolf-community/browser/linux.git" \ + "${WORKDIR}/linux" + + mkdir "${WORKDIR}/patches" + + for patch in ${patch_list[@]}; do + cp "${WORKDIR}/linux/${patch}" "${WORKDIR}/patches" + done + else + mkdir "${WORKDIR}/patches" + for patch in ${patch_list[@]}; do + cp "${WORKDIR}/common/patches/${patch}" "${WORKDIR}/patches" + done + fi } librewolf-r1_src_install() { diff --git a/games-board/pychess/files/pychess-gtk-compat.patch b/games-board/pychess/files/pychess-gtk-compat.patch deleted file mode 100644 index fa7f2fc61033..000000000000 --- a/games-board/pychess/files/pychess-gtk-compat.patch +++ /dev/null @@ -1,46 +0,0 @@ -From 6c840c9981f2077d0fa4436b30a2f2f6650e55fb Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= <contact@tiger-222.fr> -Date: Mon, 13 Apr 2020 14:48:40 +0200 -Subject: [PATCH] Fix missing TreeModelFilter.sort_new_with_model() on some Gtk - versions -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This is due to API changes, but let's keep compatibility with older versions. -That should fix #1811. - -Signed-off-by: Mickaël Schoentgen <contact@tiger-222.fr> ---- - lib/pychess/perspectives/fics/__init__.py | 18 ++++++++++++++++++ - 1 file changed, 18 insertions(+) - -diff --git a/lib/pychess/perspectives/fics/__init__.py b/lib/pychess/perspectives/fics/__init__.py -index 4f956b695..1518c21e0 100644 ---- a/lib/pychess/perspectives/fics/__init__.py -+++ b/lib/pychess/perspectives/fics/__init__.py -@@ -27,6 +27,24 @@ - from pychess.perspectives import Perspective, perspective_manager, panel_name - - -+if not hasattr(Gtk.TreeModelFilter, "new_with_model"): -+ # Fix #1811: TreeModelFilter.sort_new_with_model() is missing on some Gtk versions -+ # due to API changes. Let's keep compatibility with older versions. -+ -+ def sort_new_with_model(self): -+ super_object = super(Gtk.TreeModel, self) -+ if hasattr(super_object, "sort_new_with_model"): -+ return super_object.sort_new_with_model() -+ return Gtk.TreeModelSort.new_with_model(self) -+ -+ @classmethod -+ def new_with_model(self, child_model): -+ return Gtk.TreeModel.sort_new_with_model(child_model) -+ -+ Gtk.TreeModel.sort_new_with_model = sort_new_with_model -+ Gtk.TreeModelFilter.new_with_model = new_with_model -+ -+ - class PlayerNotificationMessage(InfoBarMessage): - - def __init__(self, message_type, content, callback, player, text): diff --git a/games-board/pychess/files/pychess-setup-no-display.patch b/games-board/pychess/files/pychess-setup-no-display.patch deleted file mode 100644 index 29b06bd93fe8..000000000000 --- a/games-board/pychess/files/pychess-setup-no-display.patch +++ /dev/null @@ -1,136 +0,0 @@ -From faf456bf2d081aa3cff52d0f9f714748a04628b1 Mon Sep 17 00:00:00 2001 -From: gbtami <gbtami@gmail.com> -Date: Sat, 18 May 2019 18:50:17 +0200 -Subject: [PATCH] Fix bdist_rpm. Prevent importing GLib from setup.py - ---- - lib/pychess/Savers/pgn.py | 8 ++++---- - lib/pychess/Utils/__init__.py | 18 ++++++++++++++++++ - lib/pychess/widgets/ChessClock.py | 20 ++------------------ - 3 files changed, 24 insertions(+), 22 deletions(-) - -diff --git a/lib/pychess/Savers/pgn.py b/lib/pychess/Savers/pgn.py -index ac4238471..2b089e1d1 100644 ---- a/lib/pychess/Savers/pgn.py -+++ b/lib/pychess/Savers/pgn.py -@@ -10,8 +10,6 @@ - import sys - import textwrap - --from gi.repository import GLib -- - import pexpect - - from sqlalchemy import String -@@ -23,7 +21,6 @@ - WON_RESIGN, DRAW, BLACKWON, WHITEWON, NORMALCHESS, DRAW_AGREE, FIRST_PAGE, PREV_PAGE, NEXT_PAGE, \ - ABORTED_REASONS, ADJOURNED_REASONS, WON_CALLFLAG, DRAW_ADJUDICATION, WON_ADJUDICATION, \ - WHITE_ENGINE_DIED, BLACK_ENGINE_DIED, RUNNING, TOOL_NONE, TOOL_CHESSDB, TOOL_SCOUTFISH -- - from pychess.System import conf - from pychess.System.Log import log - from pychess.System.protoopen import PGN_ENCODING -@@ -35,7 +32,7 @@ - from pychess.Utils.elo import get_elo_rating_change_pgn - from pychess.Utils.logic import getStatus - from pychess.Variants import name2variant, NormalBoard, variants --from pychess.widgets.ChessClock import formatTime -+from pychess.Utils import formatTime - from pychess.Savers.ChessFile import ChessFile, LoadingError - from pychess.Savers.database import col2label, TagDatabase, parseDateTag - from pychess.Database import model as dbmodel -@@ -460,6 +457,7 @@ def init_tag_database(self, importer=None): - if size > 10000000: - drop_indexes(self.engine) - if self.progressbar is not None: -+ from gi.repository import GLib - GLib.idle_add(self.progressbar.set_text, _("Importing game headers...")) - if importer is None: - importer = PgnImport(self) -@@ -477,6 +475,7 @@ def init_chess_db(self): - if chess_db_path is not None and self.path and self.size > 0: - try: - if self.progressbar is not None: -+ from gi.repository import GLib - GLib.idle_add(self.progressbar.set_text, _("Creating .bin index file...")) - self.chess_db = Parser(engine=(chess_db_path, )) - self.chess_db.open(self.path) -@@ -503,6 +502,7 @@ def init_scoutfish(self): - if scoutfish_path is not None and self.path and self.size > 0: - try: - if self.progressbar is not None: -+ from gi.repository import GLib - GLib.idle_add(self.progressbar.set_text, _("Creating .scout index file...")) - self.scoutfish = Scoutfish(engine=(scoutfish_path, )) - self.scoutfish.open(self.path) -diff --git a/lib/pychess/Utils/__init__.py b/lib/pychess/Utils/__init__.py -index 481273854..038c798da 100755 ---- a/lib/pychess/Utils/__init__.py -+++ b/lib/pychess/Utils/__init__.py -@@ -1,9 +1,27 @@ - import asyncio - import weakref -+from math import ceil - - from pychess.Utils.lutils.ldata import MATE_VALUE, MATE_DEPTH - - -+def formatTime(seconds, clk2pgn=False): -+ minus = "" -+ if seconds <= -10 or seconds >= 10: -+ seconds = ceil(seconds) -+ if seconds < 0: -+ minus = "-" -+ seconds = -seconds -+ hours, remainder = divmod(seconds, 3600) -+ minutes, seconds = divmod(remainder, 60) -+ if hours or clk2pgn: -+ return minus + "%d:%02d:%02d" % (hours, minutes, seconds) -+ elif not minutes and seconds < 10: -+ return minus + "%.1f" % seconds -+ else: -+ return minus + "%d:%02d" % (minutes, seconds) -+ -+ - def prettyPrintScore(s, depth, format_mate=False): - """The score parameter is an eval value from White point of view""" - -diff --git a/lib/pychess/widgets/ChessClock.py b/lib/pychess/widgets/ChessClock.py -index 8811d13db..740e0828a 100644 ---- a/lib/pychess/widgets/ChessClock.py -+++ b/lib/pychess/widgets/ChessClock.py -@@ -1,32 +1,16 @@ - # -*- coding: UTF-8 -*- - --from math import ceil, pi, cos, sin -+from math import pi, cos, sin - - import cairo - from gi.repository import GLib, Gtk, Gdk, Pango, PangoCairo, GObject - - from pychess.System import conf -+from pychess.Utils import formatTime - from pychess.Utils.const import BLACK, WHITE, LOCAL, UNFINISHED_STATES, DRAW, WHITEWON, BLACKWON, UNKNOWN_STATE - from . import preferencesDialog - - --def formatTime(seconds, clk2pgn=False): -- minus = "" -- if seconds <= -10 or seconds >= 10: -- seconds = ceil(seconds) -- if seconds < 0: -- minus = "-" -- seconds = -seconds -- hours, remainder = divmod(seconds, 3600) -- minutes, seconds = divmod(remainder, 60) -- if hours or clk2pgn: -- return minus + "%d:%02d:%02d" % (hours, minutes, seconds) -- elif not minutes and seconds < 10: -- return minus + "%.1f" % seconds -- else: -- return minus + "%d:%02d" % (minutes, seconds) -- -- - class ChessClock(Gtk.DrawingArea): - def __init__(self): - GObject.GObject.__init__(self) diff --git a/games-strategy/widelands/Manifest b/games-strategy/widelands/Manifest index 0efbada5560d..36caa1904732 100644 --- a/games-strategy/widelands/Manifest +++ b/games-strategy/widelands/Manifest @@ -1 +1,2 @@ DIST widelands-build20.tar.bz2 232364340 BLAKE2B 1d8e2cd28d2ac3e2425c91a9872a3f158d7063a2c6c669d95df347561ef35dfca479fd81252d61008a3282c99a2ce70c4d904622272dd86477a731fc711306b1 SHA512 25280db6a57adeb37d13db35ce9eb41a5478534b04772240f6228c180f5a41a55fc414dab66e724945442985cbbba7a8a59a582291aca176e0bd8ae6c08760e5 +DIST widelands-build21-source.tar.gz 381374149 BLAKE2B 17f0491bf7bcd10449bcc274be94aec4a0a64625c19f52426a0d460c3356e04a59b51683e72b4492ba1f62bd6ea510250c3cedda89a7588b88a0071abb1cf0cf SHA512 8d36bd0407a72e4e221155121f9ab4ce7fdfb6d81ca70a2772baf12c3397fc6abbcad5006336adb471d2c5127a90b4cda735e941d69cf779be1f923d4a38960e diff --git a/games-strategy/widelands/metadata.xml b/games-strategy/widelands/metadata.xml index c840020b15f2..381cad23bf3c 100644 --- a/games-strategy/widelands/metadata.xml +++ b/games-strategy/widelands/metadata.xml @@ -6,6 +6,7 @@ <name>Gentoo Games Project</name> </maintainer> <upstream> + <remote-id type="github">widelands/widelands</remote-id> <remote-id type="launchpad">widelands</remote-id> <remote-id type="cpe">cpe:/a:widelands:widelands</remote-id> </upstream> diff --git a/games-strategy/widelands/widelands-0.21.ebuild b/games-strategy/widelands/widelands-0.21.ebuild new file mode 100644 index 000000000000..b560823d38f5 --- /dev/null +++ b/games-strategy/widelands/widelands-0.21.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) + +inherit xdg cmake python-any-r1 + +MY_PV="build$(ver_cut 2)" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Game similar to Settlers 2" +HOMEPAGE="https://www.widelands.org/" +SRC_URI="https://launchpad.net/widelands/${MY_PV}/${MY_PV}/+download/${MY_P}-source.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="|| ( Apache-2.0 GPL-3 ) BitstreamVera CC-BY-SA-3.0 GPL-2 GPL-2+ MIT OFL-1.1 ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/icu:= + media-libs/glew:0= + media-libs/libglvnd + media-libs/libpng:= + media-libs/libsdl2[opengl,sound,video] + media-libs/sdl2-image[jpeg,png] + media-libs/sdl2-mixer[vorbis] + media-libs/sdl2-ttf + sys-libs/zlib:= + virtual/libintl" +DEPEND=" + ${RDEPEND} + dev-libs/boost" +BDEPEND=" + ${PYTHON_DEPS} + sys-devel/gettext" + +PATCHES=( + "${FILESDIR}"/${PN}-0.20_rc1-cxxflags.patch +) + +src_configure() { + CMAKE_BUILD_TYPE="Release" + + local mycmakeargs=( + -DCMAKE_INSTALL_PREFIX="${EPREFIX}"/usr/bin + -DWL_INSTALL_BASEDIR="${EPREFIX}"/usr/share/doc/${PF} + -DWL_INSTALL_DATADIR="${EPREFIX}"/usr/share/${PN} + -DGTK_UPDATE_ICON_CACHE=OFF + -DOPTION_BUILD_TESTS=$(usex test) + ) + + cmake_src_configure +} diff --git a/games-strategy/widelands/widelands-9999.ebuild b/games-strategy/widelands/widelands-9999.ebuild index cfff4769afae..2bd2ab9d2312 100644 --- a/games-strategy/widelands/widelands-9999.ebuild +++ b/games-strategy/widelands/widelands-9999.ebuild @@ -1,93 +1,66 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{6,7,8,9,10} ) -inherit cmake python-any-r1 xdg +inherit xdg cmake python-any-r1 -MY_PV="build$(ver_cut 2-)" -MY_P="${PN}-${MY_PV/_/-}" - -DESCRIPTION="A game similar to Settlers 2" +DESCRIPTION="Game similar to Settlers 2" HOMEPAGE="https://www.widelands.org/" -if [[ "${PV}" == *9999 ]] ; then +if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/widelands/widelands.git" else - SRC_URI="https://launchpad.net/widelands/build$(ver_cut 2)/${MY_PV/_/-}/+download/${MY_P}.tar.bz2" + MY_PV="build$(ver_cut 2)" + MY_P="${PN}-${MY_PV}" + + SRC_URI="https://launchpad.net/widelands/${MY_PV}/${MY_PV}/+download/${MY_P}-source.tar.gz" S="${WORKDIR}/${MY_P}" + KEYWORDS="~amd64 ~x86" fi -LICENSE="GPL-2+" +LICENSE="|| ( Apache-2.0 GPL-3 ) BitstreamVera CC-BY-SA-3.0 GPL-2 GPL-2+ MIT OFL-1.1 ZLIB" SLOT="0" -IUSE="" +IUSE="test" +RESTRICT="!test? ( test )" RDEPEND=" - >=dev-libs/boost-1.48:= dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd - media-libs/libpng:0= - media-libs/libsdl2[video] + media-libs/libpng:= + media-libs/libsdl2[opengl,sound,video] media-libs/sdl2-image[jpeg,png] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-ttf - sys-libs/zlib:=[minizip]" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} -" + net-misc/curl + sys-libs/zlib:= + virtual/libintl" +DEPEND=" + ${RDEPEND} + dev-libs/boost" BDEPEND=" - sys-devel/gettext -" - -CMAKE_BUILD_TYPE="Release" + ${PYTHON_DEPS} + sys-devel/gettext" PATCHES=( - "${FILESDIR}/${PN}-0.20_rc1-cxxflags.patch" + "${FILESDIR}"/${PN}-0.20_rc1-cxxflags.patch ) -src_prepare() { - cmake_src_prepare - - sed -i -e 's:__ppc__:__PPC__:' src/map_io/s2map.cc || die - # don't call gtk-update-icon-cache - sed '/^find_program(GTK_UPDATE_ICON_CACHE/d' \ - -i xdg/CMakeLists.txt || die -} - src_configure() { - local WLDIR="${EPREFIX}/usr/share/${PN}" - local mycmakeargs=( - -DOPTION_BUILD_WEBSITE_TOOLS=OFF - - # -DUSE_XDG=ON breaks finding of datadir - -DUSE_XDG=OFF + CMAKE_BUILD_TYPE="Release" - # Upstream's cmake files are totally fscked up... - # This just helps dealing with less crap in src_install - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr" - -DWL_INSTALL_BASEDIR="${WLDIR}" - -DWL_INSTALL_DATADIR="${WLDIR}/data" + local mycmakeargs=( + -DCMAKE_INSTALL_PREFIX="${EPREFIX}"/usr/bin + -DWL_INSTALL_BASEDIR="${EPREFIX}"/usr/share/doc/${PF} + -DWL_INSTALL_DATADIR="${EPREFIX}"/usr/share/${PN} + -DGTK_UPDATE_ICON_CACHE=OFF + -DOPTION_BUILD_TESTS=$(usex test) ) - cmake_src_configure -} - -src_install() { - cmake_src_install - # upstream CMakeLists.txt file is totally bonkers - local sharedir="${ED}/usr/share" - dodir /usr/bin - mv "${ED}"/usr/${PN} "${ED}"/usr/bin || die - mv "${ED}"/share/* "${sharedir}" || die - rmdir "${ED}"/share || die - rm "${sharedir}"/${PN}/{COPYING,CREDITS,ChangeLog} || die - mv "${sharedir}"/${PN}/VERSION "${sharedir}"/doc/${PF}/ || die - - #newicon data/images/logos/wl-ico-128.png ${PN}.png - #make_desktop_entry ${PN} ${PN^} + cmake_src_configure } diff --git a/gnustep-apps/gorm/Manifest b/gnustep-apps/gorm/Manifest index 66cafaa2ff3e..a79bd42f8cc3 100644 --- a/gnustep-apps/gorm/Manifest +++ b/gnustep-apps/gorm/Manifest @@ -1,3 +1,4 @@ DIST gorm-1.2.23.tar.gz 695799 BLAKE2B 93fcf72088a45c553fce4473a489719c84f02aa510e8da6fe4a1bbc80f1fab7d07ac07e05e6a543eaf5340246de4022b0be01fd0aaf48ac327aa52f723838074 SHA512 785ba83a82cee982c688a185300e90c9973b1c3de262770e708199593e7d8bfd9dccfa48ff6951f5d87558dffdda67c70fbc5091504afdd93e6e043d7b134460 DIST gorm-1.2.24.tar.gz 5731402 BLAKE2B c0f15cbdf1e13a375912f3910888039ca2217bd6f59a0ef3b82edb27567e3953560f4227e05cb3577365b5c21f6e1da734ba9610ce7a7618996211d52ca71a32 SHA512 e57407bf5a0d2c717c5018581faa2c62074a8f7c13aec2167c955f649973d8e9a5e958ee28a5cb150f9e9c4a514dab9afa58b23b2f091e006a47459210565ab7 DIST gorm-1.2.26.tar.gz 6765967 BLAKE2B c203cb7357960fe06331599322be400ee97ffe5ff5433b7b4c36923e0054b31c7fbbfc55b0f1680ef3fa2cff792203633f9281d42af15ffc31b8fc9970794e84 SHA512 6219e658455b8890d82faf1679c319d5936a9867e63f5e66e3b7106007ea5cdf563474eec553dc747cfec60a314205e49deb54d506f1febc470e83b901d67fe5 +DIST gorm-1.2.28.tar.gz 9158263 BLAKE2B 09e49bfb1329a1da0b379987e4b8ce6a69959d83c676b01829c18db543e5fc9c346230deb188153dde4e5257c47ec5e84aee008701a3a4b77bfc3ace132bd662 SHA512 0125e1c86f7158a647f65c3e1d6c9f167b7a58055a87b837ca44a14cc84c02edbc8472ba5362776fc05c000ac010189531738efec3952df7d2edf9a3d0328e6b diff --git a/gnustep-apps/gorm/gorm-1.2.28.ebuild b/gnustep-apps/gorm/gorm-1.2.28.ebuild new file mode 100644 index 000000000000..9623e0cd3df0 --- /dev/null +++ b/gnustep-apps/gorm/gorm-1.2.28.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnustep-2 + +DESCRIPTION="A clone of the NeXTstep Interface Builder application for GNUstep" +HOMEPAGE="http://www.gnustep.org/experience/Gorm.html" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/dev-apps/${P}.tar.gz" + +KEYWORDS="~amd64 ~ppc ~x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=">=gnustep-base/gnustep-gui-0.22.0" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i -e "/DOCUMENT_NAME =.*/a \Gorm_DOC_INSTALL_DIR=Developer/Gorm" \ + -e "/DOCUMENT_TEXT_NAME =.*/a \ANNOUNCE_DOC_INSTALL_DIR=Developer/Gorm/ReleaseNotes" \ + -e "/DOCUMENT_TEXT_NAME =.*/a \README_DOC_INSTALL_DIR=Developer/Gorm/ReleaseNotes" \ + -e "/DOCUMENT_TEXT_NAME =.*/a \NEWS_DOC_INSTALL_DIR=Developer/Gorm/ReleaseNotes" \ + -e "/DOCUMENT_TEXT_NAME =.*/a \INSTALL_DOC_INSTALL_DIR=Developer/Gorm/ReleaseNotes" \ + Documentation/GNUmakefile + + default +} diff --git a/gnustep-apps/sogo/Manifest b/gnustep-apps/sogo/Manifest index cf2ba38a1acc..ddcbcc20f684 100644 --- a/gnustep-apps/sogo/Manifest +++ b/gnustep-apps/sogo/Manifest @@ -1 +1,2 @@ DIST sogo-4.3.2.tar.gz 34497548 BLAKE2B fd9e225488bbdb13b4204d1cec9ba0217049681d531e20db3d995a4928f0cd8ff658eb390a0f84375ee28fec2c7a36fb11d836939a8731e828be8d38728a6559 SHA512 eeae11c2e9c4f3d38e64ebdac4950980859af6486e229d1480c9ceb895b63229b42ceea9a17934bfd5e88c5f05c93567f5df5f29f7d68b7dafcdfc44054bc9af +DIST sogo-5.1.1.tar.gz 34263214 BLAKE2B c6a415602c931e4c703608b05036a508513eeee08d53e095ba8fa2a19ca509522ad190f8c1db78698e03818e25f221f76c097016017fc2f0aaba016043c1447e SHA512 6da4472f991da39449d8fdb05371bdc933cff8835d3501a3be475a263acb38ec10ccc43e719fb56e75fe6f5b4acd8f1f0fe3ebf1d8e734f7dbd8f28494baaff6 diff --git a/gnustep-apps/sogo/sogo-5.1.1.ebuild b/gnustep-apps/sogo/sogo-5.1.1.ebuild new file mode 100644 index 000000000000..61f0f3783496 --- /dev/null +++ b/gnustep-apps/sogo/sogo-5.1.1.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit gnustep-2 vcs-snapshot + +DESCRIPTION="Groupware server built around OpenGroupware.org and the SOPE application server" +HOMEPAGE="http://www.sogo.nu" +SRC_URI="https://github.com/inverse-inc/sogo/archive/SOGo-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="activesync gnutls +ssl" + +RDEPEND=" + acct-user/sogo + dev-libs/libmemcached + net-misc/curl + net-misc/memcached + >=gnustep-libs/sope-${PV}[ldap] + activesync? ( dev-libs/libwbxml ) + gnutls? ( net-libs/gnutls:= ) + !gnutls? ( + dev-libs/openssl:0= + ) +" +DEPEND="${RDEPEND} + >=gnustep-base/gnustep-make-2.6.3" + +src_prepare() { + gnustep-base_src_prepare + sed -e "s/validateArgs$//" -i configure \ + || die + if use activesync; then + sed -e 's/Tests\/Unit/ActiveSync &/g' \ + -i GNUmakefile || die + fi + + default +} + +src_configure() { + local ssl_provider + if use ssl ; then + if use gnutls ; then + ssl_provider=gnutls + else + ssl_provider=ssl + fi + else + ssl_provider=none + fi + + egnustep_env + + ./configure \ + --disable-strip \ + --prefix=/usr \ + --with-ssl="${ssl_provider}" \ + $(use_enable debug) \ + || die "configure failed" +} + +src_install() { + gnustep-base_src_install + + newconfd "${FILESDIR}"/sogod.confd sogod + newinitd "${FILESDIR}"/sogod.initd sogod + + insinto /etc/logrotate.d + newins Scripts/logrotate sogo + newdoc Apache/SOGo.conf SOGo-Apache.conf + + insinto /etc/sogo + doins Scripts/sogo.conf + + insinto /etc/cron.d + newins Scripts/sogo.cron sogo + keepdir /var/log/sogo + + fowners sogo:sogo /var/log/sogo + fowners -R root:sogo /etc/sogo +} + +pkg_postinst() { + gnustep-base_pkg_postinst + elog "SOGo documentation is available online at:" + elog "http://www.sogo.nu/downloads/documentation.html" + elog + elog "Apache sample configuration file is available in:" + elog "/usr/share/doc/${PF}" + if use activesync; then + ewarn "In order to use the SOGo ActiveSync support code in production environments," + ewarn "you need to get a proper usage license. Check the documentation for details." + fi +} diff --git a/gnustep-base/gnustep-back-art/Manifest b/gnustep-base/gnustep-back-art/Manifest index 2a104cbde5fb..54dee1ec82bd 100644 --- a/gnustep-base/gnustep-back-art/Manifest +++ b/gnustep-base/gnustep-back-art/Manifest @@ -1 +1,2 @@ DIST gnustep-back-0.28.0.tar.gz 973776 BLAKE2B c82792d9c2af45a3a81e1e40c9b0afe7b4dde7846cf4e593ec2f3e816196a321efba2d0d40d14795eed01681845bc6b5d75e8828c689961b6ba2db6de5231568 SHA512 9befc654ec431fe2a23baff2bfe848d7e4f32c58ecee877ca9606ba318ba470493469e28a5b3e37ca132f0f1262219ebd2755c3da7b26fbd1b66dddb1514d25c +DIST gnustep-back-0.29.0.tar.gz 1005485 BLAKE2B c117b29ca568d3751b1aa7e0baed49d517e77fb9e7b3ab332e422cac1892b9b33d81f4cce86826e69c65ba73926ae8b7abdcf1022613680f56739f2c5a688b53 SHA512 96efd09d4cd93796fc240e160be22879b6cc600f08c615dd0d349ce9591b91b8d2afbc18332dd03861f70ebcff86de975adf352d006f2b397fcdfcf395261f7f diff --git a/gnustep-base/gnustep-back-art/gnustep-back-art-0.29.0.ebuild b/gnustep-base/gnustep-back-art/gnustep-back-art-0.29.0.ebuild new file mode 100644 index 000000000000..62331cc1831b --- /dev/null +++ b/gnustep-base/gnustep-back-art/gnustep-back-art-0.29.0.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnustep-base + +DESCRIPTION="libart_lgpl back-end component for the GNUstep GUI Library" +HOMEPAGE="http://www.gnustep.org" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="opengl xim" + +RDEPEND="${GNUSTEP_CORE_DEPEND} + =gnustep-base/gnustep-gui-${PV%.*}* + >=gnustep-base/mknfonts-0.5-r1 + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXi + x11-libs/libXmu + x11-libs/libXt + x11-libs/libXft + x11-libs/libXrender + media-fonts/dejavu + >=media-libs/freetype-2.1.9 + >=media-libs/libart_lgpl-2.3 + opengl? ( virtual/opengl virtual/glu ) + + !gnustep-base/gnustep-back-cairo + !gnustep-base/gnustep-back-xlib" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/gnustep-back-${PV} + +src_configure() { + egnustep_env + + myconf="$(use_enable opengl glx)" + myconf="$myconf $(use_enable xim)" + myconf="$myconf --enable-server=x11" + myconf="$myconf --enable-graphics=art" + + econf $myconf +} + +src_compile() { + gnustep-base_src_compile + + # Create font lists for DejaVu + einfo "Generating nfonts support files" + ( + cd Fonts + export "${GS_ENV[@]}" + ${GNUSTEP_SYSTEM_TOOLS}/mknfonts \ + $(fc-list : file|grep -v '\.gz'|cut -d: -f1) \ + || die "nfonts support files creation failed" + # Trim whitepsaces + for fdir in *\ */; do + mv "$fdir" `echo $fdir | tr -d [:space:]` + done + ) +} + +src_install() { + gnustep-base_src_install + + mkdir -p "${D}/${GNUSTEP_SYSTEM_LIBRARY}/Fonts" + cp -pPR Fonts/*.nfont "${D}/${GNUSTEP_SYSTEM_LIBRARY}/Fonts" +} + +gnustep_config_script() { + echo "echo ' * setting normal font to DejaVuSans'" + echo "defaults write NSGlobalDomain NSFont DejaVuSans" + echo "echo ' * setting bold font to DejaVuSans-Bold'" + echo "defaults write NSGlobalDomain NSBoldFont DejaVuSans-Bold" + echo "echo ' * setting fixed font to DejaVuSansMono'" + echo "defaults write NSGlobalDomain NSUserFixedPitchFont DejaVuSansMono" +} diff --git a/gnustep-base/gnustep-back-cairo/Manifest b/gnustep-base/gnustep-back-cairo/Manifest index 2a104cbde5fb..54dee1ec82bd 100644 --- a/gnustep-base/gnustep-back-cairo/Manifest +++ b/gnustep-base/gnustep-back-cairo/Manifest @@ -1 +1,2 @@ DIST gnustep-back-0.28.0.tar.gz 973776 BLAKE2B c82792d9c2af45a3a81e1e40c9b0afe7b4dde7846cf4e593ec2f3e816196a321efba2d0d40d14795eed01681845bc6b5d75e8828c689961b6ba2db6de5231568 SHA512 9befc654ec431fe2a23baff2bfe848d7e4f32c58ecee877ca9606ba318ba470493469e28a5b3e37ca132f0f1262219ebd2755c3da7b26fbd1b66dddb1514d25c +DIST gnustep-back-0.29.0.tar.gz 1005485 BLAKE2B c117b29ca568d3751b1aa7e0baed49d517e77fb9e7b3ab332e422cac1892b9b33d81f4cce86826e69c65ba73926ae8b7abdcf1022613680f56739f2c5a688b53 SHA512 96efd09d4cd93796fc240e160be22879b6cc600f08c615dd0d349ce9591b91b8d2afbc18332dd03861f70ebcff86de975adf352d006f2b397fcdfcf395261f7f diff --git a/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.29.0.ebuild b/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.29.0.ebuild new file mode 100644 index 000000000000..369142c18e52 --- /dev/null +++ b/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.29.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnustep-base + +DESCRIPTION="Cairo back-end component for the GNUstep GUI Library" +HOMEPAGE="http://www.gnustep.org" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="opengl xim" + +RDEPEND="${GNUSTEP_CORE_DEPEND} + =gnustep-base/gnustep-gui-${PV%.*}* + opengl? ( virtual/opengl virtual/glu ) + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXi + x11-libs/libXmu + x11-libs/libXt + x11-libs/libXft + x11-libs/libXrender + >=media-libs/freetype-2.1.9 + >=x11-libs/cairo-1.2.0[X] + + !gnustep-base/gnustep-back-art + !gnustep-base/gnustep-back-xlib" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/gnustep-back-${PV} + +src_configure() { + egnustep_env + + myconf="$(use_enable opengl glx)" + myconf="$myconf $(use_enable xim)" + myconf="$myconf --enable-server=x11" + myconf="$myconf --enable-graphics=cairo" + + econf $myconf +} diff --git a/gnustep-base/gnustep-back-xlib/Manifest b/gnustep-base/gnustep-back-xlib/Manifest index 2a104cbde5fb..54dee1ec82bd 100644 --- a/gnustep-base/gnustep-back-xlib/Manifest +++ b/gnustep-base/gnustep-back-xlib/Manifest @@ -1 +1,2 @@ DIST gnustep-back-0.28.0.tar.gz 973776 BLAKE2B c82792d9c2af45a3a81e1e40c9b0afe7b4dde7846cf4e593ec2f3e816196a321efba2d0d40d14795eed01681845bc6b5d75e8828c689961b6ba2db6de5231568 SHA512 9befc654ec431fe2a23baff2bfe848d7e4f32c58ecee877ca9606ba318ba470493469e28a5b3e37ca132f0f1262219ebd2755c3da7b26fbd1b66dddb1514d25c +DIST gnustep-back-0.29.0.tar.gz 1005485 BLAKE2B c117b29ca568d3751b1aa7e0baed49d517e77fb9e7b3ab332e422cac1892b9b33d81f4cce86826e69c65ba73926ae8b7abdcf1022613680f56739f2c5a688b53 SHA512 96efd09d4cd93796fc240e160be22879b6cc600f08c615dd0d349ce9591b91b8d2afbc18332dd03861f70ebcff86de975adf352d006f2b397fcdfcf395261f7f diff --git a/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.29.0.ebuild b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.29.0.ebuild new file mode 100644 index 000000000000..a65437f8ad5e --- /dev/null +++ b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.29.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnustep-base + +DESCRIPTION="Default X11 back-end component for the GNUstep GUI Library" +HOMEPAGE="http://www.gnustep.org" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="opengl xim" + +RDEPEND="${GNUSTEP_CORE_DEPEND} + =gnustep-base/gnustep-gui-${PV%.*}* + >=media-libs/freetype-2.1.9 + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXi + x11-libs/libXmu + x11-libs/libXt + x11-libs/libXft + x11-libs/libXrender + opengl? ( virtual/opengl virtual/glu ) + + !gnustep-base/gnustep-back-art + !gnustep-base/gnustep-back-cairo" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/gnustep-back-${PV} + +src_configure() { + egnustep_env + + myconf="$(use_enable opengl glx)" + myconf="$myconf $(use_enable xim)" + myconf="$myconf --enable-server=x11" + myconf="$myconf --enable-graphics=xlib" + + econf $myconf +} diff --git a/gnustep-base/gnustep-base/Manifest b/gnustep-base/gnustep-base/Manifest index d53670123898..3c61aa7af1e9 100644 --- a/gnustep-base/gnustep-base/Manifest +++ b/gnustep-base/gnustep-base/Manifest @@ -1 +1,2 @@ DIST gnustep-base-1.27.0.tar.gz 4141163 BLAKE2B b27f7086949bcd5e43b8d6337c4f03eb87447baacb23de75b7df0d2ba769ff3e8cadd7035e78b35c91ccca83151cbe4b61b339aa265dcb53847089849b615f8b SHA512 bbdf45379dbb684f6bdb507b645e0f611cefb05caadff1bf620c2e85f104396cf91782bcce05ff2173078603b76b8a0ba2ea3b71bc56a84c220310910dbcb705 +DIST gnustep-base-1.28.0.tar.gz 4246622 BLAKE2B fdaa834ea3cb13b1d4717c2c7e6b59eff05d16e6a404ffed5f4ccfa2ee3db93ecfee5b95cc30be6a388f56fa28c67f1278ea298f222260dcc24abadaa1cb5e8f SHA512 e173fab28aa1b1df38de4216916db18934422a1d372b9fe6a68a6ff21b2ac0be38aa02631179a8ad62a4f2848080223f34771b364b1c0eebc96c84778677c50b diff --git a/gnustep-base/gnustep-base/gnustep-base-1.28.0.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.28.0.ebuild new file mode 100644 index 000000000000..69f6dac59e43 --- /dev/null +++ b/gnustep-base/gnustep-base/gnustep-base-1.28.0.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnustep-base toolchain-funcs + +DESCRIPTION="A library of general-purpose, non-graphical Objective C objects" +HOMEPAGE="http://www.gnustep.org" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +IUSE="+gnutls +icu +libffi zeroconf" + +RDEPEND="${GNUSTEP_CORE_DEPEND} + >=gnustep-base/gnustep-make-2.6.0 + gnutls? ( net-libs/gnutls ) + icu? ( >=dev-libs/icu-49.0:= ) + !libffi? ( dev-libs/ffcall + gnustep-base/gnustep-make[-native-exceptions] ) + libffi? ( dev-libs/libffi ) + >=dev-libs/libxml2-2.6 + >=dev-libs/libxslt-1.1 + >=dev-libs/gmp-4.1:= + >=sys-libs/zlib-1.2 + zeroconf? ( net-dns/avahi )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-1.26.0-no_compress_man.patch +) + +src_configure() { + egnustep_env + + local myconf + if use libffi ; then + myconf="--enable-libffi --disable-ffcall --with-ffi-include=$($(tc-getPKG_CONFIG) --variable=includedir libffi)" + else + myconf="--disable-libffi --enable-ffcall" + fi + + myconf="$myconf $(use_enable gnutls tls)" + myconf="$myconf $(use_enable icu)" + myconf="$myconf $(use_enable zeroconf)" + myconf="$myconf --with-xml-prefix=${EPREFIX}/usr" + myconf="$myconf --with-gmp-include=${EPREFIX}/usr/include --with-gmp-library=${EPREFIX}/usr/lib" + myconf="$myconf --with-default-config=${EPREFIX}/etc/GNUstep/GNUstep.conf" + + econf $myconf +} + +src_install() { + # We need to set LD_LIBRARY_PATH because the doc generation program + # uses the gnustep-base libraries. Since egnustep_env "cleans the + # environment" including our LD_LIBRARY_PATH, we're left no choice + # but doing it like this. + + egnustep_env + egnustep_install + + if use doc ; then + export LD_LIBRARY_PATH="${S}/Source/obj:${LD_LIBRARY_PATH}" + egnustep_doc + fi + egnustep_install_config +} diff --git a/gnustep-base/gnustep-gui/Manifest b/gnustep-base/gnustep-gui/Manifest index 1ec5139bcc0a..99831e7bf2d2 100644 --- a/gnustep-base/gnustep-gui/Manifest +++ b/gnustep-base/gnustep-gui/Manifest @@ -1 +1,2 @@ DIST gnustep-gui-0.28.0.tar.gz 2933013 BLAKE2B d6076fde3d90625059907d3fb7a3a8edc9ed37a02f31b249f7d8e84a0f1a11ade6aa5e7aa6ac6bf394f561c98259500b342bb828fb583ce847e402101bb7d0f9 SHA512 9c5b979c908f63c99a6d050c2f2b9f50aedad440645c6e9045e78f631335ab3290ae09f69128d57b8b88ffb063d118d3f62f45ccecde99bb135de6c60b46586f +DIST gnustep-gui-0.29.0.tar.gz 2994299 BLAKE2B 6624321e4df3fa7aef659f5c4d364d4f39790c47f9093ff84a87d7535ff1819b0fa331461d442ad0dcec1dbd5cf27e902972b039f6464b2f1330a54807faeea2 SHA512 bbb413d5b391d2e6e30c2f875913b1c7497d5408e595160e51d3ba5b15dd014b531d411861cb8d094a1a21a8f405ff22c4374874dd52a669d1d9738f4a9ddeef diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.29.0.ebuild b/gnustep-base/gnustep-gui/gnustep-gui-0.29.0.ebuild new file mode 100644 index 000000000000..3269a179b262 --- /dev/null +++ b/gnustep-base/gnustep-gui/gnustep-gui-0.29.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnustep-base multilib virtualx + +DESCRIPTION="Library of GUI classes written in Obj-C" +HOMEPAGE="http://www.gnustep.org/" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="cups gif icu jpeg png speech" + +DEPEND="${GNUSTEP_CORE_DEPEND} + app-text/aspell + >=gnustep-base/gnustep-base-1.28.0:=[icu?] + media-libs/audiofile + >=media-libs/tiff-3:= + x11-libs/libXt + cups? ( >=net-print/cups-1.7.4:= ) + gif? ( >=media-libs/giflib-4.1:= ) + icu? ( dev-libs/icu:= ) + jpeg? ( virtual/jpeg:= ) + png? ( >=media-libs/libpng-1.2:= ) + speech? ( app-accessibility/flite )" +RDEPEND="${DEPEND}" + +src_prepare() { + gnustep-base_src_prepare + + # remove hardcoded -g -Werror, bug #378179 + sed -i -e 's/-g -Werror//' \ + Tools/say/GNUmakefile \ + Tools/speech/GNUmakefile \ + || die +} + +src_configure() { + egnustep_env + + local myconf= + use gif && myconf="--disable-ungif --enable-libgif" + + econf \ + $(use_enable cups) \ + $(use_enable icu) \ + $(use_enable jpeg) \ + $(use_enable png) \ + $(use_enable speech) \ + --with-tiff-include="${EPREFIX}"/usr/include \ + --with-tiff-library="${EPREFIX}"/usr/$(get_libdir) \ + ${myconf} +} + +src_test() { + virtx default +} diff --git a/gnustep-base/gnustep-make/Manifest b/gnustep-base/gnustep-make/Manifest index a21203d361ca..6e3b0459875c 100644 --- a/gnustep-base/gnustep-make/Manifest +++ b/gnustep-base/gnustep-make/Manifest @@ -1 +1,2 @@ DIST gnustep-make-2.8.0.tar.gz 606337 BLAKE2B b4defb8fdd8fc17ce2ac14c7d3d63b85e817bb639b7c1ae6a150baf74cda222ac046d890e677b50398bb9953e1496a98e9eb542809c961243f4f620276ab13fb SHA512 e9e57ed7a1c360c2dbf17f70d38e5107a1a9613842dcc645f10ed7a01eb9f9ee71bd2d0cacbe00439ce73f194a3eb3ed2e71409241ac96ee3bba704dcf6dfd7b +DIST gnustep-make-2.9.0.tar.gz 611406 BLAKE2B 73bae19b5d3d3c1e069d22ce7087308166f632277d870fa5ab125d5bc004a1518a1edb6822c61e00b98fc13a1b3354440024bd13d98662002c15298745c4e935 SHA512 ff185affe32d4efc2009d72a3862bc3bffebce05ea5a7fdfbf4372774e57b6654863e317ce648c248716dd3e97a4320d697a313e7eefd04f5723186be6cbf1e3 diff --git a/gnustep-base/gnustep-make/gnustep-make-2.9.0.ebuild b/gnustep-base/gnustep-make/gnustep-make-2.9.0.ebuild new file mode 100644 index 000000000000..3657bdcd66fa --- /dev/null +++ b/gnustep-base/gnustep-make/gnustep-make-2.9.0.ebuild @@ -0,0 +1,132 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnustep-base prefix toolchain-funcs + +DESCRIPTION="GNUstep Makefile Package" +HOMEPAGE="http://www.gnustep.org" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +IUSE="libobjc2 native-exceptions" + +DEPEND="${GNUSTEP_CORE_DEPEND} + >=sys-devel/make-3.75 + libobjc2? ( gnustep-base/libobjc2 + sys-devel/clang:* ) + !libobjc2? ( !!gnustep-base/libobjc2 + || ( + sys-devel/gcc:*[objc] + sys-devel/clang:* + ) )" +RDEPEND="${DEPEND}" + +pkg_setup() { + # Determine libobjc.so to use + if use libobjc2; then + libobjc_version=libobjc.so.4 + else + # Find version in active gcc + for ver in {2..5}; + do + if $(tc-getCC) -Werror -Wl,-l:libobjc.so.${ver} -x objective-c \ + - <<<$'int main() {}' -o /dev/null 2> /dev/null; + then + libobjc_version=libobjc.so.${ver} + fi + done + fi + + # Stop if we could not get libobjc.so + if [[ -z ${libobjc_version} ]]; then + eerror "${P} requires a working Objective-C runtime and a compiler with" + eerror "Objective-C support. Your current settings lack these requirements" + if ! use libobjc2; + then + eerror "Please switch your active compiler to gcc with USE=objc, or clang" + fi + die "Could not find Objective-C runtime" + fi + + # For existing installations, determine if we will use another libobjc.so + if has_version gnustep-base/gnustep-make; then + local current_libobjc="$(awk -F: '/^OBJC_LIB_FLAG/ {print $2}' ${EPREFIX}/usr/share/GNUstep/Makefiles/config.make)" + # Old installations did not set this explicitely + : ${current_libobjc:=libobjc.so.2} + + if [[ ${current_libobjc} != ${libobjc_version} ]]; then + ewarn "Warning: changed libobjc.so version!!" + ewarn "The libobjc.so version used for gnustep-make has changed" + ewarn "(either by the libojbc2 use-flag or a GCC upgrade)" + ewarn "You must rebuild all gnustep packages installed." + ewarn "" + ewarn "To do so, please emerge gnustep-base/gnustep-updater and run:" + ewarn "# gnustep-updater -l" + fi + fi + + if use libobjc2; then + export CC=clang + fi +} + +src_prepare() { + # Multilib-strict + sed -e "s#/lib#/$(get_libdir)#" -i FilesystemLayouts/fhs-system || die "sed failed" + cp "${FILESDIR}"/gnustep-5.{csh,sh} "${T}"/ + eprefixify "${T}"/gnustep-5.{csh,sh} + + default +} + +src_configure() { + econf \ + INSTALL="${EPREFIX}"/usr/bin/install \ + --with-layout=fhs-system \ + --with-config-file="${EPREFIX}"/etc/GNUstep/GNUstep.conf \ + --with-objc-lib-flag=-l:${libobjc_version} \ + $(use_enable native-exceptions native-objc-exceptions) +} + +src_compile() { + emake + if use doc ; then + emake -C Documentation + fi +} + +src_install() { + # Get GNUSTEP_* variables + . ./GNUstep.conf + + local make_eval + use debug || make_eval="${make_eval} debug=no" + make_eval="${make_eval} verbose=yes" + + emake ${make_eval} DESTDIR="${D}" install + + # Copy the documentation + if use doc ; then + emake -C Documentation ${make_eval} DESTDIR="${D}" install + fi + + dodoc FAQ README RELEASENOTES + + exeinto /etc/profile.d + doexe "${T}"/gnustep-?.sh + doexe "${T}"/gnustep-?.csh +} + +pkg_postinst() { + # Warn about new layout if old GNUstep directory is still here + if [ -e /usr/GNUstep/System ]; then + ewarn "Old layout directory detected (/usr/GNUstep/System)" + ewarn "Gentoo has switched to FHS layout for GNUstep packages" + ewarn "You must first update the configuration files from this package," + ewarn "then remerge all packages still installed with the old layout" + ewarn "You can use gnustep-base/gnustep-updater for this task" + fi +} diff --git a/gnustep-libs/sope/Manifest b/gnustep-libs/sope/Manifest index 0e8bedd3efdd..a80c509c4f1e 100644 --- a/gnustep-libs/sope/Manifest +++ b/gnustep-libs/sope/Manifest @@ -1,2 +1,2 @@ -DIST sope-4.1.1.tar.gz 2202428 BLAKE2B 551306a5d722442d60f68d132a21023bd7acf2fb2dcefdfcb0e1a053c03bf3c5af3afc954ec4b76e4db56799ff8cdd931ca8038fb7b3c41e5dff915858e49013 SHA512 fe672ba3b6b42bcc67f98efcb49bbe7f61f3e2fa9a0b2c571b60978425714916fe35f43283f27efaf8d568e53e6e0b6b1f80a7a63cf5b3df001e1d591cb386df DIST sope-4.3.2.tar.gz 2203224 BLAKE2B a51f87ac5b6e2cbb432fa1a63f6240d9c3309d600d82040096f65140933d6ac2cc875dc3c0db88e1cd3ff944b3c85fd0155fde03ee27c894e3416c8aec9abedd SHA512 bbdd78d08af26f435f3faaaa89833b7f910443a971ccde34236af30bed54a6ff50b3bee52990902a74a40abf2050db53a198e208e10a515fd6353b0c9e6eb447 +DIST sope-5.1.1.tar.gz 2217045 BLAKE2B 0c4e3c0740c46d2da5cf5ea16e63ab01c930ab9a45dfec617d0a2ff05032f87d909e4471144031922f8635f22aa9bebc313a32eb7afa23341b9a70f63ba93b9e SHA512 17cbf131e6e0d25e296543eea1f6514c6ac0c40db7cd446abbe79c927211d17a31e3f46bdaaad5d6d86f8b52c701544004d645c2d827ce471db5a68750cc0525 diff --git a/gnustep-libs/sope/sope-4.1.1.ebuild b/gnustep-libs/sope/sope-5.1.1.ebuild index 7feec1b83046..7feec1b83046 100644 --- a/gnustep-libs/sope/sope-4.1.1.ebuild +++ b/gnustep-libs/sope/sope-5.1.1.ebuild diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest index 5c721250b307..da9e68f870a5 100644 --- a/gui-apps/wcm/Manifest +++ b/gui-apps/wcm/Manifest @@ -1,3 +1,2 @@ DIST wcm-0.5.0.tar.gz 253120 BLAKE2B 44f6e36425ed070f086fcea6b3374b8fd2f1e3420176098699ec735cb74a1de0d6919ca71e62ca61116005ad26e50562e0a927dce7990d87eb7559511fb371e3 SHA512 c06e97fa3b22f33bb7f05efda380484377596cce83b7874d42b6f3795f275faee2fdd2f2a6a6f24ebbb7e339a0dd3e526a3d02a2e1d4c45b34f76d627896bc53 -DIST wcm-0.6.0.tar.gz 308100 BLAKE2B 22fd0867b7efee153375844bd9b06fa7978a488494bf48c5da10ecf59ab9ff1ee49fc31e82de294d2a5bf2af5339ccd367916f3e66c9e173379679622c5d9c93 SHA512 a0ce6541ea1416585d3102a07f8ccc73d53345cdab472a9f1a839af652ccaa3b7c4ef26dbe3c24d3ff4bfb5be9a1c61a7922170dafa9a66082c0de90ebcba3d9 DIST wcm-0.7.0.tar.xz 263952 BLAKE2B 6e8761b75d5e37e49a1ba1e9b2a045c7350fa28642d26f1f66b0513fdb4130495f43bcae137184bf5bd2f0f2a0d5a81891459819d692a84b66b96c7d1440ee7e SHA512 190d8befafac69c27d99d10113160a1806a9dbd83f740216dd38e9cbe3c2638817b3471c9f46b60642e91abe02fbb72458b61f07bda9cd5fc5dbc7cdf880c6bb diff --git a/gui-apps/wcm/wcm-0.6.0.ebuild b/gui-apps/wcm/wcm-0.6.0.ebuild deleted file mode 100644 index 66c8ce7b2447..000000000000 --- a/gui-apps/wcm/wcm-0.6.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2019-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson - -DESCRIPTION="Wayfire Config Manager" -HOMEPAGE="https://github.com/WayfireWM/wcm" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git" -else - SRC_URI="https://github.com/WayfireWM/wcm/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" - -DEPEND=" - dev-libs/libevdev - dev-libs/libxml2 - dev-cpp/gtkmm:3.0[wayland] - >=gui-wm/wayfire-${PV%.*} -" - -RDEPEND="${DEPEND}" - -BDEPEND=" - dev-libs/wayland-protocols - virtual/pkgconfig -" diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest index f47c542ed58c..fff0d4674437 100644 --- a/gui-apps/wf-shell/Manifest +++ b/gui-apps/wf-shell/Manifest @@ -1,3 +1,2 @@ DIST wf-shell-0.5.0.tar.xz 8998296 BLAKE2B c32232fc08292b15a0048d11d0f179a82fd21b3179223d898057ac95b42ac35ec063467f67c0f1261857c3b643edc4367112a05bb63f002788b64ed86559addd SHA512 d0029746ea10625bb47381a7ed74aadb8aa3823f83f751b539eefd49da5aa1643a2d16c55fe23d30bd71528ad5c1ea8d389909fe8cc1026746b3b76aa5dabd2b -DIST wf-shell-0.6.1.tar.xz 9014596 BLAKE2B 5256ceb8dc2b3dd4cf5d4503595c46b72bcde1dd4804a5871e225cee5b028ac69b02618d9c348fca4e21f2fd81b2be51fb0122126dd200dcdaeac894ec902c21 SHA512 d710cf703f5671bba01d056c7733724f90e6510a50e45a1a30cacde33a689c065335d802a3fd556cf9f8f0f420266ed2a8616706ecf5a68dcdf45a79876a4bcf DIST wf-shell-0.7.0.tar.xz 9014840 BLAKE2B f2e1ffb76de79db580227ddefc10c9f3431c92f77e6519da1102e7c4456bb30c4f25c82570a5b2796985dac00be65f9428ac6682e80920ed22359f63e3e6a84d SHA512 3d72c5d399280ee9da841a417faf696f8baa40edc1040bc1f354f113a8e431dbab428c93928b1d3faa520e35211345cabb5c70f55e10cfb7a4c321a6db19df90 diff --git a/gui-apps/wf-shell/wf-shell-0.6.1.ebuild b/gui-apps/wf-shell/wf-shell-0.6.1.ebuild deleted file mode 100644 index 08f4995b15b2..000000000000 --- a/gui-apps/wf-shell/wf-shell-0.6.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2019-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson - -DESCRIPTION="A compiz like 3D wayland compositor" -HOMEPAGE="https://github.com/WayfireWM/wf-shell" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git" -else - SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="+pulseaudio" - -DEPEND=" - dev-cpp/gtkmm:3.0=[wayland] - dev-libs/gobject-introspection - gui-libs/gtk-layer-shell - >=gui-wm/wayfire-${PV%.*} - pulseaudio? ( media-sound/pulseaudio ) -" -RDEPEND="${DEPEND} - gui-apps/wayland-logout -" -BDEPEND=" - dev-libs/wayland-protocols - virtual/pkgconfig -" - -src_configure () { - local emesonargs=( - "$(meson_feature pulseaudio pulse)" - -Dwayland-logout=false - ) - meson_src_configure -} diff --git a/gui-libs/wayfire-plugins-extra/Manifest b/gui-libs/wayfire-plugins-extra/Manifest index 89873091cb8e..61fc021a3331 100644 --- a/gui-libs/wayfire-plugins-extra/Manifest +++ b/gui-libs/wayfire-plugins-extra/Manifest @@ -1,2 +1 @@ -DIST wayfire-plugins-extra-0.6.0.tar.gz 47411 BLAKE2B 32f784abff6b0f05cdfde0bd491e6c8321eb6038f5ac49ff5b241e628abfb0002289fac6f1deaef4148fd8e071ad08c54ea15a441f9d6356ca43bbf4beb9c7b6 SHA512 2ad35cc54892cf716e8492227f96cab7eb89173294ef928115ca998c8c06e9daef69f60d6d11c5393a3038ded0184ccaa404552fe6035a019682d2fdbe4b768d DIST wayfire-plugins-extra-0.7.0.tar.xz 74312 BLAKE2B f72d706502499e4d467a4b59e10f66628024be1bab1c5e10c807758869c9b9e4aacbe426c2db0e3faa5ab166f7e4f4d0f1c345e205c6747a16a164745c6f0d74 SHA512 ff25a4685c88ca0129a2372b216166246cab072c2cb4f84eb7bd500db525bf5881bd7e54d0d888473d4aab0e5b33d2ee13eb7f788bb2a524e1e8e0c5efc1a6bd diff --git a/gui-libs/wayfire-plugins-extra/wayfire-plugins-extra-0.6.0-r1.ebuild b/gui-libs/wayfire-plugins-extra/wayfire-plugins-extra-0.6.0-r1.ebuild deleted file mode 100644 index 825614adab0e..000000000000 --- a/gui-libs/wayfire-plugins-extra/wayfire-plugins-extra-0.6.0-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson - -DESCRIPTION="extra plugins for wayfire" -HOMEPAGE="https://github.com/WayfireWM/wayfire-plugins-extra" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/WayfireWM/wayfire-plugins-extra.git" -else - SRC_URI="https://github.com/WayfireWM/wayfire-plugins-extra/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" - -DEPEND=" - dev-cpp/glibmm:2 - >=gui-libs/wlroots-0.11.0 - >=gui-wm/wayfire-${PV%.*} - x11-libs/cairo -" -RDEPEND="${DEPEND}" - -BDEPEND=" - dev-libs/wayland-protocols - virtual/pkgconfig -" diff --git a/gui-libs/wayfire-plugins-extra/wayfire-plugins-extra-9999.ebuild b/gui-libs/wayfire-plugins-extra/wayfire-plugins-extra-9999.ebuild index 8b6d80959614..2558b0e79566 100644 --- a/gui-libs/wayfire-plugins-extra/wayfire-plugins-extra-9999.ebuild +++ b/gui-libs/wayfire-plugins-extra/wayfire-plugins-extra-9999.ebuild @@ -21,8 +21,8 @@ SLOT="0" DEPEND=" dev-cpp/glibmm:2 - >=gui-libs/wlroots-0.11.0 - >=gui-wm/wayfire-${PV%.*} + ~gui-libs/wlroots-9999:= + ~gui-wm/wayfire-9999 x11-libs/cairo " RDEPEND="${DEPEND}" diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest index 692518a937e6..870e06de384d 100644 --- a/gui-libs/wf-config/Manifest +++ b/gui-libs/wf-config/Manifest @@ -1,3 +1,3 @@ DIST wf-config-0.5.0.tar.xz 64760 BLAKE2B c1939035820794828b356371c51dbd55a73a569e3a9dcf801b4aedf61c3c0131e47040a1b05e2a8cd30ecbb57f160f702b735437dfb49051a8a6a63d95201204 SHA512 b365884195cb7fc64a1ca1d74a2d12b56e1ef0f4dd49d298a9379455f2917f2c644de2b12f5068304ca404b112490e38fbfe3111aac31d301f02f23429df87c7 -DIST wf-config-0.6.0.tar.xz 65360 BLAKE2B 130a8752e311863642d68c44ef6696bb4b6795775d538f79b26130d611035ecc399757b1fdad0d8984fb79ea66d14aad2b8fe14fea5a42e6acf4de69132ba121 SHA512 f6c954fe0aee47074cab4c50bdafba82fe01f502eac3154da3ff94cf69b235ed7f7af10ad56a17dbca44b0b472c6b87e0513eae12a86d64cf10fdfc365242403 DIST wf-config-0.7.0.tar.xz 73332 BLAKE2B 709a9358e564538b9db8536a5e24f2e7843498830e643ed005801624de9f71ad2661824de75f5b57541ece99d525a4689048c990df5ddc3fdcee6fc83c03e490 SHA512 ddad687b180e786060839cafe5623a0897ade061e6ad057dbe579d51595fbf2dc45674df3fb35070520dc51d7e02d4c9158d9cf8d4619ac49334014f6701f06d +DIST wf-config-0.7.1.tar.xz 39120 BLAKE2B b18048334df12b002391fe4a74529cb61df76a0678c9052f8ac91d777e8a48dae46b87680fb44630ebfb9a350dbac36b15bc81850341fa4cd6299c12f6fa057d SHA512 d535a09a3465a54a607df7b8764ee6818ab8b83536d68c85167b282b95a176636e4bf5cda6c0d1638c07721a1f4208203e9d41b83675038fb590a535314df719 diff --git a/gui-libs/wf-config/wf-config-0.6.0.ebuild b/gui-libs/wf-config/wf-config-0.7.1.ebuild index fdcbe17d4da5..6b7ee7b76285 100644 --- a/gui-libs/wf-config/wf-config-0.6.0.ebuild +++ b/gui-libs/wf-config/wf-config-0.7.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git" else - SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz" + SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz" KEYWORDS="~amd64 ~arm64 ~x86" fi @@ -22,7 +22,8 @@ SLOT="0" DEPEND=" dev-libs/libevdev dev-libs/libxml2 - >=gui-libs/wlroots-0.12.0 + >=gui-libs/wlroots-0.13.0:= + <gui-libs/wlroots-0.14.0:= media-libs/glm " diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild index 26f5dea6385b..8f57443366f6 100644 --- a/gui-libs/wf-config/wf-config-9999.ebuild +++ b/gui-libs/wf-config/wf-config-9999.ebuild @@ -22,7 +22,7 @@ SLOT="0" DEPEND=" dev-libs/libevdev dev-libs/libxml2 - >=gui-libs/wlroots-0.12.0 + ~gui-libs/wlroots-9999:= media-libs/glm " diff --git a/gui-wm/wayfire/Manifest b/gui-wm/wayfire/Manifest index 5d3e75680efe..f93a447f4284 100644 --- a/gui-wm/wayfire/Manifest +++ b/gui-wm/wayfire/Manifest @@ -1,3 +1,3 @@ DIST wayfire-0.5.0.tar.xz 670680 BLAKE2B 6a1555669352dd1303f7472db4fbb8ada6173c09825f4e999a2862787bd5bf31e070e9e12110249b9407d8c380235f4a9d3c5be6b23defe36094822526eed6ef SHA512 9c2d116a5d6e77e37b0e4eef26624d43d6ab3a80e56e19a2de1fdd28a2a522c24b9e346eb4529848f3b2c3668460a51f428a0c196286ec8300e4823250eae811 -DIST wayfire-0.6.0.tar.xz 701084 BLAKE2B 3ee0274c706aaa4690e9eb9617d2f272dd1e6573529c40b43d3fd05e79a4ddceef8dec34a7d2363aff8603fb3fd7490c4d2e79e67bff825a3bb68cc8090ad301 SHA512 dc6b5378dc51352ab41ac3c5713e73f341caa2a119a91826818b0a7cde629e63ce855a4376b5c60b468717336dda4806fb1195d534cd7ab2e5d6285c8075102e DIST wayfire-0.7.0.tar.xz 735756 BLAKE2B 8298cc92938f5196e3dc5bac39d4d9db370e69209461feb5d7abe685e0277efd4bd42ef2c18dc41d79e20d794dae5889efec56f8278fde6efc37b8017c5e65ea SHA512 eaaa193619a6cb0c7a0879aa24a7f6d468e81aeef0b9f17a282f5f930c00557a021f4d45de4aae6f57ce5e427148387c3fdf344ea9c6843a75e777eeeeb96f79 +DIST wayfire-0.7.1.tar.xz 753104 BLAKE2B e26b5e770fff44ef04a9d832ed404f05d37448c8ecc0be1e976b8bd0866c2716150bc43394fc4d2fbba1854696eaf54f16dabc632b686f236e66313d0d1eaf59 SHA512 c045ed16d2eb24b508f84d6616021638ec139b99618f5cb834f2b3675d1e549a6cc1bc3150dd97965a16a2a23fe54abe34e4671ce345350a7fb4084f13d7e969 diff --git a/gui-wm/wayfire/wayfire-0.6.0.ebuild b/gui-wm/wayfire/wayfire-0.7.1.ebuild index 96f551ce51ca..e5889895cfa4 100644 --- a/gui-wm/wayfire/wayfire-0.6.0.ebuild +++ b/gui-wm/wayfire/wayfire-0.7.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git" else - SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz" + SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz" KEYWORDS="~amd64 ~arm64 ~x86" fi @@ -36,9 +36,15 @@ DEPEND=" X? ( x11-libs/libxkbcommon:=[X] ) x11-libs/pixman gles? ( media-libs/libglvnd[X?] ) - system-wfconfig? ( >=gui-libs/wf-config-${PV%.*} ) + system-wfconfig? ( + >=gui-libs/wf-config-0.7.1 + <gui-libs/wf-config-0.8.0 + ) !system-wfconfig? ( !gui-libs/wf-config ) - system-wlroots? ( >=gui-libs/wlroots-0.12.0[elogind=,systemd=,X?] ) + system-wlroots? ( + >=gui-libs/wlroots-0.13.0:=[elogind=,systemd=,X?] + <gui-libs/wlroots-0.14.0:= + ) !system-wlroots? ( !gui-libs/wlroots ) " diff --git a/gui-wm/wayfire/wayfire-9999.ebuild b/gui-wm/wayfire/wayfire-9999.ebuild index 339de620d255..ed76917f7d82 100644 --- a/gui-wm/wayfire/wayfire-9999.ebuild +++ b/gui-wm/wayfire/wayfire-9999.ebuild @@ -18,8 +18,7 @@ fi LICENSE="MIT" SLOT="0" -IUSE="+gles +system-wfconfig +system-wlroots elogind systemd X" -REQUIRED_USE="?? ( elogind systemd )" +IUSE="+gles +system-wfconfig +system-wlroots X" DEPEND=" dev-libs/libevdev @@ -27,25 +26,24 @@ DEPEND=" gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] + media-libs/libglvnd[X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] - X? ( x11-libs/libxkbcommon:=[X] ) + x11-libs/libxkbcommon:=[X?] x11-libs/pixman - gles? ( media-libs/libglvnd[X?] ) - system-wfconfig? ( >=gui-libs/wf-config-${PV%.*} ) + X? ( x11-libs/libxcb ) + system-wfconfig? ( ~gui-libs/wf-config-9999:= ) !system-wfconfig? ( !gui-libs/wf-config ) - system-wlroots? ( >=gui-libs/wlroots-0.12.0[elogind=,systemd=,X?] ) + system-wlroots? ( ~gui-libs/wlroots-9999:=[X?] ) !system-wlroots? ( !gui-libs/wlroots ) " RDEPEND=" ${DEPEND} - elogind? ( sys-auth/elogind ) - systemd? ( sys-apps/systemd ) x11-misc/xkeyboard-config " @@ -69,30 +67,24 @@ src_configure() { } src_install() { - default meson_src_install dobin "${T}"/wayfire-session - einstalldocs insinto "/usr/share/wayland-sessions/" insopts -m644 doins wayfire.desktop doins "${T}"/wayfire-session.desktop - dodoc wayfire.ini - - if ! use systemd && ! use elogind; then - fowners root:0 /usr/bin/wayfire - fperms 4511 /usr/bin/wayfire - fi + insinto "/usr/share/wayfire/" + doins wayfire.ini } pkg_postinst() { if [ -z "${REPLACING_VERSIONS}" ]; then elog "Wayfire has been installed but the session cannot be used" elog "until you install a configuration file. The default config" - elog "file is installed at \"/usr/share/doc/${PF}/wayfire.ini.bz2\"" + elog "file is installed at \"/usr/share/wayfire/wayfire.ini\"" elog "To install the file execute" - elog "\$ mkdir -p ~/.config && bzcat /usr/share/doc/${PF}/wayfire.ini.bz2 > ~/.config/wayfire.ini" + elog "\$ cp /usr/share/wayfire.ini ~/.config/wayfire.ini" fi } diff --git a/mail-mta/notqmail/notqmail-1.08-r3.ebuild b/mail-mta/notqmail/notqmail-1.08-r3.ebuild index 3e4ded9011a2..e2dc2632e8d4 100644 --- a/mail-mta/notqmail/notqmail-1.08-r3.ebuild +++ b/mail-mta/notqmail/notqmail-1.08-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -56,7 +56,7 @@ SRC_URI="${SRC_URI} LICENSE="public-domain" SLOT="0" -IUSE="authcram gencertdaily highvolume -pop3 qmail-spp ssl test vanilla" +IUSE="authcram gencertdaily highvolume pop3 qmail-spp ssl test vanilla" REQUIRED_USE="vanilla? ( !ssl !qmail-spp !highvolume !authcram !gencertdaily ) gencertdaily? ( ssl )" RESTRICT="!test? ( test )" diff --git a/mail-mta/notqmail/notqmail-9999.ebuild b/mail-mta/notqmail/notqmail-9999.ebuild index f5ec0ad8013c..d19ad72c59fc 100644 --- a/mail-mta/notqmail/notqmail-9999.ebuild +++ b/mail-mta/notqmail/notqmail-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -56,7 +56,7 @@ SRC_URI="${SRC_URI} LICENSE="public-domain" SLOT="0" -IUSE="authcram gencertdaily highvolume -pop3 qmail-spp ssl test vanilla" +IUSE="authcram gencertdaily highvolume pop3 qmail-spp ssl test vanilla" REQUIRED_USE="vanilla? ( !ssl !qmail-spp !highvolume !authcram !gencertdaily ) gencertdaily? ( ssl )" RESTRICT="!test? ( test )" diff --git a/media-fonts/fantasque-sans-mono/fantasque-sans-mono-1.8.0.ebuild b/media-fonts/fantasque-sans-mono/fantasque-sans-mono-1.8.0.ebuild index dea9104ed5b8..4e984dcff52c 100644 --- a/media-fonts/fantasque-sans-mono/fantasque-sans-mono-1.8.0.ebuild +++ b/media-fonts/fantasque-sans-mono/fantasque-sans-mono-1.8.0.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}" LICENSE="OFL-1.1" SLOT="0" -KEYWORDS="amd64 arm ~arm64 x86" +KEYWORDS="amd64 arm arm64 x86" FONT_S="${S}/OTF" FONT_SUFFIX="otf" diff --git a/media-fonts/unifont/unifont-13.0.01.ebuild b/media-fonts/unifont/unifont-13.0.01-r1.ebuild index a2f259b297cd..f901c28842ce 100644 --- a/media-fonts/unifont/unifont-13.0.01.ebuild +++ b/media-fonts/unifont/unifont-13.0.01-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2003-2020 Gentoo Authors +# Copyright 2003-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,7 +18,7 @@ BDEPEND=" fontforge? ( app-text/bdf2psf dev-lang/perl - dev-perl/GD[png(-)] + dev-perl/GD[png(+)] media-gfx/fontforge x11-apps/bdftopcf ) @@ -26,7 +26,7 @@ BDEPEND=" RDEPEND=" utils? ( dev-lang/perl - dev-perl/GD[png(-)] + dev-perl/GD[png(+)] ) " diff --git a/media-gfx/flam3/files/flam3-3.1.1-slibtool.patch b/media-gfx/flam3/files/flam3-3.1.1-slibtool.patch new file mode 100644 index 000000000000..084c1ba77827 --- /dev/null +++ b/media-gfx/flam3/files/flam3-3.1.1-slibtool.patch @@ -0,0 +1,53 @@ +From 78ea170715b57bbde0275447dbcc8b20a926b05d Mon Sep 17 00:00:00 2001 +From: orbea <orbea@riseup.net> +Date: Sun, 28 Mar 2021 13:15:53 -0700 +Subject: [PATCH] build: Fix undefined libm references. + +--- + Makefile.am | 11 ++++++----- + configure.ac | 2 ++ + 2 files changed, 8 insertions(+), 5 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index c3d0f42..78954e8 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -11,19 +11,20 @@ lib_LTLIBRARIES = libflam3.la + include_HEADERS = flam3.h isaac.h isaacs.h rect.c + + libflam3_la_SOURCES = flam3.c filters.c parser.c variations.c interpolation.c palettes.c jpeg.c png.c isaac.c +-libflam3_la_LDFLAGS = -no-undefined -ljpeg -lpng -lz -lpthread ++libflam3_la_LDFLAGS = -no-undefined ++libflam3_la_LIBADD = -ljpeg -lpng -lz -lpthread $(LIBM) + + flam3_genome_SOURCES = flam3-genome.c docstring.c +-flam3_genome_LDADD = libflam3.la -lm ++flam3_genome_LDADD = libflam3.la + + flam3_animate_SOURCES = flam3-animate.c docstring.c +-flam3_animate_LDADD = libflam3.la -lm ++flam3_animate_LDADD = libflam3.la + + flam3_render_SOURCES = flam3-render.c docstring.c +-flam3_render_LDADD = libflam3.la -lm ++flam3_render_LDADD = libflam3.la + + flam3_convert_SOURCES = flam3-convert.c docstring.c +-flam3_convert_LDADD = libflam3.la -lm ++flam3_convert_LDADD = libflam3.la + + pkgdata_DATA = flam3-palettes.xml + +diff --git a/configure.ac b/configure.ac +index c427bb5..f7f4839 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -28,6 +28,8 @@ AC_CHECK_LIB([z],[deflateInit_],,[AC_MSG_ERROR([zlib is required.])]) + AC_CHECK_LIB([png],[png_write_image],,[AC_MSG_ERROR([The png library is required.])]) + AC_CHECK_LIB([xml2],[xmlParseFile],,[AC_MSG_ERROR([The xml2 library is required.])]) + ++AC_CHECK_LIBM ++AC_SUBST([LIBM]) + + if test "${enable_atomic_ops}" = "" ; then + enable_atomic_ops=yes diff --git a/media-gfx/flam3/flam3-3.1.1.ebuild b/media-gfx/flam3/flam3-3.1.1.ebuild index 6a111b72cfe3..0b7b9d363042 100644 --- a/media-gfx/flam3/flam3-3.1.1.ebuild +++ b/media-gfx/flam3/flam3-3.1.1.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + inherit autotools DESCRIPTION="Tools and a library for creating flame fractal images" @@ -11,7 +12,6 @@ SRC_URI="https://github.com/scottdraves/flam3/archive/v${PV}.tar.gz -> ${P}.tar. LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 x86" -IUSE="static-libs" RDEPEND="dev-libs/libxml2 media-libs/libpng:= @@ -21,21 +21,23 @@ DEPEND="${RDEPEND}" DOCS=( README.txt ) +PATCHES=( "${FILESDIR}"/${P}-slibtool.patch ) + src_prepare() { + default eautoreconf - eapply_user } src_configure() { econf \ --enable-shared \ - $(use_enable static-libs static) + --disable-static } src_install() { default - rm -f "${D}"usr/lib*/libflam3.la + find "${ED}" -name '*.la' -delete || die docinto examples dodoc *.flam3 diff --git a/media-gfx/freecad/freecad-0.19.1.ebuild b/media-gfx/freecad/freecad-0.19.1.ebuild index c0fb117860bb..e82dc686d3e7 100644 --- a/media-gfx/freecad/freecad-0.19.1.ebuild +++ b/media-gfx/freecad/freecad-0.19.1.ebuild @@ -39,7 +39,7 @@ for module in ${FREECAD_STABLE_MODULES}; do IUSE="${IUSE} +${module}" done for module in ${FREECAD_EXPERIMENTAL_MODULES}; do - IUSE="${IUSE} -${module}" + IUSE="${IUSE} ${module}" done unset module diff --git a/media-gfx/freecad/freecad-0.19.2.ebuild b/media-gfx/freecad/freecad-0.19.2.ebuild index e1e5df7a954c..7d7cd6c777d2 100644 --- a/media-gfx/freecad/freecad-0.19.2.ebuild +++ b/media-gfx/freecad/freecad-0.19.2.ebuild @@ -41,7 +41,7 @@ for module in ${FREECAD_STABLE_MODULES}; do IUSE="${IUSE} +${module}" done for module in ${FREECAD_EXPERIMENTAL_MODULES}; do - IUSE="${IUSE} -${module}" + IUSE="${IUSE} ${module}" done unset module diff --git a/media-gfx/freecad/freecad-9999.ebuild b/media-gfx/freecad/freecad-9999.ebuild index a6d3b67d46e9..ea0075cb254f 100644 --- a/media-gfx/freecad/freecad-9999.ebuild +++ b/media-gfx/freecad/freecad-9999.ebuild @@ -41,7 +41,7 @@ for module in ${FREECAD_STABLE_MODULES}; do IUSE="${IUSE} +${module}" done for module in ${FREECAD_EXPERIMENTAL_MODULES}; do - IUSE="${IUSE} -${module}" + IUSE="${IUSE} ${module}" done unset module diff --git a/media-gfx/meshlab/meshlab-2020.12-r1.ebuild b/media-gfx/meshlab/meshlab-2020.12-r1.ebuild index f4ed995d10ca..172c5a559c36 100644 --- a/media-gfx/meshlab/meshlab-2020.12-r1.ebuild +++ b/media-gfx/meshlab/meshlab-2020.12-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/cnr-isti-vclab/meshlab/archive/Meshlab-${PV}.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="double-precision -minimal" +IUSE="double-precision minimal" DEPEND=" dev-cpp/eigen:3 diff --git a/media-libs/ilmbase/ilmbase-2.5.6.ebuild b/media-libs/ilmbase/ilmbase-2.5.6.ebuild index 649925993648..6b83e84966b2 100644 --- a/media-libs/ilmbase/ilmbase-2.5.6.ebuild +++ b/media-libs/ilmbase/ilmbase-2.5.6.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/openexr-${PV}/IlmBase" LICENSE="BSD" SLOT="0/25" # based on SONAME -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" +KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" IUSE="large-stack static-libs test" RESTRICT="!test? ( test )" diff --git a/media-libs/libcaca/libcaca-0.99_beta19-r4.ebuild b/media-libs/libcaca/libcaca-0.99_beta19-r4.ebuild index 7fe4815820c6..f0eece5142c7 100644 --- a/media-libs/libcaca/libcaca-0.99_beta19-r4.ebuild +++ b/media-libs/libcaca/libcaca-0.99_beta19-r4.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="GPL-2 ISC LGPL-2.1 WTFPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" IUSE="cxx doc imlib java mono ncurses opengl ruby slang static-libs test truetype X" RESTRICT="!test? ( test )" diff --git a/media-libs/mlt/mlt-6.26.1-r1.ebuild b/media-libs/mlt/mlt-6.26.1-r1.ebuild index 5c05f7c890cb..c689c31fa646 100644 --- a/media-libs/mlt/mlt-6.26.1-r1.ebuild +++ b/media-libs/mlt/mlt-6.26.1-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/mltframework/${PN}/releases/download/v${PV}/${P}.tar LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux" IUSE="compressed-lumas cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 debug ffmpeg fftw frei0r gtk jack kernel_linux libsamplerate lua opencv opengl python qt5 rtaudio rubberband sdl vdpau vidstab xine xml" diff --git a/media-libs/openexr/openexr-2.5.6.ebuild b/media-libs/openexr/openexr-2.5.6.ebuild index 2b05d5a0f34a..87fd140fe31b 100644 --- a/media-libs/openexr/openexr-2.5.6.ebuild +++ b/media-libs/openexr/openexr-2.5.6.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/${P}/OpenEXR" LICENSE="BSD" SLOT="0/25" # based on SONAME -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" +KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" IUSE="cpu_flags_x86_avx doc examples static-libs utils test" RESTRICT="!test? ( test )" diff --git a/media-libs/speexdsp/speexdsp-1.2.0.ebuild b/media-libs/speexdsp/speexdsp-1.2.0.ebuild index ce94e9a5b095..c7a59fa4a317 100644 --- a/media-libs/speexdsp/speexdsp-1.2.0.ebuild +++ b/media-libs/speexdsp/speexdsp-1.2.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://downloads.xiph.org/releases/speex/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" IUSE="cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_arm_neon" RDEPEND="!<media-libs/speex-1.2.0" diff --git a/media-libs/tiff/Manifest b/media-libs/tiff/Manifest index 239384cfa601..45849b27483d 100644 --- a/media-libs/tiff/Manifest +++ b/media-libs/tiff/Manifest @@ -1,2 +1 @@ -DIST tiff-4.2.0.tar.gz 2809373 BLAKE2B 62178da595e7ff4041f33643a87698580cd3a32d4536b5c60c414c9497616258686cf61514e1d4e0f062cb1333190c39ce86896bf07c01532c07454745d89cd9 SHA512 d7d42e6e6dbda9604c638f28e6cfa4705191a4e8ea276d18031d50dbab0931ac91141e57a2cf294124487f1a2e6dfcb9be62431c1b69de5acf4d0e632f3322e5 DIST tiff-4.3.0.tar.gz 2808254 BLAKE2B 433a087249541f6142dd25b6dc807018639908175b0d73b4af3aa301af2dee3d76184e4689e7b2f1f9b73567ac78d50456ee94fffe00bad6da05375cf2d94d92 SHA512 e04a4a6c542e58a174c1e9516af3908acf1d3d3e1096648c5514f4963f73e7af27387a76b0fbabe43cf867a18874088f963796a7cd6e45deb998692e3e235493 diff --git a/media-libs/tiff/tiff-4.2.0.ebuild b/media-libs/tiff/tiff-4.2.0.ebuild deleted file mode 100644 index 714507392efe..000000000000 --- a/media-libs/tiff/tiff-4.2.0.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools multilib-minimal - -DESCRIPTION="Tag Image File Format (TIFF) library" -HOMEPAGE="http://libtiff.maptools.org" -SRC_URI="https://download.osgeo.org/libtiff/${P}.tar.gz" - -LICENSE="libtiff" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="+cxx jbig jpeg lzma static-libs test webp zlib zstd" -RESTRICT="!test? ( test )" - -RDEPEND=" - jbig? ( >=media-libs/jbigkit-2.1:=[${MULTILIB_USEDEP}] ) - jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] ) - lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] ) - webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] ) - zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) - zstd? ( >=app-arch/zstd-1.3.7-r1:=[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND}" - -REQUIRED_USE="test? ( jpeg )" #483132 - -MULTILIB_WRAPPED_HEADERS=( - /usr/include/tiffconf.h -) - -src_prepare() { - default - - # tiffcp-thumbnail.sh fails as thumbnail binary doesn't get built anymore since tiff-4.0.7 - sed '/tiffcp-thumbnail\.sh/d' -i test/Makefile.am || die - - eautoreconf -} - -multilib_src_configure() { - local myeconfargs=( - --without-x - --with-docdir="${EPREFIX}"/usr/share/doc/${PF} - $(use_enable cxx) - $(use_enable jbig) - $(use_enable jpeg) - $(use_enable lzma) - $(use_enable static-libs static) - $(use_enable webp) - $(use_enable zlib) - $(use_enable zstd) - ) - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" - - # remove useless subdirs - if ! multilib_is_native_abi ; then - sed -i \ - -e 's/ tools//' \ - -e 's/ contrib//' \ - -e 's/ man//' \ - -e 's/ html//' \ - Makefile || die - fi -} - -multilib_src_test() { - if ! multilib_is_native_abi ; then - emake -C tools - fi - emake check -} - -multilib_src_install_all() { - find "${ED}" -type f -name '*.la' -delete || die - rm "${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION} || die -} diff --git a/media-libs/tiff/tiff-4.3.0.ebuild b/media-libs/tiff/tiff-4.3.0.ebuild index 17d71dd8bf36..714507392efe 100644 --- a/media-libs/tiff/tiff-4.3.0.ebuild +++ b/media-libs/tiff/tiff-4.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://download.osgeo.org/libtiff/${P}.tar.gz" LICENSE="libtiff" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="+cxx jbig jpeg lzma static-libs test webp zlib zstd" RESTRICT="!test? ( test )" diff --git a/media-plugins/vdr-vdrmanager/vdr-vdrmanager-0.14.ebuild b/media-plugins/vdr-vdrmanager/vdr-vdrmanager-0.14.ebuild index 8e798c30c35f..c70aa2893ded 100644 --- a/media-plugins/vdr-vdrmanager/vdr-vdrmanager-0.14.ebuild +++ b/media-plugins/vdr-vdrmanager/vdr-vdrmanager-0.14.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -14,7 +14,7 @@ SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz" KEYWORDS="~amd64 ~x86" SLOT="0" LICENSE="GPL-2" -IUSE="gzip +ssl -stream zlib" +IUSE="gzip +ssl stream zlib" DEPEND=">=media-video/vdr-2 ssl? ( dev-libs/openssl )" diff --git a/media-sound/cadence/cadence-0.9.1.ebuild b/media-sound/cadence/cadence-0.9.1.ebuild index 6cda4e21e4c1..d3ed0808a3d9 100644 --- a/media-sound/cadence/cadence-0.9.1.ebuild +++ b/media-sound/cadence/cadence-0.9.1.ebuild @@ -21,7 +21,7 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="a2jmidid -pulseaudio opengl" +IUSE="a2jmidid pulseaudio opengl" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/media-sound/cadence/cadence-9999.ebuild b/media-sound/cadence/cadence-9999.ebuild index 8c4868518fbe..f03d00121986 100644 --- a/media-sound/cadence/cadence-9999.ebuild +++ b/media-sound/cadence/cadence-9999.ebuild @@ -21,7 +21,7 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="a2jmidid -pulseaudio opengl" +IUSE="a2jmidid pulseaudio opengl" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/media-sound/teamspeak-server/Manifest b/media-sound/teamspeak-server/Manifest index 28ec8129ac44..acc1c71895bb 100644 --- a/media-sound/teamspeak-server/Manifest +++ b/media-sound/teamspeak-server/Manifest @@ -1,2 +1,4 @@ DIST teamspeak3-server_linux_amd64-3.13.3.tar.bz2 9945408 BLAKE2B d714a046279c8cac11ff373a66ba41010e5839704030ae29f8d7f429759126dff8675b8b0b37b584115ad44d9e216cb5449d4b159dae53ece72f9e5bbe119f84 SHA512 39ad3a00f5e38a0601ed9e9df4227a7f00b4cb9bdaed6562ccf05e0fce22ed040cfd5a2ea36e9e97a18a74c335e90c0c080106cdaf5c0b32859819286727cb58 +DIST teamspeak3-server_linux_amd64-3.13.5.tar.bz2 9950540 BLAKE2B 0ba97317364a2b219d98d7c9590355a8ce62a91f1e6b1b647d5a00643c79fe197fefb548c872f54ac2b67612eef4d97e36c7bbdb59647ab061520ad2295344ab SHA512 c190ff1fccea71d90fae70e5786a4b6d269161a073f4a10abf24c9c75e694eae2b49e8aabf3dcb1afbcbc4242e1a8c6616e39b950c719ccebb47ad49d8a4f8ae DIST teamspeak3-server_linux_x86-3.13.3.tar.bz2 9779788 BLAKE2B 1ddb466dfc6a7d19dacfa05a0608487a8b086963186eb48e2480b83fb9eaa408ca45bc80bfc6fbfd1623c21caeb27e516f6d893ab84e442ba75c9f59daf4fa79 SHA512 9b14e1fd8b969c32ca63e3b9665e0941c3d1e67b3e49d5f2d6cc701aa4ee10a80f1c10428ef2d59bb3767cd03ad5503a527c47b1db11ea525cca8c7e07787621 +DIST teamspeak3-server_linux_x86-3.13.5.tar.bz2 9784415 BLAKE2B 54fa526f2fa4ebade068faf1c7e6becdf34fd70bc12771f90b454c9adfdefb5fd61ee4cc9e59c20041cd2387871598c7bd900845cdffbb822b2ce238a826d861 SHA512 05a5440dd7a18f9af1023f9ed98626f0e68a31375a7d5debfa401601a743546a44ff2162e92a18bfacccf5a1b9f5c4218bd5ea82ca5700133c30be70ffb0aea0 diff --git a/media-sound/teamspeak-server/teamspeak-server-3.13.5.ebuild b/media-sound/teamspeak-server/teamspeak-server-3.13.5.ebuild new file mode 100644 index 000000000000..bd2a13a829c1 --- /dev/null +++ b/media-sound/teamspeak-server/teamspeak-server-3.13.5.ebuild @@ -0,0 +1,134 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +DESCRIPTION="A server software for hosting quality voice communication via the internet" +HOMEPAGE="https://www.teamspeak.com/" +SRC_URI=" + amd64? ( https://files.teamspeak-services.com/releases/server/${PV}/teamspeak3-server_linux_amd64-${PV}.tar.bz2 ) + x86? ( https://files.teamspeak-services.com/releases/server/${PV}/teamspeak3-server_linux_x86-${PV}.tar.bz2 ) +" + +LICENSE="Apache-2.0 Boost-1.0 BSD LGPL-2.1 LGPL-3 MIT teamspeak3" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="doc mysql postgres tsdns" + +RESTRICT="bindist mirror" + +RDEPEND=" + acct-group/teamspeak + acct-user/teamspeak + postgres? ( dev-db/postgresql ) +" + +QA_PREBUILT=" + opt/teamspeak3-server/libmariadb.so.2 + opt/teamspeak3-server/libts3db_mariadb.so + opt/teamspeak3-server/libts3db_postgresql.so + opt/teamspeak3-server/libts3db_sqlite3.so + opt/teamspeak3-server/libts3_ssh.so + opt/teamspeak3-server/ts3server + opt/teamspeak3-server/tsdnsserver +" + +src_unpack() { + default + + mv teamspeak3-server_linux_$(usex amd64 amd64 x86) "${P}" || die +} + +src_install() { + diropts -o teamspeak -g teamspeak + keepdir /opt/teamspeak3-server /var/log/teamspeak3-server + + diropts + keepdir /etc/teamspeak3-server + + touch "${ED}"/opt/teamspeak3-server/.ts3server_license_accepted || die + + exeinto /opt/teamspeak3-server + doexe ts3server + + dodir /opt/bin + dosym ../teamspeak3-server/ts3server /opt/bin/ts3server + + exeinto /opt/teamspeak3-server + doexe libts3db_sqlite3.so libts3_ssh.so + + insinto /opt/teamspeak3-server/serverquerydocs + doins -r serverquerydocs/. + + insinto /opt/teamspeak3-server/sql + doins sql/*.sql + doins -r sql/create_sqlite + + insinto /etc/teamspeak3-server + newins "${FILESDIR}"/ts3server.ini-r2 ts3server.ini + + dodoc CHANGELOG + docinto ts3server + dodoc doc/*.{md,txt} + + newinitd "${FILESDIR}"/teamspeak.initd-r1 teamspeak3-server + systemd_newunit "${FILESDIR}"/teamspeak.service teamspeak3-server.service + + newenvd - 99teamspeak3-server <<- EOF + CONFIG_PROTECT="/etc/teamspeak3-server/ts3server.ini /etc/teamspeak3-server/ts3server_mariadb.ini /etc/teamspeak3-server/tsdns_settings.ini" + EOF + + if use doc; then + docinto html + dodoc -r doc/serverquery/. + fi + + if use mysql; then + insinto /etc/teamspeak3-server + newins "${FILESDIR}"/ts3server_mariadb.ini.sample-r2 ts3server_mariadb.ini.sample + doins "${FILESDIR}"/ts3db_mariadb.ini.sample + + exeinto /opt/teamspeak3-server + doexe libts3db_mariadb.so + doexe redist/libmariadb.so.2 + + insinto /opt/teamspeak3-server/sql + doins -r sql/create_mariadb + doins -r sql/updates_and_fixes + fi + + if use postgres; then + insinto /etc/teamspeak3-server + doins "${FILESDIR}"/ts3server_postgresql.ini.sample + doins "${FILESDIR}"/ts3db_postgresql.ini.sample + + exeinto /opt/teamspeak3-server + doexe libts3db_postgresql.so + + insinto /opt/teamspeak3-server/sql + doins -r sql/create_postgresql + doins -r sql/updates_and_fixes + fi + + if use tsdns; then + exeinto /opt/teamspeak3-server + doexe tsdns/tsdnsserver + dodir /opt/bin + dosym ../teamspeak3-server/tsdnsserver /opt/bin/tsdnsserver + + insinto /etc/teamspeak3-server + doins tsdns/tsdns_settings.ini.sample + + docinto tsdns + dodoc tsdns/{README,USAGE} + fi +} + +pkg_postinst() { + elog "If you have a license," + elog "put it in /opt/teamspeak3-server named as licensekey.dat." + elog "Please note, that the license must be writeable by the teamspeak user," + elog "as it will be automatically updated every six months." +} diff --git a/media-video/xjadeo/metadata.xml b/media-video/xjadeo/metadata.xml index b20810480aa5..63a980d0b29d 100644 --- a/media-video/xjadeo/metadata.xml +++ b/media-video/xjadeo/metadata.xml @@ -9,6 +9,7 @@ <email>proaudio@tuxfamily.org</email> <name>pro-audio overlay team</name> </maintainer> + <use> <flag name="midi">Adds support for MIDI</flag> <flag name="osd">Freetype On-Screen.Display support</flag> @@ -16,4 +17,4 @@ <flag name="tools">Install contrib code and an example</flag> </use> <origin>ports</origin> -</pkgmetadata> +</pkgmetadata>
\ No newline at end of file diff --git a/metadata/md5-cache/app-admin/awscli-1.19.87 b/metadata/md5-cache/app-admin/awscli-1.19.87 new file mode 100644 index 000000000000..7c19641695f4 --- /dev/null +++ b/metadata/md5-cache/app-admin/awscli-1.19.87 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( >=dev-python/botocore-1.20.87[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/colorama[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/docutils[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/rsa[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/s3transfer-0.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Universal Command Line Environment for AWS +EAPI=7 +HOMEPAGE=https://pypi.org/project/awscli/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.20.87[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/colorama[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/docutils[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/rsa[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/s3transfer-0.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/aws/aws-cli/archive/1.19.87.tar.gz -> awscli-1.19.87.tar.gz +_eclasses_=bash-completion-r1 8e7c071081c68c2c398b77fe3a1d6908 distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=77e355c78ffe8bb457418a22dde72f89 diff --git a/metadata/md5-cache/app-dicts/myspell-af-20080701 b/metadata/md5-cache/app-dicts/myspell-af-20080701 index 2d76d73f0b99..feec22a3b531 100644 --- a/metadata/md5-cache/app-dicts/myspell-af-20080701 +++ b/metadata/md5-cache/app-dicts/myspell-af-20080701 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Afrikaans dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.services.openoffice.org/project/dict_af KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=LGPL-3 SLOT=0 SRC_URI=mirror://sourceforge/aoo-extensions/1109/0/dict-af.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=177c65cf2c3d3582c70d211238fb1024 +_md5_=08330075ac4f73f459e7ce4d4306b040 diff --git a/metadata/md5-cache/app-dicts/myspell-bg-4.3 b/metadata/md5-cache/app-dicts/myspell-bg-4.3 index 0f41d6111232..9e04ce51249b 100644 --- a/metadata/md5-cache/app-dicts/myspell-bg-4.3 +++ b/metadata/md5-cache/app-dicts/myspell-bg-4.3 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install prepare unpack -DEPEND=app-arch/unzip DESCRIPTION=Bulgarian dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://sourceforge.net/projects/bgoffice/ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 LGPL-2.1 MPL-1.1 SLOT=0 SRC_URI=mirror://sourceforge/bgoffice/OOo-full-pack-bg-4.3.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=6eaccf397056624923ea904d19b03d45 +_md5_=11bf7d570a5e43d05979d8b817533de7 diff --git a/metadata/md5-cache/app-dicts/myspell-ca-2.3.0 b/metadata/md5-cache/app-dicts/myspell-ca-2.3.0 index b59bdb5fbe4d..031a8452d25e 100644 --- a/metadata/md5-cache/app-dicts/myspell-ca-2.3.0 +++ b/metadata/md5-cache/app-dicts/myspell-ca-2.3.0 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install prepare unpack -DEPEND=app-arch/unzip DESCRIPTION=Catalan dictionaries for myspell/hunspell -EAPI=6 -HOMEPAGE=http://www.softcatala.org/wiki/Rebost:Corrector_ortogr%C3%A0fic_de_catal%C3%A0_%28general%29_per_a_l%27OpenOffice.org +EAPI=7 +HOMEPAGE=https://www.softcatala.org KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://www.softcatala.org/diccionaris/actualitzacions/OOo/catalan.oxt -> myspell-ca-2.3.0.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=fcbdb3ff6311c18f238eb8e068d33d13 +_md5_=0843d33b590d8a709b6a5301433e377c diff --git a/metadata/md5-cache/app-dicts/myspell-ca-3.0.6 b/metadata/md5-cache/app-dicts/myspell-ca-3.0.6 index 4a08c114ebbc..b6b713f97b4e 100644 --- a/metadata/md5-cache/app-dicts/myspell-ca-3.0.6 +++ b/metadata/md5-cache/app-dicts/myspell-ca-3.0.6 @@ -6,6 +6,6 @@ HOMEPAGE=https://www.softcatala.org/programes/corrector-ortografic-de-catala-gen KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=GPL-2 LGPL-2.1 SLOT=0 -SRC_URI=https://github.com/Softcatala/catalan-dict-tools/releases/download/v3.0.6/ca.3.0.6.oxt +SRC_URI=https://github.com/Softcatala/catalan-dict-tools/releases/download/v3.0.6/ca.3.0.6.oxt -> myspell-ca-3.0.6.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=8f6d56ec032483b7ac9e110d343b3475 +_md5_=bc335a5b4518a5adf199153b19d2a4e3 diff --git a/metadata/md5-cache/app-dicts/myspell-cs-20181003 b/metadata/md5-cache/app-dicts/myspell-cs-20181003 index 682c96a607c6..2e98a2113ea4 100644 --- a/metadata/md5-cache/app-dicts/myspell-cs-20181003 +++ b/metadata/md5-cache/app-dicts/myspell-cs-20181003 @@ -8,4 +8,4 @@ LICENSE=GPL-2 MIT SLOT=0 SRC_URI=https://extensions.libreoffice.org/extensions/czech-dictionaries/2018.10/@@download/file/czech-dictionaries.oxt -> myspell-cs-20181003.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=dba5db4211848387ac99c916257502d9 +_md5_=4212ced1a676d584233e3f934d85ea9f diff --git a/metadata/md5-cache/app-dicts/myspell-cy-20130708 b/metadata/md5-cache/app-dicts/myspell-cy-20130708 index 2f32ed410129..772334870cc2 100644 --- a/metadata/md5-cache/app-dicts/myspell-cy-20130708 +++ b/metadata/md5-cache/app-dicts/myspell-cy-20130708 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Welsh dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.openoffice.org/en/project/gwirydd-sillafu-cymraeg-welsh-language-spell-checker KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1 SLOT=0 SRC_URI=mirror://sourceforge/aoo-extensions/geiriadur-cy.oxt -> myspell-cy-20130708.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=c9023e3f7addf38b1a0895ac1bad4f3f +_md5_=338fa9ffbe2691a0dd6880ca63ebfb0f diff --git a/metadata/md5-cache/app-dicts/myspell-da-2.6 b/metadata/md5-cache/app-dicts/myspell-da-2.6 new file mode 100644 index 000000000000..2ca56ba50998 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-da-2.6 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Danish dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extensions/stavekontrolden-danish-dictionary +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 LGPL-2.1 MPL-1.1 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/110/da_DK-2.6.001.oxt -> myspell-da-2.6.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=4e6e48a73f61daa538046e702d8f1b7c diff --git a/metadata/md5-cache/app-dicts/myspell-de-2017.01.12 b/metadata/md5-cache/app-dicts/myspell-de-2017.01.12 index 7fc55dfca9ee..8b8c81b659a7 100644 --- a/metadata/md5-cache/app-dicts/myspell-de-2017.01.12 +++ b/metadata/md5-cache/app-dicts/myspell-de-2017.01.12 @@ -8,4 +8,4 @@ LICENSE=GPL-3 GPL-2 LGPL-3+ SLOT=0 SRC_URI=https://extensions.libreoffice.org/extensions/german-de-at-frami-dictionaries/2017-01.12/@@download/file/dict-de_AT-frami_2017-01-12.oxt https://extensions.libreoffice.org/extensions/german-de-ch-frami-dictionaries/2017-01.12/@@download/file/dict-de_CH-frami_2017-01-12.oxt https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries/2017-01-12/@@download/file/dict-de_DE-frami_2017-01-12.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=f82d52b5dbe20b82502260ca8e6056e2 +_md5_=e149197ced739a71379db9a1f729dbb2 diff --git a/metadata/md5-cache/app-dicts/myspell-de_1901-20170622 b/metadata/md5-cache/app-dicts/myspell-de_1901-20170622 new file mode 100644 index 000000000000..a97f276c93d4 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-de_1901-20170622 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=German (traditional orthography) dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=http://extensions.libreoffice.org/extension-center/german-de-de-1901-old-spelling-dictionaries +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-3 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/dict-de-de-1901-oldspell-2017-06-22.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=ea0ee7c8d781425163e60fdf39b97ec5 diff --git a/metadata/md5-cache/app-dicts/myspell-el-0.9 b/metadata/md5-cache/app-dicts/myspell-el-0.9 index 05d1f82848d5..a76ecc119bcd 100644 --- a/metadata/md5-cache/app-dicts/myspell-el-0.9 +++ b/metadata/md5-cache/app-dicts/myspell-el-0.9 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Greek dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=http://www.elspell.gr/ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 LGPL-2.1 MPL-1.1 SLOT=0 SRC_URI=http://elspell.math.upatras.gr/files/ooffice/el_GR-0.9.zip http://elspell.math.upatras.gr/files/ooffice/hyph_el.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=fc25852074021765fa19de66e99507a0 +_md5_=05e6c06c842245ff512171e76ad0393c diff --git a/metadata/md5-cache/app-dicts/myspell-en-20210601 b/metadata/md5-cache/app-dicts/myspell-en-20210601 new file mode 100644 index 000000000000..478d5506a9da --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-en-20210601 @@ -0,0 +1,13 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=English dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extensions/english-dictionaries +IUSE=l10n_en l10n_en-AU l10n_en-CA l10n_en-GB l10n_en-US l10n_en-ZA +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris +LICENSE=BSD MIT LGPL-3+ +REQUIRED_USE=|| ( l10n_en l10n_en-AU l10n_en-CA l10n_en-GB l10n_en-US l10n_en-ZA ) +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/41/dict-en-20210601.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=c472179e6eb37c53d00c292947ab4b2b diff --git a/metadata/md5-cache/app-dicts/myspell-eo-1.01 b/metadata/md5-cache/app-dicts/myspell-eo-1.01 new file mode 100644 index 000000000000..66a5b9e62409 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-eo-1.01 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=Esperanto dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=http://nlp.fi.muni.cz/projekty/esperanto_spell_checker/ +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2+ +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/dict-eo.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=a937e9cda2d0fa356b91e8c2c5f21738 diff --git a/metadata/md5-cache/app-dicts/myspell-es-2.6 b/metadata/md5-cache/app-dicts/myspell-es-2.6 index 04aaef4c514a..250539cf6ebd 100644 --- a/metadata/md5-cache/app-dicts/myspell-es-2.6 +++ b/metadata/md5-cache/app-dicts/myspell-es-2.6 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install prepare unpack -DEPEND=app-arch/unzip DESCRIPTION=Spanish dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://github.com/sbosio/rla-es KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 -LICENSE=GPL-3 LGPL-3 MPL-1.1 +LICENSE=GPL-3+ LGPL-3+ MPL-1.1 SLOT=0 SRC_URI=https://github.com/sbosio/rla-es/releases/download/v2.6/es.oxt -> es-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_AR.oxt -> es_AR-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_BO.oxt -> es_BO-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_CL.oxt -> es_CL-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_CO.oxt -> es_CO-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_CR.oxt -> es_CR-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_CU.oxt -> es_CU-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_DO.oxt -> es_DO-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_EC.oxt -> es_EC-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_ES.oxt -> es_ES-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_GT.oxt -> es_GT-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_HN.oxt -> es_HN-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_MX.oxt -> es_MX-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_NI.oxt -> es_NI-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_PA.oxt -> es_PA-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_PE.oxt -> es_PE-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_PH.oxt -> es_PH-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_PR.oxt -> es_PR-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_PY.oxt -> es_PY-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_SV.oxt -> es_SV-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_US.oxt -> es_US-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_UY.oxt -> es_UY-2.6.oxt https://github.com/sbosio/rla-es/releases/download/v2.6/es_VE.oxt -> es_VE-2.6.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=a9f233a8445bdcbe900dc3153af0e732 +_md5_=2b90522c862793b6a81049966585b91f diff --git a/metadata/md5-cache/app-dicts/myspell-et-20030606 b/metadata/md5-cache/app-dicts/myspell-et-20030606 index a557369d81c8..f1a2281358fa 100644 --- a/metadata/md5-cache/app-dicts/myspell-et-20030606 +++ b/metadata/md5-cache/app-dicts/myspell-et-20030606 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install prepare unpack -DEPEND=app-arch/unzip DESCRIPTION=Estonian dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=http://www.meso.ee/~jjpp/speller/ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=LGPL-3 SLOT=0 SRC_URI=http://www.meso.ee/~jjpp/speller/ispell-et_20030606.tar.gz _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=903fbf036edd45d0c0c1afea58cbd790 +_md5_=8f189dc29ae8f85ab2b91cdaba339035 diff --git a/metadata/md5-cache/app-dicts/myspell-fo-0.4.2 b/metadata/md5-cache/app-dicts/myspell-fo-0.4.2 index 19c422ba7182..4d2b64c66e57 100644 --- a/metadata/md5-cache/app-dicts/myspell-fo-0.4.2 +++ b/metadata/md5-cache/app-dicts/myspell-fo-0.4.2 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Faroese dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://fo.speling.org/ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 LGPL-2.1 MPL-1.1 SLOT=0 SRC_URI=https://fo.speling.org/filer/myspell-fo-0.4.2.tar.bz2 https://fo.speling.org/filer/hyph_fo_FO-20040420a.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=5efa640196a25ae0b5fd3a14fc0c3c75 +_md5_=c6dd7f635b0c200c75b17535b7fb8652 diff --git a/metadata/md5-cache/app-dicts/myspell-fr-5.7 b/metadata/md5-cache/app-dicts/myspell-fr-5.7 new file mode 100644 index 000000000000..2acedb938507 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-fr-5.7 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=French dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extension-center/dictionnaires-francais +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x86-linux +LICENSE=GPL-2 LGPL-2.1 MPL-1.1 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/lo-oo-ressources-linguistiques-fr-v5-7.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=d99c3361f8603e2bd86e4eef16845c62 diff --git a/metadata/md5-cache/app-dicts/myspell-ga-20171203 b/metadata/md5-cache/app-dicts/myspell-ga-20171203 new file mode 100644 index 000000000000..cada84e33e11 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-ga-20171203 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Irish dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/en/extensions/show/irish-language-spell-checker-thesaurus-and-hyphenation-patterns +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=FDL-1.2 GPL-2 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/focloiri-gaeilge-5-0.oxt -> myspell-ga-20171203.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=604f75c935f877be44e888d5ccbd7965 diff --git a/metadata/md5-cache/app-dicts/myspell-gl-20180710 b/metadata/md5-cache/app-dicts/myspell-gl-20180710 new file mode 100644 index 000000000000..3effd8d05072 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-gl-20180710 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=Galician dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/en/extensions/show/corrector-ortografico-para-galego +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 LGPL-2.1 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/corrector-18-07-para-galego.oxt -> myspell-gl-20180710.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=5903af83d4dfbba0e4ef7e10b76f767d diff --git a/metadata/md5-cache/app-dicts/myspell-he-2012.08.15 b/metadata/md5-cache/app-dicts/myspell-he-2012.08.15 index e50238ba0ea3..2f032ba46323 100644 --- a/metadata/md5-cache/app-dicts/myspell-he-2012.08.15 +++ b/metadata/md5-cache/app-dicts/myspell-he-2012.08.15 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Hebrew dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.libreoffice.org/extensions/hebrew-he-spell-check-dictionary KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 LGPL-2 SLOT=0 SRC_URI=https://extensions.libreoffice.org/extensions/hebrew-he-spell-check-dictionary/2012-08-15/@@download/file/dict-he-2012-08-15.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=50b6b63ca6ef4761b000b265efe67d64 +_md5_=0f4b3d890fa497a718bbc901ca7de120 diff --git a/metadata/md5-cache/app-dicts/myspell-hr-20080813 b/metadata/md5-cache/app-dicts/myspell-hr-20080813 index 248956c8b3ee..097bb4b8e90e 100644 --- a/metadata/md5-cache/app-dicts/myspell-hr-20080813 +++ b/metadata/md5-cache/app-dicts/myspell-hr-20080813 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Croatian dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.openoffice.org/en/project/croatian-dictionary-and-hyphenation-patterns KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=mirror://sourceforge/aoo-extensions/dict-hr.oxt -> myspell-hr-20080813.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=3e8f9335c20ed4d3ffc5c32c75fa7bda +_md5_=8808cb1746a65540d3fd6a816eab0459 diff --git a/metadata/md5-cache/app-dicts/myspell-hu-7.1.3.2 b/metadata/md5-cache/app-dicts/myspell-hu-7.1.3.2 new file mode 100644 index 000000000000..705c3b1176a4 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-hu-7.1.3.2 @@ -0,0 +1,11 @@ +BDEPEND=>=app-arch/rpm2targz-9.0.0.3g app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Hungarian dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://sourceforge.net/projects/magyarispell/ +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3 GPL-2 LGPL-2.1 MPL-1.1 +SLOT=0 +SRC_URI=https://downloadarchive.documentfoundation.org/libreoffice/old/7.1.3.2/rpm/x86_64/LibreOffice_7.1.3.2_Linux_x86-64_rpm_langpack_hu.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 rpm 760ff223c2c4299b68ea901e24c4cabd wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=471c81ad639a16d55f5abc72aa9883af diff --git a/metadata/md5-cache/app-dicts/myspell-ia-20140518 b/metadata/md5-cache/app-dicts/myspell-ia-20140518 index 2066bbf8e975..2ca76bee414a 100644 --- a/metadata/md5-cache/app-dicts/myspell-ia-20140518 +++ b/metadata/md5-cache/app-dicts/myspell-ia-20140518 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Interlingua dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.openoffice.org/en/project/interlingua-dictionario-orthographic-e-regulas-de-division-de-parolas KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-3 SLOT=0 SRC_URI=mirror://sourceforge/aoo-extensions/dict-ia-2014-05-18.oxt -> myspell-ia-20140518.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=17a9715c2f75127c873ee1ef91d36da3 +_md5_=5fdc9f858aa45b2e3bec25dbe203c589 diff --git a/metadata/md5-cache/app-dicts/myspell-id-2.0 b/metadata/md5-cache/app-dicts/myspell-id-2.0 index 8ba75d2ca5a0..cf9d130fe559 100644 --- a/metadata/md5-cache/app-dicts/myspell-id-2.0 +++ b/metadata/md5-cache/app-dicts/myspell-id-2.0 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Indonesian dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.libreoffice.org/extension-center/indonesian-dictionary-kamus-indonesia-by-benitius KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 SLOT=0 -SRC_URI=https://extensions.libreoffice.org/extension-center/indonesian-dictionary-kamus-indonesia-by-benitius/releases/2.0/id_id.oxt -> myspell-id-2.0.oxt +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/id-id.oxt -> myspell-id-2.0.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=4001aa3ad57c8d579bd5a44985648272 +_md5_=789f36a3498739331e4867ec3f4da3e7 diff --git a/metadata/md5-cache/app-dicts/myspell-is-20140808 b/metadata/md5-cache/app-dicts/myspell-is-20140808 new file mode 100644 index 000000000000..e617acd25830 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-is-20140808 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Icelandic dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extension-center/hunspell-is-the-icelandic-spelling-dictionary-project +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=CC-BY-SA-3.0 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/hunspell-is-2014-08-18.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=1dcb17eb7d7b068221d9d272e685b46a diff --git a/metadata/md5-cache/app-dicts/myspell-it-20150925 b/metadata/md5-cache/app-dicts/myspell-it-20150925 new file mode 100644 index 000000000000..8bac4d0e6c84 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-it-20150925 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=Italian dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/en/extensions/show/italian-dictionary-thesaurus-hyphenation-patterns +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/874d181c_dict-it.oxt -> myspell-it-20150925.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=64e155ae96e5f25d93d4613fc13eacb7 diff --git a/metadata/md5-cache/app-dicts/myspell-kk-1.1.2 b/metadata/md5-cache/app-dicts/myspell-kk-1.1.2 index 5faabc28c3fb..e40c634bb996 100644 --- a/metadata/md5-cache/app-dicts/myspell-kk-1.1.2 +++ b/metadata/md5-cache/app-dicts/myspell-kk-1.1.2 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Kazakh dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://github.com/kergalym/myspell-kk KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2+ LGPL-2+ SLOT=0 SRC_URI=https://github.com/kergalym/myspell-kk/archive/1.1.2.tar.gz -> myspell-kk-1.1.2.tar.gz _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=86af43adcc579393248e180b5896d503 +_md5_=bee2151feccb66deb94f6211d9964b7c diff --git a/metadata/md5-cache/app-dicts/myspell-km-1.82 b/metadata/md5-cache/app-dicts/myspell-km-1.82 new file mode 100644 index 000000000000..90ec94ce726c --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-km-1.82 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Khmer dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extension-center/khmer-spelling-checker-sbbic-version +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/sbbic-khmer-spelling-checker-libreoffice-1-82.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=64136fecb35bb49bcbeed223e70d8e2f diff --git a/metadata/md5-cache/app-dicts/myspell-ku-0.21 b/metadata/md5-cache/app-dicts/myspell-ku-0.21 index 1f912d535f5c..f09137587c49 100644 --- a/metadata/md5-cache/app-dicts/myspell-ku-0.21 +++ b/metadata/md5-cache/app-dicts/myspell-ku-0.21 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Kurdish dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://code.google.com/p/hunspell-ku/ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-3 LGPL-3 MPL-1.1 SLOT=0 SRC_URI=mirror://sourceforge/myspellkurdish/ku_TR-021.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=f4bbf956a42e5287d252761c8fc11c61 +_md5_=c75a742209efe2895189fcf77622e20f diff --git a/metadata/md5-cache/app-dicts/myspell-lt-1.3-r1 b/metadata/md5-cache/app-dicts/myspell-lt-1.3-r1 new file mode 100644 index 000000000000..1b645ed2a4c9 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-lt-1.3-r1 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=Lithuanian dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/en/extensions/show/lithuanian-spellcheck-and-hyphenation-dictionaries +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=BSD +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/openoffice-spellcheck-lt-1-3.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=062d4fd18b58de26a645986eb7a267e6 diff --git a/metadata/md5-cache/app-dicts/myspell-lv-1.3.0 b/metadata/md5-cache/app-dicts/myspell-lv-1.3.0 index 77f58edf66d6..ce10e37943a0 100644 --- a/metadata/md5-cache/app-dicts/myspell-lv-1.3.0 +++ b/metadata/md5-cache/app-dicts/myspell-lv-1.3.0 @@ -1,11 +1,12 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip app-arch/unzip +DEPEND=app-arch/unzip DESCRIPTION=Latvian dictionaries for myspell/hunspell -EAPI=5 +EAPI=7 HOMEPAGE=http://dict.dv.lv/home.php?prj=lv https://extensions.libreoffice.org/extensions/latviesu-valodas-pareizrakstibas-parbaudes-modulis KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=http://dict.dv.lv/download/lv_LV-1.3.0.zip -> myspell-lv-1.3.0.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=d0fbe85503c2634d866c2503a783f300 +_md5_=835bb30ae352cd1c3ee54e0405b8355d diff --git a/metadata/md5-cache/app-dicts/myspell-mi-20190630 b/metadata/md5-cache/app-dicts/myspell-mi-20190630 new file mode 100644 index 000000000000..b5df0f63dca6 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-mi-20190630 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Maori dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=http://lingucomponent.openoffice.org/ +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-2.1 +SLOT=0 +SRC_URI=https://github.com/scardracs/gentoo-packages/releases/download/mi-20190630/myspell-mi-20190630.tar.gz +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=7e76641054e1a577a3211303bb69c7e9 diff --git a/metadata/md5-cache/app-dicts/myspell-mk-20091211 b/metadata/md5-cache/app-dicts/myspell-mk-20091211 index 4bb3c3f0e895..0ab78e4cbd45 100644 --- a/metadata/md5-cache/app-dicts/myspell-mk-20091211 +++ b/metadata/md5-cache/app-dicts/myspell-mk-20091211 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Macedonian dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.openoffice.org/en/project/macedonian-spellchecker-dictionary KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://sourceforge/aoo-extensions/dict-mk.oxt -> myspell-mk-20091211.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=0925a4dc44d5071e00565791f0a075e1 +_md5_=00b25be2538361654c953488eaf9598e diff --git a/metadata/md5-cache/app-dicts/myspell-ms-20100407 b/metadata/md5-cache/app-dicts/myspell-ms-20100407 index 3981042a710e..83b19389c612 100644 --- a/metadata/md5-cache/app-dicts/myspell-ms-20100407 +++ b/metadata/md5-cache/app-dicts/myspell-ms-20100407 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Malay dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.openoffice.org/en/project/kamus-bahasa-malaysia-malay-dictionary KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=FDL-1.2 SLOT=0 SRC_URI=mirror://sourceforge/aoo-extensions/ms_my.oxt -> myspell-ms-20100407.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=985814265009234d35d0c5f62ada9c05 +_md5_=930d336c46d0cfd9036b5da5eaabe64b diff --git a/metadata/md5-cache/app-dicts/myspell-nb-2.0.10 b/metadata/md5-cache/app-dicts/myspell-nb-2.0.10 index ebf866ad8c30..704484a2f7f3 100644 --- a/metadata/md5-cache/app-dicts/myspell-nb-2.0.10 +++ b/metadata/md5-cache/app-dicts/myspell-nb-2.0.10 @@ -8,4 +8,4 @@ LICENSE=GPL-2 SLOT=0 SRC_URI=https://alioth.debian.org/frs/download.php/2357/no_NO-pack2-2.0.10.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=f7777e1a06d0ef31e1994b7e880c527a +_md5_=e690c1af4daf543979777daa12409a30 diff --git a/metadata/md5-cache/app-dicts/myspell-nb-2.0.10-r1 b/metadata/md5-cache/app-dicts/myspell-nb-2.0.10-r1 new file mode 100644 index 000000000000..afa1179784e5 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-nb-2.0.10-r1 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Norwegian dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/en/extensions/show/norsk-stavekontroll-bokmal-og-nynorsk +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/dictionary-no-no-1-0.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=6b1109b3c2737210ba209c46fb16ad80 diff --git a/metadata/md5-cache/app-dicts/myspell-nn-2.0.10 b/metadata/md5-cache/app-dicts/myspell-nn-2.0.10 index 84d2fdd745b9..cad943898455 100644 --- a/metadata/md5-cache/app-dicts/myspell-nn-2.0.10 +++ b/metadata/md5-cache/app-dicts/myspell-nn-2.0.10 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Norwegian dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=http://spell-norwegian.alioth.debian.org/ KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://alioth.debian.org/frs/download.php/2357/no_NO-pack2-2.0.10.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=c0dda1bcea0abb541582737e40cda3f8 +_md5_=9d97f00c7454ac291ffbdf22f582cb9c diff --git a/metadata/md5-cache/app-dicts/myspell-pl-20210428 b/metadata/md5-cache/app-dicts/myspell-pl-20210428 new file mode 100644 index 000000000000..fb039ccb7fd6 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-pl-20210428 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Polish dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=http://www.sjp.pl/slownik/en/ +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=CC-SA-1.0 Apache-2.0 LGPL-2.1+ GPL-2+ MPL-1.1 +SLOT=0 +SRC_URI=https://github.com/scardracs/gentoo-packages/releases/download/pl-20210428/myspell-pl-20210428.tar.gz +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=4710b4c57fce18aec9c464594ea1e8c2 diff --git a/metadata/md5-cache/app-dicts/myspell-pt-20120420 b/metadata/md5-cache/app-dicts/myspell-pt-20120420 index eae6b4bc45fc..573a56ee6720 100644 --- a/metadata/md5-cache/app-dicts/myspell-pt-20120420 +++ b/metadata/md5-cache/app-dicts/myspell-pt-20120420 @@ -1,7 +1,7 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Portuguese dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:main IUSE=+preao KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 @@ -9,4 +9,4 @@ LICENSE=GPL-2 MIT SLOT=0 SRC_URI=http://darkstar.ist.utl.pt/openoffice.org/pt/oo3x-pt-PT.oxt preao? ( http://darkstar.ist.utl.pt/openoffice.org/pt/oo3x-pt-PT-preao.oxt ) _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=6079150cb44f2e4a71a1a929e05e17a2 +_md5_=236c0f76aeeccdbd83f1a122c9945e32 diff --git a/metadata/md5-cache/app-dicts/myspell-pt-br-3.2.0 b/metadata/md5-cache/app-dicts/myspell-pt-br-3.2.0 new file mode 100644 index 000000000000..5e3510c91963 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-pt-br-3.2.0 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Brazilian dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ortografico/ +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-3 MPL-1.1 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/veroptbrv320aoc.oxt http://wiki.documentfoundation.org/images/f/ff/DicSin-BR.oxt -> myspell-pt-br-3.2.0-thes.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=8cb002c9c1dad46fc5b9850776e6cfcb diff --git a/metadata/md5-cache/app-dicts/myspell-ro-3.3.10 b/metadata/md5-cache/app-dicts/myspell-ro-3.3.10 index 6cf004d68723..de902dfa7e91 100644 --- a/metadata/md5-cache/app-dicts/myspell-ro-3.3.10 +++ b/metadata/md5-cache/app-dicts/myspell-ro-3.3.10 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Romanian dictionaries for myspell/hunspell -EAPI=5 +EAPI=7 HOMEPAGE=https://rospell.wordpress.com KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 LGPL-2.1 MPL-1.1 SLOT=0 SRC_URI=mirror://sourceforge/rospell/ro_RO.3.3.10.zip mirror://sourceforge/rospell/hyph_ro_RO.3.3.10.zip mirror://sourceforge/rospell/th_ro_RO.3.3.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=987ae7ee36a9484a7e9fa3026d5d4a8e +_md5_=f7b6b94656f1b5555ab5746b25a56aea diff --git a/metadata/md5-cache/app-dicts/myspell-ru-20180627 b/metadata/md5-cache/app-dicts/myspell-ru-20180627 index 654ecbd88c76..4dae3af8f52c 100644 --- a/metadata/md5-cache/app-dicts/myspell-ru-20180627 +++ b/metadata/md5-cache/app-dicts/myspell-ru-20180627 @@ -8,4 +8,4 @@ LICENSE=LGPL-2.1 SLOT=0 SRC_URI=https://extensions.libreoffice.org/extensions/russian-dictionary-pack/0-4.3/@@download/file/dict_pack_ru-aot-0-4-3.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=046d798ce1ef7cc94d64ef80faeb7327 +_md5_=93c430c163d540a5a67b2b11f7f31abf diff --git a/metadata/md5-cache/app-dicts/myspell-ru-20200606 b/metadata/md5-cache/app-dicts/myspell-ru-20200606 new file mode 100644 index 000000000000..3fd706b1ff48 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-ru-20200606 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=Russian spellcheck dictionary based on works of AOT group for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extensions/russian-dictionary-pack +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux +LICENSE=LGPL-2.1 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/48/dict_pack_ru-aot-0.4.5.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=ca35ba7668fec54a1107388561aa4f1b diff --git a/metadata/md5-cache/app-dicts/myspell-sk-20200501 b/metadata/md5-cache/app-dicts/myspell-sk-20200501 new file mode 100644 index 000000000000..786899bda86d --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-sk-20200501 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Slovak dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/en/extensions/show/874 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/84/slovak-dictionaries-2020-05.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=c979eae5721f443a9c344253c9618ef7 diff --git a/metadata/md5-cache/app-dicts/myspell-sl-20201231 b/metadata/md5-cache/app-dicts/myspell-sl-20201231 new file mode 100644 index 000000000000..5174bcb5e49f --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-sl-20201231 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Slovenian dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extension-center/slovenian-dictionary-pack +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3 LGPL-2.1 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/752/pack-sl.oxt -> myspell-sl-20201231.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=284ee0e67ccb35fd1063b42bf7abf2fc diff --git a/metadata/md5-cache/app-dicts/myspell-sq-1.6.4 b/metadata/md5-cache/app-dicts/myspell-sq-1.6.4 index c4f3a1914c95..14a9136dd52d 100644 --- a/metadata/md5-cache/app-dicts/myspell-sq-1.6.4 +++ b/metadata/md5-cache/app-dicts/myspell-sq-1.6.4 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Albanian dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=http://www.shkenca.org/k6i/albanian_dictionary_for_myspell_en.html KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://www.shkenca.org/shkarkime/myspell-sq_AL-1.6.4.zip _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=1ad72f9d735e30cd635486a0b79cb39e +_md5_=2d252d7dd138318d085de2fa35b09ba0 diff --git a/metadata/md5-cache/app-dicts/myspell-sv-2.42 b/metadata/md5-cache/app-dicts/myspell-sv-2.42 new file mode 100644 index 000000000000..967516ad7166 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-sv-2.42 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=Swedish dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extension-center/swedish-spelling-dictionary-den-stora-svenska-ordlistan https://extensions.libreoffice.org/extension-center/swedish-hyphenation https://extensions.libreoffice.org/extension-center/swedish-thesaurus-based-on-synlex +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=CC-BY-SA-3.0 GPL-2 LGPL-3 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/ooo-swedish-dict-2-42.oxt -> myspell-sv-2.42-dict.oxt https://extensions.libreoffice.org/assets/downloads/z/hyph-sv.oxt -> myspell-sv-2.42-hyph.oxt https://extensions.libreoffice.org/assets/downloads/z/swedishthesaurus.oxt -> myspell-sv-2.42-thes.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=38e789346502db559f4810687aa4d9c9 diff --git a/metadata/md5-cache/app-dicts/myspell-sw-20130312 b/metadata/md5-cache/app-dicts/myspell-sw-20130312 new file mode 100644 index 000000000000..ca0dd01051d0 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-sw-20130312 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Kiswahili dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.openoffice.org/en/project/swahili-dictionary +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-2.1 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/swahilidictionary-2013-03-12.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=59603f76b326aee14083273ba6c47123 diff --git a/metadata/md5-cache/app-dicts/myspell-tn-20150904 b/metadata/md5-cache/app-dicts/myspell-tn-20150904 new file mode 100644 index 000000000000..e59d963c2fb1 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-tn-20150904 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Setswana dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/en/extensions/show/setswana-spellchecker +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/hunspell-tn-2-0-0.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=41582be4b0671b16bde6029998775783 diff --git a/metadata/md5-cache/app-dicts/myspell-tr-1.2 b/metadata/md5-cache/app-dicts/myspell-tr-1.2 new file mode 100644 index 000000000000..52b074bcdf16 --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-tr-1.2 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install prepare unpack +DESCRIPTION=Turkish dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/en/extensions/show/turkish-spellcheck-dictionary +KEYWORDS=~amd64 +LICENSE=LGPL-3+ +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/z/oo-turkish-dict-v1-2.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=3783b8a2ee41c020383c620b92b0b477 diff --git a/metadata/md5-cache/app-dicts/myspell-uk-5.3.1 b/metadata/md5-cache/app-dicts/myspell-uk-5.3.1 new file mode 100644 index 000000000000..f3f61907918f --- /dev/null +++ b/metadata/md5-cache/app-dicts/myspell-uk-5.3.1 @@ -0,0 +1,11 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install unpack +DESCRIPTION=Ukrainian dictionaries for myspell/hunspell +EAPI=7 +HOMEPAGE=https://extensions.libreoffice.org/extension-center/ukrainian-spelling-dictionary-and-thesaurus +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3 LGPL-2.1 MPL-1.1 +SLOT=0 +SRC_URI=https://extensions.libreoffice.org/assets/downloads/521/dict-uk_UA-5.3.1.oxt +_eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 +_md5_=e87c910deb24dc8502b073dd6da9dcf6 diff --git a/metadata/md5-cache/app-dicts/myspell-zu-20100126 b/metadata/md5-cache/app-dicts/myspell-zu-20100126 index 1635265b587e..42292e41e2e0 100644 --- a/metadata/md5-cache/app-dicts/myspell-zu-20100126 +++ b/metadata/md5-cache/app-dicts/myspell-zu-20100126 @@ -1,11 +1,11 @@ +BDEPEND=app-arch/unzip DEFINED_PHASES=install unpack -DEPEND=app-arch/unzip DESCRIPTION=Zulu dictionaries for myspell/hunspell -EAPI=6 +EAPI=7 HOMEPAGE=https://extensions.openoffice.org/en/project/zulu-spell-checker KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 LICENSE=LGPL-2.1 SLOT=0 SRC_URI=mirror://sourceforge/aoo-extensions/dict-zu_za-2010.01.26.oxt -> myspell-zu-20100126.oxt _eclasses_=myspell-r2 c3ce3195fd25a3958492bf548ef8b1f9 -_md5_=9568a250f067ac6337d1bf93510813df +_md5_=98e55d7fd390ac00d1d9423c42e61c60 diff --git a/metadata/md5-cache/app-editors/emacs-27.2 b/metadata/md5-cache/app-editors/emacs-27.2 index 6df9c69eb655..0e7d7a2a3a26 100644 --- a/metadata/md5-cache/app-editors/emacs-27.2 +++ b/metadata/md5-cache/app-editors/emacs-27.2 @@ -5,11 +5,11 @@ DESCRIPTION=The extensible, customizable, self-documenting real-time display edi EAPI=7 HOMEPAGE=https://www.gnu.org/software/emacs/ IUSE=acl alsa aqua athena cairo dbus dynamic-loading games gconf gfile gif +gmp gpm gsettings gtk gui gzip-el harfbuzz imagemagick +inotify jpeg json kerberos lcms libxml2 livecd m17n-lib mailutils motif png selinux sound source ssl svg systemd +threads tiff toolkit-scroll-bars wide-int Xaw3d xft +xpm xwidgets zlib -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gmp? ( dev-libs/gmp:0= ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) json? ( dev-libs/jansson ) kerberos? ( virtual/krb5 ) lcms? ( media-libs/lcms:2 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) mailutils? ( net-mail/mailutils[clients] ) !mailutils? ( acct-group/mail net-libs/liblockfile ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) systemd? ( sys-apps/systemd ) zlib? ( sys-libs/zlib ) gui? ( !aqua? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes x11-libs/libXinerama x11-libs/libXrandr x11-libs/libxcb x11-misc/xbitmaps gconf? ( >=gnome-base/gconf-2.26.2 ) gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( virtual/jpeg:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:0 ) xpm? ( x11-libs/libXpm ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18 ) harfbuzz? ( media-libs/harfbuzz:0= ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 xwidgets? ( net-libs/webkit-gtk:4= x11-libs/libXcomposite ) ) !gtk? ( motif? ( >=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXmu x11-libs/libXt ) !motif? ( Xaw3d? ( x11-libs/libXaw3d x11-libs/libXmu x11-libs/libXt ) !Xaw3d? ( athena? ( x11-libs/libXaw x11-libs/libXmu x11-libs/libXt ) ) ) ) ) ) !app-editors/emacs-vcs:27 app-eselect/eselect-emacs RESTRICT=test SLOT=27 SRC_URI=mirror://gnu/emacs/emacs-27.2.tar.xz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 6bfea130fc0f2cbd4cbc23dc12992349 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=10e910bb2444eac005ae9ad13d547745 +_md5_=a171ad5e86956363b4704706c48c7f91 diff --git a/metadata/md5-cache/app-emulation/cloud-init-21.2 b/metadata/md5-cache/app-emulation/cloud-init-21.2 new file mode 100644 index 000000000000..14090c9aad37 --- /dev/null +++ b/metadata/md5-cache/app-emulation/cloud-init-21.2 @@ -0,0 +1,16 @@ +BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=test? ( dev-python/jinja[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/oauthlib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyserial[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/configobj-5.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/requests[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jsonpatch[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jsonschema[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/httpretty-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/nose[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/unittest2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/coverage[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/contextlib2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) +DESCRIPTION=Cloud instance initialisation magic +EAPI=7 +HOMEPAGE=https://launchpad.net/cloud-init +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-python/jinja[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/oauthlib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyserial[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/configobj-5.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/requests[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jsonpatch[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jsonschema[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] net-analyzer/macchanger sys-apps/iproute2 sys-fs/growpart virtual/logger python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://launchpad.net/cloud-init/trunk/21.2/+download/cloud-init-21.2.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=45e396234279ae3aa7d8ccb2ce84fe8f diff --git a/metadata/md5-cache/app-emulation/cloud-init-9999 b/metadata/md5-cache/app-emulation/cloud-init-9999 index ac64da38261b..1ad4fbbdc5b9 100644 --- a/metadata/md5-cache/app-emulation/cloud-init-9999 +++ b/metadata/md5-cache/app-emulation/cloud-init-9999 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd git-r3 b8e8c92aa5fe8df7187e466138eb4e52 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=f537a9ae7517f861c551087e75575743 +_md5_=45e396234279ae3aa7d8ccb2ce84fe8f diff --git a/metadata/md5-cache/app-emulation/fuse-1.6.0 b/metadata/md5-cache/app-emulation/fuse-1.6.0 index a2e75d497404..e491b4ec239d 100644 --- a/metadata/md5-cache/app-emulation/fuse-1.6.0 +++ b/metadata/md5-cache/app-emulation/fuse-1.6.0 @@ -4,7 +4,7 @@ DEPEND=>=app-emulation/libspectrum-1.5.0[zlib?] dev-libs/glib:2 alsa? ( media-li DESCRIPTION=Free Unix Spectrum Emulator by Philip Kendall EAPI=7 HOMEPAGE=https://sourceforge.net/projects/fuse-emulator/ -IUSE=alsa ao backend-X backend-fbcon +backend-gtk3 backend-sdl backend-svga gpm joystick memlimit png -pulseaudio +xml +zlib +IUSE=alsa ao backend-X backend-fbcon +backend-gtk3 backend-sdl backend-svga gpm joystick memlimit png pulseaudio +xml +zlib KEYWORDS=~amd64 ~ppc ~x86 LICENSE=GPL-2+ RDEPEND=>=app-emulation/libspectrum-1.5.0[zlib?] dev-libs/glib:2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) backend-X? ( x11-libs/libX11 x11-libs/libXext ) backend-gtk3? ( x11-libs/gtk+:3 ) backend-sdl? ( media-libs/libsdl[joystick,sound] ) backend-svga? ( media-libs/svgalib ) gpm? ( backend-fbcon? ( sys-libs/gpm ) ) joystick? ( !backend-sdl? ( media-libs/libjsw ) ) png? ( media-libs/libpng:0= ) pulseaudio? ( media-sound/pulseaudio ) xml? ( dev-libs/libxml2:2 ) zlib? ( sys-libs/zlib ) @@ -12,4 +12,4 @@ REQUIRED_USE=?? ( alsa ao backend-sdl pulseaudio ) ?? ( backend-X backend-fbcon SLOT=0 SRC_URI=mirror://sourceforge/fuse-emulator/fuse-1.6.0.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4271cfcd048903452bf14d156873d6e5 +_md5_=fb60c9ac1cd00f763697bdeaed054852 diff --git a/metadata/md5-cache/app-emulation/nemu-2.5.0 b/metadata/md5-cache/app-emulation/nemu-2.5.0 index aa296c5cae47..98d7443ce529 100644 --- a/metadata/md5-cache/app-emulation/nemu-2.5.0 +++ b/metadata/md5-cache/app-emulation/nemu-2.5.0 @@ -5,10 +5,10 @@ DESCRIPTION=ncurses interface for QEMU EAPI=7 HOMEPAGE=https://github.com/nemuTUI/nemu IUSE=dbus network-map +ovf +savevm spice +vnc-client kernel_linux -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=BSD-2 RDEPEND=app-emulation/qemu[vnc,virtfs,spice?] dev-db/sqlite:3= sys-libs/ncurses:0=[unicode] virtual/libusb:1 virtual/libudev:= dbus? ( sys-apps/dbus ) network-map? ( media-gfx/graphviz[svg] ) ovf? ( dev-libs/libxml2:2 app-arch/libarchive ) spice? ( app-emulation/virt-viewer ) vnc-client? ( net-misc/tigervnc ) SLOT=0 SRC_URI=https://github.com/nemuTUI/nemu/archive/v2.5.0.tar.gz -> nemu-2.5.0.tar.gz _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1acbe2d1bf8c66930cde006c97816b15 +_md5_=6553f98687afa5b298a5c9efab2951d4 diff --git a/metadata/md5-cache/app-forensics/lynis-3.0.3 b/metadata/md5-cache/app-forensics/lynis-3.0.3 deleted file mode 100644 index 937a6b90f96b..000000000000 --- a/metadata/md5-cache/app-forensics/lynis-3.0.3 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install postinst -DESCRIPTION=Security and system auditing tool -EAPI=7 -HOMEPAGE=https://cisofy.com/lynis/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=app-shells/bash -SLOT=0 -SRC_URI=https://cisofy.com/files/lynis-3.0.3.tar.gz -_eclasses_=bash-completion-r1 8e7c071081c68c2c398b77fe3a1d6908 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=7806980fa968b1fa854a84e08eebf03a diff --git a/metadata/md5-cache/app-forensics/lynis-3.0.3-r2 b/metadata/md5-cache/app-forensics/lynis-3.0.4 index 4a1d27d3e52d..c356144cc24b 100644 --- a/metadata/md5-cache/app-forensics/lynis-3.0.3-r2 +++ b/metadata/md5-cache/app-forensics/lynis-3.0.4 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 RDEPEND=app-shells/bash SLOT=0 -SRC_URI=https://cisofy.com/files/lynis-3.0.3.tar.gz +SRC_URI=https://cisofy.com/files/lynis-3.0.4.tar.gz _eclasses_=bash-completion-r1 8e7c071081c68c2c398b77fe3a1d6908 multilib d410501a125f99ffb560b0c523cd3d1e systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=2b1bb46006b3817751f27cd986582bda diff --git a/metadata/md5-cache/app-i18n/librime-1.7.3 b/metadata/md5-cache/app-i18n/librime-1.7.3 index 128c661cfc89..7c727289bbb3 100644 --- a/metadata/md5-cache/app-i18n/librime-1.7.3 +++ b/metadata/md5-cache/app-i18n/librime-1.7.3 @@ -5,11 +5,11 @@ DESCRIPTION=RIME (Rime Input Method Engine) core library EAPI=7 HOMEPAGE=https://rime.im/ https://github.com/rime/librime IUSE=debug test -KEYWORDS=amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=BSD RDEPEND=app-i18n/opencc:0= !sparc? ( >=dev-cpp/glog-0.3.5:0= ) dev-cpp/yaml-cpp:0= dev-libs/boost:0=[threads] dev-libs/capnproto:0= dev-libs/leveldb:0= dev-libs/marisa:0= RESTRICT=!test? ( test ) SLOT=0/1-1.7.3 SRC_URI=https://github.com/rime/librime/archive/1.7.3.tar.gz -> librime-1.7.3.tar.gz _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4377d4ddf756e005484a580defce254b +_md5_=dc7565d2d41e0bf98668efdb42aa3a34 diff --git a/metadata/md5-cache/app-misc/gcstar-1.7.1-r1 b/metadata/md5-cache/app-misc/gcstar-1.7.1-r2 index c0fef3444ba8..465ebf6be425 100644 --- a/metadata/md5-cache/app-misc/gcstar-1.7.1-r1 +++ b/metadata/md5-cache/app-misc/gcstar-1.7.1-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=install postinst postrm preinst prepare -DEPEND=dev-lang/perl dev-perl/Archive-Zip dev-perl/DateTime-Format-Strptime dev-perl/Gtk2 dev-perl/HTML-Parser dev-perl/libwww-perl dev-perl/URI dev-perl/XML-Parser dev-perl/XML-Simple virtual/perl-Archive-Tar virtual/perl-Encode virtual/perl-Getopt-Long virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-File-Temp virtual/perl-IO-Compress virtual/perl-libnet virtual/perl-Storable virtual/perl-Time-Piece cddb? ( dev-perl/Net-FreeDB ) mp3? ( dev-perl/MP3-Info dev-perl/MP3-Tag ) spell? ( dev-perl/gtk2-spell ) stats? ( dev-perl/Date-Calc dev-perl/GD[png,truetype] ) tellico? ( virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 ) vorbis? ( dev-perl/Ogg-Vorbis-Header-PurePerl ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=dev-lang/perl dev-perl/Archive-Zip dev-perl/DateTime-Format-Strptime dev-perl/Gtk2 dev-perl/HTML-Parser dev-perl/libwww-perl dev-perl/URI dev-perl/XML-Parser dev-perl/XML-Simple virtual/perl-Archive-Tar virtual/perl-Encode virtual/perl-Getopt-Long virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-File-Temp virtual/perl-IO-Compress virtual/perl-libnet virtual/perl-Storable virtual/perl-Time-Piece cddb? ( dev-perl/Net-FreeDB ) mp3? ( dev-perl/MP3-Info dev-perl/MP3-Tag ) spell? ( dev-perl/gtk2-spell ) stats? ( dev-perl/Date-Calc dev-perl/GD[png(+),truetype(+)] ) tellico? ( virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 ) vorbis? ( dev-perl/Ogg-Vorbis-Header-PurePerl ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=Manage your collections of movies, games, books, music and more EAPI=6 HOMEPAGE=http://www.gcstar.org/ IUSE=cddb mp3 spell stats tellico vorbis KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=dev-lang/perl dev-perl/Archive-Zip dev-perl/DateTime-Format-Strptime dev-perl/Gtk2 dev-perl/HTML-Parser dev-perl/libwww-perl dev-perl/URI dev-perl/XML-Parser dev-perl/XML-Simple virtual/perl-Archive-Tar virtual/perl-Encode virtual/perl-Getopt-Long virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-File-Temp virtual/perl-IO-Compress virtual/perl-libnet virtual/perl-Storable virtual/perl-Time-Piece cddb? ( dev-perl/Net-FreeDB ) mp3? ( dev-perl/MP3-Info dev-perl/MP3-Tag ) spell? ( dev-perl/gtk2-spell ) stats? ( dev-perl/Date-Calc dev-perl/GD[png,truetype] ) tellico? ( virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 ) vorbis? ( dev-perl/Ogg-Vorbis-Header-PurePerl ) +RDEPEND=dev-lang/perl dev-perl/Archive-Zip dev-perl/DateTime-Format-Strptime dev-perl/Gtk2 dev-perl/HTML-Parser dev-perl/libwww-perl dev-perl/URI dev-perl/XML-Parser dev-perl/XML-Simple virtual/perl-Archive-Tar virtual/perl-Encode virtual/perl-Getopt-Long virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-File-Temp virtual/perl-IO-Compress virtual/perl-libnet virtual/perl-Storable virtual/perl-Time-Piece cddb? ( dev-perl/Net-FreeDB ) mp3? ( dev-perl/MP3-Info dev-perl/MP3-Tag ) spell? ( dev-perl/gtk2-spell ) stats? ( dev-perl/Date-Calc dev-perl/GD[png(+),truetype(+)] ) tellico? ( virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 ) vorbis? ( dev-perl/Ogg-Vorbis-Header-PurePerl ) SLOT=0 SRC_URI=https://launchpad.net/gcstar/1.7/1.7.1/+download/gcstar-1.7.1.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=49d73b4a1109b332767367b24c0add5d +_md5_=7fd9929181436151921f55d5079b1fa1 diff --git a/metadata/md5-cache/app-office/gnucash-4.4 b/metadata/md5-cache/app-office/gnucash-4.4 index c60c99245094..3ac18659bc9d 100644 --- a/metadata/md5-cache/app-office/gnucash-4.4 +++ b/metadata/md5-cache/app-office/gnucash-4.4 @@ -4,7 +4,7 @@ DEPEND=>=dev-libs/glib-2.56.1:2 >=dev-scheme/guile-2.2.0:=[regex] >=sys-libs/zli DESCRIPTION=A personal finance manager EAPI=7 HOMEPAGE=https://www.gnucash.org/ -IUSE=aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres python quotes -register2 smartcard sqlite test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +IUSE=aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres python quotes register2 smartcard sqlite test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=amd64 ~arm64 ~ppc ~ppc64 x86 LICENSE=GPL-2 PDEPEND=doc? ( ~app-doc/gnucash-docs-4.4 gnome-extra/yelp ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Gnucash/gnucash/releases/download/4.4/gnucash-4.4.tar.bz2 https://dev.gentoo.org/~sam/distfiles/app-office/gnucash/gnucash-4.4-Fix-build-with-glib-2.68.patch.xz _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d43ccd60c0767137c4696395f4dd4e23 +_md5_=a6bf51377b08dc85e8d14fe657de3241 diff --git a/metadata/md5-cache/app-office/gnucash-4.5 b/metadata/md5-cache/app-office/gnucash-4.5 index f0d8f656ffb7..53ebf1b3ff48 100644 --- a/metadata/md5-cache/app-office/gnucash-4.5 +++ b/metadata/md5-cache/app-office/gnucash-4.5 @@ -4,7 +4,7 @@ DEPEND=>=dev-libs/glib-2.56.1:2 >=dev-scheme/guile-2.2.0:=[regex] >=sys-libs/zli DESCRIPTION=A personal finance manager EAPI=7 HOMEPAGE=https://www.gnucash.org/ -IUSE=aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres python quotes -register2 smartcard sqlite test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +IUSE=aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres python quotes register2 smartcard sqlite test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~x86 LICENSE=GPL-2 PDEPEND=doc? ( ~app-doc/gnucash-docs-4.5 gnome-extra/yelp ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Gnucash/gnucash/releases/download/4.5/gnucash-4.5.tar.bz2 _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4b17618df17b81cb7db38571179c3c0f +_md5_=c71c93e1de094c63478d590182dd60f2 diff --git a/metadata/md5-cache/app-portage/gemato-15.2 b/metadata/md5-cache/app-portage/gemato-15.2 deleted file mode 100644 index 431995afbd73..000000000000 --- a/metadata/md5-cache/app-portage/gemato-15.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=app-crypt/gnupg-2.2.20-r1 >=dev-python/pytest-5[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/responses[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( gpg? ( >=app-crypt/gnupg-2.2.20-r1 dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Stand-alone Manifest generation & verification tool -EAPI=7 -HOMEPAGE=https://github.com/mgorny/gemato -IUSE=+gpg tools test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux -LICENSE=BSD-2 -RDEPEND=gpg? ( >=app-crypt/gnupg-2.2.20-r1 dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/g/gemato/gemato-15.2.tar.gz -_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=5cb4a0a3cd2d165560c5a051f0238893 diff --git a/metadata/md5-cache/app-portage/gemato-16.1 b/metadata/md5-cache/app-portage/gemato-16.1 deleted file mode 100644 index e56d6c236944..000000000000 --- a/metadata/md5-cache/app-portage/gemato-16.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=app-crypt/gnupg-2.2.20-r1 >=dev-python/pytest-5[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/responses[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( gpg? ( >=app-crypt/gnupg-2.2.20-r1 dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Stand-alone Manifest generation & verification tool -EAPI=7 -HOMEPAGE=https://github.com/mgorny/gemato -IUSE=+gpg tools test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux -LICENSE=BSD-2 -RDEPEND=gpg? ( >=app-crypt/gnupg-2.2.20-r1 dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/g/gemato/gemato-16.1.tar.gz -_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=c7dcfc66fc9bdd635b31ad1255d5be26 diff --git a/metadata/md5-cache/app-portage/gemato-16.2 b/metadata/md5-cache/app-portage/gemato-16.2 index d0d7366f1871..49dccaf68b99 100644 --- a/metadata/md5-cache/app-portage/gemato-16.2 +++ b/metadata/md5-cache/app-portage/gemato-16.2 @@ -6,10 +6,10 @@ HOMEPAGE=https://github.com/mgorny/gemato IUSE=+gpg tools test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux LICENSE=BSD-2 -RDEPEND=gpg? ( >=app-crypt/gnupg-2.2.20-r1 dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +RDEPEND=gpg? ( >=app-crypt/gnupg-2.2.20-r1 dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/g/gemato/gemato-16.2.tar.gz _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=a5e6689b4676a6c6e93e1d2cac7005eb +_md5_=dd23e68789bb03508df57e549994e9c4 diff --git a/metadata/md5-cache/app-portage/gemato-9999 b/metadata/md5-cache/app-portage/gemato-9999 index e08e6a16e179..b973cd95e271 100644 --- a/metadata/md5-cache/app-portage/gemato-9999 +++ b/metadata/md5-cache/app-portage/gemato-9999 @@ -6,9 +6,9 @@ HOMEPAGE=https://github.com/mgorny/gemato IUSE=+gpg tools test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 LICENSE=BSD-2 PROPERTIES=live -RDEPEND=gpg? ( >=app-crypt/gnupg-2.2.20-r1 dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +RDEPEND=gpg? ( >=app-crypt/gnupg-2.2.20-r1 dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd git-r3 b8e8c92aa5fe8df7187e466138eb4e52 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=e4c5eea1808b75c3db2a8fc6d067e8d3 +_md5_=50690ef792d88b976aa78a8fa0d777b1 diff --git a/metadata/md5-cache/app-text/sword-modules-2.3 b/metadata/md5-cache/app-text/sword-modules-2.3 index 825c85350750..7dcab718f9e8 100644 --- a/metadata/md5-cache/app-text/sword-modules-2.3 +++ b/metadata/md5-cache/app-text/sword-modules-2.3 @@ -2,9 +2,9 @@ DEFINED_PHASES=- DESCRIPTION=All the unlocked modules for app-text/sword, grouped by language EAPI=7 HOMEPAGE=https://www.crosswire.org/sword/modules/ -IUSE=-esoteric l10n_af l10n_ar l10n_az l10n_be l10n_bea l10n_bg l10n_bla l10n_br l10n_ch l10n_chr l10n_ckb l10n_cop l10n_cs l10n_cu l10n_cy l10n_da l10n_de l10n_el l10n_en l10n_eo l10n_es l10n_et l10n_eu l10n_fa l10n_fi l10n_fr l10n_ga l10n_gd l10n_gez l10n_got l10n_grc l10n_gv l10n_he l10n_hi l10n_hr l10n_ht l10n_hu l10n_hy l10n_it l10n_ja l10n_kek l10n_kk l10n_km l10n_ko l10n_kpg l10n_ktu l10n_la l10n_ln l10n_lt l10n_lv l10n_mg l10n_mi l10n_ml l10n_mn l10n_my l10n_nb l10n_nd l10n_nl l10n_nn l10n_pl l10n_pon l10n_pot l10n_ppk l10n_prs l10n_pt l10n_rmq l10n_ro l10n_ru l10n_sl l10n_sml l10n_sn l10n_so l10n_sq l10n_sr l10n_sv l10n_sw l10n_syr l10n_th l10n_tl l10n_tlh l10n_tr l10n_tsg l10n_ug l10n_uk l10n_ur l10n_vi l10n_vls l10n_zh +IUSE=esoteric l10n_af l10n_ar l10n_az l10n_be l10n_bea l10n_bg l10n_bla l10n_br l10n_ch l10n_chr l10n_ckb l10n_cop l10n_cs l10n_cu l10n_cy l10n_da l10n_de l10n_el l10n_en l10n_eo l10n_es l10n_et l10n_eu l10n_fa l10n_fi l10n_fr l10n_ga l10n_gd l10n_gez l10n_got l10n_grc l10n_gv l10n_he l10n_hi l10n_hr l10n_ht l10n_hu l10n_hy l10n_it l10n_ja l10n_kek l10n_kk l10n_km l10n_ko l10n_kpg l10n_ktu l10n_la l10n_ln l10n_lt l10n_lv l10n_mg l10n_mi l10n_ml l10n_mn l10n_my l10n_nb l10n_nd l10n_nl l10n_nn l10n_pl l10n_pon l10n_pot l10n_ppk l10n_prs l10n_pt l10n_rmq l10n_ro l10n_ru l10n_sl l10n_sml l10n_sn l10n_so l10n_sq l10n_sr l10n_sv l10n_sw l10n_syr l10n_th l10n_tl l10n_tlh l10n_tr l10n_tsg l10n_ug l10n_uk l10n_ur l10n_vi l10n_vls l10n_zh KEYWORDS=~amd64 ~ppc ~x86 LICENSE=metapackage RDEPEND=|| ( app-dicts/sword-Eusebian_num app-dicts/sword-Eusebian_vs ) app-dicts/sword-Personal esoteric? ( app-dicts/sword-Phaistos app-dicts/sword-Sentiment ) l10n_af? ( app-dicts/sword-Afr1953 ) l10n_ar? ( app-dicts/sword-AraNAV app-dicts/sword-AraSVD app-dicts/sword-alzat ) l10n_az? ( app-dicts/sword-Azeri app-dicts/sword-NorthernAzeri ) l10n_be? ( app-dicts/sword-Bela ) l10n_bea? ( app-dicts/sword-BeaMRK ) l10n_bg? ( app-dicts/sword-BulVeren ) l10n_bla? ( app-dicts/sword-BlaMat ) l10n_br? ( app-dicts/sword-BretonNT app-dicts/sword-br_en ) l10n_ch? ( app-dicts/sword-Chamorro ) l10n_chr? ( app-dicts/sword-Che1860 ) l10n_ckb? ( app-dicts/sword-Sorani ) l10n_cop? ( app-dicts/sword-CopNT app-dicts/sword-CopSahBible2 app-dicts/sword-CopSahHorner app-dicts/sword-CopSahidicMSS app-dicts/sword-CopSahidica app-dicts/sword-SahidicBible ) l10n_cs? ( app-dicts/sword-CzeB21 app-dicts/sword-CzeBKR app-dicts/sword-CzeCEP app-dicts/sword-CzeCSP ) l10n_cu? ( app-dicts/sword-CSlElizabeth ) l10n_cy? ( app-dicts/sword-WelBeiblNet ) l10n_da? ( app-dicts/sword-DaNT1819 app-dicts/sword-DaOT1871NT1907 app-dicts/sword-DaOT1931NT1907 ) l10n_de? ( app-dicts/sword-GerAlbrecht app-dicts/sword-GerAugustinus app-dicts/sword-GerBoLut app-dicts/sword-GerElb1871 app-dicts/sword-GerElb1905 app-dicts/sword-GerGruenewald app-dicts/sword-GerKingComm app-dicts/sword-GerLeoNA28 app-dicts/sword-GerLeoRP18 app-dicts/sword-GerLut1545 app-dicts/sword-GerLutherpredigten app-dicts/sword-GerMenge app-dicts/sword-GerNeUe app-dicts/sword-GerOffBiSt app-dicts/sword-GerReinhardt app-dicts/sword-GerSch app-dicts/sword-GerTafel app-dicts/sword-GerTextbibel app-dicts/sword-GerZurcher app-dicts/sword-MAK app-dicts/sword-Rieger ) l10n_el? ( app-dicts/sword-GreVamvas ) l10n_en? ( app-dicts/sword-2BabDict app-dicts/sword-AB app-dicts/sword-ABP app-dicts/sword-ABS_Essay_GoodSam_SWB app-dicts/sword-ACV app-dicts/sword-AKJV app-dicts/sword-ASV app-dicts/sword-Abbott app-dicts/sword-AbbottSmith app-dicts/sword-AbbottSmithStrongs app-dicts/sword-AmTract app-dicts/sword-Anderson app-dicts/sword-BBE app-dicts/sword-BDBGlosses_Strongs app-dicts/sword-BWE app-dicts/sword-BaptistConfession1689 app-dicts/sword-Barnes app-dicts/sword-Burkitt app-dicts/sword-CBC app-dicts/sword-CPDV app-dicts/sword-Catena app-dicts/sword-Cawdrey app-dicts/sword-Clarke app-dicts/sword-Common app-dicts/sword-Concord app-dicts/sword-DBD app-dicts/sword-DRC app-dicts/sword-DTN app-dicts/sword-Daily app-dicts/sword-Darby app-dicts/sword-DarkNightOfTheSoul app-dicts/sword-Diaglott app-dicts/sword-Dodson app-dicts/sword-EMBReality app-dicts/sword-EMTV app-dicts/sword-Easton app-dicts/sword-Etheridge app-dicts/sword-Family app-dicts/sword-Finney app-dicts/sword-Geneva app-dicts/sword-Geneva1599 app-dicts/sword-Godbey app-dicts/sword-GodsWord app-dicts/sword-Heretics app-dicts/sword-Hitchcock app-dicts/sword-ISBE app-dicts/sword-ISV app-dicts/sword-Imitation app-dicts/sword-Institutes app-dicts/sword-JCRHoliness app-dicts/sword-JEAffections app-dicts/sword-JESermons app-dicts/sword-JFB app-dicts/sword-JOChrist app-dicts/sword-JOCommGod app-dicts/sword-JOGlory app-dicts/sword-JOMortSin app-dicts/sword-JPS app-dicts/sword-JST app-dicts/sword-Josephus app-dicts/sword-Jubilee2000 app-dicts/sword-KD app-dicts/sword-KJV app-dicts/sword-KJVA app-dicts/sword-KJVPCE app-dicts/sword-LEB app-dicts/sword-LITV app-dicts/sword-LO app-dicts/sword-LawGospel app-dicts/sword-Leeser app-dicts/sword-Lightfoot app-dicts/sword-Luther app-dicts/sword-MHC app-dicts/sword-MHCC app-dicts/sword-MKJV app-dicts/sword-MLStrong app-dicts/sword-MollColossians app-dicts/sword-Montgomery app-dicts/sword-Murdock app-dicts/sword-NETfree app-dicts/sword-NETnotesfree app-dicts/sword-NETtext app-dicts/sword-NHEB app-dicts/sword-NHEBJE app-dicts/sword-NHEBME app-dicts/sword-Nave app-dicts/sword-Noyes app-dicts/sword-OEB app-dicts/sword-OEBcth app-dicts/sword-OSHM app-dicts/sword-OrthJBC app-dicts/sword-Orthodoxy app-dicts/sword-PNT app-dicts/sword-Packard app-dicts/sword-Passion app-dicts/sword-Pilgrim app-dicts/sword-Practice app-dicts/sword-QuotingPassages app-dicts/sword-RKJNT app-dicts/sword-RNKJV app-dicts/sword-RWP app-dicts/sword-RWebster app-dicts/sword-RecVer app-dicts/sword-Robinson app-dicts/sword-Rotherham app-dicts/sword-SAOA app-dicts/sword-SME app-dicts/sword-SPE app-dicts/sword-Scofield app-dicts/sword-Smith app-dicts/sword-Spurious app-dicts/sword-StrongsGreek app-dicts/sword-StrongsHebrew app-dicts/sword-TCR app-dicts/sword-TDavid app-dicts/sword-TFG app-dicts/sword-TSK app-dicts/sword-Torrey app-dicts/sword-Twenty app-dicts/sword-Tyndale app-dicts/sword-UKJV app-dicts/sword-Webster app-dicts/sword-Webster1806 app-dicts/sword-Webster1913 app-dicts/sword-Wesley app-dicts/sword-Westminster app-dicts/sword-Westminster21 app-dicts/sword-Weymouth app-dicts/sword-Worsley app-dicts/sword-Wycliffe app-dicts/sword-YLT ) l10n_eo? ( app-dicts/sword-Esperanto ) l10n_es? ( app-dicts/sword-SpaPlatense app-dicts/sword-SpaRV app-dicts/sword-SpaRV1865 app-dicts/sword-SpaRV1909 app-dicts/sword-SpaRVG app-dicts/sword-SpaTDP app-dicts/sword-SpaVNT ) l10n_et? ( app-dicts/sword-Est ) l10n_eu? ( app-dicts/sword-BasHautin app-dicts/sword-en_eu ) l10n_fa? ( app-dicts/sword-FarHezareNoh app-dicts/sword-FarOPV app-dicts/sword-FarTPV ) l10n_fi? ( app-dicts/sword-FinBiblia app-dicts/sword-FinPR app-dicts/sword-FinPR92 app-dicts/sword-FinRK app-dicts/sword-FinSTLK2017 ) l10n_fr? ( app-dicts/sword-FreBBB app-dicts/sword-FreBDM1707 app-dicts/sword-FreBDM1744 app-dicts/sword-FreBailly app-dicts/sword-FreCJE app-dicts/sword-FreCrampon app-dicts/sword-FreDAW app-dicts/sword-FreGBM app-dicts/sword-FreGeneve1669 app-dicts/sword-FreJND app-dicts/sword-FreKhan app-dicts/sword-FreLSN1872 app-dicts/sword-FreLXX app-dicts/sword-FreOltramare1874 app-dicts/sword-FrePGR app-dicts/sword-FrePilgrim app-dicts/sword-FreSegond1910 app-dicts/sword-FreStapfer1889 app-dicts/sword-FreSynodale1921 ) l10n_ga? ( app-dicts/sword-IriODomhnuill ) l10n_gd? ( app-dicts/sword-ScotsGaelic ) l10n_gez? ( app-dicts/sword-Geez ) l10n_got? ( app-dicts/sword-Wulfila ) l10n_grc? ( app-dicts/sword-ABPGRK app-dicts/sword-Antoniades app-dicts/sword-Byz app-dicts/sword-Elzevir app-dicts/sword-GreekHebrew app-dicts/sword-LXX app-dicts/sword-MorphGNT app-dicts/sword-Nestle1904 app-dicts/sword-OxfordTR app-dicts/sword-SBLGNT app-dicts/sword-SBLGNTApp app-dicts/sword-TNT app-dicts/sword-TR app-dicts/sword-Tisch app-dicts/sword-VarApp app-dicts/sword-WHNU app-dicts/sword-f35 ) l10n_gv? ( app-dicts/sword-ManxGaelic ) l10n_he? ( app-dicts/sword-Aleppo app-dicts/sword-HebDelitzsch app-dicts/sword-HebModern app-dicts/sword-HebrewGreek app-dicts/sword-MapM app-dicts/sword-OSHB app-dicts/sword-SP app-dicts/sword-SPDSS app-dicts/sword-SPMT app-dicts/sword-SPVar app-dicts/sword-WLC ) l10n_hi? ( app-dicts/sword-HinERV ) l10n_hr? ( app-dicts/sword-CroSaric ) l10n_ht? ( app-dicts/sword-Haitian ) l10n_hu? ( app-dicts/sword-HunIMIT app-dicts/sword-HunKNB app-dicts/sword-HunKar app-dicts/sword-HunUj ) l10n_hy? ( app-dicts/sword-ArmEastern app-dicts/sword-ArmWestern ) l10n_it? ( app-dicts/sword-ItDizGreco app-dicts/sword-ItNomiBibbia app-dicts/sword-ItaDio app-dicts/sword-ItaRive ) l10n_ja? ( app-dicts/sword-JapBungo app-dicts/sword-JapDenmo app-dicts/sword-JapKougo app-dicts/sword-JapMeiji app-dicts/sword-JapRaguet ) l10n_kek? ( app-dicts/sword-Kekchi ) l10n_kk? ( app-dicts/sword-Kaz ) l10n_km? ( app-dicts/sword-KhmerNT ) l10n_ko? ( app-dicts/sword-KorHKJV app-dicts/sword-KorRV ) l10n_kpg? ( app-dicts/sword-Kapingamarangi ) l10n_ktu? ( app-dicts/sword-KtuVb ) l10n_la? ( app-dicts/sword-VulgClementine app-dicts/sword-VulgConte app-dicts/sword-VulgGlossa app-dicts/sword-VulgHetzenauer app-dicts/sword-VulgSistine app-dicts/sword-Vulgate app-dicts/sword-Vulgate_HebPs app-dicts/sword-la_en ) l10n_ln? ( app-dicts/sword-LinVB ) l10n_lt? ( app-dicts/sword-LtKBB ) l10n_lv? ( app-dicts/sword-Latvian app-dicts/sword-LvGluck8 ) l10n_mg? ( app-dicts/sword-Mg1865 ) l10n_mi? ( app-dicts/sword-Maori ) l10n_ml? ( app-dicts/sword-Mal1910 ) l10n_mn? ( app-dicts/sword-MonKJV ) l10n_my? ( app-dicts/sword-BurCBCM app-dicts/sword-BurJudson ) l10n_nb? ( app-dicts/sword-NorBroed app-dicts/sword-Norsk ) l10n_nd? ( app-dicts/sword-Ndebele ) l10n_nl? ( app-dicts/sword-DutKant app-dicts/sword-DutKingComm app-dicts/sword-DutSVV app-dicts/sword-DutSVVA app-dicts/sword-NlCanisius1939 ) l10n_nn? ( app-dicts/sword-NorSMB ) l10n_pl? ( app-dicts/sword-PolGdanska app-dicts/sword-PolUGdanska ) l10n_pon? ( app-dicts/sword-PohnOld app-dicts/sword-Pohnpeian ) l10n_pot? ( app-dicts/sword-PotLykins ) l10n_ppk? ( app-dicts/sword-Uma ) l10n_prs? ( app-dicts/sword-Dari ) l10n_pt? ( app-dicts/sword-PorAR app-dicts/sword-PorAlmeida1911 app-dicts/sword-PorBLivre app-dicts/sword-PorBLivreTR app-dicts/sword-PorCap app-dicts/sword-PorIBP ) l10n_rmq? ( app-dicts/sword-Calo ) l10n_ro? ( app-dicts/sword-RomCor ) l10n_ru? ( app-dicts/sword-RusCARS app-dicts/sword-RusCARSA app-dicts/sword-RusCARSADICT app-dicts/sword-RusCARSDict app-dicts/sword-RusCARST app-dicts/sword-RusCARSTDICT app-dicts/sword-RusMakarij app-dicts/sword-RusSynodal app-dicts/sword-RusSynodalLIO app-dicts/sword-RusVZh ) l10n_sl? ( app-dicts/sword-SloKJV app-dicts/sword-SloOjacano app-dicts/sword-SloStritar ) l10n_sml? ( app-dicts/sword-sml_BL_2008 ) l10n_sn? ( app-dicts/sword-Shona ) l10n_so? ( app-dicts/sword-SomKQA ) l10n_sq? ( app-dicts/sword-Alb ) l10n_sr? ( app-dicts/sword-SrKDEkavski app-dicts/sword-SrKDIjekav ) l10n_sv? ( app-dicts/sword-Swe1917 app-dicts/sword-Swe1917Of app-dicts/sword-SweFolk1998 app-dicts/sword-SweKarlXII app-dicts/sword-SweKarlXII1873 ) l10n_sw? ( app-dicts/sword-Swahili ) l10n_syr? ( app-dicts/sword-Peshitta ) l10n_th? ( app-dicts/sword-ThaiKJV ) l10n_tl? ( app-dicts/sword-TagAngBiblia app-dicts/sword-Tagalog ) l10n_tlh? ( app-dicts/sword-KLV app-dicts/sword-KLVen_iklingon app-dicts/sword-KLViklingon_en ) l10n_tr? ( app-dicts/sword-TurHADI app-dicts/sword-TurNTB ) l10n_tsg? ( app-dicts/sword-Tausug ) l10n_ug? ( app-dicts/sword-UyCyr ) l10n_uk? ( app-dicts/sword-UkrKulish app-dicts/sword-Ukrainian ) l10n_ur? ( app-dicts/sword-UrduGeo app-dicts/sword-UrduGeoDeva app-dicts/sword-UrduGeoRoman ) l10n_vi? ( app-dicts/sword-FVDPVietAnh app-dicts/sword-VieRobinson app-dicts/sword-VieStrongsGreek app-dicts/sword-Viet app-dicts/sword-VietLCCMN app-dicts/sword-VietLCCMNCT app-dicts/sword-VietNVB ) l10n_vls? ( app-dicts/sword-vlsJoNT ) l10n_zh? ( app-dicts/sword-ChiNCVs app-dicts/sword-ChiNCVt app-dicts/sword-ChiSB app-dicts/sword-ChiUn app-dicts/sword-ChiUnL app-dicts/sword-ChiUns app-dicts/sword-ZhEnglish app-dicts/sword-ZhHanzi app-dicts/sword-ZhPinyin ) SLOT=0 -_md5_=a612a0675ff43a823969ba397b82d944 +_md5_=9d46a7db7dc216340521c7b32bfaddb8 diff --git a/metadata/md5-cache/app-text/xapian-omega-1.4.18 b/metadata/md5-cache/app-text/xapian-omega-1.4.18 index 308582ff9ae5..1ee16e5f99bd 100644 --- a/metadata/md5-cache/app-text/xapian-omega-1.4.18 +++ b/metadata/md5-cache/app-text/xapian-omega-1.4.18 @@ -3,9 +3,9 @@ DEPEND=~dev-libs/xapian-1.4.18:0/30 dev-lang/perl dev-libs/libpcre sys-libs/zlib DESCRIPTION=An application built on Xapian, consisting of indexers and a CGI search frontend EAPI=7 HOMEPAGE=https://xapian.org/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 LICENSE=GPL-2 RDEPEND=~dev-libs/xapian-1.4.18:0/30 dev-lang/perl dev-libs/libpcre sys-libs/zlib SLOT=0 SRC_URI=http://www.oligarchy.co.uk/xapian/1.4.18/xapian-omega-1.4.18.tar.xz -_md5_=17a30ccee9f94bf27676b106c1125b05 +_md5_=ff4161d3d9bb36a083519aa3db0e6ba8 diff --git a/metadata/md5-cache/dev-ada/gnatcoll-core-2020-r1 b/metadata/md5-cache/dev-ada/gnatcoll-core-2020-r1 index 5222ea9dee25..b8d4de621af6 100644 --- a/metadata/md5-cache/dev-ada/gnatcoll-core-2020-r1 +++ b/metadata/md5-cache/dev-ada/gnatcoll-core-2020-r1 @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( ada_target_gnat_2016 ada_target_gnat_2017 ada_target_gnat_2018 SLOT=0 SRC_URI=https://community.download.adacore.com/v1/c94f2ac914cb305f6bef174329fa0b5003d84935?filename=gnatcoll-core-2020-20200429-19B7C-src.tar.gz -> gnatcoll-core-2020-20200429-19B7C-src.tar.gz _eclasses_=ada c852ba21ef92cc906f4f2431c39e5daa multiprocessing cac3169468f893670dac3e7cb940e045 -_md5_=b994cda1e1a9dcef06f7b083beae8409 +_md5_=15b94de2e7526b376e83de2e4ab4d755 diff --git a/metadata/md5-cache/dev-ada/gnatcoll-core-2021 b/metadata/md5-cache/dev-ada/gnatcoll-core-2021 new file mode 100644 index 000000000000..5a671336a66b --- /dev/null +++ b/metadata/md5-cache/dev-ada/gnatcoll-core-2021 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup +DEPEND=>=dev-ada/libgpr-2021[ada_target_gnat_2020(-)?,ada_target_gnat_2021(-)?,-ada_target_gnat_2016(-),-ada_target_gnat_2017(-),-ada_target_gnat_2018(-),-ada_target_gnat_2019(-),shared?,static-libs?,static-pic?] dev-ada/gprbuild[ada_target_gnat_2020(-)?,ada_target_gnat_2021(-)?,-ada_target_gnat_2016(-),-ada_target_gnat_2017(-),-ada_target_gnat_2018(-),-ada_target_gnat_2019(-)] +DESCRIPTION=GNAT Component Collection Core packages +EAPI=7 +HOMEPAGE=http://libre.adacore.com +IUSE=+shared static-libs static-pic ada_target_gnat_2020 ada_target_gnat_2021 -ada_target_gnat_2016 -ada_target_gnat_2017 -ada_target_gnat_2018 -ada_target_gnat_2019 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=>=dev-ada/libgpr-2021[ada_target_gnat_2020(-)?,ada_target_gnat_2021(-)?,-ada_target_gnat_2016(-),-ada_target_gnat_2017(-),-ada_target_gnat_2018(-),-ada_target_gnat_2019(-),shared?,static-libs?,static-pic?] +REQUIRED_USE=^^ ( ada_target_gnat_2020 ada_target_gnat_2021 ) +SLOT=0 +SRC_URI=https://community.download.adacore.com/v1/425b044d5cb112f096c7ac5ebbafb0d8e5297913?filename=gnatcoll-core-2021-20210518-19ADF-src.tar.gz -> gnatcoll-core-2021-20210518-19ADF-src.tar.gz +_eclasses_=ada c852ba21ef92cc906f4f2431c39e5daa multiprocessing cac3169468f893670dac3e7cb940e045 +_md5_=5bee70d6e13bb934e965d4ecc7e38f7b diff --git a/metadata/md5-cache/dev-db/mycli-1.24.1 b/metadata/md5-cache/dev-db/mycli-1.24.1 new file mode 100644 index 000000000000..a9f44683e7bd --- /dev/null +++ b/metadata/md5-cache/dev-db/mycli-1.24.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( python_single_target_python3_6? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_6(-)] >=dev-python/click-7.0[python_targets_python3_6(-)] >=dev-python/configobj-5.0.6[python_targets_python3_6(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_6(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_6(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_6(-)] dev-python/pyaes[python_targets_python3_6(-)] >=dev-python/pygments-2.0[python_targets_python3_6(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_6(-)] dev-python/pyperclip[python_targets_python3_6(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_6(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_6(-)] ssh? ( dev-python/paramiko[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_7(-)] >=dev-python/click-7.0[python_targets_python3_7(-)] >=dev-python/configobj-5.0.6[python_targets_python3_7(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_7(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_7(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_7(-)] dev-python/pyaes[python_targets_python3_7(-)] >=dev-python/pygments-2.0[python_targets_python3_7(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_7(-)] dev-python/pyperclip[python_targets_python3_7(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_7(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_7(-)] ssh? ( dev-python/paramiko[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_8(-)] >=dev-python/click-7.0[python_targets_python3_8(-)] >=dev-python/configobj-5.0.6[python_targets_python3_8(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_8(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_8(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_8(-)] dev-python/pyaes[python_targets_python3_8(-)] >=dev-python/pygments-2.0[python_targets_python3_8(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_8(-)] dev-python/pyperclip[python_targets_python3_8(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_8(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_8(-)] ssh? ( dev-python/paramiko[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_9(-)] >=dev-python/click-7.0[python_targets_python3_9(-)] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_9(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_9(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_9(-)] dev-python/pyaes[python_targets_python3_9(-)] >=dev-python/pygments-2.0[python_targets_python3_9(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_9(-)] dev-python/pyperclip[python_targets_python3_9(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_9(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_9(-)] ssh? ( dev-python/paramiko[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_10(-)] >=dev-python/click-7.0[python_targets_python3_10(-)] >=dev-python/configobj-5.0.6[python_targets_python3_10(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_10(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_10(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_10(-)] dev-python/pyaes[python_targets_python3_10(-)] >=dev-python/pygments-2.0[python_targets_python3_10(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_10(-)] dev-python/pyperclip[python_targets_python3_10(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_10(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_10(-)] ssh? ( dev-python/paramiko[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( >=dev-python/pytest-4.5.0[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/pytest-4.5.0[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/pytest-4.5.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-4.5.0[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) python_single_target_python3_6? ( >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/setuptools-42.0.2[python_targets_python3_10(-)] ) +DEFINED_PHASES=compile configure install prepare setup test +DESCRIPTION=CLI for MySQL Database with auto-completion and syntax highlighting +EAPI=7 +HOMEPAGE=https://www.mycli.net +IUSE=ssh test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD MIT +RDEPEND=python_single_target_python3_6? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_6(-)] >=dev-python/click-7.0[python_targets_python3_6(-)] >=dev-python/configobj-5.0.6[python_targets_python3_6(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_6(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_6(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_6(-)] dev-python/pyaes[python_targets_python3_6(-)] >=dev-python/pygments-2.0[python_targets_python3_6(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_6(-)] dev-python/pyperclip[python_targets_python3_6(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_6(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_6(-)] ssh? ( dev-python/paramiko[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_7(-)] >=dev-python/click-7.0[python_targets_python3_7(-)] >=dev-python/configobj-5.0.6[python_targets_python3_7(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_7(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_7(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_7(-)] dev-python/pyaes[python_targets_python3_7(-)] >=dev-python/pygments-2.0[python_targets_python3_7(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_7(-)] dev-python/pyperclip[python_targets_python3_7(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_7(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_7(-)] ssh? ( dev-python/paramiko[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_8(-)] >=dev-python/click-7.0[python_targets_python3_8(-)] >=dev-python/configobj-5.0.6[python_targets_python3_8(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_8(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_8(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_8(-)] dev-python/pyaes[python_targets_python3_8(-)] >=dev-python/pygments-2.0[python_targets_python3_8(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_8(-)] dev-python/pyperclip[python_targets_python3_8(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_8(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_8(-)] ssh? ( dev-python/paramiko[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_9(-)] >=dev-python/click-7.0[python_targets_python3_9(-)] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_9(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_9(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_9(-)] dev-python/pyaes[python_targets_python3_9(-)] >=dev-python/pygments-2.0[python_targets_python3_9(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_9(-)] dev-python/pyperclip[python_targets_python3_9(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_9(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_9(-)] ssh? ( dev-python/paramiko[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_10(-)] >=dev-python/click-7.0[python_targets_python3_10(-)] >=dev-python/configobj-5.0.6[python_targets_python3_10(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_10(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_10(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_10(-)] dev-python/pyaes[python_targets_python3_10(-)] >=dev-python/pygments-2.0[python_targets_python3_10(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_10(-)] dev-python/pyperclip[python_targets_python3_10(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_10(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_10(-)] ssh? ( dev-python/paramiko[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/dbcli/mycli/archive/v1.24.1.tar.gz -> mycli-1.24.1.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=1cc59f90d9a55790bf566da8a1355cd0 diff --git a/metadata/md5-cache/dev-db/mycli-9999 b/metadata/md5-cache/dev-db/mycli-9999 index fde42fa80489..c7c0750097ae 100644 --- a/metadata/md5-cache/dev-db/mycli-9999 +++ b/metadata/md5-cache/dev-db/mycli-9999 @@ -1,4 +1,4 @@ -BDEPEND=test? ( python_single_target_python3_6? ( dev-python/mock[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/mock[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/mock[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/mock[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/mock[python_targets_python3_10(-)] ) ) test? ( python_single_target_python3_6? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_6(-)] >=dev-python/click-7.0[python_targets_python3_6(-)] >=dev-python/configobj-5.0.6[python_targets_python3_6(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_6(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_6(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_6(-)] >=dev-python/pygments-2.0[python_targets_python3_6(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_6(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_6(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_6(-)] ssh? ( dev-python/paramiko[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_7(-)] >=dev-python/click-7.0[python_targets_python3_7(-)] >=dev-python/configobj-5.0.6[python_targets_python3_7(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_7(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_7(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_7(-)] >=dev-python/pygments-2.0[python_targets_python3_7(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_7(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_7(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_7(-)] ssh? ( dev-python/paramiko[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_8(-)] >=dev-python/click-7.0[python_targets_python3_8(-)] >=dev-python/configobj-5.0.6[python_targets_python3_8(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_8(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_8(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_8(-)] >=dev-python/pygments-2.0[python_targets_python3_8(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_8(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_8(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_8(-)] ssh? ( dev-python/paramiko[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_9(-)] >=dev-python/click-7.0[python_targets_python3_9(-)] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_9(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_9(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_9(-)] >=dev-python/pygments-2.0[python_targets_python3_9(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_9(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_9(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_9(-)] ssh? ( dev-python/paramiko[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_10(-)] >=dev-python/click-7.0[python_targets_python3_10(-)] >=dev-python/configobj-5.0.6[python_targets_python3_10(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_10(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_10(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_10(-)] >=dev-python/pygments-2.0[python_targets_python3_10(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_10(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_10(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_10(-)] ssh? ( dev-python/paramiko[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( >=dev-python/pytest-4.5.0[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/pytest-4.5.0[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/pytest-4.5.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-4.5.0[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) python_single_target_python3_6? ( >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/setuptools-42.0.2[python_targets_python3_10(-)] ) >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=test? ( python_single_target_python3_6? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_6(-)] >=dev-python/click-7.0[python_targets_python3_6(-)] >=dev-python/configobj-5.0.6[python_targets_python3_6(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_6(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_6(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_6(-)] dev-python/pyaes[python_targets_python3_6(-)] >=dev-python/pygments-2.0[python_targets_python3_6(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_6(-)] dev-python/pyperclip[python_targets_python3_6(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_6(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_6(-)] ssh? ( dev-python/paramiko[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_7(-)] >=dev-python/click-7.0[python_targets_python3_7(-)] >=dev-python/configobj-5.0.6[python_targets_python3_7(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_7(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_7(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_7(-)] dev-python/pyaes[python_targets_python3_7(-)] >=dev-python/pygments-2.0[python_targets_python3_7(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_7(-)] dev-python/pyperclip[python_targets_python3_7(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_7(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_7(-)] ssh? ( dev-python/paramiko[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_8(-)] >=dev-python/click-7.0[python_targets_python3_8(-)] >=dev-python/configobj-5.0.6[python_targets_python3_8(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_8(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_8(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_8(-)] dev-python/pyaes[python_targets_python3_8(-)] >=dev-python/pygments-2.0[python_targets_python3_8(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_8(-)] dev-python/pyperclip[python_targets_python3_8(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_8(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_8(-)] ssh? ( dev-python/paramiko[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_9(-)] >=dev-python/click-7.0[python_targets_python3_9(-)] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_9(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_9(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_9(-)] dev-python/pyaes[python_targets_python3_9(-)] >=dev-python/pygments-2.0[python_targets_python3_9(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_9(-)] dev-python/pyperclip[python_targets_python3_9(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_9(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_9(-)] ssh? ( dev-python/paramiko[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_10(-)] >=dev-python/click-7.0[python_targets_python3_10(-)] >=dev-python/configobj-5.0.6[python_targets_python3_10(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_10(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_10(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_10(-)] dev-python/pyaes[python_targets_python3_10(-)] >=dev-python/pygments-2.0[python_targets_python3_10(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_10(-)] dev-python/pyperclip[python_targets_python3_10(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_10(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_10(-)] ssh? ( dev-python/paramiko[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( >=dev-python/pytest-4.5.0[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/pytest-4.5.0[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/pytest-4.5.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-4.5.0[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) python_single_target_python3_6? ( >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/setuptools-42.0.2[python_targets_python3_10(-)] ) >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare setup test unpack DESCRIPTION=CLI for MySQL Database with auto-completion and syntax highlighting EAPI=7 @@ -6,9 +6,9 @@ HOMEPAGE=https://www.mycli.net IUSE=ssh test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 LICENSE=BSD MIT PROPERTIES=live -RDEPEND=python_single_target_python3_6? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_6(-)] >=dev-python/click-7.0[python_targets_python3_6(-)] >=dev-python/configobj-5.0.6[python_targets_python3_6(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_6(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_6(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_6(-)] >=dev-python/pygments-2.0[python_targets_python3_6(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_6(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_6(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_6(-)] ssh? ( dev-python/paramiko[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_7(-)] >=dev-python/click-7.0[python_targets_python3_7(-)] >=dev-python/configobj-5.0.6[python_targets_python3_7(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_7(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_7(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_7(-)] >=dev-python/pygments-2.0[python_targets_python3_7(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_7(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_7(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_7(-)] ssh? ( dev-python/paramiko[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_8(-)] >=dev-python/click-7.0[python_targets_python3_8(-)] >=dev-python/configobj-5.0.6[python_targets_python3_8(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_8(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_8(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_8(-)] >=dev-python/pygments-2.0[python_targets_python3_8(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_8(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_8(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_8(-)] ssh? ( dev-python/paramiko[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_9(-)] >=dev-python/click-7.0[python_targets_python3_9(-)] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_9(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_9(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_9(-)] >=dev-python/pygments-2.0[python_targets_python3_9(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_9(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_9(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_9(-)] ssh? ( dev-python/paramiko[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_10(-)] >=dev-python/click-7.0[python_targets_python3_10(-)] >=dev-python/configobj-5.0.6[python_targets_python3_10(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_10(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_10(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_10(-)] >=dev-python/pygments-2.0[python_targets_python3_10(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_10(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_10(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_10(-)] ssh? ( dev-python/paramiko[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) +RDEPEND=python_single_target_python3_6? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_6(-)] >=dev-python/click-7.0[python_targets_python3_6(-)] >=dev-python/configobj-5.0.6[python_targets_python3_6(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_6(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_6(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_6(-)] dev-python/pyaes[python_targets_python3_6(-)] >=dev-python/pygments-2.0[python_targets_python3_6(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_6(-)] dev-python/pyperclip[python_targets_python3_6(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_6(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_6(-)] ssh? ( dev-python/paramiko[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_7(-)] >=dev-python/click-7.0[python_targets_python3_7(-)] >=dev-python/configobj-5.0.6[python_targets_python3_7(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_7(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_7(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_7(-)] dev-python/pyaes[python_targets_python3_7(-)] >=dev-python/pygments-2.0[python_targets_python3_7(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_7(-)] dev-python/pyperclip[python_targets_python3_7(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_7(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_7(-)] ssh? ( dev-python/paramiko[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_8(-)] >=dev-python/click-7.0[python_targets_python3_8(-)] >=dev-python/configobj-5.0.6[python_targets_python3_8(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_8(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_8(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_8(-)] dev-python/pyaes[python_targets_python3_8(-)] >=dev-python/pygments-2.0[python_targets_python3_8(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_8(-)] dev-python/pyperclip[python_targets_python3_8(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_8(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_8(-)] ssh? ( dev-python/paramiko[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_9(-)] >=dev-python/click-7.0[python_targets_python3_9(-)] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_9(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_9(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_9(-)] dev-python/pyaes[python_targets_python3_9(-)] >=dev-python/pygments-2.0[python_targets_python3_9(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_9(-)] dev-python/pyperclip[python_targets_python3_9(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_9(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_9(-)] ssh? ( dev-python/paramiko[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( >=dev-python/cli_helpers-2.0.1[python_targets_python3_10(-)] >=dev-python/click-7.0[python_targets_python3_10(-)] >=dev-python/configobj-5.0.6[python_targets_python3_10(-)] >=dev-python/cryptography-1.0.0[python_targets_python3_10(-)] >=dev-python/prompt_toolkit-3.0.0[python_targets_python3_10(-)] <dev-python/prompt_toolkit-4.0.0[python_targets_python3_10(-)] dev-python/pyaes[python_targets_python3_10(-)] >=dev-python/pygments-2.0[python_targets_python3_10(-)] >=dev-python/pymysql-0.9.2[python_targets_python3_10(-)] dev-python/pyperclip[python_targets_python3_10(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_10(-)] <dev-python/sqlparse-0.5.0[python_targets_python3_10(-)] ssh? ( dev-python/paramiko[python_targets_python3_10(-)] ) ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd git-r3 b8e8c92aa5fe8df7187e466138eb4e52 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=74251192e229f1ac1ff3d4991721630d +_md5_=102a9b5915293e5db90e1a80acef7b87 diff --git a/metadata/md5-cache/dev-db/pgbouncer-1.15.0 b/metadata/md5-cache/dev-db/pgbouncer-1.15.0 index bec70122d1d4..68705212fa60 100644 --- a/metadata/md5-cache/dev-db/pgbouncer-1.15.0 +++ b/metadata/md5-cache/dev-db/pgbouncer-1.15.0 @@ -4,7 +4,7 @@ DEPEND=>=dev-libs/libevent-2.0:= >=sys-libs/glibc-2.10 acct-user/pgbouncer c-are DESCRIPTION=Lightweight connection pooler for PostgreSQL EAPI=7 HOMEPAGE=https://www.pgbouncer.org/ -IUSE=+c-ares debug doc pam ssl systemd -udns +IUSE=+c-ares debug doc pam ssl systemd udns KEYWORDS=amd64 x86 LICENSE=BSD RDEPEND=>=dev-libs/libevent-2.0:= >=sys-libs/glibc-2.10 acct-user/pgbouncer c-ares? ( >=net-dns/c-ares-1.10 ) ssl? ( >=dev-libs/openssl-1.0.1:=[-bindist] ) systemd? ( sys-apps/systemd ) udns? ( >=net-libs/udns-0.1 ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://www.pgbouncer.org/downloads/files/1.15.0/pgbouncer-1.15.0.tar.gz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=ac1ea4530ccf802746299280130b37d8 +_md5_=67b47f7eaa1ee391f9f13699ab97c10f diff --git a/metadata/md5-cache/dev-games/mygui-3.2.2 b/metadata/md5-cache/dev-games/mygui-3.2.2 index 4f52dda4500c..412ef5c991e2 100644 --- a/metadata/md5-cache/dev-games/mygui-3.2.2 +++ b/metadata/md5-cache/dev-games/mygui-3.2.2 @@ -3,7 +3,7 @@ DEPEND=media-libs/freetype:2 ogre? ( dev-games/ogre:=[freeimage,opengl] samples? DESCRIPTION=A library for creating GUIs for games EAPI=5 HOMEPAGE=http://mygui.info/ -IUSE=debug doc +ogre -opengl plugins samples static-libs test tools l10n_ru +IUSE=debug doc +ogre opengl plugins samples static-libs test tools l10n_ru KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=media-libs/freetype:2 ogre? ( dev-games/ogre:=[freeimage,opengl] samples? ( dev-games/ois ) ) opengl? ( virtual/opengl media-libs/glew ) tools? ( dev-games/ois ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/MyGUI/mygui/archive/MyGUI3.2.2.tar.gz _eclasses_=cmake-utils 12008d68ebfd61f49a377c49f83558a8 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e229947e95c196944f6afefbc49d5e31 +_md5_=cfdb203515d6bfa56af1b52a4fe2f6ea diff --git a/metadata/md5-cache/dev-games/mygui-3.4.0 b/metadata/md5-cache/dev-games/mygui-3.4.0 index 50f92415af41..50a8a34ec747 100644 --- a/metadata/md5-cache/dev-games/mygui-3.4.0 +++ b/metadata/md5-cache/dev-games/mygui-3.4.0 @@ -4,7 +4,7 @@ DEPEND=media-libs/freetype:2 sys-libs/zlib ogre? ( dev-games/ogre:0=[freeimage,o DESCRIPTION=A library for creating GUIs for games and 3D applications EAPI=7 HOMEPAGE=http://mygui.info -IUSE=debug doc +ogre -opengl plugins samples static-libs test tools l10n_ru +IUSE=debug doc +ogre opengl plugins samples static-libs test tools l10n_ru KEYWORDS=~amd64 ~x86 LICENSE=MIT RDEPEND=media-libs/freetype:2 sys-libs/zlib ogre? ( dev-games/ogre:0=[freeimage,opengl] samples? ( dev-games/ois ) ) opengl? ( virtual/opengl media-libs/glew:0= ) tools? ( dev-games/ois ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/MyGUI/mygui/archive/MyGUI3.4.0.tar.gz -> mygui-3.4.0.tar.gz _eclasses_=cmake-utils 12008d68ebfd61f49a377c49f83558a8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=665fb974d262df2afad7dc29297d937a +_md5_=0444c340b8df0143692c666460d8891e diff --git a/metadata/md5-cache/dev-java/jdbc-mysql-8.0.25 b/metadata/md5-cache/dev-java/jdbc-mysql-8.0.25 index d7bcf095da2e..e1b9be1f0ce7 100644 --- a/metadata/md5-cache/dev-java/jdbc-mysql-8.0.25 +++ b/metadata/md5-cache/dev-java/jdbc-mysql-8.0.25 @@ -5,10 +5,10 @@ DESCRIPTION=JDBC Type 4 driver for MySQL EAPI=7 HOMEPAGE=https://dev.mysql.com/doc/connector-j/en/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD -KEYWORDS=~amd64 ~ppc64 ~x86 +KEYWORDS=amd64 ppc64 x86 LICENSE=GPL-2-with-MySQL-FLOSS-exception RDEPEND=dev-java/c3p0:0 dev-java/protobuf-java:0 dev-java/slf4j-api:0 >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=0 SRC_URI=https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.25/mysql-connector-java-8.0.25-sources.jar -> jdbc-mysql-8.0.25-sources.jar _eclasses_=java-pkg-2 45c44ec10db6affb3ebee1ac72039888 java-pkg-simple c85bf2d75a5f53e7b39fc9104701ebfb java-utils-2 2440f41421207d084e5e3f1fb001b34e -_md5_=2b972a7f88cb5b72ce16eaead348c7df +_md5_=ba1678c846b49ad0d9e317a2de8821ca diff --git a/metadata/md5-cache/dev-libs/concurrencykit-0.7.1 b/metadata/md5-cache/dev-libs/concurrencykit-0.7.1 new file mode 100644 index 000000000000..1deb8800989a --- /dev/null +++ b/metadata/md5-cache/dev-libs/concurrencykit-0.7.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=configure +DESCRIPTION=A library with concurrency related algorithms and data structures in C +EAPI=7 +HOMEPAGE=http://concurrencykit.org +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=Apache-2.0 BSD-2 +RDEPEND=!sys-cluster/charm +SLOT=0 +SRC_URI=https://github.com/concurrencykit/ck/archive/0.7.1.tar.gz -> concurrencykit-0.7.1.tar.gz +_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=2051f7917daa38277c776cdc8de4b5c0 diff --git a/metadata/md5-cache/dev-libs/libuv-1.41.0 b/metadata/md5-cache/dev-libs/libuv-1.41.0 index 8ec516efdcd3..2d350c3df075 100644 --- a/metadata/md5-cache/dev-libs/libuv-1.41.0 +++ b/metadata/md5-cache/dev-libs/libuv-1.41.0 @@ -4,9 +4,9 @@ DESCRIPTION=Cross-platform asychronous I/O EAPI=7 HOMEPAGE=https://github.com/libuv/libuv IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD BSD-2 ISC MIT SLOT=0/1 SRC_URI=https://github.com/libuv/libuv/archive/v1.41.0.tar.gz -> libuv-1.41.0.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=8dda05f12ec20e8ff6f1c888ee40df04 +_md5_=27a4338091e0e7de5967ddecbfff09dd diff --git a/metadata/md5-cache/dev-libs/libxml2-2.9.12-r2 b/metadata/md5-cache/dev-libs/libxml2-2.9.12-r2 index 831f8cc78444..2f519b8ff80f 100644 --- a/metadata/md5-cache/dev-libs/libxml2-2.9.12-r2 +++ b/metadata/md5-cache/dev-libs/libxml2-2.9.12-r2 @@ -5,7 +5,7 @@ DESCRIPTION=XML C parser and toolkit EAPI=7 HOMEPAGE=http://www.xmlsoft.org/ https://gitlab.gnome.org/GNOME/libxml2 IUSE=debug examples icu ipv6 lzma +python readline static-libs test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=>=sys-libs/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] icu? ( >=dev-libs/icu-51.2-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_targets_python3_6? ( dev-lang/python:3.6[xml] ) python_targets_python3_7? ( dev-lang/python:3.7[xml] ) python_targets_python3_8? ( dev-lang/python:3.8[xml] ) python_targets_python3_9? ( dev-lang/python:3.9[xml] ) python_targets_python3_10? ( dev-lang/python:3.10[xml] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) readline? ( sys-libs/readline:= ) REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=2 SRC_URI=ftp://xmlsoft.org/libxml2/libxml2-2.9.12.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-libs/libxml2/libxml2-2.9.12-r2-patchset.tar.bz2 test? ( http://www.w3.org/XML/2004/xml-schema-test-suite/xmlschema2002-01-16/xsts-2002-01-16.tar.gz http://www.w3.org/XML/2004/xml-schema-test-suite/xmlschema2004-01-14/xsts-2004-01-14.tar.gz https://www.w3.org/XML/Test/xmlts20130923.tar.gz ) verify-sig? ( ftp://xmlsoft.org/libxml2/libxml2-2.9.12.tar.gz.asc ) _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 prefix de7d8e2b10085ed5ff09ad70e4753e5c python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 verify-sig 40b4f4f782cf67118f594ce604cc4c0a wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=75deaa9dcb304b7de2f5a58136e44582 +_md5_=2d81448eee3ba17e6eb43669115fd8cb diff --git a/metadata/md5-cache/dev-libs/xapian-1.4.18 b/metadata/md5-cache/dev-libs/xapian-1.4.18 index 0934d51d0f2d..629dab26420e 100644 --- a/metadata/md5-cache/dev-libs/xapian-1.4.18 +++ b/metadata/md5-cache/dev-libs/xapian-1.4.18 @@ -4,10 +4,10 @@ DESCRIPTION=Xapian Probabilistic Information Retrieval library EAPI=7 HOMEPAGE=https://www.xapian.org/ IUSE=doc static-libs cpu_flags_x86_sse cpu_flags_x86_sse2 +inmemory +remote abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-macos ~x64-solaris +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-macos ~x64-solaris LICENSE=GPL-2 RDEPEND=sys-libs/zlib SLOT=0/30 SRC_URI=https://oligarchy.co.uk/xapian/1.4.18/xapian-core-1.4.18.tar.xz _eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=6151d6691084b7c31c336dc1de5fc336 +_md5_=d18ff8a033eea1cb6ca3da21aff8422f diff --git a/metadata/md5-cache/dev-lisp/clisp-2.49.92 b/metadata/md5-cache/dev-lisp/clisp-2.49.92 index 24c404ae244c..27bbc40a7af8 100644 --- a/metadata/md5-cache/dev-lisp/clisp-2.49.92 +++ b/metadata/md5-cache/dev-lisp/clisp-2.49.92 @@ -3,11 +3,11 @@ DEPEND=>=dev-lisp/asdf-2.33-r3 virtual/libiconv >=dev-libs/libsigsegv-2.10 >=dev DESCRIPTION=A portable, bytecode-compiled implementation of Common Lisp EAPI=6 HOMEPAGE=https://clisp.sourceforge.io/ -IUSE=hyperspec X berkdb dbus fastcgi gdbm gtk +pcre postgres +readline svm -threads +unicode +zlib +IUSE=hyperspec X berkdb dbus fastcgi gdbm gtk +pcre postgres +readline svm threads +unicode +zlib KEYWORDS=~alpha amd64 ~ia64 ppc ~sparc x86 LICENSE=GPL-2 RDEPEND=>=dev-lisp/asdf-2.33-r3 virtual/libiconv >=dev-libs/libsigsegv-2.10 >=dev-libs/ffcall-1.10 dbus? ( sys-apps/dbus ) fastcgi? ( dev-libs/fcgi ) gdbm? ( sys-libs/gdbm:0= ) gtk? ( >=x11-libs/gtk+-2.10:2 >=gnome-base/libglade-2.6 ) postgres? ( >=dev-db/postgresql-8.0:* ) readline? ( >=sys-libs/readline-7.0:0= ) pcre? ( dev-libs/libpcre:3 ) svm? ( sci-libs/libsvm ) zlib? ( sys-libs/zlib ) X? ( x11-libs/libXpm ) hyperspec? ( dev-lisp/hyperspec ) berkdb? ( sys-libs/db:4.8 ) SLOT=2/8 SRC_URI=mirror://gentoo/clisp-2.49.92.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a7ab54d58e8b663d3a95916e4028ac6c +_md5_=5bb806b79731730b82d50cf60c2273e7 diff --git a/metadata/md5-cache/dev-perl/Bio-Graphics-2.400.0 b/metadata/md5-cache/dev-perl/Bio-Graphics-2.400.0-r1 index ec2208d0bad4..135c04c5b496 100644 --- a/metadata/md5-cache/dev-perl/Bio-Graphics-2.400.0 +++ b/metadata/md5-cache/dev-perl/Bio-Graphics-2.400.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=dev-perl/CGI >=dev-perl/GD-2.300.0[jpeg] >=dev-perl/Statistics-Descriptive-2.600.0 <=sci-biology/bioperl-1.6.924 >=sci-biology/bioperl-1.5.9.1 >=dev-perl/Module-Build-0.420.0 dev-lang/perl +BDEPEND=dev-perl/CGI >=dev-perl/GD-2.300.0[jpeg(+)] >=dev-perl/Statistics-Descriptive-2.600.0 <=sci-biology/bioperl-1.6.924 >=sci-biology/bioperl-1.5.9.1 >=dev-perl/Module-Build-0.420.0 dev-lang/perl DEFINED_PHASES=compile configure install prepare test DEPEND=dev-lang/perl DESCRIPTION=Generate images from Bio::Seq objects for visualization purposes @@ -6,8 +6,8 @@ EAPI=7 HOMEPAGE=https://metacpan.org/release/Bio-Graphics KEYWORDS=~amd64 ~x86 LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/CGI >=dev-perl/GD-2.300.0[jpeg] >=dev-perl/Statistics-Descriptive-2.600.0 <=sci-biology/bioperl-1.6.924 >=sci-biology/bioperl-1.5.9.1 dev-lang/perl:= +RDEPEND=dev-perl/CGI >=dev-perl/GD-2.300.0[jpeg(+)] >=dev-perl/Statistics-Descriptive-2.600.0 <=sci-biology/bioperl-1.6.924 >=sci-biology/bioperl-1.5.9.1 dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/C/CJ/CJFIELDS/Bio-Graphics-2.40.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=e977184ca5478866cc0ab8f3f1175e73 +_md5_=8f0e1678dda42cf4fed3ca781af31474 diff --git a/metadata/md5-cache/dev-perl/Business-ISBN-3.5.0 b/metadata/md5-cache/dev-perl/Business-ISBN-3.5.0 deleted file mode 100644 index 47a71e868eae..000000000000 --- a/metadata/md5-cache/dev-perl/Business-ISBN-3.5.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=barcode? ( dev-perl/GD-Barcode dev-perl/GD[png] ) >=dev-perl/Business-ISBN-Data-20191107.0.0 virtual/perl-ExtUtils-MakeMaker test? ( >=virtual/perl-Test-Simple-0.950.0 ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/perl -DESCRIPTION=Work with ISBN as objects -EAPI=7 -HOMEPAGE=https://metacpan.org/release/Business-ISBN -IUSE=test barcode examples -KEYWORDS=amd64 ~arm ~arm64 ~x86 -LICENSE=Artistic-2 -RDEPEND=barcode? ( dev-perl/GD-Barcode dev-perl/GD[png] ) >=dev-perl/Business-ISBN-Data-20191107.0.0 dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/B/BD/BDFOY/Business-ISBN-3.005.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=47c78eb749f39e28fda353c99feee448 diff --git a/metadata/md5-cache/dev-perl/Business-ISBN-3.6.0 b/metadata/md5-cache/dev-perl/Business-ISBN-3.6.0-r1 index e7fce257ed51..72587bc10aa9 100644 --- a/metadata/md5-cache/dev-perl/Business-ISBN-3.6.0 +++ b/metadata/md5-cache/dev-perl/Business-ISBN-3.6.0-r1 @@ -1,15 +1,15 @@ -BDEPEND=barcode? ( dev-perl/GD-Barcode dev-perl/GD[png] ) >=dev-perl/Business-ISBN-Data-20191107.0.0 >=virtual/perl-ExtUtils-MakeMaker-6.640.0 test? ( >=virtual/perl-Test-Simple-1 ) dev-lang/perl +BDEPEND=barcode? ( dev-perl/GD-Barcode dev-perl/GD[png(+)] ) >=dev-perl/Business-ISBN-Data-20191107.0.0 >=virtual/perl-ExtUtils-MakeMaker-6.640.0 test? ( >=virtual/perl-Test-Simple-1 ) dev-lang/perl DEFINED_PHASES=compile configure install prepare test DEPEND=dev-lang/perl DESCRIPTION=Work with ISBN as objects EAPI=7 HOMEPAGE=https://metacpan.org/release/Business-ISBN IUSE=test barcode examples -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc ~x86 LICENSE=Artistic-2 -RDEPEND=barcode? ( dev-perl/GD-Barcode dev-perl/GD[png] ) >=dev-perl/Business-ISBN-Data-20191107.0.0 dev-lang/perl:= +RDEPEND=barcode? ( dev-perl/GD-Barcode dev-perl/GD[png(+)] ) >=dev-perl/Business-ISBN-Data-20191107.0.0 dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/B/BD/BDFOY/Business-ISBN-3.006.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=e54dcf2b59bde5dbfb3f6c80f4a35dea +_md5_=d93fb22255aac632bca134ff66b539b3 diff --git a/metadata/md5-cache/dev-perl/Chart-2.4.10-r1 b/metadata/md5-cache/dev-perl/Chart-2.4.10-r2 index adfd717030c9..ed474690b202 100644 --- a/metadata/md5-cache/dev-perl/Chart-2.4.10-r1 +++ b/metadata/md5-cache/dev-perl/Chart-2.4.10-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-perl/GD-2.0.36 test? ( dev-perl/GD[png,jpeg] ) dev-lang/perl +BDEPEND=>=dev-perl/GD-2.0.36 test? ( dev-perl/GD[png(+),jpeg(+)] ) dev-lang/perl DEFINED_PHASES=compile configure install prepare test DEPEND=dev-lang/perl DESCRIPTION=The Perl Chart Module @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/C/CH/CHARTGRP/Chart-2.4.10.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=7ac48b0c332dc53ef867d2d0f1cdc3ff +_md5_=9dc4a5b7c449d2ee579fb0b7eb00f1bb diff --git a/metadata/md5-cache/dev-perl/File-HomeDir-1.6.0 b/metadata/md5-cache/dev-perl/File-HomeDir-1.6.0 index abf0d342e2b6..482e314e9937 100644 --- a/metadata/md5-cache/dev-perl/File-HomeDir-1.6.0 +++ b/metadata/md5-cache/dev-perl/File-HomeDir-1.6.0 @@ -5,11 +5,11 @@ DESCRIPTION=Get home directory for self or other user EAPI=7 HOMEPAGE=https://metacpan.org/release/File-HomeDir IUSE=+xdg test -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp >=virtual/perl-File-Path-2.10.0 >=virtual/perl-File-Spec-3.120.0 >=virtual/perl-File-Temp-0.190.0 >=dev-perl/File-Which-0.50.0 xdg? ( x11-misc/xdg-user-dirs ) dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/R/RE/REHSACK/File-HomeDir-1.006.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=679de6e44741de5cc6b5617695376508 +_md5_=316a9ac16413049ab98cc54900c58a8b diff --git a/metadata/md5-cache/dev-perl/File-Listing-6.70.0 b/metadata/md5-cache/dev-perl/File-Listing-6.70.0 index c01b665faa58..eedbdecf1788 100644 --- a/metadata/md5-cache/dev-perl/File-Listing-6.70.0 +++ b/metadata/md5-cache/dev-perl/File-Listing-6.70.0 @@ -5,11 +5,11 @@ DESCRIPTION=Parse directory listings EAPI=7 HOMEPAGE=https://metacpan.org/release/File-Listing IUSE=test -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Exporter >=dev-perl/HTTP-Date-6.0.0 virtual/perl-Time-Local dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/P/PL/PLICEASE/File-Listing-6.07.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=d2827594ae036afdceba7ce9816e9bc3 +_md5_=f319c1371e53918037326cd37c2e986b diff --git a/metadata/md5-cache/dev-perl/File-MimeInfo-0.290.0 b/metadata/md5-cache/dev-perl/File-MimeInfo-0.290.0 index f7789e5ff375..bc9c114bf85e 100644 --- a/metadata/md5-cache/dev-perl/File-MimeInfo-0.290.0 +++ b/metadata/md5-cache/dev-perl/File-MimeInfo-0.290.0 @@ -5,11 +5,11 @@ DESCRIPTION=Determine file type EAPI=7 HOMEPAGE=https://metacpan.org/release/File-MimeInfo IUSE=test -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp virtual/perl-Exporter >=dev-perl/File-BaseDir-0.30.0 >=dev-perl/File-DesktopEntry-0.40.0 x11-misc/shared-mime-info dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MI/MICHIELB/File-MimeInfo-0.29.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=89db4c5856ee1322ee70ddc260c830ee +_md5_=98e97195d364d7e870426419a9b0e1fd diff --git a/metadata/md5-cache/dev-perl/File-Remove-1.580.0 b/metadata/md5-cache/dev-perl/File-Remove-1.580.0 index 0f22abd5388a..36b54fcdec9f 100644 --- a/metadata/md5-cache/dev-perl/File-Remove-1.580.0 +++ b/metadata/md5-cache/dev-perl/File-Remove-1.580.0 @@ -5,11 +5,11 @@ DESCRIPTION=Remove files and directories EAPI=7 HOMEPAGE=https://metacpan.org/release/File-Remove IUSE=test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris LICENSE=|| ( Artistic GPL-1+ ) || ( CC0-1.0 public-domain MIT ) RDEPEND=virtual/perl-File-Path >=virtual/perl-File-Spec-3.290.0 dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/S/SH/SHLOMIF/File-Remove-1.58.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=9f4e0f544cc071ac85d6c90e05a2e878 +_md5_=8077468c78e1a19763676c9e6c45b5ce diff --git a/metadata/md5-cache/dev-perl/File-ShareDir-Install-0.130.0 b/metadata/md5-cache/dev-perl/File-ShareDir-Install-0.130.0 index 08bff934ca5c..cbbda25436c6 100644 --- a/metadata/md5-cache/dev-perl/File-ShareDir-Install-0.130.0 +++ b/metadata/md5-cache/dev-perl/File-ShareDir-Install-0.130.0 @@ -5,11 +5,11 @@ DESCRIPTION=Install shared files EAPI=7 HOMEPAGE=https://metacpan.org/release/File-ShareDir-Install IUSE=test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp virtual/perl-Exporter virtual/perl-File-Spec virtual/perl-IO dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/File-ShareDir-Install-0.13.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=f0544f7ace4b60a2ef9c7a4eb3a2f091 +_md5_=455d2e450e434c80b21d990b1932a387 diff --git a/metadata/md5-cache/dev-perl/File-Slurp-9999.320.0 b/metadata/md5-cache/dev-perl/File-Slurp-9999.320.0 index 324b790dbf3f..b5d72f7dae9a 100644 --- a/metadata/md5-cache/dev-perl/File-Slurp-9999.320.0 +++ b/metadata/md5-cache/dev-perl/File-Slurp-9999.320.0 @@ -5,11 +5,11 @@ DESCRIPTION=Simple and Efficient Reading/Writing/Modifying of Complete Files EAPI=7 HOMEPAGE=https://metacpan.org/release/File-Slurp IUSE=test -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp >=virtual/perl-Exporter-5.570.0 >=virtual/perl-File-Spec-3.10.0 virtual/perl-File-Temp virtual/perl-IO dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/C/CA/CAPOEIRAB/File-Slurp-9999.32.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=143e4981d52f54d98b77661a094cdebe +_md5_=3218c4e9898802d4d384d09df1867db1 diff --git a/metadata/md5-cache/dev-perl/File-Which-1.230.0 b/metadata/md5-cache/dev-perl/File-Which-1.230.0 index 26d91d6ac595..b1705aee9a08 100644 --- a/metadata/md5-cache/dev-perl/File-Which-1.230.0 +++ b/metadata/md5-cache/dev-perl/File-Which-1.230.0 @@ -5,7 +5,7 @@ DESCRIPTION=Perl module implementing 'which' internally EAPI=7 HOMEPAGE=https://metacpan.org/release/File-Which IUSE=test pwhich -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) PDEPEND=pwhich? ( dev-perl/App-pwhich ) RDEPEND=dev-lang/perl:= @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/P/PL/PLICEASE/File-Which-1.23.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=577249857767e4f6b9559c7a42f4107a +_md5_=d7e2066145e9099bbfc93c9cc1c8c8c8 diff --git a/metadata/md5-cache/dev-perl/File-pushd-1.16.0 b/metadata/md5-cache/dev-perl/File-pushd-1.16.0 index c5d3face08b0..fa20c6a0e894 100644 --- a/metadata/md5-cache/dev-perl/File-pushd-1.16.0 +++ b/metadata/md5-cache/dev-perl/File-pushd-1.16.0 @@ -5,11 +5,11 @@ DESCRIPTION=Change directory temporarily for a limited scope EAPI=7 HOMEPAGE=https://metacpan.org/release/File-pushd IUSE=test -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=virtual/perl-Carp virtual/perl-Exporter virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-File-Temp dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-1.016.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=383d3e41ea746130b1d5366cd0b32b8d +_md5_=0dc81d2e8173806d2ec1778f8e7717cb diff --git a/metadata/md5-cache/dev-perl/Filesys-Notify-Simple-0.140.0 b/metadata/md5-cache/dev-perl/Filesys-Notify-Simple-0.140.0 index b036789cf4e6..2c9d52f4f04d 100644 --- a/metadata/md5-cache/dev-perl/Filesys-Notify-Simple-0.140.0 +++ b/metadata/md5-cache/dev-perl/Filesys-Notify-Simple-0.140.0 @@ -5,11 +5,11 @@ DESCRIPTION=Simple and dumb file system watcher EAPI=7 HOMEPAGE=https://metacpan.org/release/Filesys-Notify-Simple IUSE=test -KEYWORDS=~alpha amd64 ~ia64 ~ppc ppc64 sparc ~x86 +KEYWORDS=~alpha amd64 ~ia64 ~ppc ppc64 sparc x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MI/MIYAGAWA/Filesys-Notify-Simple-0.14.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=804b471a55e318f6c1d96e743e5a42ad +_md5_=3f005b7fca33aa59d60c0e5b736fe122 diff --git a/metadata/md5-cache/dev-perl/Filter-1.600.0 b/metadata/md5-cache/dev-perl/Filter-1.600.0 index 488799eb7cb6..b069b5e592bf 100644 --- a/metadata/md5-cache/dev-perl/Filter-1.600.0 +++ b/metadata/md5-cache/dev-perl/Filter-1.600.0 @@ -5,10 +5,10 @@ DESCRIPTION=Interface for creation of Perl Filters EAPI=7 HOMEPAGE=https://metacpan.org/release/Filter IUSE=examples -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/R/RU/RURBAN/Filter-1.60.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=02e193559e6b4170ff9e9fae8cef2cc4 +_md5_=af1f5e3b79ee0d6ccd6d4c28b645a756 diff --git a/metadata/md5-cache/dev-perl/Finance-YahooQuote-0.260.0 b/metadata/md5-cache/dev-perl/Finance-YahooQuote-0.260.0 index 92ffe6c912d3..da5d33d69f49 100644 --- a/metadata/md5-cache/dev-perl/Finance-YahooQuote-0.260.0 +++ b/metadata/md5-cache/dev-perl/Finance-YahooQuote-0.260.0 @@ -4,10 +4,10 @@ DEPEND=dev-lang/perl DESCRIPTION=Get stock quotes from Yahoo! Finance EAPI=7 HOMEPAGE=https://metacpan.org/release/Finance-YahooQuote -KEYWORDS=amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2+ RDEPEND=>=dev-perl/HTML-Parser-2.200.0 >=dev-perl/HTTP-Message-1.230.0 >=dev-perl/libwww-perl-1.620.0 >=virtual/perl-Text-ParseWords-3.100.0 dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/E/ED/EDD/Finance-YahooQuote-0.26.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=810ba1409bd6b038626279b48ae65fcb +_md5_=e6c588b8fab26ac73310be498c8bbb73 diff --git a/metadata/md5-cache/dev-perl/GD-2.730.0 b/metadata/md5-cache/dev-perl/GD-2.730.0 deleted file mode 100644 index 84e3a066f24e..000000000000 --- a/metadata/md5-cache/dev-perl/GD-2.730.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=media-libs/gd-2.2.3 png? ( media-libs/gd[png] media-libs/libpng:0 sys-libs/zlib ) jpeg? ( media-libs/gd[jpeg] virtual/jpeg:0 ) truetype? ( media-libs/gd[truetype] media-libs/freetype:2 ) xpm? ( media-libs/gd[xpm] x11-libs/libXpm ) fcgi? ( dev-libs/fcgi ) gif? ( media-libs/giflib ) >=virtual/perl-ExtUtils-Constant-0.230.0 dev-perl/ExtUtils-PkgConfig virtual/perl-ExtUtils-MakeMaker test? ( >=dev-perl/Test-Fork-0.20.0 >=virtual/perl-Test-Simple-0.880.0 ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=media-libs/gd-2.2.3 png? ( media-libs/gd[png] media-libs/libpng:0 sys-libs/zlib ) jpeg? ( media-libs/gd[jpeg] virtual/jpeg:0 ) truetype? ( media-libs/gd[truetype] media-libs/freetype:2 ) xpm? ( media-libs/gd[xpm] x11-libs/libXpm ) fcgi? ( dev-libs/fcgi ) gif? ( media-libs/giflib ) dev-lang/perl -DESCRIPTION=Interface to Thomas Boutell's gd library -EAPI=7 -HOMEPAGE=https://metacpan.org/release/GD -IUSE=animgif fcgi gif jpeg png test truetype xpm examples -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=media-libs/gd-2.2.3 png? ( media-libs/gd[png] media-libs/libpng:0 sys-libs/zlib ) jpeg? ( media-libs/gd[jpeg] virtual/jpeg:0 ) truetype? ( media-libs/gd[truetype] media-libs/freetype:2 ) xpm? ( media-libs/gd[xpm] x11-libs/libXpm ) fcgi? ( dev-libs/fcgi ) gif? ( media-libs/giflib ) dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RU/RURBAN/GD-2.73.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=571e790641e802f8d34b6ff54b2efc21 diff --git a/metadata/md5-cache/dev-perl/GD-2.730.0-r1 b/metadata/md5-cache/dev-perl/GD-2.730.0-r1 new file mode 100644 index 000000000000..c45bf68f921f --- /dev/null +++ b/metadata/md5-cache/dev-perl/GD-2.730.0-r1 @@ -0,0 +1,15 @@ +BDEPEND=>=media-libs/gd-2.2.3[png,jpeg] media-libs/giflib media-libs/libpng:0 sys-libs/zlib virtual/jpeg:0 truetype? ( media-libs/gd[truetype] media-libs/freetype:2 ) xpm? ( media-libs/gd[xpm] x11-libs/libXpm ) fcgi? ( dev-libs/fcgi ) >=virtual/perl-ExtUtils-Constant-0.230.0 dev-perl/ExtUtils-PkgConfig virtual/perl-ExtUtils-MakeMaker test? ( >=dev-perl/Test-Fork-0.20.0 >=virtual/perl-Test-Simple-0.880.0 ) dev-lang/perl +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=media-libs/gd-2.2.3[png,jpeg] media-libs/giflib media-libs/libpng:0 sys-libs/zlib virtual/jpeg:0 truetype? ( media-libs/gd[truetype] media-libs/freetype:2 ) xpm? ( media-libs/gd[xpm] x11-libs/libXpm ) fcgi? ( dev-libs/fcgi ) dev-lang/perl +DESCRIPTION=Interface to Thomas Boutell's gd library +EAPI=7 +HOMEPAGE=https://metacpan.org/release/GD +IUSE=animgif fcgi test truetype xpm examples +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=>=media-libs/gd-2.2.3[png,jpeg] media-libs/giflib media-libs/libpng:0 sys-libs/zlib virtual/jpeg:0 truetype? ( media-libs/gd[truetype] media-libs/freetype:2 ) xpm? ( media-libs/gd[xpm] x11-libs/libXpm ) fcgi? ( dev-libs/fcgi ) dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RU/RURBAN/GD-2.73.tar.gz +_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 +_md5_=2e5498d5e6876219ae825ea7d6333276 diff --git a/metadata/md5-cache/dev-perl/GD-Barcode-1.150.0-r1 b/metadata/md5-cache/dev-perl/GD-Barcode-1.150.0-r1 deleted file mode 100644 index ca9b9ef0f76a..000000000000 --- a/metadata/md5-cache/dev-perl/GD-Barcode-1.150.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/GD dev-lang/perl:=[-build(-)] -DESCRIPTION=GD::Barcode - Create barcode image with GD -EAPI=5 -HOMEPAGE=https://metacpan.org/release/GD-Barcode -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/GD dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/K/KW/KWITKNR/GD-Barcode-1.15.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=ace0c330a1565cfb749161b56106fc25 diff --git a/metadata/md5-cache/dev-perl/GD-Barcode-1.150.0-r2 b/metadata/md5-cache/dev-perl/GD-Barcode-1.150.0-r2 new file mode 100644 index 000000000000..b7b9a1384c8d --- /dev/null +++ b/metadata/md5-cache/dev-perl/GD-Barcode-1.150.0-r2 @@ -0,0 +1,13 @@ +BDEPEND=dev-perl/GD dev-lang/perl +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Create barcode images with GD +EAPI=7 +HOMEPAGE=https://metacpan.org/release/GD-Barcode +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-perl/GD dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/K/KW/KWITKNR/GD-Barcode-1.15.tar.gz +_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 +_md5_=8c452793ff42c5932a02ca1aa9ee0c35 diff --git a/metadata/md5-cache/dev-perl/GD-Graph3d-0.630.0-r1 b/metadata/md5-cache/dev-perl/GD-Graph3d-0.630.0-r1 deleted file mode 100644 index 49d58dea8594..000000000000 --- a/metadata/md5-cache/dev-perl/GD-Graph3d-0.630.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-perl/GD-1.18 >=dev-perl/GDGraph-1.30 dev-perl/GDTextUtil dev-lang/perl:=[-build(-)] -DESCRIPTION=Create 3D Graphs with GD and GD::Graph -EAPI=5 -HOMEPAGE=https://metacpan.org/release/GD-Graph3d -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=dev-perl/GD-1.18 >=dev-perl/GDGraph-1.30 dev-perl/GDTextUtil dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/W/WA/WADG/GD-Graph3d-0.63.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=5db3d84aa418c496486ca32fb267b834 diff --git a/metadata/md5-cache/dev-perl/GD-SVG-0.330.0-r1 b/metadata/md5-cache/dev-perl/GD-SVG-0.330.0-r1 deleted file mode 100644 index fc8adcf9797b..000000000000 --- a/metadata/md5-cache/dev-perl/GD-SVG-0.330.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/GD dev-perl/SVG dev-lang/perl:=[-build(-)] -DESCRIPTION=Seamlessly enable SVG output from scripts written using GD -EAPI=5 -HOMEPAGE=https://metacpan.org/release/GD-SVG -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/GD dev-perl/SVG dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/T/TW/TWH/GD-SVG-0.33.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a403ce7e3db1c2d76d4572234223f023 diff --git a/metadata/md5-cache/dev-perl/GD-SVG-0.330.0-r2 b/metadata/md5-cache/dev-perl/GD-SVG-0.330.0-r2 new file mode 100644 index 000000000000..e851e437413a --- /dev/null +++ b/metadata/md5-cache/dev-perl/GD-SVG-0.330.0-r2 @@ -0,0 +1,13 @@ +BDEPEND=dev-perl/GD dev-perl/SVG dev-lang/perl +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Seamlessly enable SVG output from scripts written using GD +EAPI=7 +HOMEPAGE=https://metacpan.org/release/GD-SVG +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-perl/GD dev-perl/SVG dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/T/TW/TWH/GD-SVG-0.33.tar.gz +_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 +_md5_=1ff612c4d50f5db676b6f33ba6c2f7d8 diff --git a/metadata/md5-cache/dev-perl/GDGraph-1.490.0 b/metadata/md5-cache/dev-perl/GDGraph-1.490.0 deleted file mode 100644 index c5368c190844..000000000000 --- a/metadata/md5-cache/dev-perl/GDGraph-1.490.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/GDTextUtil dev-perl/GD media-libs/gd dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl5 module to create charts using the GD module -EAPI=5 -HOMEPAGE=https://metacpan.org/release/GDGraph -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/GDTextUtil dev-perl/GD media-libs/gd dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RU/RUZ/GDGraph-1.49.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1bad28e21d063d10722441332df63291 diff --git a/metadata/md5-cache/dev-perl/GDGraph-1.510.0 b/metadata/md5-cache/dev-perl/GDGraph-1.510.0 deleted file mode 100644 index 540d394756b2..000000000000 --- a/metadata/md5-cache/dev-perl/GDGraph-1.510.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-perl/GD-1.180.0 >=dev-perl/GDTextUtil-0.800.0 media-libs/gd >=virtual/perl-ExtUtils-MakeMaker-6.640.0 test? ( >=dev-perl/Capture-Tiny-0.300.0 >=dev-perl/Test-Exception-0.400.0 >=virtual/perl-Test-Simple-0.880.0 ) dev-lang/perl -DESCRIPTION=Perl5 module to create charts using the GD module -EAPI=6 -HOMEPAGE=https://metacpan.org/release/GDGraph -IUSE=test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=dev-perl/GD-1.180.0 >=dev-perl/GDTextUtil-0.800.0 media-libs/gd dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RU/RUZ/GDGraph-1.51.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=1831052e1fe6ccce211a1f0b6099c67b diff --git a/metadata/md5-cache/dev-perl/GDGraph-1.520.0 b/metadata/md5-cache/dev-perl/GDGraph-1.520.0 deleted file mode 100644 index d7a87aaa6dbb..000000000000 --- a/metadata/md5-cache/dev-perl/GDGraph-1.520.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-perl/GD-1.180.0 >=dev-perl/GDTextUtil-0.800.0 media-libs/gd >=virtual/perl-ExtUtils-MakeMaker-6.640.0 test? ( >=dev-perl/Capture-Tiny-0.300.0 >=dev-perl/Test-Exception-0.400.0 >=virtual/perl-Test-Simple-0.880.0 ) dev-lang/perl -DESCRIPTION=Perl5 module to create charts using the GD module -EAPI=6 -HOMEPAGE=https://metacpan.org/release/GDGraph -IUSE=test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=dev-perl/GD-1.180.0 >=dev-perl/GDTextUtil-0.800.0 media-libs/gd dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RU/RUZ/GDGraph-1.52.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=2c5ca78a9c0f2f990a1dd423d05b50a1 diff --git a/metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.4 b/metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.4 index 9d67049eb609..d16c91566fa9 100644 --- a/metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.4 +++ b/metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.4 @@ -4,11 +4,11 @@ DESCRIPTION=Perl XS frontend to the Xapian C++ search library EAPI=6 HOMEPAGE=https://metacpan.org/release/Search-Xapian IUSE=examples test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) RDEPEND=dev-libs/xapian:0/1.2.22 !dev-libs/xapian-bindings[perl] dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/O/OL/OLLY/Search-Xapian-1.2.25.4.tar.gz http://oligarchy.co.uk/xapian/1.2.25/Search-Xapian-1.2.25.4.tar.gz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 versionator d3fb3ba33acc3bbbdc4d7970227c100d -_md5_=28aa7786ba53082755b3de124839fdd8 +_md5_=e6c7d119da52721bedd9c8145cb29e12 diff --git a/metadata/md5-cache/dev-perl/Template-GD-2.660.0-r1 b/metadata/md5-cache/dev-perl/Template-GD-2.660.0-r2 index 49c2dc3ed574..abe3abb12d9b 100644 --- a/metadata/md5-cache/dev-perl/Template-GD-2.660.0-r1 +++ b/metadata/md5-cache/dev-perl/Template-GD-2.660.0-r2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/GD dev-perl/GDTextUtil dev-perl/GDGraph dev-perl/GD-Graph3d >=dev-perl/Template-Toolkit-2.15-r1 test? ( dev-perl/GD[png] ) dev-lang/perl:=[-build(-)] +DEPEND=dev-perl/GD dev-perl/GDTextUtil dev-perl/GDGraph dev-perl/GD-Graph3d >=dev-perl/Template-Toolkit-2.15-r1 test? ( dev-perl/GD[png(+)] ) dev-lang/perl:=[-build(-)] DESCRIPTION=GD plugin(s) for the Template Toolkit EAPI=5 HOMEPAGE=https://metacpan.org/release/Template-GD @@ -11,4 +11,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/A/AB/ABW/Template-GD-2.66.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=db6d56895a5d2abe45d7053ee4a63428 +_md5_=cd38c2685ecc60eb214e300c4fba1aa7 diff --git a/metadata/md5-cache/dev-python/Faker-8.5.0 b/metadata/md5-cache/dev-python/Faker-8.5.0 index 7ee6294cb80e..d7761027c523 100644 --- a/metadata/md5-cache/dev-python/Faker-8.5.0 +++ b/metadata/md5-cache/dev-python/Faker-8.5.0 @@ -1,4 +1,4 @@ -BDEPEND=test? ( dev-python/freezegun[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/random2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/validators[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( >=dev-python/python-dateutil-2.4.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/text-unidecode-1.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] !dev-ruby/faker >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +BDEPEND=test? ( dev-python/freezegun[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-),tiff] dev-python/random2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/validators[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( >=dev-python/python-dateutil-2.4.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/text-unidecode-1.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] !dev-ruby/faker >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A Python package that generates fake data for you EAPI=7 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/F/Faker/Faker-8.5.0.tar.gz _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=fe55aed99a482aaeb5ec935894881cbf +_md5_=0c2a16f50b1ce2281113ad1ab71dbe45 diff --git a/metadata/md5-cache/dev-python/Faker-8.5.1 b/metadata/md5-cache/dev-python/Faker-8.5.1 new file mode 100644 index 000000000000..bcd3d2a5fb64 --- /dev/null +++ b/metadata/md5-cache/dev-python/Faker-8.5.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/freezegun[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-),tiff] dev-python/random2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/validators[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( >=dev-python/python-dateutil-2.4.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/text-unidecode-1.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] !dev-ruby/faker >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A Python package that generates fake data for you +EAPI=7 +HOMEPAGE=https://github.com/joke2k/faker +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/python-dateutil-2.4.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/text-unidecode-1.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] !dev-ruby/faker python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/F/Faker/Faker-8.5.1.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=0c2a16f50b1ce2281113ad1ab71dbe45 diff --git a/metadata/md5-cache/dev-python/boto3-1.17.87 b/metadata/md5-cache/dev-python/boto3-1.17.87 new file mode 100644 index 000000000000..3a0fb9b08953 --- /dev/null +++ b/metadata/md5-cache/dev-python/boto3-1.17.87 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-),-python_single_target_python3_10(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_10(-),-python_single_target_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),-python_single_target_python3_9(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),-python_single_target_python3_8(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),-python_single_target_python3_7(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),-python_single_target_python3_6(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),-python_single_target_python3_6(-)] ) ) ) test? ( >=dev-python/botocore-1.20.87[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/jmespath-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/s3transfer-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=The AWS SDK for Python +EAPI=7 +HOMEPAGE=https://github.com/boto/boto3 +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.20.87[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/jmespath-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/s3transfer-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/boto/boto3/archive/1.17.87.tar.gz -> boto3-1.17.87.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=ea348a9760f8e29099cff0109739ba4b diff --git a/metadata/md5-cache/dev-python/boto3-9999 b/metadata/md5-cache/dev-python/boto3-9999 index d4ba6c8f6cf9..db1da802a1dc 100644 --- a/metadata/md5-cache/dev-python/boto3-9999 +++ b/metadata/md5-cache/dev-python/boto3-9999 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd git-r3 b8e8c92aa5fe8df7187e466138eb4e52 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=77a0bc37a33c8388031119634c074436 +_md5_=ea348a9760f8e29099cff0109739ba4b diff --git a/metadata/md5-cache/dev-python/botocore-1.20.87 b/metadata/md5-cache/dev-python/botocore-1.20.87 new file mode 100644 index 000000000000..a9291cd3bae9 --- /dev/null +++ b/metadata/md5-cache/dev-python/botocore-1.20.87 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jsonschema[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-),-python_single_target_python3_10(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_10(-),-python_single_target_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),-python_single_target_python3_9(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),-python_single_target_python3_8(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),-python_single_target_python3_7(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),-python_single_target_python3_6(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),-python_single_target_python3_6(-)] ) ) ) test? ( dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/urllib3-1.25.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Low-level, data-driven core of boto 3 +EAPI=7 +HOMEPAGE=https://github.com/boto/botocore +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/urllib3-1.25.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/b/botocore/botocore-1.20.87.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=394ba31230e71aa7bf692170bbc134e6 diff --git a/metadata/md5-cache/dev-python/botocore-9999 b/metadata/md5-cache/dev-python/botocore-9999 index d65ec8de0b9a..5d6924f84f8a 100644 --- a/metadata/md5-cache/dev-python/botocore-9999 +++ b/metadata/md5-cache/dev-python/botocore-9999 @@ -1,4 +1,4 @@ -BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jsonschema[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-),-python_single_target_python3_10(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_10(-),-python_single_target_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),-python_single_target_python3_9(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),-python_single_target_python3_8(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),-python_single_target_python3_7(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),-python_single_target_python3_6(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),-python_single_target_python3_6(-)] ) ) ) test? ( dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/docutils[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/urllib3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jsonschema[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-),-python_single_target_python3_10(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_10(-),-python_single_target_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),-python_single_target_python3_9(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),-python_single_target_python3_8(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),-python_single_target_python3_7(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),-python_single_target_python3_6(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),-python_single_target_python3_6(-)] ) ) ) test? ( dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/urllib3-1.25.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare test unpack DESCRIPTION=Low-level, data-driven core of boto 3 EAPI=7 @@ -6,9 +6,9 @@ HOMEPAGE=https://github.com/boto/botocore IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 LICENSE=Apache-2.0 PROPERTIES=live -RDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/docutils[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/urllib3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +RDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/urllib3-1.25.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd git-r3 b8e8c92aa5fe8df7187e466138eb4e52 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=6e68060fc4b0e2df1cfc9043e7bde1f9 +_md5_=394ba31230e71aa7bf692170bbc134e6 diff --git a/metadata/md5-cache/dev-python/cfn-python-lint-0.50.0 b/metadata/md5-cache/dev-python/cfn-python-lint-0.50.0 new file mode 100644 index 000000000000..2f966168a58c --- /dev/null +++ b/metadata/md5-cache/dev-python/cfn-python-lint-0.50.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( >=dev-python/aws-sam-translator-1.35.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-python/importlib_resources[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) dev-python/jsonpatch[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/jsonschema-3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/junit-xml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/networkx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/pyyaml-5.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/requests-2.15.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/six-1.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/unittest-or-fail[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=CloudFormation Linter +EAPI=7 +HOMEPAGE=https://pypi.org/project/cfn-lint/ https://github.com/aws-cloudformation/cfn-lint/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/aws-sam-translator-1.35.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-python/importlib_resources[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) dev-python/jsonpatch[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/jsonschema-3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/junit-xml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/networkx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/pyyaml-5.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/requests-2.15.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/six-1.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/aws-cloudformation/cfn-lint/archive/v0.50.0.tar.gz -> cfn-lint-0.50.0.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=6518d5cada71382fc2052cb659735cd7 diff --git a/metadata/md5-cache/dev-python/google-api-core-1.29.0 b/metadata/md5-cache/dev-python/google-api-core-1.29.0 new file mode 100644 index 000000000000..3f17b219f36c --- /dev/null +++ b/metadata/md5-cache/dev-python/google-api-core-1.29.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/grpcio[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/rsa[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pytest-asyncio[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( dev-python/namespace-google[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/protobuf-python[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/googleapis-common-protos[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/google-auth-1.25.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/requests-2.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] <dev-python/requests-3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pytz[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/packaging[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Core Library for Google Client Libraries +EAPI=7 +HOMEPAGE=https://github.com/googleapis/python-api-core https://googleapis.dev/python/google-api-core/latest +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=dev-python/namespace-google[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/protobuf-python[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/googleapis-common-protos[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/google-auth-1.25.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/requests-2.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] <dev-python/requests-3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pytz[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/packaging[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/googleapis/python-api-core/archive/v1.29.0.tar.gz -> google-api-core-1.29.0.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=9a1eeed8b75d1216f1880a0f2585b8ef diff --git a/metadata/md5-cache/dev-python/hypothesis-6.13.12 b/metadata/md5-cache/dev-python/hypothesis-6.13.12 new file mode 100644 index 000000000000..cc504380eaf0 --- /dev/null +++ b/metadata/md5-cache/dev-python/hypothesis-6.13.12 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pexpect[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pytest-xdist[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] !!dev-python/pytest-describe !!<dev-python/typing-3.7.4.1 ) test? ( >=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] cli? ( python_targets_python3_7? ( dev-python/black[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-python/black[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( dev-python/black[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+),sqlite] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+),sqlite] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+),sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=A library for property based testing +EAPI=7 +HOMEPAGE=https://github.com/HypothesisWorks/hypothesis https://pypi.org/project/hypothesis/ +IUSE=cli test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +LICENSE=MPL-2.0 +RDEPEND=>=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] cli? ( python_targets_python3_7? ( dev-python/black[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-python/black[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( dev-python/black[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+),sqlite] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+),sqlite] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+),sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.13.12.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 optfeature e142388219c7fee6ff016fe1c78a10a5 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=c87b63104cdf4f070dcc2d877d59ae8d diff --git a/metadata/md5-cache/dev-python/identify-2.2.8 b/metadata/md5-cache/dev-python/identify-2.2.8 new file mode 100644 index 000000000000..430e9360409c --- /dev/null +++ b/metadata/md5-cache/dev-python/identify-2.2.8 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/editdistance-s[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=File identification library for Python +EAPI=7 +HOMEPAGE=https://github.com/pre-commit/identify +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=dev-python/editdistance-s[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pre-commit/identify/archive/refs/tags/v2.2.8.tar.gz -> identify-2.2.8.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=ef701141882713ad634548fe2740e6e8 diff --git a/metadata/md5-cache/dev-python/lxml-4.6.3-r1 b/metadata/md5-cache/dev-python/lxml-4.6.3-r1 index 08185c8fe1fc..a3eb9f6f31c3 100644 --- a/metadata/md5-cache/dev-python/lxml-4.6.3-r1 +++ b/metadata/md5-cache/dev-python/lxml-4.6.3-r1 @@ -5,7 +5,7 @@ DESCRIPTION=A Pythonic binding for the libxml2 and libxslt libraries EAPI=7 HOMEPAGE=https://lxml.de/ https://pypi.org/project/lxml/ https://github.com/lxml/lxml IUSE=doc examples +threads test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD ElementTree GPL-2 PSF-2 RDEPEND=>=dev-libs/libxml2-2.9.12-r2 >=dev-libs/libxslt-1.1.28 python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/lxml/lxml/archive/lxml-4.6.3.tar.gz _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 optfeature e142388219c7fee6ff016fe1c78a10a5 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=9678e97f2c1de83e0ef3d33c630746eb +_md5_=3a010adb6b7daa1076c0655976d3f922 diff --git a/metadata/md5-cache/dev-python/pip-21.1.1 b/metadata/md5-cache/dev-python/pip-21.1.1 index 4434b14c80c9..f5ec23c51b2f 100644 --- a/metadata/md5-cache/dev-python/pip-21.1.1 +++ b/metadata/md5-cache/dev-python/pip-21.1.1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Installs python packages -- replacement for easy_install EAPI=7 HOMEPAGE=https://pip.pypa.io/en/stable/ https://pypi.org/project/pip/ https://github.com/pypa/pip/ -IUSE=test -vanilla python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +IUSE=test vanilla python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=MIT RDEPEND=>=dev-python/setuptools-39.2.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[ssl(+),threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ssl(+),threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ssl(+),threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+),threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+),threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[ssl(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pypa/pip/archive/21.1.1.tar.gz -> pip-21.1.1.tar.gz test? ( https://files.pythonhosted.org/packages/py3/s/setuptools/setuptools-56.0.0-py3-none-any.whl https://files.pythonhosted.org/packages/py2.py3/w/wheel/wheel-0.36.2-py2.py3-none-any.whl ) _eclasses_=bash-completion-r1 8e7c071081c68c2c398b77fe3a1d6908 distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=b036e77d1dde47b04fdbf4d6fecf6581 +_md5_=3c5d742c4ff41fc60f4608a890b5ba7b diff --git a/metadata/md5-cache/dev-python/pip-21.1.2 b/metadata/md5-cache/dev-python/pip-21.1.2 index d5c6498eec79..c4b4aa0c5bc7 100644 --- a/metadata/md5-cache/dev-python/pip-21.1.2 +++ b/metadata/md5-cache/dev-python/pip-21.1.2 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Installs python packages -- replacement for easy_install EAPI=7 HOMEPAGE=https://pip.pypa.io/en/stable/ https://pypi.org/project/pip/ https://github.com/pypa/pip/ -IUSE=test -vanilla python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +IUSE=test vanilla python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos LICENSE=MIT RDEPEND=>=dev-python/setuptools-39.2.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[ssl(+),threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ssl(+),threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ssl(+),threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+),threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+),threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[ssl(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pypa/pip/archive/21.1.2.tar.gz -> pip-21.1.2.tar.gz test? ( https://files.pythonhosted.org/packages/py3/s/setuptools/setuptools-56.0.0-py3-none-any.whl https://files.pythonhosted.org/packages/py2.py3/w/wheel/wheel-0.36.2-py2.py3-none-any.whl ) _eclasses_=bash-completion-r1 8e7c071081c68c2c398b77fe3a1d6908 distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=8179dcf72b3cd1f5a3d6b991093ca31d +_md5_=9f522a1a805a0b58714a3c09326a3146 diff --git a/metadata/md5-cache/dev-python/pkgconfig-1.5.4 b/metadata/md5-cache/dev-python/pkgconfig-1.5.4 new file mode 100644 index 000000000000..c7e6a61161e9 --- /dev/null +++ b/metadata/md5-cache/dev-python/pkgconfig-1.5.4 @@ -0,0 +1,15 @@ +BDEPEND=test? ( virtual/pkgconfig >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyproject2setuppy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Interface Python with pkg-config +EAPI=7 +HOMEPAGE=https://pypi.org/project/pkgconfig/ https://github.com/matze/pkgconfig +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=virtual/pkgconfig python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/matze/pkgconfig/archive/v1.5.4.tar.gz -> pkgconfig-1.5.4.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=0ede812bdfffd5d05202eb51f1ddf482 diff --git a/metadata/md5-cache/dev-python/pycairo-1.20.1 b/metadata/md5-cache/dev-python/pycairo-1.20.1 new file mode 100644 index 000000000000..e032a54fc359 --- /dev/null +++ b/metadata/md5-cache/dev-python/pycairo-1.20.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/hypothesis[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) doc? ( || ( ( dev-lang/python:3.10[threads(+)] dev-python/sphinx[python_targets_python3_10(-),-python_single_target_python3_10(-)] dev-python/sphinx_rtd_theme[python_targets_python3_10(-),-python_single_target_python3_10(-)] ) ( dev-lang/python:3.9[threads(+)] dev-python/sphinx[python_targets_python3_9(-),-python_single_target_python3_9(-)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8[threads(+)] dev-python/sphinx[python_targets_python3_8(-),-python_single_target_python3_8(-)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7[threads(+)] dev-python/sphinx[python_targets_python3_7(-),-python_single_target_python3_7(-)] dev-python/sphinx_rtd_theme[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ( dev-lang/python:3.6[threads(+)] dev-python/sphinx[python_targets_python3_6(-),-python_single_target_python3_6(-)] dev-python/sphinx_rtd_theme[python_targets_python3_6(-),-python_single_target_python3_6(-)] ) ( >=dev-python/pypy3-7.3.0:0[threads(+)] dev-python/sphinx[python_targets_pypy3(-),-python_single_target_pypy3(-)] dev-python/sphinx_rtd_theme[python_targets_pypy3(-),-python_single_target_pypy3(-)] ) ) ) test? ( >=x11-libs/cairo-1.15.10[svg] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=x11-libs/cairo-1.15.10[svg] +DESCRIPTION=Python bindings for the cairo library +EAPI=7 +HOMEPAGE=https://www.cairographics.org/pycairo/ https://github.com/pygobject/pycairo +IUSE=examples doc test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +LICENSE=|| ( LGPL-2.1 MPL-1.1 ) +RDEPEND=>=x11-libs/cairo-1.15.10[svg] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pygobject/pycairo/releases/download/v1.20.1/pycairo-1.20.1.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=1cf56e16930ef5fb588b4302968b735c diff --git a/metadata/md5-cache/dev-python/python-magic-0.4.24 b/metadata/md5-cache/dev-python/python-magic-0.4.24 new file mode 100644 index 000000000000..b791db8b177b --- /dev/null +++ b/metadata/md5-cache/dev-python/python-magic-0.4.24 @@ -0,0 +1,15 @@ +BDEPEND=test? ( sys-apps/file ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Access the libmagic file type identification library +EAPI=7 +HOMEPAGE=https://github.com/ahupp/python-magic +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux +LICENSE=BSD-2 MIT +RDEPEND=sys-apps/file[-python] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/ahupp/python-magic/archive/0.4.24.tar.gz -> python-magic-0.4.24.gh.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=e6516938127f6040ddf68f14725835dc diff --git a/metadata/md5-cache/dev-python/snakeoil-0.9.6 b/metadata/md5-cache/dev-python/snakeoil-0.9.6 index 6e14fb0346fe..2efd39cbd561 100644 --- a/metadata/md5-cache/dev-python/snakeoil-0.9.6 +++ b/metadata/md5-cache/dev-python/snakeoil-0.9.6 @@ -6,10 +6,10 @@ HOMEPAGE=https://github.com/pkgcore/snakeoil IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos LICENSE=BSD BSD-2 MIT -RDEPEND=dev-python/lazy-object-proxy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +RDEPEND=dev-python/lazy-object-proxy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/snakeoil/snakeoil-0.9.6.tar.gz _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=92eaa7ddc3aa122fef8f324a292de0a5 +_md5_=73f1b69d23528ff61b22ae327867f433 diff --git a/metadata/md5-cache/dev-python/sphinx-panels-0.6.0 b/metadata/md5-cache/dev-python/sphinx-panels-0.6.0 new file mode 100644 index 000000000000..fa69dcd3ba2e --- /dev/null +++ b/metadata/md5-cache/dev-python/sphinx-panels-0.6.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pytest-regressions[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) test? ( dev-python/docutils[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/sphinx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-),-python_single_target_python3_10(-)] dev-python/sphinx_rtd_theme[python_targets_python3_10(-),-python_single_target_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),-python_single_target_python3_9(-)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),-python_single_target_python3_8(-)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),-python_single_target_python3_7(-)] dev-python/sphinx_rtd_theme[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),-python_single_target_python3_6(-)] dev-python/sphinx_rtd_theme[python_targets_python3_6(-),-python_single_target_python3_6(-)] ) ) ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A sphinx extension for creating panels in a grid layout +EAPI=7 +HOMEPAGE=https://github.com/executablebooks/sphinx-panels +IUSE=test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-python/docutils[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/sphinx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/executablebooks/sphinx-panels/archive/v0.6.0.tar.gz -> sphinx-panels-0.6.0.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=077a6bf170184fd5ef3e2026b99c66cd diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-doxylink-1.6.1 b/metadata/md5-cache/dev-python/sphinxcontrib-doxylink-1.6.1 deleted file mode 100644 index 1a9f8f57e7d8..000000000000 --- a/metadata/md5-cache/dev-python/sphinxcontrib-doxylink-1.6.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/sphinx-1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/namespace-sphinxcontrib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyparsing[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] -DESCRIPTION=Extension to link to external Doxygen API documentation -EAPI=7 -HOMEPAGE=https://pypi.org/project/sphinxcontrib-doxylink/ https://pythonhosted.org/sphinxcontrib-doxylink/ https://github.com/sphinx-contrib/doxylink -IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~arm arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=BSD-2 -RDEPEND=>=dev-python/sphinx-1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/namespace-sphinxcontrib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyparsing[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -SLOT=0 -SRC_URI=mirror://pypi/s/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.6.1.tar.gz -_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=379971759573a7f0ea6dca95482776bc diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-doxylink-1.8 b/metadata/md5-cache/dev-python/sphinxcontrib-doxylink-1.8 index 6cc14ca3af5e..857fa3091dc3 100644 --- a/metadata/md5-cache/dev-python/sphinxcontrib-doxylink-1.8 +++ b/metadata/md5-cache/dev-python/sphinxcontrib-doxylink-1.8 @@ -4,7 +4,7 @@ DESCRIPTION=Extension to link to external Doxygen API documentation EAPI=7 HOMEPAGE=https://pypi.org/project/sphinxcontrib-doxylink/ https://pythonhosted.org/sphinxcontrib-doxylink/ https://github.com/sphinx-contrib/doxylink IUSE=test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm arm64 ~x86 ~amd64-linux ~x86-linux LICENSE=BSD-2 RDEPEND=>=dev-python/sphinx-1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/namespace-sphinxcontrib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pyparsing[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/sphinx-contrib/doxylink/archive/refs/tags/1.8.tar.gz -> sphinxcontrib-doxylink-1.8.tar.gz _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=c4b63977a907e6628778923b04057435 +_md5_=44aac89207f0568a199abb59965c9f06 diff --git a/metadata/md5-cache/dev-python/zeep-3.4.0 b/metadata/md5-cache/dev-python/zeep-3.4.0 index a7431e6b15dd..3accca992145 100644 --- a/metadata/md5-cache/dev-python/zeep-3.4.0 +++ b/metadata/md5-cache/dev-python/zeep-3.4.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A modern/fast Python SOAP client based on lxml / requests EAPI=7 HOMEPAGE=http://docs.python-zeep.org/ -IUSE=async -tornado python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +IUSE=async tornado python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=>=dev-python/appdirs-1.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/attrs-17.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/cached-property-1.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/defusedxml-0.4.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/isodate-0.5.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/lxml-3.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/requests-2.7.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/requests-toolbelt-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/six-1.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-python/pytz[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] async? ( >=dev-python/aiohttp-1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) tornado? ( >=www-servers/tornado-4.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] <www-servers/tornado-5[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe SLOT=0 SRC_URI=mirror://pypi/z/zeep/zeep-3.4.0.tar.gz _eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=2aaa0fb9e1a0df8ecedef9598407e893 +_md5_=61c51d6175b888eb1ec87c3c67131df6 diff --git a/metadata/md5-cache/dev-util/idea-community-2021.1.1.211.7142.45 b/metadata/md5-cache/dev-util/idea-community-2021.1.2.211.7442.40 index 9d8ffcedbebc..796487d045e7 100644 --- a/metadata/md5-cache/dev-util/idea-community-2021.1.1.211.7142.45 +++ b/metadata/md5-cache/dev-util/idea-community-2021.1.2.211.7442.40 @@ -9,6 +9,6 @@ LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 CC-BY-2.5 CDDL-1.1 codehaus-classworlds CPL RDEPEND=|| ( >=dev-java/openjdk-11.0.11_p9-r1:11 >=dev-java/openjdk-bin-11.0.11_p9-r1:11 ) dev-java/jansi-native dev-libs/libdbusmenu media-libs/harfbuzz =dev-util/lldb-10* RESTRICT=splitdebug SLOT=0 -SRC_URI=https://download.jetbrains.com/idea/ideaIC-2021.1.1-no-jbr.tar.gz?_ga=2.236075331.371301151.1620596360-682219170.1619910833 -> ideaIC-1.1.211.7142.45.tar.gz amd64? ( https://bintray.com/jetbrains/intellij-jbr/download_file?file_path=jbr-11_0_10-linux-x64-b1304.4.tar.gz -> jbr-11_0_10-linux-x64-b1304.4.tar.gz ) +SRC_URI=https://download.jetbrains.com/idea/ideaIC-2021.1.2-no-jbr.tar.gz?_ga=2.23517177.257203969.1622674002-682219170.1619910833 -> ideaIC-1.2.211.7442.40.tar.gz amd64? ( https://bintray.com/jetbrains/intellij-jbr/download_file?file_path=jbr-11_0_10-linux-x64-b1304.4.tar.gz -> jbr-11_0_10-linux-x64-b1304.4.tar.gz ) _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=75d73830d6f7d325838f48e2aeab845d +_md5_=f310489323ef070a1a9f729c369cb723 diff --git a/metadata/md5-cache/dev-util/pkgdev-0.1.5 b/metadata/md5-cache/dev-util/pkgdev-0.1.5 new file mode 100644 index 000000000000..ab5c56b457af --- /dev/null +++ b/metadata/md5-cache/dev-util/pkgdev-0.1.5 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pytest ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-),-python_single_target_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),-python_single_target_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),-python_single_target_python3_8(-)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),-python_single_target_python3_7(-)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),-python_single_target_python3_6(-)] ) ) ) test? ( >=dev-python/snakeoil-0.9.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-util/pkgcheck-0.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=sys-apps/pkgcore-0.12.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-vcs/git ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Collection of tools for Gentoo development +EAPI=7 +HOMEPAGE=https://github.com/pkgcore/pkgdev +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~ppc64 ~riscv ~x64-macos +LICENSE=BSD MIT +RDEPEND=>=dev-python/snakeoil-0.9.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=dev-util/pkgcheck-0.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] >=sys-apps/pkgcore-0.12.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] dev-vcs/git python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/p/pkgdev/pkgdev-0.1.5.tar.gz +_eclasses_=distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=89dd045ca0d79619bfe45b6ebd768932 diff --git a/metadata/md5-cache/dev-util/stripe-mock-0.106.0 b/metadata/md5-cache/dev-util/stripe-mock-0.106.0 new file mode 100644 index 000000000000..3b7282c5a708 --- /dev/null +++ b/metadata/md5-cache/dev-util/stripe-mock-0.106.0 @@ -0,0 +1,12 @@ +BDEPEND=>=dev-lang/go-1.10 +DEFINED_PHASES=compile install test unpack +DESCRIPTION=Mock HTTP server that responds like the real Stripe API +EAPI=7 +HOMEPAGE=https://github.com/stripe/stripe-mock +KEYWORDS=~amd64 ~x86 +LICENSE=MIT ISC BSD-2 +RESTRICT=strip +SLOT=0 +SRC_URI=https://github.com/stripe/stripe-mock/archive/v0.106.0.tar.gz -> stripe-mock-0.106.0.tar.gz +_eclasses_=golang-base b8fb27dacacea08140c53857f439fc7d golang-build 91472d4e18894e738c69b415e236a664 golang-vcs-snapshot 4ef89aa478b2b6948f987ece23bcac68 +_md5_=8c8ea1a8cbd7fa4eaf5ee80824e7625f diff --git a/metadata/md5-cache/dev-util/valgrind-3.17.0 b/metadata/md5-cache/dev-util/valgrind-3.17.0 index c6ed806cd9d9..a0606370def9 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.17.0 +++ b/metadata/md5-cache/dev-util/valgrind-3.17.0 @@ -5,10 +5,10 @@ DESCRIPTION=An open-source memory debugger for GNU/Linux EAPI=7 HOMEPAGE=http://www.valgrind.org IUSE=mpi -KEYWORDS=-* amd64 ~arm ~arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +KEYWORDS=-* amd64 ~arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=ftp://sourceware.org/pub/valgrind/valgrind-3.17.0.tar.bz2 _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e pax-utils d3fc79d3d50544347e324864f95206e2 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f0fbcf8e787c0b7fe0120f7be6cbc1c8 +_md5_=f243ca6a1a1a75271759b30252e1962f diff --git a/metadata/md5-cache/dev-vcs/fossil-2.12.1 b/metadata/md5-cache/dev-vcs/fossil-2.12.1 index 863cdf790431..57bf6f6357ce 100644 --- a/metadata/md5-cache/dev-vcs/fossil-2.12.1 +++ b/metadata/md5-cache/dev-vcs/fossil-2.12.1 @@ -3,7 +3,7 @@ DEPEND=sys-libs/zlib || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? DESCRIPTION=Simple, high-reliability, source control management, and more EAPI=7 HOMEPAGE=https://www.fossil-scm.org/ -IUSE=debug fusefs json -miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks +IUSE=debug fusefs json miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks KEYWORDS=amd64 arm ppc ppc64 x86 LICENSE=BSD-2 RDEPEND=sys-libs/zlib || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? ( >=dev-db/sqlite-3.33.0:3 ) ssl? ( dev-libs/openssl:0 ) tcl? ( dev-lang/tcl:0= ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://fossil-scm.org/home/uv/fossil-src-2.12.1.tar.gz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=5ecb21c997cd9194228c0deb48d0ec88 +_md5_=eeebe3f3c8f54bf0d41cf86e1c2f8fb6 diff --git a/metadata/md5-cache/dev-vcs/fossil-2.13 b/metadata/md5-cache/dev-vcs/fossil-2.13 index 4704e8f78685..ead931d38880 100644 --- a/metadata/md5-cache/dev-vcs/fossil-2.13 +++ b/metadata/md5-cache/dev-vcs/fossil-2.13 @@ -3,7 +3,7 @@ DEPEND=sys-libs/zlib || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? DESCRIPTION=Simple, high-reliability, source control management, and more EAPI=7 HOMEPAGE=https://www.fossil-scm.org/ -IUSE=debug fusefs json -miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks +IUSE=debug fusefs json miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=BSD-2 RDEPEND=sys-libs/zlib || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? ( >=dev-db/sqlite-3.34.0:3 ) ssl? ( dev-libs/openssl:0 ) tcl? ( dev-lang/tcl:0= ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://fossil-scm.org/home/uv/fossil-src-2.13.tar.gz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=6f3beeebe5636b1ebb2a6c7f0c53a523 +_md5_=0fdc17a59be8361905444a40aa7ea2ac diff --git a/metadata/md5-cache/dev-vcs/fossil-2.14 b/metadata/md5-cache/dev-vcs/fossil-2.14 index 7c996d3aa467..f406ac73c284 100644 --- a/metadata/md5-cache/dev-vcs/fossil-2.14 +++ b/metadata/md5-cache/dev-vcs/fossil-2.14 @@ -3,7 +3,7 @@ DEPEND=sys-libs/zlib || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? DESCRIPTION=Simple, high-reliability, source control management, and more EAPI=7 HOMEPAGE=https://www.fossil-scm.org/ -IUSE=debug fusefs json -miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks +IUSE=debug fusefs json miniz system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=BSD-2 RDEPEND=sys-libs/zlib || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? ( >=dev-db/sqlite-3.34.0:3 ) ssl? ( dev-libs/openssl:0 ) tcl? ( dev-lang/tcl:0= ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://fossil-scm.org/home/uv/fossil-src-2.14.tar.gz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=a64e3d4bd7139b14a621be586a050d04 +_md5_=d12f8475b153bc54e5c392f274299721 diff --git a/metadata/md5-cache/dev-vcs/gitstats-0_pre20201124 b/metadata/md5-cache/dev-vcs/gitstats-0_pre20201124 index d13bbd0259cb..2d20b063c30d 100644 --- a/metadata/md5-cache/dev-vcs/gitstats-0_pre20201124 +++ b/metadata/md5-cache/dev-vcs/gitstats-0_pre20201124 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe SLOT=0 SRC_URI=https://github.com/gktrk/gitstats/archive/0_pre20201124.tar.gz -> gitstats-0_pre20201124.tar.gz _eclasses_=multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=e3a622ced7f018d5be6e68c845cd094a +_md5_=fa8515649bc5480ec040f8c080ad4fc2 diff --git a/metadata/md5-cache/games-strategy/widelands-0.21 b/metadata/md5-cache/games-strategy/widelands-0.21 new file mode 100644 index 000000000000..5c124bbb3abf --- /dev/null +++ b/metadata/md5-cache/games-strategy/widelands-0.21 @@ -0,0 +1,15 @@ +BDEPEND=|| ( dev-lang/python:3.10 dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) sys-devel/gettext dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd media-libs/libpng:= media-libs/libsdl2[opengl,sound,video] media-libs/sdl2-image[jpeg,png] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-ttf sys-libs/zlib:= virtual/libintl dev-libs/boost dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Game similar to Settlers 2 +EAPI=7 +HOMEPAGE=https://www.widelands.org/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Apache-2.0 GPL-3 ) BitstreamVera CC-BY-SA-3.0 GPL-2 GPL-2+ MIT OFL-1.1 ZLIB +RDEPEND=dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd media-libs/libpng:= media-libs/libsdl2[opengl,sound,video] media-libs/sdl2-image[jpeg,png] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-ttf sys-libs/zlib:= virtual/libintl +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://launchpad.net/widelands/build21/build21/+download/widelands-build21-source.tar.gz +_eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=85ce1c65bc7ab79f363d740bea7a7311 diff --git a/metadata/md5-cache/games-strategy/widelands-9999 b/metadata/md5-cache/games-strategy/widelands-9999 index 2645e922663b..5cf8ce9e8182 100644 --- a/metadata/md5-cache/games-strategy/widelands-9999 +++ b/metadata/md5-cache/games-strategy/widelands-9999 @@ -1,12 +1,14 @@ -BDEPEND=sys-devel/gettext dev-util/ninja dev-util/cmake >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=|| ( dev-lang/python:3.10 dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) sys-devel/gettext dev-util/ninja dev-util/cmake >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-libs/boost-1.48:= dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd media-libs/libpng:0= media-libs/libsdl2[video] media-libs/sdl2-image[jpeg,png] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-ttf sys-libs/zlib:=[minizip] || ( dev-lang/python:3.10 dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A game similar to Settlers 2 +DEPEND=dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd media-libs/libpng:= media-libs/libsdl2[opengl,sound,video] media-libs/sdl2-image[jpeg,png] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-ttf net-misc/curl sys-libs/zlib:= virtual/libintl dev-libs/boost dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Game similar to Settlers 2 EAPI=7 HOMEPAGE=https://www.widelands.org/ -LICENSE=GPL-2+ +IUSE=test +LICENSE=|| ( Apache-2.0 GPL-3 ) BitstreamVera CC-BY-SA-3.0 GPL-2 GPL-2+ MIT OFL-1.1 ZLIB PROPERTIES=live -RDEPEND=>=dev-libs/boost-1.48:= dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd media-libs/libpng:0= media-libs/libsdl2[video] media-libs/sdl2-image[jpeg,png] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-ttf sys-libs/zlib:=[minizip] +RDEPEND=dev-libs/icu:= media-libs/glew:0= media-libs/libglvnd media-libs/libpng:= media-libs/libsdl2[opengl,sound,video] media-libs/sdl2-image[jpeg,png] media-libs/sdl2-mixer[vorbis] media-libs/sdl2-ttf net-misc/curl sys-libs/zlib:= virtual/libintl +RESTRICT=!test? ( test ) SLOT=0 _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a266f29243414ce7a9d84fa4e424f3f6 +_md5_=87bde86dcfdf5b316ab66175902d16ae diff --git a/metadata/md5-cache/gnustep-apps/gorm-1.2.28 b/metadata/md5-cache/gnustep-apps/gorm-1.2.28 new file mode 100644 index 000000000000..ce6590ee9f49 --- /dev/null +++ b/metadata/md5-cache/gnustep-apps/gorm-1.2.28 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=>=gnustep-base/gnustep-gui-0.22.0 >=gnustep-base/gnustep-make-2.0 virtual/gnustep-back +DESCRIPTION=A clone of the NeXTstep Interface Builder application for GNUstep +EAPI=7 +HOMEPAGE=http://www.gnustep.org/experience/Gorm.html +IUSE=debug doc +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=>=gnustep-base/gnustep-gui-0.22.0 >=gnustep-base/gnustep-make-2.0 virtual/gnustep-back +SLOT=0 +SRC_URI=ftp://ftp.gnustep.org/pub/gnustep/dev-apps/gorm-1.2.28.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-2 1051c5dfb0d9429bef576c60536dac89 gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=c7767660e803e4f8fcec0ee68ec7b0b0 diff --git a/metadata/md5-cache/gnustep-apps/sogo-5.1.1 b/metadata/md5-cache/gnustep-apps/sogo-5.1.1 new file mode 100644 index 000000000000..57100a195d34 --- /dev/null +++ b/metadata/md5-cache/gnustep-apps/sogo-5.1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup unpack +DEPEND=acct-user/sogo dev-libs/libmemcached net-misc/curl net-misc/memcached >=gnustep-libs/sope-5.1.1[ldap] activesync? ( dev-libs/libwbxml ) gnutls? ( net-libs/gnutls:= ) !gnutls? ( dev-libs/openssl:0= ) >=gnustep-base/gnustep-make-2.6.3 >=gnustep-base/gnustep-make-2.0 virtual/gnustep-back +DESCRIPTION=Groupware server built around OpenGroupware.org and the SOPE application server +EAPI=7 +HOMEPAGE=http://www.sogo.nu +IUSE=activesync gnutls +ssl debug doc +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=acct-user/sogo dev-libs/libmemcached net-misc/curl net-misc/memcached >=gnustep-libs/sope-5.1.1[ldap] activesync? ( dev-libs/libwbxml ) gnutls? ( net-libs/gnutls:= ) !gnutls? ( dev-libs/openssl:0= ) >=gnustep-base/gnustep-make-2.0 virtual/gnustep-back +SLOT=0 +SRC_URI=https://github.com/inverse-inc/sogo/archive/SOGo-5.1.1.tar.gz -> sogo-5.1.1.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-2 1051c5dfb0d9429bef576c60536dac89 gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=729a92e9aaeb44639097f36d56a07f70 diff --git a/metadata/md5-cache/gnustep-base/gnustep-back-art-0.29.0 b/metadata/md5-cache/gnustep-base/gnustep-back-art-0.29.0 new file mode 100644 index 000000000000..ddfcc9a7ebbd --- /dev/null +++ b/metadata/md5-cache/gnustep-base/gnustep-back-art-0.29.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) =gnustep-base/gnustep-gui-0.29* >=gnustep-base/mknfonts-0.5-r1 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXmu x11-libs/libXt x11-libs/libXft x11-libs/libXrender media-fonts/dejavu >=media-libs/freetype-2.1.9 >=media-libs/libart_lgpl-2.3 opengl? ( virtual/opengl virtual/glu ) !gnustep-base/gnustep-back-cairo !gnustep-base/gnustep-back-xlib +DESCRIPTION=libart_lgpl back-end component for the GNUstep GUI Library +EAPI=6 +HOMEPAGE=http://www.gnustep.org +IUSE=opengl xim debug doc +KEYWORDS=~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=LGPL-2.1 +RDEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) =gnustep-base/gnustep-gui-0.29* >=gnustep-base/mknfonts-0.5-r1 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXmu x11-libs/libXt x11-libs/libXft x11-libs/libXrender media-fonts/dejavu >=media-libs/freetype-2.1.9 >=media-libs/libart_lgpl-2.3 opengl? ( virtual/opengl virtual/glu ) !gnustep-base/gnustep-back-cairo !gnustep-base/gnustep-back-xlib +SLOT=0 +SRC_URI=ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-0.29.0.tar.gz +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=54e1c628420935ac84764ff37ff9d956 diff --git a/metadata/md5-cache/gnustep-base/gnustep-back-cairo-0.29.0 b/metadata/md5-cache/gnustep-base/gnustep-back-cairo-0.29.0 new file mode 100644 index 000000000000..ef0cdce52bc3 --- /dev/null +++ b/metadata/md5-cache/gnustep-base/gnustep-back-cairo-0.29.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) =gnustep-base/gnustep-gui-0.29* opengl? ( virtual/opengl virtual/glu ) x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXmu x11-libs/libXt x11-libs/libXft x11-libs/libXrender >=media-libs/freetype-2.1.9 >=x11-libs/cairo-1.2.0[X] !gnustep-base/gnustep-back-art !gnustep-base/gnustep-back-xlib virtual/pkgconfig +DESCRIPTION=Cairo back-end component for the GNUstep GUI Library +EAPI=7 +HOMEPAGE=http://www.gnustep.org +IUSE=opengl xim debug doc +KEYWORDS=~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=LGPL-2.1 +RDEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) =gnustep-base/gnustep-gui-0.29* opengl? ( virtual/opengl virtual/glu ) x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXmu x11-libs/libXt x11-libs/libXft x11-libs/libXrender >=media-libs/freetype-2.1.9 >=x11-libs/cairo-1.2.0[X] !gnustep-base/gnustep-back-art !gnustep-base/gnustep-back-xlib +SLOT=0 +SRC_URI=ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-0.29.0.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=8ea2de013a79bf280370f865a74c0166 diff --git a/metadata/md5-cache/gnustep-base/gnustep-back-xlib-0.29.0 b/metadata/md5-cache/gnustep-base/gnustep-back-xlib-0.29.0 new file mode 100644 index 000000000000..2c977f9cdb3d --- /dev/null +++ b/metadata/md5-cache/gnustep-base/gnustep-back-xlib-0.29.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) =gnustep-base/gnustep-gui-0.29* >=media-libs/freetype-2.1.9 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXmu x11-libs/libXt x11-libs/libXft x11-libs/libXrender opengl? ( virtual/opengl virtual/glu ) !gnustep-base/gnustep-back-art !gnustep-base/gnustep-back-cairo +DESCRIPTION=Default X11 back-end component for the GNUstep GUI Library +EAPI=7 +HOMEPAGE=http://www.gnustep.org +IUSE=opengl xim debug doc +KEYWORDS=~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=LGPL-2.1 +RDEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) =gnustep-base/gnustep-gui-0.29* >=media-libs/freetype-2.1.9 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXmu x11-libs/libXt x11-libs/libXft x11-libs/libXrender opengl? ( virtual/opengl virtual/glu ) !gnustep-base/gnustep-back-art !gnustep-base/gnustep-back-cairo +SLOT=0 +SRC_URI=ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-0.29.0.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=0693a3037342291140c4bf620c9a576a diff --git a/metadata/md5-cache/gnustep-base/gnustep-base-1.28.0 b/metadata/md5-cache/gnustep-base/gnustep-base-1.28.0 new file mode 100644 index 000000000000..9d7915ef8789 --- /dev/null +++ b/metadata/md5-cache/gnustep-base/gnustep-base-1.28.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) >=gnustep-base/gnustep-make-2.6.0 gnutls? ( net-libs/gnutls ) icu? ( >=dev-libs/icu-49.0:= ) !libffi? ( dev-libs/ffcall gnustep-base/gnustep-make[-native-exceptions] ) libffi? ( dev-libs/libffi ) >=dev-libs/libxml2-2.6 >=dev-libs/libxslt-1.1 >=dev-libs/gmp-4.1:= >=sys-libs/zlib-1.2 zeroconf? ( net-dns/avahi ) virtual/pkgconfig +DESCRIPTION=A library of general-purpose, non-graphical Objective C objects +EAPI=7 +HOMEPAGE=http://www.gnustep.org +IUSE=+gnutls +icu +libffi zeroconf debug doc +KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris +LICENSE=GPL-2 LGPL-2.1 +RDEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) >=gnustep-base/gnustep-make-2.6.0 gnutls? ( net-libs/gnutls ) icu? ( >=dev-libs/icu-49.0:= ) !libffi? ( dev-libs/ffcall gnustep-base/gnustep-make[-native-exceptions] ) libffi? ( dev-libs/libffi ) >=dev-libs/libxml2-2.6 >=dev-libs/libxslt-1.1 >=dev-libs/gmp-4.1:= >=sys-libs/zlib-1.2 zeroconf? ( net-dns/avahi ) +SLOT=0/1.28 +SRC_URI=ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-base-1.28.0.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=a834f5d9279669eb3b1b5237e3402b66 diff --git a/metadata/md5-cache/gnustep-base/gnustep-gui-0.29.0 b/metadata/md5-cache/gnustep-base/gnustep-gui-0.29.0 new file mode 100644 index 000000000000..df7cf3414f5f --- /dev/null +++ b/metadata/md5-cache/gnustep-base/gnustep-gui-0.29.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) app-text/aspell >=gnustep-base/gnustep-base-1.28.0:=[icu?] media-libs/audiofile >=media-libs/tiff-3:= x11-libs/libXt cups? ( >=net-print/cups-1.7.4:= ) gif? ( >=media-libs/giflib-4.1:= ) icu? ( dev-libs/icu:= ) jpeg? ( virtual/jpeg:= ) png? ( >=media-libs/libpng-1.2:= ) speech? ( app-accessibility/flite ) +DESCRIPTION=Library of GUI classes written in Obj-C +EAPI=7 +HOMEPAGE=http://www.gnustep.org/ +IUSE=cups gif icu jpeg png speech debug doc test +KEYWORDS=~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=LGPL-2.1 +RDEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) app-text/aspell >=gnustep-base/gnustep-base-1.28.0:=[icu?] media-libs/audiofile >=media-libs/tiff-3:= x11-libs/libXt cups? ( >=net-print/cups-1.7.4:= ) gif? ( >=media-libs/giflib-4.1:= ) icu? ( dev-libs/icu:= ) jpeg? ( virtual/jpeg:= ) png? ( >=media-libs/libpng-1.2:= ) speech? ( app-accessibility/flite ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-gui-0.29.0.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=077e4fb826f62975a2ecbce7f45b78a1 diff --git a/metadata/md5-cache/gnustep-base/gnustep-make-2.9.0 b/metadata/md5-cache/gnustep-base/gnustep-make-2.9.0 new file mode 100644 index 000000000000..9ba76f57c1a2 --- /dev/null +++ b/metadata/md5-cache/gnustep-base/gnustep-make-2.9.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) >=sys-devel/make-3.75 libobjc2? ( gnustep-base/libobjc2 sys-devel/clang:* ) !libobjc2? ( !!gnustep-base/libobjc2 || ( sys-devel/gcc:*[objc] sys-devel/clang:* ) ) +DESCRIPTION=GNUstep Makefile Package +EAPI=7 +HOMEPAGE=http://www.gnustep.org +IUSE=libobjc2 native-exceptions debug doc +KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) >=sys-devel/make-3.75 libobjc2? ( gnustep-base/libobjc2 sys-devel/clang:* ) !libobjc2? ( !!gnustep-base/libobjc2 || ( sys-devel/gcc:*[objc] sys-devel/clang:* ) ) +SLOT=0 +SRC_URI=ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-make-2.9.0.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e prefix de7d8e2b10085ed5ff09ad70e4753e5c toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=d3483a43fbe1cc91fb7618818dea0a0e diff --git a/metadata/md5-cache/gnustep-libs/sope-4.1.1 b/metadata/md5-cache/gnustep-libs/sope-5.1.1 index 9c40b26924d0..333d9fb2bc3f 100644 --- a/metadata/md5-cache/gnustep-libs/sope-4.1.1 +++ b/metadata/md5-cache/gnustep-libs/sope-5.1.1 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2 RDEPEND=sys-libs/zlib ldap? ( net-nds/openldap ) gnutls? ( net-libs/gnutls:= ) !gnutls? ( dev-libs/openssl:0= ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) xml? ( dev-libs/libxml2:2 ) >=gnustep-base/gnustep-make-2.0 virtual/gnustep-back SLOT=0 -SRC_URI=https://github.com/inverse-inc/sope/archive/SOPE-4.1.1.tar.gz -> sope-4.1.1.tar.gz +SRC_URI=https://github.com/inverse-inc/sope/archive/SOPE-5.1.1.tar.gz -> sope-5.1.1.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnustep-2 1051c5dfb0d9429bef576c60536dac89 gnustep-base 49f1b9591be3a4bf8eeb1f3a07605a2a l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2b731bc99b0f18f4b2e0ede482608d25 diff --git a/metadata/md5-cache/gui-apps/wcm-0.6.0 b/metadata/md5-cache/gui-apps/wcm-0.6.0 deleted file mode 100644 index d83b8e9d08e2..000000000000 --- a/metadata/md5-cache/gui-apps/wcm-0.6.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-libs/wayland-protocols virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array -DEFINED_PHASES=compile configure install test -DEPEND=dev-libs/libevdev dev-libs/libxml2 dev-cpp/gtkmm:3.0[wayland] >=gui-wm/wayfire-0.6 -DESCRIPTION=Wayfire Config Manager -EAPI=7 -HOMEPAGE=https://github.com/WayfireWM/wcm -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=MIT -RDEPEND=dev-libs/libevdev dev-libs/libxml2 dev-cpp/gtkmm:3.0[wayland] >=gui-wm/wayfire-0.6 -SLOT=0 -SRC_URI=https://github.com/WayfireWM/wcm/archive/v0.6.0.tar.gz -> wcm-0.6.0.tar.gz -_eclasses_=meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=7c42d252399692e130dd77b20694ed11 diff --git a/metadata/md5-cache/gui-apps/wf-shell-0.6.1 b/metadata/md5-cache/gui-apps/wf-shell-0.6.1 deleted file mode 100644 index 7f72336da761..000000000000 --- a/metadata/md5-cache/gui-apps/wf-shell-0.6.1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-libs/wayland-protocols virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array -DEFINED_PHASES=compile configure install test -DEPEND=dev-cpp/gtkmm:3.0=[wayland] dev-libs/gobject-introspection gui-libs/gtk-layer-shell >=gui-wm/wayfire-0.6 pulseaudio? ( media-sound/pulseaudio ) -DESCRIPTION=A compiz like 3D wayland compositor -EAPI=7 -HOMEPAGE=https://github.com/WayfireWM/wf-shell -IUSE=+pulseaudio -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=MIT -RDEPEND=dev-cpp/gtkmm:3.0=[wayland] dev-libs/gobject-introspection gui-libs/gtk-layer-shell >=gui-wm/wayfire-0.6 pulseaudio? ( media-sound/pulseaudio ) gui-apps/wayland-logout -SLOT=0 -SRC_URI=https://github.com/WayfireWM/wf-shell/releases/download/v0.6.1/wf-shell-0.6.1.tar.xz -_eclasses_=meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=460b3363016f9089bb001deb6dcd8fb9 diff --git a/metadata/md5-cache/gui-libs/wayfire-plugins-extra-0.6.0-r1 b/metadata/md5-cache/gui-libs/wayfire-plugins-extra-0.6.0-r1 deleted file mode 100644 index 4e1d7def717e..000000000000 --- a/metadata/md5-cache/gui-libs/wayfire-plugins-extra-0.6.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-libs/wayland-protocols virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array -DEFINED_PHASES=compile configure install test -DEPEND=dev-cpp/glibmm:2 >=gui-libs/wlroots-0.11.0 >=gui-wm/wayfire-0.6 x11-libs/cairo -DESCRIPTION=extra plugins for wayfire -EAPI=7 -HOMEPAGE=https://github.com/WayfireWM/wayfire-plugins-extra -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=MIT -RDEPEND=dev-cpp/glibmm:2 >=gui-libs/wlroots-0.11.0 >=gui-wm/wayfire-0.6 x11-libs/cairo -SLOT=0 -SRC_URI=https://github.com/WayfireWM/wayfire-plugins-extra/archive/v0.6.0.tar.gz -> wayfire-plugins-extra-0.6.0.tar.gz -_eclasses_=meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=1b1b66a5ff6dea39c1f30dad973229df diff --git a/metadata/md5-cache/gui-libs/wayfire-plugins-extra-9999 b/metadata/md5-cache/gui-libs/wayfire-plugins-extra-9999 index 13e06d3ec402..91b758c1bd60 100644 --- a/metadata/md5-cache/gui-libs/wayfire-plugins-extra-9999 +++ b/metadata/md5-cache/gui-libs/wayfire-plugins-extra-9999 @@ -1,12 +1,12 @@ BDEPEND=dev-libs/wayland-protocols virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install test unpack -DEPEND=dev-cpp/glibmm:2 >=gui-libs/wlroots-0.11.0 >=gui-wm/wayfire-9999 x11-libs/cairo +DEPEND=dev-cpp/glibmm:2 ~gui-libs/wlroots-9999:= ~gui-wm/wayfire-9999 x11-libs/cairo DESCRIPTION=extra plugins for wayfire EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wayfire-plugins-extra LICENSE=MIT PROPERTIES=live -RDEPEND=dev-cpp/glibmm:2 >=gui-libs/wlroots-0.11.0 >=gui-wm/wayfire-9999 x11-libs/cairo +RDEPEND=dev-cpp/glibmm:2 ~gui-libs/wlroots-9999:= ~gui-wm/wayfire-9999 x11-libs/cairo SLOT=0 _eclasses_=git-r3 b8e8c92aa5fe8df7187e466138eb4e52 meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=11341e6a1ec006f1e4e4c18a12f26e44 +_md5_=bf51e30b7a3ba75c0b6a74a5a5265625 diff --git a/metadata/md5-cache/gui-libs/wf-config-0.6.0 b/metadata/md5-cache/gui-libs/wf-config-0.7.1 index 112ee611edd9..d6feeecb5e73 100644 --- a/metadata/md5-cache/gui-libs/wf-config-0.6.0 +++ b/metadata/md5-cache/gui-libs/wf-config-0.7.1 @@ -1,13 +1,13 @@ BDEPEND=dev-libs/wayland-protocols virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array DEFINED_PHASES=compile configure install test -DEPEND=dev-libs/libevdev dev-libs/libxml2 >=gui-libs/wlroots-0.12.0 media-libs/glm +DEPEND=dev-libs/libevdev dev-libs/libxml2 >=gui-libs/wlroots-0.13.0:= <gui-libs/wlroots-0.14.0:= media-libs/glm DESCRIPTION=library for managing wayfire configuration files EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wf-config KEYWORDS=~amd64 ~arm64 ~x86 LICENSE=MIT -RDEPEND=dev-libs/libevdev dev-libs/libxml2 >=gui-libs/wlroots-0.12.0 media-libs/glm +RDEPEND=dev-libs/libevdev dev-libs/libxml2 >=gui-libs/wlroots-0.13.0:= <gui-libs/wlroots-0.14.0:= media-libs/glm SLOT=0 -SRC_URI=https://github.com/WayfireWM/wf-config/releases/download/0.6.0/wf-config-0.6.0.tar.xz +SRC_URI=https://github.com/WayfireWM/wf-config/releases/download/v0.7.1/wf-config-0.7.1.tar.xz _eclasses_=meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=b9a061d2c51629c1cbf5aeeec15ffcae +_md5_=b05001c67ab20b5c7ceb4a1e25521780 diff --git a/metadata/md5-cache/gui-libs/wf-config-9999 b/metadata/md5-cache/gui-libs/wf-config-9999 index 7b5029de701d..4208a0ca7dca 100644 --- a/metadata/md5-cache/gui-libs/wf-config-9999 +++ b/metadata/md5-cache/gui-libs/wf-config-9999 @@ -1,12 +1,12 @@ BDEPEND=dev-libs/wayland-protocols virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install test unpack -DEPEND=dev-libs/libevdev dev-libs/libxml2 >=gui-libs/wlroots-0.12.0 media-libs/glm +DEPEND=dev-libs/libevdev dev-libs/libxml2 ~gui-libs/wlroots-9999:= media-libs/glm DESCRIPTION=library for managing wayfire configuration files EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wf-config LICENSE=MIT PROPERTIES=live -RDEPEND=dev-libs/libevdev dev-libs/libxml2 >=gui-libs/wlroots-0.12.0 media-libs/glm +RDEPEND=dev-libs/libevdev dev-libs/libxml2 ~gui-libs/wlroots-9999:= media-libs/glm SLOT=0 _eclasses_=git-r3 b8e8c92aa5fe8df7187e466138eb4e52 meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=79060abf03e36d625435fdf4edfebdbc +_md5_=eb3fdfc7160b5fae4fbc893c0d5c8698 diff --git a/metadata/md5-cache/gui-wm/wayfire-0.6.0 b/metadata/md5-cache/gui-wm/wayfire-0.7.1 index 7d349b0322b3..6a2f6495711e 100644 --- a/metadata/md5-cache/gui-wm/wayfire-0.6.0 +++ b/metadata/md5-cache/gui-wm/wayfire-0.7.1 @@ -1,15 +1,15 @@ BDEPEND=dev-libs/wayland-protocols virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array DEFINED_PHASES=compile configure install postinst test -DEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] X? ( x11-libs/libxkbcommon:=[X] ) x11-libs/pixman gles? ( media-libs/libglvnd[X?] ) system-wfconfig? ( >=gui-libs/wf-config-0.6 ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( >=gui-libs/wlroots-0.12.0[elogind=,systemd=,X?] ) !system-wlroots? ( !gui-libs/wlroots ) +DEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] X? ( x11-libs/libxkbcommon:=[X] ) x11-libs/pixman gles? ( media-libs/libglvnd[X?] ) system-wfconfig? ( >=gui-libs/wf-config-0.7.1 <gui-libs/wf-config-0.8.0 ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( >=gui-libs/wlroots-0.13.0:=[elogind=,systemd=,X?] <gui-libs/wlroots-0.14.0:= ) !system-wlroots? ( !gui-libs/wlroots ) DESCRIPTION=compiz like 3D wayland compositor EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wayfire IUSE=+gles +system-wfconfig +system-wlroots elogind systemd X KEYWORDS=~amd64 ~arm64 ~x86 LICENSE=MIT -RDEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] X? ( x11-libs/libxkbcommon:=[X] ) x11-libs/pixman gles? ( media-libs/libglvnd[X?] ) system-wfconfig? ( >=gui-libs/wf-config-0.6 ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( >=gui-libs/wlroots-0.12.0[elogind=,systemd=,X?] ) !system-wlroots? ( !gui-libs/wlroots ) elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) x11-misc/xkeyboard-config +RDEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] X? ( x11-libs/libxkbcommon:=[X] ) x11-libs/pixman gles? ( media-libs/libglvnd[X?] ) system-wfconfig? ( >=gui-libs/wf-config-0.7.1 <gui-libs/wf-config-0.8.0 ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( >=gui-libs/wlroots-0.13.0:=[elogind=,systemd=,X?] <gui-libs/wlroots-0.14.0:= ) !system-wlroots? ( !gui-libs/wlroots ) elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) x11-misc/xkeyboard-config REQUIRED_USE=?? ( elogind systemd ) SLOT=0 -SRC_URI=https://github.com/WayfireWM/wayfire/releases/download/0.6.0/wayfire-0.6.0.tar.xz +SRC_URI=https://github.com/WayfireWM/wayfire/releases/download/v0.7.1/wayfire-0.7.1.tar.xz _eclasses_=meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=669ea7b3b1873ca3deb5ae8f8789f4cf +_md5_=5bc619ff4bb240ce795f3b6494d52eca diff --git a/metadata/md5-cache/gui-wm/wayfire-9999 b/metadata/md5-cache/gui-wm/wayfire-9999 index 339af2a6316f..6bd1d31ecfa8 100644 --- a/metadata/md5-cache/gui-wm/wayfire-9999 +++ b/metadata/md5-cache/gui-wm/wayfire-9999 @@ -1,14 +1,13 @@ BDEPEND=dev-libs/wayland-protocols virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst test unpack -DEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] X? ( x11-libs/libxkbcommon:=[X] ) x11-libs/pixman gles? ( media-libs/libglvnd[X?] ) system-wfconfig? ( >=gui-libs/wf-config-9999 ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( >=gui-libs/wlroots-0.12.0[elogind=,systemd=,X?] ) !system-wlroots? ( !gui-libs/wlroots ) +DEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libglvnd[X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] x11-libs/libxkbcommon:=[X?] x11-libs/pixman X? ( x11-libs/libxcb ) system-wfconfig? ( ~gui-libs/wf-config-9999:= ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( ~gui-libs/wlroots-9999:=[X?] ) !system-wlroots? ( !gui-libs/wlroots ) DESCRIPTION=compiz like 3D wayland compositor EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wayfire -IUSE=+gles +system-wfconfig +system-wlroots elogind systemd X +IUSE=+gles +system-wfconfig +system-wlroots X LICENSE=MIT PROPERTIES=live -RDEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] X? ( x11-libs/libxkbcommon:=[X] ) x11-libs/pixman gles? ( media-libs/libglvnd[X?] ) system-wfconfig? ( >=gui-libs/wf-config-9999 ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( >=gui-libs/wlroots-0.12.0[elogind=,systemd=,X?] ) !system-wlroots? ( !gui-libs/wlroots ) elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) x11-misc/xkeyboard-config -REQUIRED_USE=?? ( elogind systemd ) +RDEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libglvnd[X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] x11-libs/libxkbcommon:=[X?] x11-libs/pixman X? ( x11-libs/libxcb ) system-wfconfig? ( ~gui-libs/wf-config-9999:= ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( ~gui-libs/wlroots-9999:=[X?] ) !system-wlroots? ( !gui-libs/wlroots ) x11-misc/xkeyboard-config SLOT=0 _eclasses_=git-r3 b8e8c92aa5fe8df7187e466138eb4e52 meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=16e1a634d95c1dd67268bb073c6bb4c5 +_md5_=cadecfda826767b99a192674d2d5cd48 diff --git a/metadata/md5-cache/mail-mta/notqmail-1.08-r3 b/metadata/md5-cache/mail-mta/notqmail-1.08-r3 index 15267f3d38c8..7171b340981d 100644 --- a/metadata/md5-cache/mail-mta/notqmail-1.08-r3 +++ b/metadata/md5-cache/mail-mta/notqmail-1.08-r3 @@ -4,7 +4,7 @@ DEPEND=net-dns/libidn2 net-mail/queue-repair sys-apps/gentoo-functions ssl? ( >= DESCRIPTION=qmail -- a secure, reliable, efficient, simple message transfer agent EAPI=7 HOMEPAGE=https://notqmail.org https://cr.yp.to/qmail.html http://qmail.org -IUSE=authcram gencertdaily highvolume -pop3 qmail-spp ssl test vanilla +IUSE=authcram gencertdaily highvolume pop3 qmail-spp ssl test vanilla KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=public-domain RDEPEND=net-dns/libidn2 net-mail/queue-repair sys-apps/gentoo-functions ssl? ( >=dev-libs/openssl-1.1:0= ) test? ( dev-libs/check ) acct-group/nofiles acct-group/qmail acct-user/alias acct-user/qmaild acct-user/qmaill acct-user/qmailp acct-user/qmailq acct-user/qmailr acct-user/qmails sys-apps/ucspi-tcp virtual/checkpassword virtual/daemontools authcram? ( >=net-mail/cmd5checkpw-0.30 ) ssl? ( pop3? ( sys-apps/ucspi-ssl ) ) !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/msmtp[mta] !mail-mta/nullmailer !mail-mta/opensmtpd !mail-mta/postfix !mail-mta/qmail-ldap !mail-mta/netqmail !mail-mta/sendmail !mail-mta/ssmtp[mta] @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/notqmail/notqmail/releases/download/notqmail-1.08/notqmail-1.08.tar.xz https://github.com/DerDakon/genqmail/releases/download/genqmail-20200817/genqmail-20200817.tar.bz2 https://www.ckdhr.com/ckd/qmail-103.patch !vanilla? ( highvolume? ( https://github.com/notqmail/notqmail/commit/3a22b45974ddd1230da0dfa21f886c3401bee020.patch -> notqmail-1.08-big-todo.patch ) qmail-spp? ( ssl? ( https://github.com/notqmail/notqmail/commit/c467ba6880aaecfe1d3f592a7738de88cb5ac79a.patch -> notqmail-1.08-auth.patch https://github.com/notqmail/notqmail/commit/d950cc34491afe90432cafcaeda61d1c1a9508e9.patch -> notqmail-1.08-tls-spp.patch ) !ssl? ( https://github.com/notqmail/notqmail/commit/b36d52a0dd7315a969f2a9a7455717466e45be23.patch -> notqmail-1.08-spp.patch ) ) ssl? ( https://github.com/notqmail/notqmail/commit/0dc6a3aa9cb3440fe589ca5384ea27d683f05625.patch -> notqmail-1.08-tls-20200107.patch ) !ssl? ( https://github.com/notqmail/notqmail/commit/c467ba6880aaecfe1d3f592a7738de88cb5ac79a.patch -> notqmail-1.08-auth.patch ) ) _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e fixheadtails 1721997ed44d035654efe12da50797ef flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e qmail b35b6b912311fb36e8fff96eaeb6bcf7 systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=855a2980147fc950f282a988a556a183 +_md5_=f2ea0116671411061667cf9eabb6a878 diff --git a/metadata/md5-cache/mail-mta/notqmail-9999 b/metadata/md5-cache/mail-mta/notqmail-9999 index 9348c8228b5d..8222a02d280f 100644 --- a/metadata/md5-cache/mail-mta/notqmail-9999 +++ b/metadata/md5-cache/mail-mta/notqmail-9999 @@ -4,7 +4,7 @@ DEPEND=net-dns/libidn2 net-mail/queue-repair sys-apps/gentoo-functions ssl? ( >= DESCRIPTION=qmail -- a secure, reliable, efficient, simple message transfer agent EAPI=7 HOMEPAGE=https://notqmail.org https://cr.yp.to/qmail.html http://qmail.org -IUSE=authcram gencertdaily highvolume -pop3 qmail-spp ssl test vanilla +IUSE=authcram gencertdaily highvolume pop3 qmail-spp ssl test vanilla LICENSE=public-domain PROPERTIES=live RDEPEND=net-dns/libidn2 net-mail/queue-repair sys-apps/gentoo-functions ssl? ( >=dev-libs/openssl-1.1:0= ) test? ( dev-libs/check ) acct-group/nofiles acct-group/qmail acct-user/alias acct-user/qmaild acct-user/qmaill acct-user/qmailp acct-user/qmailq acct-user/qmailr acct-user/qmails sys-apps/ucspi-tcp virtual/checkpassword virtual/daemontools authcram? ( >=net-mail/cmd5checkpw-0.30 ) ssl? ( pop3? ( sys-apps/ucspi-ssl ) ) !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/msmtp[mta] !mail-mta/nullmailer !mail-mta/opensmtpd !mail-mta/postfix !mail-mta/qmail-ldap !mail-mta/netqmail !mail-mta/sendmail !mail-mta/ssmtp[mta] @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/DerDakon/genqmail/releases/download/genqmail-20200817/genqmail-20200817.tar.bz2 https://www.ckdhr.com/ckd/qmail-103.patch !vanilla? ( highvolume? ( https://github.com/notqmail/notqmail/commit/3a22b45974ddd1230da0dfa21f886c3401bee020.patch -> notqmail-1.08-big-todo.patch ) qmail-spp? ( ssl? ( https://github.com/notqmail/notqmail/commit/c467ba6880aaecfe1d3f592a7738de88cb5ac79a.patch -> notqmail-1.08-auth.patch https://github.com/notqmail/notqmail/commit/d950cc34491afe90432cafcaeda61d1c1a9508e9.patch -> notqmail-1.08-tls-spp.patch ) !ssl? ( https://github.com/notqmail/notqmail/commit/b36d52a0dd7315a969f2a9a7455717466e45be23.patch -> notqmail-1.08-spp.patch ) ) ssl? ( https://github.com/notqmail/notqmail/commit/0dc6a3aa9cb3440fe589ca5384ea27d683f05625.patch -> notqmail-1.08-tls-20200107.patch ) !ssl? ( https://github.com/notqmail/notqmail/commit/c467ba6880aaecfe1d3f592a7738de88cb5ac79a.patch -> notqmail-1.08-auth.patch ) ) _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e fixheadtails 1721997ed44d035654efe12da50797ef flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e qmail b35b6b912311fb36e8fff96eaeb6bcf7 systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=ff071d08b957c34dfc76fe3987e1364f +_md5_=15b2c13c106bb51722415574a9811fd1 diff --git a/metadata/md5-cache/media-fonts/fantasque-sans-mono-1.8.0 b/metadata/md5-cache/media-fonts/fantasque-sans-mono-1.8.0 index 58e5b6318087..8e75a0f2312d 100644 --- a/metadata/md5-cache/media-fonts/fantasque-sans-mono-1.8.0 +++ b/metadata/md5-cache/media-fonts/fantasque-sans-mono-1.8.0 @@ -4,9 +4,9 @@ DESCRIPTION=A font family with a great monospaced variant for programmers EAPI=7 HOMEPAGE=https://github.com/belluzj/fantasque-sans IUSE=X -KEYWORDS=amd64 arm ~arm64 x86 +KEYWORDS=amd64 arm arm64 x86 LICENSE=OFL-1.1 SLOT=0 SRC_URI=https://github.com/belluzj/fantasque-sans/releases/download/v1.8.0/FantasqueSansMono-Normal.tar.gz -> fantasque-sans-mono-1.8.0.tar.gz _eclasses_=font 0667878c2b594871023dd1833d05996f -_md5_=cea2a8bf84bfabd0ada1b52d7fa1c985 +_md5_=2dd731a0076c8cc804ccc97d3cfb446d diff --git a/metadata/md5-cache/media-fonts/unifont-13.0.01 b/metadata/md5-cache/media-fonts/unifont-13.0.01-r1 index 3a7e98eb646f..a80cfb05c192 100644 --- a/metadata/md5-cache/media-fonts/unifont-13.0.01 +++ b/metadata/md5-cache/media-fonts/unifont-13.0.01-r1 @@ -1,4 +1,4 @@ -BDEPEND=fontforge? ( app-text/bdf2psf dev-lang/perl dev-perl/GD[png(-)] media-gfx/fontforge x11-apps/bdftopcf ) X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) +BDEPEND=fontforge? ( app-text/bdf2psf dev-lang/perl dev-perl/GD[png(+)] media-gfx/fontforge x11-apps/bdftopcf ) X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) DEFINED_PHASES=compile install postinst postrm setup DESCRIPTION=GNU Unifont - a Pan-Unicode X11 bitmap iso10646 font EAPI=7 @@ -6,8 +6,8 @@ HOMEPAGE=http://unifoundry.com/ IUSE=fontforge utils X KEYWORDS=~alpha amd64 arm ~ia64 ppc ppc64 ~s390 sparc x86 LICENSE=GPL-2 -RDEPEND=utils? ( dev-lang/perl dev-perl/GD[png(-)] ) +RDEPEND=utils? ( dev-lang/perl dev-perl/GD[png(+)] ) SLOT=0 SRC_URI=mirror://gnu/unifont/unifont-13.0.01/unifont-13.0.01.tar.gz _eclasses_=font 0667878c2b594871023dd1833d05996f multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=e5c3ec2ada22de75d72bca4090d8acc2 +_md5_=e6eb4dd1511d8dcfa14f1cb8a0a40182 diff --git a/metadata/md5-cache/media-gfx/flam3-3.1.1 b/metadata/md5-cache/media-gfx/flam3-3.1.1 index a293e5139bcc..f85d0399840c 100644 --- a/metadata/md5-cache/media-gfx/flam3-3.1.1 +++ b/metadata/md5-cache/media-gfx/flam3-3.1.1 @@ -1,13 +1,13 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install prepare -DEPEND=dev-libs/libxml2 media-libs/libpng:= virtual/jpeg:= !<=x11-misc/electricsheep-2.6.8-r2 sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=dev-libs/libxml2 media-libs/libpng:= virtual/jpeg:= !<=x11-misc/electricsheep-2.6.8-r2 DESCRIPTION=Tools and a library for creating flame fractal images -EAPI=6 +EAPI=7 HOMEPAGE=https://flam3.com/ -IUSE=static-libs KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-libs/libxml2 media-libs/libpng:= virtual/jpeg:= !<=x11-misc/electricsheep-2.6.8-r2 SLOT=0 SRC_URI=https://github.com/scottdraves/flam3/archive/v3.1.1.tar.gz -> flam3-3.1.1.tar.gz -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=ddf744bd5617ce36e7ef2c287558e98d +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=df235379a215d477eb1688a5d7696081 diff --git a/metadata/md5-cache/media-gfx/freecad-0.19.1 b/metadata/md5-cache/media-gfx/freecad-0.19.1 index 6231abff4f2e..896a1849f0ab 100644 --- a/metadata/md5-cache/media-gfx/freecad-0.19.1 +++ b/metadata/md5-cache/media-gfx/freecad-0.19.1 @@ -4,7 +4,7 @@ DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-e DESCRIPTION=QT based Computer Aided Design application EAPI=7 HOMEPAGE=https://www.freecadweb.org/ https://github.com/FreeCAD/FreeCAD -IUSE=debug headless pcl test +addonmgr +arch +drawing +fem +idf +image +inspection +material +mesh +openscad +part-design +path +points +raytracing +robot +show +spreadsheet +surface +techdraw +tux -cloud -plot -ship python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +IUSE=debug headless pcl test +addonmgr +arch +drawing +fem +idf +image +inspection +material +mesh +openscad +part-design +path +points +raytracing +robot +show +spreadsheet +surface +techdraw +tux cloud plot ship python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=~amd64 LICENSE=LGPL-2 CC-BY-SA-4.0 RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) >=dev-cpp/eigen-3.3.1:3 dev-libs/OpenNI2[opengl(+)] dev-libs/libspnav[X] dev-libs/xerces-c dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 >=media-libs/coin-4.0.0 media-libs/freetype media-libs/qhull sci-libs/flann[openmp] >=sci-libs/med-4.0.0-r1[python,python_single_target_python3_6(-)?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] sci-libs/opencascade:=[vtk(+)] sci-libs/orocos_kdl:= sys-libs/zlib virtual/glu virtual/libusb:1 virtual/opengl cloud? ( dev-libs/openssl:= net-misc/curl ) fem? ( <sci-libs/vtk-9[boost,python,qt5,rendering,python_single_target_python3_6(-)?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] ) mesh? ( sci-libs/hdf5:=[fortran,zlib] ) openscad? ( media-gfx/openscad ) pcl? ( >=sci-libs/pcl-1.8.1:=[opengl,openni2(+),qt5(+),vtk(+)] ) python_single_target_python3_6? ( dev-libs/boost:=[python,threads,python_targets_python3_6(-)] dev-python/matplotlib[python_targets_python3_6(-)] dev-python/numpy[python_targets_python3_6(-)] >=dev-python/pivy-0.6.5[python_targets_python3_6(-)] dev-python/pyside2[gui,svg,python_targets_python3_6(-)] dev-python/shiboken2[python_targets_python3_6(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_6(-)] ) mesh? ( dev-python/pybind11[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( dev-libs/boost:=[python,threads,python_targets_python3_7(-)] dev-python/matplotlib[python_targets_python3_7(-)] dev-python/numpy[python_targets_python3_7(-)] >=dev-python/pivy-0.6.5[python_targets_python3_7(-)] dev-python/pyside2[gui,svg,python_targets_python3_7(-)] dev-python/shiboken2[python_targets_python3_7(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_7(-)] ) mesh? ( dev-python/pybind11[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-libs/boost:=[python,threads,python_targets_python3_8(-)] dev-python/matplotlib[python_targets_python3_8(-)] dev-python/numpy[python_targets_python3_8(-)] >=dev-python/pivy-0.6.5[python_targets_python3_8(-)] dev-python/pyside2[gui,svg,python_targets_python3_8(-)] dev-python/shiboken2[python_targets_python3_8(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_8(-)] ) mesh? ( dev-python/pybind11[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-libs/boost:=[python,threads,python_targets_python3_9(-)] dev-python/matplotlib[python_targets_python3_9(-)] dev-python/numpy[python_targets_python3_9(-)] >=dev-python/pivy-0.6.5[python_targets_python3_9(-)] dev-python/pyside2[gui,svg,python_targets_python3_9(-)] dev-python/shiboken2[python_targets_python3_9(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_9(-)] ) mesh? ( dev-python/pybind11[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-libs/boost:=[python,threads,python_targets_python3_10(-)] dev-python/matplotlib[python_targets_python3_10(-)] dev-python/numpy[python_targets_python3_10(-)] >=dev-python/pivy-0.6.5[python_targets_python3_10(-)] dev-python/pyside2[gui,svg,python_targets_python3_10(-)] dev-python/shiboken2[python_targets_python3_10(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_10(-)] ) mesh? ( dev-python/pybind11[python_targets_python3_10(-)] ) ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/FreeCAD/FreeCAD/archive/0.19.1.tar.gz -> freecad-0.19.1.tar.gz _eclasses_=check-reqs 97b90bd8fb799993925e6b3a683184e5 cmake 518e4c9a6a38dfd7afc54b6a7c5de3da desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f optfeature e142388219c7fee6ff016fe1c78a10a5 python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fa7cccd5ac75b11ca2302b5524ea4520 +_md5_=f9b28631b36bcc8fcdda342421865673 diff --git a/metadata/md5-cache/media-gfx/freecad-0.19.2 b/metadata/md5-cache/media-gfx/freecad-0.19.2 index 6b91af7ed5ec..640bf5015c44 100644 --- a/metadata/md5-cache/media-gfx/freecad-0.19.2 +++ b/metadata/md5-cache/media-gfx/freecad-0.19.2 @@ -4,7 +4,7 @@ DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-e DESCRIPTION=QT based Computer Aided Design application EAPI=7 HOMEPAGE=https://www.freecadweb.org/ https://github.com/FreeCAD/FreeCAD -IUSE=debug headless pcl test +addonmgr +fem +idf +image +inspection +material +openscad +part-design +path +points +raytracing +robot +show +surface +techdraw +tux -cloud -plot -ship python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +IUSE=debug headless pcl test +addonmgr +fem +idf +image +inspection +material +openscad +part-design +path +points +raytracing +robot +show +surface +techdraw +tux cloud plot ship python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=~amd64 LICENSE=LGPL-2 CC-BY-SA-4.0 RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) >=dev-cpp/eigen-3.3.1:3 dev-libs/OpenNI2[opengl(+)] dev-libs/libspnav[X] dev-libs/xerces-c[icu] dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 >=media-libs/coin-4.0.0 media-libs/freetype media-libs/qhull sci-libs/flann[openmp] sci-libs/hdf5:=[fortran,zlib] >=sci-libs/med-4.0.0-r1[python,python_single_target_python3_6(-)?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] sci-libs/opencascade:=[vtk(+)] sci-libs/orocos_kdl:= sys-libs/zlib virtual/glu virtual/libusb:1 virtual/opengl cloud? ( dev-libs/openssl:= net-misc/curl ) fem? ( <sci-libs/vtk-9[boost,python,qt5,rendering,python_single_target_python3_6(-)?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] ) openscad? ( media-gfx/openscad ) pcl? ( >=sci-libs/pcl-1.8.1:=[opengl,openni2(+),qt5(+),vtk(+)] ) python_single_target_python3_6? ( dev-libs/boost:=[python,threads,python_targets_python3_6(-)] dev-python/matplotlib[python_targets_python3_6(-)] dev-python/numpy[python_targets_python3_6(-)] >=dev-python/pivy-0.6.5[python_targets_python3_6(-)] dev-python/pybind11[python_targets_python3_6(-)] dev-python/pyside2[gui,svg,python_targets_python3_6(-)] dev-python/shiboken2[python_targets_python3_6(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_6(-)] ) fem? ( dev-python/ply[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( dev-libs/boost:=[python,threads,python_targets_python3_7(-)] dev-python/matplotlib[python_targets_python3_7(-)] dev-python/numpy[python_targets_python3_7(-)] >=dev-python/pivy-0.6.5[python_targets_python3_7(-)] dev-python/pybind11[python_targets_python3_7(-)] dev-python/pyside2[gui,svg,python_targets_python3_7(-)] dev-python/shiboken2[python_targets_python3_7(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_7(-)] ) fem? ( dev-python/ply[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-libs/boost:=[python,threads,python_targets_python3_8(-)] dev-python/matplotlib[python_targets_python3_8(-)] dev-python/numpy[python_targets_python3_8(-)] >=dev-python/pivy-0.6.5[python_targets_python3_8(-)] dev-python/pybind11[python_targets_python3_8(-)] dev-python/pyside2[gui,svg,python_targets_python3_8(-)] dev-python/shiboken2[python_targets_python3_8(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_8(-)] ) fem? ( dev-python/ply[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-libs/boost:=[python,threads,python_targets_python3_9(-)] dev-python/matplotlib[python_targets_python3_9(-)] dev-python/numpy[python_targets_python3_9(-)] >=dev-python/pivy-0.6.5[python_targets_python3_9(-)] dev-python/pybind11[python_targets_python3_9(-)] dev-python/pyside2[gui,svg,python_targets_python3_9(-)] dev-python/shiboken2[python_targets_python3_9(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_9(-)] ) fem? ( dev-python/ply[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-libs/boost:=[python,threads,python_targets_python3_10(-)] dev-python/matplotlib[python_targets_python3_10(-)] dev-python/numpy[python_targets_python3_10(-)] >=dev-python/pivy-0.6.5[python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] dev-python/pyside2[gui,svg,python_targets_python3_10(-)] dev-python/shiboken2[python_targets_python3_10(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_10(-)] ) fem? ( dev-python/ply[python_targets_python3_10(-)] ) ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/FreeCAD/FreeCAD/archive/refs/tags/0.19.2.tar.gz -> freecad-0.19.2.tar.gz _eclasses_=check-reqs 97b90bd8fb799993925e6b3a683184e5 cmake 518e4c9a6a38dfd7afc54b6a7c5de3da desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f optfeature e142388219c7fee6ff016fe1c78a10a5 python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bb680464527481499bc737baad4da057 +_md5_=4fb107399efa856cf85706005aa6bd9f diff --git a/metadata/md5-cache/media-gfx/freecad-9999 b/metadata/md5-cache/media-gfx/freecad-9999 index 703faf01a96d..b1b953168b9a 100644 --- a/metadata/md5-cache/media-gfx/freecad-9999 +++ b/metadata/md5-cache/media-gfx/freecad-9999 @@ -4,7 +4,7 @@ DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-e DESCRIPTION=QT based Computer Aided Design application EAPI=7 HOMEPAGE=https://www.freecadweb.org/ https://github.com/FreeCAD/FreeCAD -IUSE=debug headless pcl test +addonmgr +fem +idf +image +inspection +material +openscad +part-design +path +points +raytracing +robot +show +surface +techdraw +tux -cloud -plot -ship python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +IUSE=debug headless pcl test +addonmgr +fem +idf +image +inspection +material +openscad +part-design +path +points +raytracing +robot +show +surface +techdraw +tux cloud plot ship python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 LICENSE=LGPL-2 CC-BY-SA-4.0 PROPERTIES=live RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) >=dev-cpp/eigen-3.3.1:3 dev-libs/OpenNI2[opengl(+)] dev-libs/libspnav[X] dev-libs/xerces-c[icu] dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwebengine:5[widgets] dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 >=media-libs/coin-4.0.0 media-libs/freetype media-libs/qhull sci-libs/flann[openmp] sci-libs/hdf5:=[fortran,zlib] >=sci-libs/med-4.0.0-r1[python,python_single_target_python3_6(-)?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] sci-libs/opencascade:=[vtk(+)] sci-libs/orocos_kdl:= sys-libs/zlib virtual/glu virtual/libusb:1 virtual/opengl cloud? ( dev-libs/openssl:= net-misc/curl ) fem? ( <sci-libs/vtk-9[boost,python,qt5,rendering,python_single_target_python3_6(-)?,python_single_target_python3_7(-)?,python_single_target_python3_8(-)?,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?] ) openscad? ( media-gfx/openscad ) pcl? ( >=sci-libs/pcl-1.8.1:=[opengl,openni2(+),qt5(+),vtk(+)] ) python_single_target_python3_6? ( dev-libs/boost:=[python,threads,python_targets_python3_6(-)] dev-python/matplotlib[python_targets_python3_6(-)] dev-python/numpy[python_targets_python3_6(-)] >=dev-python/pivy-0.6.5[python_targets_python3_6(-)] dev-python/pybind11[python_targets_python3_6(-)] dev-python/pyside2[gui,svg,python_targets_python3_6(-)] dev-python/shiboken2[python_targets_python3_6(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_6(-)] ) fem? ( dev-python/ply[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( dev-libs/boost:=[python,threads,python_targets_python3_7(-)] dev-python/matplotlib[python_targets_python3_7(-)] dev-python/numpy[python_targets_python3_7(-)] >=dev-python/pivy-0.6.5[python_targets_python3_7(-)] dev-python/pybind11[python_targets_python3_7(-)] dev-python/pyside2[gui,svg,python_targets_python3_7(-)] dev-python/shiboken2[python_targets_python3_7(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_7(-)] ) fem? ( dev-python/ply[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-libs/boost:=[python,threads,python_targets_python3_8(-)] dev-python/matplotlib[python_targets_python3_8(-)] dev-python/numpy[python_targets_python3_8(-)] >=dev-python/pivy-0.6.5[python_targets_python3_8(-)] dev-python/pybind11[python_targets_python3_8(-)] dev-python/pyside2[gui,svg,python_targets_python3_8(-)] dev-python/shiboken2[python_targets_python3_8(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_8(-)] ) fem? ( dev-python/ply[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-libs/boost:=[python,threads,python_targets_python3_9(-)] dev-python/matplotlib[python_targets_python3_9(-)] dev-python/numpy[python_targets_python3_9(-)] >=dev-python/pivy-0.6.5[python_targets_python3_9(-)] dev-python/pybind11[python_targets_python3_9(-)] dev-python/pyside2[gui,svg,python_targets_python3_9(-)] dev-python/shiboken2[python_targets_python3_9(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_9(-)] ) fem? ( dev-python/ply[python_targets_python3_9(-)] ) ) python_single_target_python3_10? ( dev-libs/boost:=[python,threads,python_targets_python3_10(-)] dev-python/matplotlib[python_targets_python3_10(-)] dev-python/numpy[python_targets_python3_10(-)] >=dev-python/pivy-0.6.5[python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] dev-python/pyside2[gui,svg,python_targets_python3_10(-)] dev-python/shiboken2[python_targets_python3_10(-)] addonmgr? ( dev-python/GitPython[python_targets_python3_10(-)] ) fem? ( dev-python/ply[python_targets_python3_10(-)] ) ) @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 RESTRICT=!test? ( test ) SLOT=0 _eclasses_=check-reqs 97b90bd8fb799993925e6b3a683184e5 cmake 518e4c9a6a38dfd7afc54b6a7c5de3da desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f optfeature e142388219c7fee6ff016fe1c78a10a5 python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a36157ae35a4d21a29b12ce51178a397 +_md5_=88e1d6dbe0bed21b7525039de737d7db diff --git a/metadata/md5-cache/media-gfx/meshlab-2020.12-r1 b/metadata/md5-cache/media-gfx/meshlab-2020.12-r1 index c5792b225072..cb7d67c9f955 100644 --- a/metadata/md5-cache/media-gfx/meshlab-2020.12-r1 +++ b/metadata/md5-cache/media-gfx/meshlab-2020.12-r1 @@ -4,11 +4,11 @@ DEPEND=dev-cpp/eigen:3 dev-cpp/muParser dev-libs/gmp:= >=dev-qt/qtcore-5.12:5 >= DESCRIPTION=A system for processing and editing unstructured 3D triangular meshes EAPI=7 HOMEPAGE=http://www.meshlab.net -IUSE=double-precision -minimal +IUSE=double-precision minimal KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-cpp/eigen:3 dev-cpp/muParser dev-libs/gmp:= >=dev-qt/qtcore-5.12:5 >=dev-qt/qtdeclarative-5.12:5 >=dev-qt/qtopengl-5.12:5 >=dev-qt/qtscript-5.12:5 >=dev-qt/qtxml-5.12:5 >=dev-qt/qtxmlpatterns-5.12:5 media-libs/glew:0= =media-libs/lib3ds-1* media-libs/openctm:= media-libs/qhull:= sci-libs/levmar sci-libs/mpir:= SLOT=0 SRC_URI=https://github.com/cnr-isti-vclab/meshlab/archive/Meshlab-2020.12.tar.gz -> meshlab-2020.12.tar.gz https://github.com/cnr-isti-vclab/vcglib/archive/2020.12.tar.gz -> vcglib-2020.12.tar.gz _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9c361acb92e11e3d1ebd30d6e0b3fc46 +_md5_=37ff1d6d1840fbd548b2bff25201323b diff --git a/metadata/md5-cache/media-libs/ilmbase-2.5.6 b/metadata/md5-cache/media-libs/ilmbase-2.5.6 index f16f461e2a29..c953e8dfcbf4 100644 --- a/metadata/md5-cache/media-libs/ilmbase-2.5.6 +++ b/metadata/md5-cache/media-libs/ilmbase-2.5.6 @@ -4,10 +4,10 @@ DESCRIPTION=OpenEXR ILM Base libraries EAPI=7 HOMEPAGE=https://www.openexr.com/ IUSE=large-stack static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris +KEYWORDS=amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0/25 SRC_URI=https://github.com/AcademySoftwareFoundation/openexr/archive/v2.5.6.tar.gz -> ilmbase-2.5.6.tar.gz _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da cmake-multilib ec7d503d01bc4e2f2692f8bf90a64e41 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b98b293425cbd8405b7fe2c1976c481a +_md5_=ade7baa5f7be5543335f6c4be08b6f0c diff --git a/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r4 b/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r4 index ee9617817653..a8093c278bd6 100644 --- a/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r4 +++ b/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r4 @@ -5,11 +5,11 @@ DESCRIPTION=A library that creates colored ASCII-art graphics EAPI=7 HOMEPAGE=http://libcaca.zoy.org/ IUSE=cxx doc imlib java mono ncurses opengl ruby slang static-libs test truetype X elibc_FreeBSD java abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=GPL-2 ISC LGPL-2.1 WTFPL-2 RDEPEND=java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://libcaca.zoy.org/files/libcaca/libcaca-0.99.beta19.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 2440f41421207d084e5e3f1fb001b34e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1e55da0e4d9f76af84ddc66821ab501e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 ruby-ng b97a1a9a3103f9a66f622ea3eb2ce12b ruby-utils 03dfa7f54d59d740c2964dc7256d2820 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1da5274323ec0e0f44f239b3c9a763b6 +_md5_=b6a043ba6d93f818dce237542605d7da diff --git a/metadata/md5-cache/media-libs/mlt-6.26.1-r1 b/metadata/md5-cache/media-libs/mlt-6.26.1-r1 index 7c808c313456..eacde365a910 100644 --- a/metadata/md5-cache/media-libs/mlt-6.26.1-r1 +++ b/metadata/md5-cache/media-libs/mlt-6.26.1-r1 @@ -5,11 +5,11 @@ DESCRIPTION=Open source multimedia framework for television broadcasting EAPI=7 HOMEPAGE=https://www.mltframework.org/ IUSE=compressed-lumas cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 debug ffmpeg fftw frei0r gtk jack kernel_linux libsamplerate lua opencv opengl python qt5 rtaudio rubberband sdl vdpau vidstab xine xml lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-2 lua_targets_lua5-3 lua_targets_lua5-4 python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux LICENSE=GPL-3 RDEPEND=>=media-libs/libebur128-1.2.2:= ffmpeg? ( media-video/ffmpeg:0=[vdpau?,-flite] ) fftw? ( sci-libs/fftw:3.0= ) frei0r? ( media-plugins/frei0r-plugins ) gtk? ( media-libs/libexif x11-libs/pango ) jack? ( >=dev-libs/libxml2-2.5 media-libs/ladspa-sdk virtual/jack ) libsamplerate? ( >=media-libs/libsamplerate-0.1.2 ) lua? ( lua_targets_luajit? ( dev-lang/luajit:= ) lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-2? ( dev-lang/lua:5.2 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) lua_targets_lua5-4? ( dev-lang/lua:5.4 ) ) opencv? ( >=media-libs/opencv-4.5.1:= ) opengl? ( media-video/movit ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/libexif x11-libs/libX11 ) rtaudio? ( >=media-libs/rtaudio-4.1.2 kernel_linux? ( media-libs/alsa-lib ) ) rubberband? ( media-libs/rubberband ) sdl? ( media-libs/libsdl2[X,opengl,video] media-libs/sdl2-image ) vidstab? ( media-libs/vidstab ) xine? ( >=media-libs/xine-lib-1.1.2_pre20060328-r7 ) xml? ( >=dev-libs/libxml2-2.5 ) REQUIRED_USE=lua? ( || ( lua_targets_luajit lua_targets_lua5-1 lua_targets_lua5-2 lua_targets_lua5-3 lua_targets_lua5-4 ) ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) SLOT=0 SRC_URI=https://github.com/mltframework/mlt/releases/download/v6.26.1/mlt-6.26.1.tar.gz _eclasses_=lua 117840f7c4855d27ccde1c6cca990331 lua-utils 736947973cfbc9de01fdb8548f942f82 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af qmake-utils dc74fe3891abc25e80dad5cd3d7c6e47 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=a1670543e7714063590e462eac6d71d1 +_md5_=6df61ce1482c1a510eb2b7e344e45dd1 diff --git a/metadata/md5-cache/media-libs/openexr-2.5.6 b/metadata/md5-cache/media-libs/openexr-2.5.6 index e35b81ca27d7..d9cd33b32758 100644 --- a/metadata/md5-cache/media-libs/openexr-2.5.6 +++ b/metadata/md5-cache/media-libs/openexr-2.5.6 @@ -5,11 +5,11 @@ DESCRIPTION=ILM's OpenEXR high dynamic-range image file format libraries EAPI=7 HOMEPAGE=https://www.openexr.com/ IUSE=cpu_flags_x86_avx doc examples static-libs utils test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris +KEYWORDS=amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris LICENSE=BSD RDEPEND=~media-libs/ilmbase-2.5.6:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] RESTRICT=!test? ( test ) SLOT=0/25 SRC_URI=https://github.com/AcademySoftwareFoundation/openexr/archive/v2.5.6.tar.gz -> openexr-2.5.6.tar.gz _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da cmake-multilib ec7d503d01bc4e2f2692f8bf90a64e41 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bcc46daa96e246371febeea46e992ee0 +_md5_=9e9f31cf6ab5817f04050cf7951726fe diff --git a/metadata/md5-cache/media-libs/speexdsp-1.2.0 b/metadata/md5-cache/media-libs/speexdsp-1.2.0 index 9519175275df..4696e7ed9bf0 100644 --- a/metadata/md5-cache/media-libs/speexdsp-1.2.0 +++ b/metadata/md5-cache/media-libs/speexdsp-1.2.0 @@ -5,10 +5,10 @@ DESCRIPTION=Audio compression format designed for speech -- DSP EAPI=7 HOMEPAGE=https://www.speex.org/ IUSE=cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_arm_neon abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris LICENSE=BSD RDEPEND=!<media-libs/speex-1.2.0 SLOT=0 SRC_URI=https://downloads.xiph.org/releases/speex/speexdsp-1.2.0.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=54ed0bf2c022914bf9aeba1a7af07d14 +_md5_=0f1061542e4202c510a24db6dd437f39 diff --git a/metadata/md5-cache/media-libs/tiff-4.2.0 b/metadata/md5-cache/media-libs/tiff-4.2.0 deleted file mode 100644 index 543cfe832d38..000000000000 --- a/metadata/md5-cache/media-libs/tiff-4.2.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=compile configure install prepare test -DEPEND=jbig? ( >=media-libs/jbigkit-2.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg? ( >=virtual/jpeg-0-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zstd? ( >=app-arch/zstd-1.3.7-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -DESCRIPTION=Tag Image File Format (TIFF) library -EAPI=7 -HOMEPAGE=http://libtiff.maptools.org -IUSE=+cxx jbig jpeg lzma static-libs test webp zlib zstd abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=libtiff -RDEPEND=jbig? ( >=media-libs/jbigkit-2.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg? ( >=virtual/jpeg-0-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zstd? ( >=app-arch/zstd-1.3.7-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -REQUIRED_USE=test? ( jpeg ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://download.osgeo.org/libtiff/tiff-4.2.0.tar.gz -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=3d00a3ce5cb185aad0b3e000a31363a7 diff --git a/metadata/md5-cache/media-libs/tiff-4.3.0 b/metadata/md5-cache/media-libs/tiff-4.3.0 index 0cbe67c94f50..f24fec399371 100644 --- a/metadata/md5-cache/media-libs/tiff-4.3.0 +++ b/metadata/md5-cache/media-libs/tiff-4.3.0 @@ -5,7 +5,7 @@ DESCRIPTION=Tag Image File Format (TIFF) library EAPI=7 HOMEPAGE=http://libtiff.maptools.org IUSE=+cxx jbig jpeg lzma static-libs test webp zlib zstd abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=libtiff RDEPEND=jbig? ( >=media-libs/jbigkit-2.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) jpeg? ( >=virtual/jpeg-0-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) webp? ( media-libs/libwebp:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zstd? ( >=app-arch/zstd-1.3.7-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) REQUIRED_USE=test? ( jpeg ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.osgeo.org/libtiff/tiff-4.3.0.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=31c63ae1d82a4e1d7366e842ae9e58ea +_md5_=3d00a3ce5cb185aad0b3e000a31363a7 diff --git a/metadata/md5-cache/media-plugins/vdr-vdrmanager-0.14 b/metadata/md5-cache/media-plugins/vdr-vdrmanager-0.14 index fbb287e3dc6b..c3905f6e34cf 100644 --- a/metadata/md5-cache/media-plugins/vdr-vdrmanager-0.14 +++ b/metadata/md5-cache/media-plugins/vdr-vdrmanager-0.14 @@ -3,11 +3,11 @@ DEPEND=>=media-video/vdr-2 ssl? ( dev-libs/openssl ) >=media-tv/gentoo-vdr-scrip DESCRIPTION=VDR Plugin: remote programming VDR using VDR-Manager running on Android devices EAPI=6 HOMEPAGE=https://projects.vdr-developer.org/projects/vdr-manager/wiki -IUSE=gzip +ssl -stream zlib ssl +IUSE=gzip +ssl stream zlib ssl KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=stream? ( media-plugins/vdr-streamdev[server] ) zlib? ( sys-libs/zlib ) >=media-tv/gentoo-vdr-scripts-0.4.2 >=app-eselect/eselect-vdr-0.0.2 SLOT=0 SRC_URI=mirror://vdr-developerorg/1971/vdr-vdrmanager-0.14.tgz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 ssl-cert 8bf95e2477512d096a10bf218de41d5e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf vdr-plugin-2 97da93828a6d0a7bb63d8a301042b0f3 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=13570a47f3bec4db5f03df2ef6dc870e +_md5_=4e0fd90a096fa4f408cdb94060036e76 diff --git a/metadata/md5-cache/media-sound/cadence-0.9.1 b/metadata/md5-cache/media-sound/cadence-0.9.1 index ad7d604dc52d..9c0454ef22dc 100644 --- a/metadata/md5-cache/media-sound/cadence-0.9.1 +++ b/metadata/md5-cache/media-sound/cadence-0.9.1 @@ -3,7 +3,7 @@ DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-e DESCRIPTION=Collection of tools useful for audio production EAPI=7 HOMEPAGE=https://kxstudio.linuxaudio.org/Applications:Cadence -IUSE=a2jmidid -pulseaudio opengl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +IUSE=a2jmidid pulseaudio opengl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 KEYWORDS=amd64 LICENSE=GPL-2 RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) python_single_target_python3_6? ( dev-python/dbus-python[python_targets_python3_6(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/dbus-python[python_targets_python3_7(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/dbus-python[python_targets_python3_8(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/dbus-python[python_targets_python3_9(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/dbus-python[python_targets_python3_10(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_10(-)] ) media-sound/jack_capture virtual/jack a2jmidid? ( media-sound/a2jmidid[dbus] ) pulseaudio? ( media-sound/pulseaudio[jack] ) @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 SLOT=0 SRC_URI=https://github.com/falkTX/Cadence/archive/v0.9.1.tar.gz -> cadence-0.9.1.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=596940dd10abe8ad71ef4d6438395bcb +_md5_=2487bac70d158d0f6ca7e8a5967553cb diff --git a/metadata/md5-cache/media-sound/cadence-9999 b/metadata/md5-cache/media-sound/cadence-9999 index 00622c4f164f..f189a188143d 100644 --- a/metadata/md5-cache/media-sound/cadence-9999 +++ b/metadata/md5-cache/media-sound/cadence-9999 @@ -4,11 +4,11 @@ DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-e DESCRIPTION=Collection of tools useful for audio production EAPI=7 HOMEPAGE=https://kxstudio.linuxaudio.org/Applications:Cadence -IUSE=a2jmidid -pulseaudio opengl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +IUSE=a2jmidid pulseaudio opengl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 LICENSE=GPL-2 PROPERTIES=live RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) python_single_target_python3_6? ( dev-python/dbus-python[python_targets_python3_6(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/dbus-python[python_targets_python3_7(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/dbus-python[python_targets_python3_8(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/dbus-python[python_targets_python3_9(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/dbus-python[python_targets_python3_10(-)] dev-python/PyQt5[dbus,gui,opengl?,svg,widgets,python_targets_python3_10(-)] ) media-sound/jack_capture virtual/jack a2jmidid? ( media-sound/a2jmidid[dbus] ) pulseaudio? ( media-sound/pulseaudio[jack] ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) SLOT=0 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 git-r3 b8e8c92aa5fe8df7187e466138eb4e52 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d4e3f2092bf43327bdfda03b6f9a47f4 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ad1dfdd3efaedf77a628c461a140ded5 +_md5_=41c3e059305db93417aa9818bb564311 diff --git a/metadata/md5-cache/media-sound/teamspeak-server-3.13.5 b/metadata/md5-cache/media-sound/teamspeak-server-3.13.5 new file mode 100644 index 000000000000..6d60c79b89a4 --- /dev/null +++ b/metadata/md5-cache/media-sound/teamspeak-server-3.13.5 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=install postinst unpack +DESCRIPTION=A server software for hosting quality voice communication via the internet +EAPI=7 +HOMEPAGE=https://www.teamspeak.com/ +IUSE=doc mysql postgres tsdns +KEYWORDS=-* ~amd64 ~x86 +LICENSE=Apache-2.0 Boost-1.0 BSD LGPL-2.1 LGPL-3 MIT teamspeak3 +RDEPEND=acct-group/teamspeak acct-user/teamspeak postgres? ( dev-db/postgresql ) +RESTRICT=bindist mirror +SLOT=0 +SRC_URI=amd64? ( https://files.teamspeak-services.com/releases/server/3.13.5/teamspeak3-server_linux_amd64-3.13.5.tar.bz2 ) x86? ( https://files.teamspeak-services.com/releases/server/3.13.5/teamspeak3-server_linux_x86-3.13.5.tar.bz2 ) +_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=917b3bb300ad631855fd88f47c5a078c diff --git a/metadata/md5-cache/net-analyzer/squid-graph-3.2-r1 b/metadata/md5-cache/net-analyzer/squid-graph-3.2-r2 index 41cc849fc8ea..e3cb0a3e50ea 100644 --- a/metadata/md5-cache/net-analyzer/squid-graph-3.2-r1 +++ b/metadata/md5-cache/net-analyzer/squid-graph-3.2-r2 @@ -4,7 +4,7 @@ EAPI=7 HOMEPAGE=https://sourceforge.net/projects/squid-graph/ KEYWORDS=~amd64 ~ppc ~x86 LICENSE=GPL-2 -RDEPEND=dev-perl/GD[png] +RDEPEND=dev-perl/GD[png(+)] SLOT=0 SRC_URI=mirror://sourceforge/squid-graph/squid-graph-3.2.tar.gz -_md5_=fcb938260d7a5f436dec5ccfcb75bbfb +_md5_=10fdeaec7814a46031ad872bb7d2a010 diff --git a/metadata/md5-cache/net-fs/autofs-5.1.6-r1 b/metadata/md5-cache/net-fs/autofs-5.1.6-r1 index a4715c1613fe..a3bcd4c8c747 100644 --- a/metadata/md5-cache/net-fs/autofs-5.1.6-r1 +++ b/metadata/md5-cache/net-fs/autofs-5.1.6-r1 @@ -4,11 +4,11 @@ DEPEND=>=sys-apps/util-linux-2.20 dmalloc? ( dev-libs/dmalloc[threads] ) ldap? ( DESCRIPTION=Kernel based automounter EAPI=7 HOMEPAGE=https://web.archive.org/web/*/http://www.linux-consulting.com/Amd_AutoFS/autofs.html -IUSE=-dmalloc ldap +libtirpc mount-locking sasl systemd kernel_linux +IUSE=dmalloc ldap +libtirpc mount-locking sasl systemd kernel_linux KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 LICENSE=GPL-2 RDEPEND=>=sys-apps/util-linux-2.20 dmalloc? ( dev-libs/dmalloc[threads] ) ldap? ( >=net-nds/openldap-2.0 sasl? ( dev-libs/cyrus-sasl dev-libs/libxml2 virtual/krb5 ) ) systemd? ( sys-apps/systemd ) libtirpc? ( net-libs/libtirpc ) !libtirpc? ( elibc_glibc? ( sys-libs/glibc[rpc(-)] ) ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/daemons/autofs/v5/autofs-5.1.6.tar.xz _eclasses_=linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=a4410f55dc3d7290f8e22d663ea17c8d +_md5_=abeeae36b7f76e739e89bffc5c785c5c diff --git a/metadata/md5-cache/net-fs/autofs-5.1.7 b/metadata/md5-cache/net-fs/autofs-5.1.7 index 33050f717bf4..a84278ed63a4 100644 --- a/metadata/md5-cache/net-fs/autofs-5.1.7 +++ b/metadata/md5-cache/net-fs/autofs-5.1.7 @@ -4,11 +4,11 @@ DEPEND=>=sys-apps/util-linux-2.20 dmalloc? ( dev-libs/dmalloc[threads] ) ldap? ( DESCRIPTION=Kernel based automounter EAPI=7 HOMEPAGE=https://web.archive.org/web/*/http://www.linux-consulting.com/Amd_AutoFS/autofs.html -IUSE=-dmalloc ldap +libtirpc mount-locking sasl systemd kernel_linux +IUSE=dmalloc ldap +libtirpc mount-locking sasl systemd kernel_linux KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=>=sys-apps/util-linux-2.20 dmalloc? ( dev-libs/dmalloc[threads] ) ldap? ( >=net-nds/openldap-2.0 sasl? ( dev-libs/cyrus-sasl dev-libs/libxml2 virtual/krb5 ) ) systemd? ( sys-apps/systemd ) libtirpc? ( net-libs/libtirpc ) !libtirpc? ( elibc_glibc? ( sys-libs/glibc[rpc(-)] ) ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/daemons/autofs/v5/autofs-5.1.7.tar.xz _eclasses_=linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=62d972ab44de9db03e4207b7a38bf013 +_md5_=823cfb50365c8498b011f4263d26891d diff --git a/metadata/md5-cache/net-libs/libpcap-1.10.0 b/metadata/md5-cache/net-libs/libpcap-1.10.0 index e021c5f2274d..e0586faec891 100644 --- a/metadata/md5-cache/net-libs/libpcap-1.10.0 +++ b/metadata/md5-cache/net-libs/libpcap-1.10.0 @@ -4,11 +4,11 @@ DEPEND=bluetooth? ( net-wireless/bluez:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x DESCRIPTION=A system-independent library for user-level network packet capture EAPI=7 HOMEPAGE=https://www.tcpdump.org/ https://github.com/the-tcpdump-group/libpcap -IUSE=bluetooth dbus netlink rdma -remote static-libs usb -yydebug abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig +IUSE=bluetooth dbus netlink rdma remote static-libs usb yydebug abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris LICENSE=BSD RDEPEND=bluetooth? ( net-wireless/bluez:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) netlink? ( dev-libs/libnl:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rdma? ( sys-cluster/rdma-core ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://www.tcpdump.org/release/libpcap-1.10.0.tar.gz -> libpcap-1.10.0-upstream.tar.gz verify-sig? ( https://www.tcpdump.org/release/libpcap-1.10.0.tar.gz.sig -> libpcap-1.10.0-upstream.tar.gz.sig ) _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 verify-sig 40b4f4f782cf67118f594ce604cc4c0a -_md5_=9a54b7d33afaaac700439f9a7a86404d +_md5_=9f13f75156ecd5a222142c0a56449a28 diff --git a/metadata/md5-cache/net-libs/libpcap-9999 b/metadata/md5-cache/net-libs/libpcap-9999 index 0e608ee513df..e297bb47eff2 100644 --- a/metadata/md5-cache/net-libs/libpcap-9999 +++ b/metadata/md5-cache/net-libs/libpcap-9999 @@ -4,10 +4,10 @@ DEPEND=bluetooth? ( net-wireless/bluez:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x DESCRIPTION=A system-independent library for user-level network packet capture EAPI=7 HOMEPAGE=https://www.tcpdump.org/ https://github.com/the-tcpdump-group/libpcap -IUSE=bluetooth dbus netlink rdma -remote static-libs usb -yydebug abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +IUSE=bluetooth dbus netlink rdma remote static-libs usb yydebug abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 LICENSE=BSD PROPERTIES=live RDEPEND=bluetooth? ( net-wireless/bluez:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) netlink? ( dev-libs/libnl:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rdma? ( sys-cluster/rdma-core ) usb? ( virtual/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=fd430ffe035b51e252742316f84ff85f +_md5_=992c2cf05e5bb5dc46dad7055cab569e diff --git a/metadata/md5-cache/net-libs/onion-0.8 b/metadata/md5-cache/net-libs/onion-0.8 index ef1e7a4f573b..2bc6f90846fa 100644 --- a/metadata/md5-cache/net-libs/onion-0.8 +++ b/metadata/md5-cache/net-libs/onion-0.8 @@ -3,7 +3,7 @@ DEPEND=gnutls? ( net-libs/gnutls dev-libs/libgcrypt:0= ) pam? ( sys-libs/pam ) p DESCRIPTION=C library to create simple HTTP servers and Web Applications EAPI=5 HOMEPAGE=https://www.coralbits.com/libonion/ https://github.com/davidmoreno/onion -IUSE=gnutls pam png jpeg xml systemd sqlite boehm-gc test examples cxx -libev -libevent redis +IUSE=gnutls pam png jpeg xml systemd sqlite boehm-gc test examples cxx libev libevent redis KEYWORDS=~amd64 LICENSE=|| ( GPL-2+ Apache-2.0 ) AGPL-3 RDEPEND=gnutls? ( net-libs/gnutls dev-libs/libgcrypt:0= ) pam? ( sys-libs/pam ) png? ( media-libs/libpng:0= x11-libs/cairo ) jpeg? ( virtual/jpeg:0 ) xml? ( dev-libs/libxml2:2 sys-libs/zlib ) systemd? ( sys-apps/systemd ) sqlite? ( dev-db/sqlite:3 ) boehm-gc? ( dev-libs/boehm-gc ) libev? ( dev-libs/libev ) !libev? ( libevent? ( dev-libs/libevent ) ) redis? ( dev-libs/hiredis ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/davidmoreno/onion/archive/v0.8.tar.gz -> onion-0.8.tar.gz _eclasses_=cmake-utils 12008d68ebfd61f49a377c49f83558a8 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=dea4db7396d9d58e1e00ef9e9d6f9b7b +_md5_=0d264c6932d81acfc9048bead10482f4 diff --git a/metadata/md5-cache/net-libs/onion-9999 b/metadata/md5-cache/net-libs/onion-9999 index d828ac1222ba..df239b55bbf4 100644 --- a/metadata/md5-cache/net-libs/onion-9999 +++ b/metadata/md5-cache/net-libs/onion-9999 @@ -3,7 +3,7 @@ DEPEND=gnutls? ( net-libs/gnutls dev-libs/libgcrypt:0= ) pam? ( sys-libs/pam ) p DESCRIPTION=C library to create simple HTTP servers and Web Applications EAPI=5 HOMEPAGE=https://www.coralbits.com/libonion/ https://github.com/davidmoreno/onion -IUSE=gnutls pam png jpeg xml systemd sqlite boehm-gc test examples cxx -libev -libevent redis +IUSE=gnutls pam png jpeg xml systemd sqlite boehm-gc test examples cxx libev libevent redis LICENSE=|| ( GPL-2+ Apache-2.0 ) AGPL-3 PROPERTIES=live RDEPEND=gnutls? ( net-libs/gnutls dev-libs/libgcrypt:0= ) pam? ( sys-libs/pam ) png? ( media-libs/libpng:0= x11-libs/cairo ) jpeg? ( virtual/jpeg:0 ) xml? ( dev-libs/libxml2:2 sys-libs/zlib ) systemd? ( sys-apps/systemd ) sqlite? ( dev-db/sqlite:3 ) boehm-gc? ( dev-libs/boehm-gc ) libev? ( dev-libs/libev ) !libev? ( libevent? ( dev-libs/libevent ) ) redis? ( dev-libs/hiredis ) @@ -11,4 +11,4 @@ REQUIRED_USE=test? ( examples ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=cmake-utils 12008d68ebfd61f49a377c49f83558a8 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b0b9328c0aae7c19af08f71676de0ed5 +_md5_=3096ea539a7d8f9c67f461a62f94c86f diff --git a/metadata/md5-cache/net-misc/ntpsec-1.2.0-r1 b/metadata/md5-cache/net-misc/ntpsec-1.2.0-r1 index e9079f6bbd60..0e239fe23ab8 100644 --- a/metadata/md5-cache/net-misc/ntpsec-1.2.0-r1 +++ b/metadata/md5-cache/net-misc/ntpsec-1.2.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=The NTP reference implementation, refactored EAPI=6 HOMEPAGE=https://www.ntpsec.org/ IUSE=rclock_oncore rclock_trimble rclock_truetime rclock_gpsd rclock_jjy rclock_generic rclock_spectracom rclock_shm rclock_pps rclock_hpgps rclock_zyfer rclock_arbiter rclock_nmea rclock_neoclock rclock_modem rclock_local debug doc early gdb heat libbsd nist ntpviz samba seccomp smear tests python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm ~arm64 ~x86 +KEYWORDS=amd64 arm arm64 ~x86 LICENSE=HPND MIT BSD-2 BSD CC-BY-SA-4.0 RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] sys-libs/libcap dev-python/psutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] libbsd? ( dev-libs/libbsd:0= ) dev-libs/openssl:0= seccomp? ( sys-libs/libseccomp ) ntpviz? ( sci-visualization/gnuplot media-fonts/liberation-fonts ) !net-misc/ntp !net-misc/openntpd acct-group/ntp acct-user/ntp python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-),-python_single_target_python3_10(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) nist? ( rclock_local ) || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=mirror SLOT=0 SRC_URI=ftp://ftp.ntpsec.org/pub/releases/ntpsec-1.2.0.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 distutils-r1 c21cf58c1e3c67e0ea53c96a7b37eddd edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 26e4ad0a4190b14f70973dc253e86535 python-utils-r1 fc2351244f3684078565b89754cf82af systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf waf-utils 941688efbf28e7ea7a106e516fc9bc91 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=48f6ebfd53a1d3f689b161b700318e61 +_md5_=a1c5a983b5e8e1c28d2bc95973db38d8 diff --git a/metadata/md5-cache/net-nntp/nzbget-20.0 b/metadata/md5-cache/net-nntp/nzbget-20.0 deleted file mode 100644 index 1779da2e5f05..000000000000 --- a/metadata/md5-cache/net-nntp/nzbget-20.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install postinst preinst prepare pretend setup test -DEPEND=dev-libs/libxml2:= ncurses? ( sys-libs/ncurses:0= ) ssl? ( gnutls? ( net-libs/gnutls:= dev-libs/nettle:= ) !gnutls? ( dev-libs/openssl:0=[-bindist] ) ) zlib? ( sys-libs/zlib:= ) test? ( || ( app-arch/rar app-arch/unrar ) ) virtual/pkgconfig -DESCRIPTION=A command-line based binary newsgrabber supporting .nzb files -EAPI=7 -HOMEPAGE=https://nzbget.net/ -IUSE=debug gnutls ncurses +parcheck ssl test zlib -KEYWORDS=amd64 arm ppc x86 -LICENSE=GPL-2+ -RDEPEND=dev-libs/libxml2:= ncurses? ( sys-libs/ncurses:0= ) ssl? ( gnutls? ( net-libs/gnutls:= dev-libs/nettle:= ) !gnutls? ( dev-libs/openssl:0=[-bindist] ) ) zlib? ( sys-libs/zlib:= ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/nzbget/nzbget/releases/download/v20.0/nzbget-20.0-src.tar.gz -> nzbget-20.0.tar.gz -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user 26d8ce6329c43cbac965617f1c0627e2 user-info a2abd4e2f4c3b9b06d64bf1329359a02 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c21160cba95593249956e29f0e42ea5f diff --git a/metadata/md5-cache/net-nntp/nzbget-21.0 b/metadata/md5-cache/net-nntp/nzbget-21.0 deleted file mode 100644 index 7dac1876215f..000000000000 --- a/metadata/md5-cache/net-nntp/nzbget-21.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DEFINED_PHASES=configure install postinst preinst prepare pretend setup test -DEPEND=dev-libs/libxml2:= ncurses? ( sys-libs/ncurses:0= ) ssl? ( gnutls? ( net-libs/gnutls:= dev-libs/nettle:= ) !gnutls? ( dev-libs/openssl:0=[-bindist] ) ) zlib? ( sys-libs/zlib:= ) test? ( || ( app-arch/rar app-arch/unrar ) ) virtual/pkgconfig -DESCRIPTION=A command-line based binary newsgrabber supporting .nzb files -EAPI=7 -HOMEPAGE=https://nzbget.net/ -IUSE=debug gnutls ncurses +parcheck ssl test zlib -KEYWORDS=~amd64 ~arm ~ppc ~x86 -LICENSE=GPL-2+ -RDEPEND=dev-libs/libxml2:= ncurses? ( sys-libs/ncurses:0= ) ssl? ( gnutls? ( net-libs/gnutls:= dev-libs/nettle:= ) !gnutls? ( dev-libs/openssl:0=[-bindist] ) ) zlib? ( sys-libs/zlib:= ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/nzbget/nzbget/releases/download/v21.0/nzbget-21.0-src.tar.gz -> nzbget-21.0.tar.gz -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user 26d8ce6329c43cbac965617f1c0627e2 user-info a2abd4e2f4c3b9b06d64bf1329359a02 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bb3e4913d71c59cb2a4051d87f718540 diff --git a/metadata/md5-cache/net-nntp/nzbget-21.1 b/metadata/md5-cache/net-nntp/nzbget-21.1 new file mode 100644 index 000000000000..83d6bb2a6b4a --- /dev/null +++ b/metadata/md5-cache/net-nntp/nzbget-21.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( || ( app-arch/rar app-arch/unrar ) ) virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEFINED_PHASES=configure install postinst preinst prepare test +DEPEND=dev-libs/libxml2:= ncurses? ( sys-libs/ncurses:0= ) ssl? ( gnutls? ( net-libs/gnutls:= dev-libs/nettle:= ) !gnutls? ( dev-libs/openssl:0=[-bindist] ) ) zlib? ( sys-libs/zlib:= ) +DESCRIPTION=A command-line based binary newsgrabber supporting .nzb files +EAPI=7 +HOMEPAGE=https://nzbget.net/ +IUSE=debug gnutls ncurses +parcheck ssl test zlib +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=GPL-2+ +RDEPEND=dev-libs/libxml2:= ncurses? ( sys-libs/ncurses:0= ) ssl? ( gnutls? ( net-libs/gnutls:= dev-libs/nettle:= ) !gnutls? ( dev-libs/openssl:0=[-bindist] ) ) zlib? ( sys-libs/zlib:= ) acct-user/nzbget acct-group/nzbget +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/nzbget/nzbget/releases/download/v21.1/nzbget-21.1-src.tar.gz -> nzbget-21.1.tar.gz +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=8d1392e0dbcaf6417a5ab4e09f5b5c2e diff --git a/metadata/md5-cache/net-p2p/vuze-5.7.6.0-r1 b/metadata/md5-cache/net-p2p/vuze-5.7.6.0-r1 index de9f0adc1c93..aa3237a51f64 100644 --- a/metadata/md5-cache/net-p2p/vuze-5.7.6.0-r1 +++ b/metadata/md5-cache/net-p2p/vuze-5.7.6.0-r1 @@ -4,11 +4,11 @@ DESCRIPTION=BitTorrent client in Java, formerly called Azureus EAPI=7 HOMEPAGE=http://www.vuze.com/ IUSE=elibc_FreeBSD source elibc_FreeBSD -KEYWORDS=amd64 ppc64 ~x86 +KEYWORDS=amd64 ppc64 x86 LICENSE=GPL-2 BSD PDEPEND=~net-p2p/vuze-coreplugins-5.7.6.0 RDEPEND=dev-java/log4j:0 dev-java/swt:3.8[cairo] dev-java/commons-cli:1 dev-java/commons-text:0 dev-java/json-simple:0 >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=0 SRC_URI=mirror://sourceforge/azureus/vuze/Vuze_5760/Vuze_5760_source.zip _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 java-ant-2 51fb0a4707d58382310390ad47ab0ab0 java-pkg-2 45c44ec10db6affb3ebee1ac72039888 java-utils-2 2440f41421207d084e5e3f1fb001b34e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=46cc9e53b1f6479fa30b7a1ed3af6223 +_md5_=a7ccdf12cdabbb7411104a51cbfddfa9 diff --git a/metadata/md5-cache/sci-biology/GBrowse-2.48-r1 b/metadata/md5-cache/sci-biology/GBrowse-2.48-r1 index fdb641ae9770..5135ea633a28 100644 --- a/metadata/md5-cache/sci-biology/GBrowse-2.48-r1 +++ b/metadata/md5-cache/sci-biology/GBrowse-2.48-r1 @@ -3,11 +3,11 @@ DEPEND=dev-perl/Module-Build dev-perl/Capture-Tiny !<sci-biology/GBrowse-2.44-r1 DESCRIPTION=Generic Model Organism Database Project - The Generic Genome Browser EAPI=5 HOMEPAGE=http://gmod.org/wiki/GBrowse -IUSE=-minimal mysql postgres +sqlite vhosts +IUSE=minimal mysql postgres +sqlite vhosts KEYWORDS=~amd64 ~x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=!<sci-biology/GBrowse-2.44-r1 >=sci-biology/bioperl-1.6.9 >=dev-perl/Bio-Graphics-2.09 >=dev-perl/GD-2.07 >=dev-perl/CGI-Session-4.02 dev-perl/IO-String dev-perl/JSON dev-perl/libwww-perl dev-perl/Statistics-Descriptive !minimal? ( dev-perl/Bio-Das >=dev-perl/Bio-SamTools-1.20 dev-perl/Crypt-SSLeay dev-perl/DB_File-Lock dev-perl/DBI mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBD-SQLite ) dev-perl/FCGI dev-perl/File-NFSLock dev-perl/GD-SVG dev-perl/Net-OpenID-Consumer dev-perl/Net-SMTP-SSL ) dev-lang/perl:=[-build(-)] >=app-admin/webapp-config-1.50.15 SLOT=0 SRC_URI=mirror://cpan/authors/id/L/LD/LDS/GBrowse-2.48.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf webapp 990ad6a000cf18d1ef87117e8c7b0a54 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bccaeef3292f6df307fc14fb5a2a74b2 +_md5_=088b19055886b41078acab0f96df204a diff --git a/metadata/md5-cache/sci-biology/bioperl-run-1.6.9 b/metadata/md5-cache/sci-biology/bioperl-run-1.6.9 index 32b342d46f5e..d376958b6215 100644 --- a/metadata/md5-cache/sci-biology/bioperl-run-1.6.9 +++ b/metadata/md5-cache/sci-biology/bioperl-run-1.6.9 @@ -3,7 +3,7 @@ DEPEND=dev-perl/Module-Build >=sci-biology/bioperl-1.6.9 !minimal? ( dev-perl/Al DESCRIPTION=Perl wrapper modules for key bioinformatics applications EAPI=5 HOMEPAGE=http://www.bioperl.org/ -IUSE=-minimal test +IUSE=minimal test KEYWORDS=amd64 x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=>=sci-biology/bioperl-1.6.9 !minimal? ( dev-perl/Algorithm-Diff dev-perl/XML-Twig dev-perl/IO-String dev-perl/IPC-Run dev-perl/File-Sort ) dev-lang/perl:=[-build(-)] @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://cpan/authors/id/C/CJ/CJFIELDS/BioPerl-Run-1.006900.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=9caec4e5b47cbf306a1689903f2a018a +_md5_=990b4cff1e1e1338ee686efddaad7810 diff --git a/metadata/md5-cache/sys-apps/ack-3.0.0 b/metadata/md5-cache/sys-apps/ack-3.0.0 deleted file mode 100644 index 528ce0b1a03d..000000000000 --- a/metadata/md5-cache/sys-apps/ack-3.0.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-perl/File-Next-1.160.0 test? ( dev-perl/IO-Tty ) dev-lang/perl -DESCRIPTION=ack is a tool like grep, optimized for programmers -EAPI=6 -HOMEPAGE=https://beyondgrep.com -IUSE=test -KEYWORDS=~alpha amd64 ~arm ~hppa x86 ~amd64-linux ~x86-linux -LICENSE=Artistic-2 -RDEPEND=>=dev-perl/File-Next-1.160.0 dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PE/PETDANCE/ack-v3.0.0.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=b64ffb986d86c2550ae65f4801fb898c diff --git a/metadata/md5-cache/sys-apps/ack-3.3.1 b/metadata/md5-cache/sys-apps/ack-3.3.1 deleted file mode 100644 index a214a5402931..000000000000 --- a/metadata/md5-cache/sys-apps/ack-3.3.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-perl/File-Next-1.180.0 test? ( dev-perl/IO-Tty ) dev-lang/perl -DESCRIPTION=ack is a tool like grep, optimized for programmers -EAPI=7 -HOMEPAGE=https://beyondgrep.com -IUSE=test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux -LICENSE=Artistic-2 -RDEPEND=>=dev-perl/File-Next-1.180.0 dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PE/PETDANCE/ack-v3.3.1.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=6d4a70ca2b080865fb7a83368f5a0171 diff --git a/metadata/md5-cache/sys-apps/ack-3.2.0 b/metadata/md5-cache/sys-apps/ack-3.5.0 index 17b62b72313e..9a3788ae6246 100644 --- a/metadata/md5-cache/sys-apps/ack-3.2.0 +++ b/metadata/md5-cache/sys-apps/ack-3.5.0 @@ -5,11 +5,11 @@ DESCRIPTION=ack is a tool like grep, optimized for programmers EAPI=7 HOMEPAGE=https://beyondgrep.com IUSE=test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=Artistic-2 RDEPEND=>=dev-perl/File-Next-1.180.0 dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PE/PETDANCE/ack-v3.2.0.tar.gz +SRC_URI=mirror://cpan/authors/id/P/PE/PETDANCE/ack-v3.5.0.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f1ee42d38920b69fd6b6229cef80b7f4 perl-module 58b5d72d607014c48b5a1e106318d584 -_md5_=3d976b6fd577cc7fb628722f08b2601f +_md5_=f8a124847dca0b2cc73bdbd6e783deea diff --git a/metadata/md5-cache/sys-apps/duc-1.4.3-r1 b/metadata/md5-cache/sys-apps/duc-1.4.3-r1 index 06039749016c..9229ff3efdaa 100644 --- a/metadata/md5-cache/sys-apps/duc-1.4.3-r1 +++ b/metadata/md5-cache/sys-apps/duc-1.4.3-r1 @@ -3,7 +3,7 @@ DEPEND=cairo? ( x11-libs/cairo x11-libs/pango ) gui? ( X? ( x11-libs/cairo[X] x1 DESCRIPTION=A library and suite of tools for inspecting disk usage EAPI=6 HOMEPAGE=https://github.com/zevv/duc -IUSE=cairo gui -leveldb ncurses -sqlite +tokyocabinet X +IUSE=cairo gui leveldb ncurses sqlite +tokyocabinet X KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=cairo? ( x11-libs/cairo x11-libs/pango ) gui? ( X? ( x11-libs/cairo[X] x11-libs/libX11 x11-libs/pango[X] ) !X? ( >=media-libs/glfw-3.0 ) ) leveldb? ( dev-libs/leveldb:= ) ncurses? ( sys-libs/ncurses:= ) sqlite? ( dev-db/sqlite:3 ) tokyocabinet? ( dev-db/tokyocabinet ) @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( tokyocabinet leveldb sqlite ) X? ( cairo gui ) SLOT=0 SRC_URI=https://github.com/zevv/duc/releases/download/1.4.3/duc-1.4.3.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d0b7d24651c7bfcc032142c39a4c518b +_md5_=8d7293d96fc9b73497012c6a1c2dbe44 diff --git a/metadata/md5-cache/sys-apps/duc-9999 b/metadata/md5-cache/sys-apps/duc-9999 index cdceef1f593b..0d4103a639a4 100644 --- a/metadata/md5-cache/sys-apps/duc-9999 +++ b/metadata/md5-cache/sys-apps/duc-9999 @@ -3,11 +3,11 @@ DEPEND=cairo? ( x11-libs/cairo x11-libs/pango ) gui? ( X? ( x11-libs/cairo[X] x1 DESCRIPTION=A library and suite of tools for inspecting disk usage EAPI=6 HOMEPAGE=https://github.com/zevv/duc -IUSE=cairo gui -leveldb ncurses -sqlite +tokyocabinet X +IUSE=cairo gui leveldb ncurses sqlite +tokyocabinet X LICENSE=GPL-2 PROPERTIES=live RDEPEND=cairo? ( x11-libs/cairo x11-libs/pango ) gui? ( X? ( x11-libs/cairo[X] x11-libs/libX11 x11-libs/pango[X] ) !X? ( >=media-libs/glfw-3.0 ) ) leveldb? ( dev-libs/leveldb:= ) ncurses? ( sys-libs/ncurses:= ) sqlite? ( dev-db/sqlite:3 ) tokyocabinet? ( dev-db/tokyocabinet ) REQUIRED_USE=^^ ( tokyocabinet leveldb sqlite ) X? ( cairo gui ) SLOT=0 _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d0b7d24651c7bfcc032142c39a4c518b +_md5_=8d7293d96fc9b73497012c6a1c2dbe44 diff --git a/metadata/md5-cache/sys-auth/elogind-246.10-r1 b/metadata/md5-cache/sys-auth/elogind-246.10-r1 index 8b71b4271b57..e8f051ca1280 100644 --- a/metadata/md5-cache/sys-auth/elogind-246.10-r1 +++ b/metadata/md5-cache/sys-auth/elogind-246.10-r1 @@ -5,11 +5,11 @@ DESCRIPTION=The systemd project's logind, extracted to a standalone package EAPI=7 HOMEPAGE=https://github.com/elogind/elogind IUSE=+acl audit debug doc +pam +policykit selinux kernel_linux -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=CC0-1.0 LGPL-2.1+ public-domain PDEPEND=sys-apps/dbus policykit? ( sys-auth/polkit ) RDEPEND=audit? ( sys-process/audit ) sys-apps/util-linux sys-libs/libcap virtual/libudev:= acl? ( sys-apps/acl ) pam? ( sys-libs/pam ) selinux? ( sys-libs/libselinux ) !sys-apps/systemd SLOT=0 SRC_URI=https://github.com/elogind/elogind/archive/v246.10.tar.gz -> elogind-246.10.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 meson 28cbb704f3b4e0481c4a5f22be635115 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pam b097695df28f3974e3af860d6704d4f2 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 udev 452708c3f55cf6e918b045adb949a9e6 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9783b2c148ce4ccd3c37c23c01490e45 +_md5_=d173b00ae8d29bdaf0c5bda6d75af372 diff --git a/metadata/md5-cache/sys-auth/polkit-0.116-r1 b/metadata/md5-cache/sys-auth/polkit-0.116-r1 index 5d25e584b6d4..58b2fb3d7d39 100644 --- a/metadata/md5-cache/sys-auth/polkit-0.116-r1 +++ b/metadata/md5-cache/sys-auth/polkit-0.116-r1 @@ -4,7 +4,7 @@ DEPEND=dev-lang/spidermonkey:60[-debug] dev-libs/glib:2 dev-libs/expat elogind? DESCRIPTION=Policy framework for controlling privileges for system-wide services EAPI=7 HOMEPAGE=https://www.freedesktop.org/wiki/Software/polkit https://gitlab.freedesktop.org/polkit/polkit -IUSE=elogind examples gtk +introspection jit kde nls pam selinux systemd test +IUSE=elogind examples gtk +introspection kde nls pam selinux systemd test KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 LICENSE=LGPL-2 PDEPEND=gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 >=lxde-base/lxsession-0.5.2 ) ) kde? ( kde-plasma/polkit-kde-agent ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.freedesktop.org/software/polkit/releases/polkit-0.116.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e pam b097695df28f3974e3af860d6704d4f2 pax-utils d3fc79d3d50544347e324864f95206e2 systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=29ab4aa0a5c3a4c7fe09c87c841b1c30 +_md5_=4e9fcf32cf3d8957794a030f504d464b diff --git a/metadata/md5-cache/sys-auth/polkit-0.117 b/metadata/md5-cache/sys-auth/polkit-0.117 index 9aac577d8133..9f5786542f70 100644 --- a/metadata/md5-cache/sys-auth/polkit-0.117 +++ b/metadata/md5-cache/sys-auth/polkit-0.117 @@ -4,7 +4,7 @@ DEPEND=dev-lang/spidermonkey:68[-debug] dev-libs/glib:2 dev-libs/expat elogind? DESCRIPTION=Policy framework for controlling privileges for system-wide services EAPI=7 HOMEPAGE=https://www.freedesktop.org/wiki/Software/polkit https://gitlab.freedesktop.org/polkit/polkit -IUSE=elogind examples gtk +introspection jit kde nls pam selinux systemd test +IUSE=elogind examples gtk +introspection kde nls pam selinux systemd test KEYWORDS=~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc ~x86 LICENSE=LGPL-2 PDEPEND=gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 >=lxde-base/lxsession-0.5.2 ) ) kde? ( kde-plasma/polkit-kde-agent ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.freedesktop.org/software/polkit/releases/polkit-0.117.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e pam b097695df28f3974e3af860d6704d4f2 pax-utils d3fc79d3d50544347e324864f95206e2 systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1cbe67f48f2df1490ee8bad26987936f +_md5_=74f74e992b2dff67dfd29ea96c37e373 diff --git a/metadata/md5-cache/sys-auth/polkit-0.118 b/metadata/md5-cache/sys-auth/polkit-0.118 index 3d621afc9244..80303caf7cfa 100644 --- a/metadata/md5-cache/sys-auth/polkit-0.118 +++ b/metadata/md5-cache/sys-auth/polkit-0.118 @@ -4,7 +4,7 @@ DEPEND=dev-lang/spidermonkey:78[-debug] dev-libs/glib:2 dev-libs/expat elogind? DESCRIPTION=Policy framework for controlling privileges for system-wide services EAPI=7 HOMEPAGE=https://www.freedesktop.org/wiki/Software/polkit https://gitlab.freedesktop.org/polkit/polkit -IUSE=elogind examples gtk +introspection jit kde nls pam selinux systemd test +IUSE=elogind examples gtk +introspection kde nls pam selinux systemd test KEYWORDS=amd64 arm arm64 ~mips ppc64 ~riscv ~s390 x86 LICENSE=LGPL-2 PDEPEND=gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 >=lxde-base/lxsession-0.5.2 ) ) kde? ( kde-plasma/polkit-kde-agent ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.freedesktop.org/software/polkit/releases/polkit-0.118.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e pam b097695df28f3974e3af860d6704d4f2 pax-utils d3fc79d3d50544347e324864f95206e2 systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=64758b599549c0b86fd868f9d4dfb699 +_md5_=becfcdd14ec447ff2c562f4e77465709 diff --git a/metadata/md5-cache/sys-auth/polkit-0.119 b/metadata/md5-cache/sys-auth/polkit-0.119 new file mode 100644 index 000000000000..81abaec1846f --- /dev/null +++ b/metadata/md5-cache/sys-auth/polkit-0.119 @@ -0,0 +1,17 @@ +BDEPEND=acct-user/polkitd app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xsl-stylesheets dev-libs/glib dev-libs/gobject-introspection-common dev-libs/libxslt dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig introspection? ( dev-libs/gobject-introspection ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare +DEPEND=dev-lang/spidermonkey:78[-debug] dev-libs/glib:2 dev-libs/expat elogind? ( sys-auth/elogind ) pam? ( sys-auth/pambase sys-libs/pam ) systemd? ( sys-apps/systemd:0=[policykit] ) +DESCRIPTION=Policy framework for controlling privileges for system-wide services +EAPI=7 +HOMEPAGE=https://www.freedesktop.org/wiki/Software/polkit https://gitlab.freedesktop.org/polkit/polkit +IUSE=elogind examples gtk +introspection kde nls pam selinux systemd test +KEYWORDS=amd64 ~arm ~arm64 ~mips ~ppc64 ~riscv ~s390 x86 +LICENSE=LGPL-2 +PDEPEND=gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 >=lxde-base/lxsession-0.5.2 ) ) kde? ( kde-plasma/polkit-kde-agent ) +RDEPEND=dev-lang/spidermonkey:78[-debug] dev-libs/glib:2 dev-libs/expat elogind? ( sys-auth/elogind ) pam? ( sys-auth/pambase sys-libs/pam ) systemd? ( sys-apps/systemd:0=[policykit] ) acct-user/polkitd selinux? ( sec-policy/selinux-policykit ) +REQUIRED_USE=^^ ( elogind systemd ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.freedesktop.org/software/polkit/releases/polkit-0.119.tar.gz +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e pam b097695df28f3974e3af860d6704d4f2 pax-utils d3fc79d3d50544347e324864f95206e2 systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=e69fcb4d60dbfe43995b8c747ddff799 diff --git a/metadata/md5-cache/sys-fs/fuse-3.10.3 b/metadata/md5-cache/sys-fs/fuse-3.10.3 index c3195b4693ba..f70e7141c177 100644 --- a/metadata/md5-cache/sys-fs/fuse-3.10.3 +++ b/metadata/md5-cache/sys-fs/fuse-3.10.3 @@ -4,11 +4,11 @@ DESCRIPTION=An interface for filesystems implemented in userspace EAPI=7 HOMEPAGE=https://github.com/libfuse/libfuse IUSE=+suid test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=sys-fs/fuse-common-3.3.0-r1 RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://github.com/libfuse/libfuse/releases/download/fuse-3.10.3/fuse-3.10.3.tar.xz _eclasses_=meson 28cbb704f3b4e0481c4a5f22be635115 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f multilib-minimal 12533389e8f5cc25f70ffcddbc9b3d29 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=571ed5edfdde0ef186bbb7fa0d32a883 +_md5_=ff06b557a54b7cb34721dc31ff3d41f4 diff --git a/metadata/md5-cache/sys-fs/reiser4progs-2.0.5 b/metadata/md5-cache/sys-fs/reiser4progs-2.0.5 index d0dbcbf69340..c92458413848 100644 --- a/metadata/md5-cache/sys-fs/reiser4progs-2.0.5 +++ b/metadata/md5-cache/sys-fs/reiser4progs-2.0.5 @@ -4,10 +4,10 @@ DESCRIPTION=reiser4progs: mkfs, fsck, etc... EAPI=7 HOMEPAGE=https://sourceforge.net/projects/reiser4/ IUSE=debug readline static static-libs split-usr -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ppc64 -sparc ~x86 +KEYWORDS=amd64 arm ~arm64 ~ppc ppc64 -sparc x86 LICENSE=GPL-2 RDEPEND=!static? ( >=sys-libs/libaal-1.0.7:= readline? ( sys-libs/readline:0= ) ) static-libs? ( >=sys-libs/libaal-1.0.7:=[static-libs(+)] ) SLOT=0 SRC_URI=mirror://sourceforge/reiser4/reiser4progs-2.0.5.tar.gz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 -_md5_=f81d91ae9d76bfa63dc072cc780e4b3f +_md5_=116782012d42bf0f88dc4eb0fcfd906b diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.42 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.42 new file mode 100644 index 000000000000..0e2f15375ba5 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.42 @@ -0,0 +1,16 @@ +BDEPEND=debug? ( dev-util/pahole ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend setup test +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.10.42 +RDEPEND=!sys-kernel/gentoo-kernel-bin:5.10.42 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.10.42 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-45.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-45.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-build b34a23faa4245fd914731f4abd7f70d4 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e portability c10bdc40668533b1faf15b1d89df0303 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=b9e10409bf9c58561950272744595567 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.9 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.9 new file mode 100644 index 000000000000..4f19f3867de7 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.9 @@ -0,0 +1,16 @@ +BDEPEND=debug? ( dev-util/pahole ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend setup test +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.12.9 +RDEPEND=!sys-kernel/gentoo-kernel-bin:5.12.9 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.12.9 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-10.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-10.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-build b34a23faa4245fd914731f4abd7f70d4 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e portability c10bdc40668533b1faf15b1d89df0303 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=3c8f8876da6ec6b12b0c3d90b5042766 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.124 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.124 new file mode 100644 index 000000000000..e7847044e11f --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.124 @@ -0,0 +1,15 @@ +BDEPEND=debug? ( dev-util/pahole ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend setup test +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.4.124 +RDEPEND=!sys-kernel/gentoo-kernel-bin:5.4.124 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.4.124 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-127.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-127.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-build b34a23faa4245fd914731f4abd7f70d4 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e portability c10bdc40668533b1faf15b1d89df0303 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=a31b0b01b8aa37b8fea6a8f240985c1b diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.42 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.42 new file mode 100644 index 000000000000..2ed33162858d --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.42 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) +DEFINED_PHASES=config configure install postinst postrm preinst prepare prerm pretend test unpack +DESCRIPTION=Pre-built Linux kernel with genpatches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=+initramfs test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.10.42 +RDEPEND=!sys-kernel/gentoo-kernel:5.10.42 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.10.42 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-45.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-45.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.42-1.xpak -> gentoo-kernel-5.10.42-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.42-1.xpak -> gentoo-kernel-5.10.42-1.x86.xpak ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=37d54d5ae89336540aa7654c6118ae77 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.9 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.9 new file mode 100644 index 000000000000..44b444186534 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.9 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) +DEFINED_PHASES=config configure install postinst postrm preinst prepare prerm pretend test unpack +DESCRIPTION=Pre-built Linux kernel with genpatches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=+initramfs test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.12.9 +RDEPEND=!sys-kernel/gentoo-kernel:5.12.9 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.12.9 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-10.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-10.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.9-1.xpak -> gentoo-kernel-5.12.9-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.9-1.xpak -> gentoo-kernel-5.12.9-1.x86.xpak ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=0605f98f246f76e8d57493b387f90b32 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.124 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.124 new file mode 100644 index 000000000000..0d960edc526d --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.124 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) +DEFINED_PHASES=config configure install postinst postrm preinst prepare prerm pretend test unpack +DESCRIPTION=Pre-built Linux kernel with genpatches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=+initramfs test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.4.124 +RDEPEND=!sys-kernel/gentoo-kernel:5.4.124 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.4.124 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-127.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-127.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.124-1.xpak -> gentoo-kernel-5.4.124-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.124-1.xpak -> gentoo-kernel-5.4.124-1.x86.xpak ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=37d54d5ae89336540aa7654c6118ae77 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.235 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.235 new file mode 100644 index 000000000000..4bcd9d119c5c --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.235 @@ -0,0 +1,14 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 4.14 kernel tree +EAPI=7 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=4.14.235 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-245.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-245.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-245.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-245.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-245.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-245.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-245.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-245.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-245.experimental.tar.xz ) +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=94709ed017a2f7b70b0bafb8550ba890 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.193 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.193 new file mode 100644 index 000000000000..f63386d57237 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.193 @@ -0,0 +1,14 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 4.19 kernel tree +EAPI=7 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=4.19.193 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-192.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-192.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-192.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-192.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-192.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-192.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-192.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-192.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-192.experimental.tar.xz ) +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=d7d1aeb4eb3fe65e1cc092dacd4b4089 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.271 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.271 new file mode 100644 index 000000000000..f897696aefb0 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.271 @@ -0,0 +1,14 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree +EAPI=7 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 linux-firmware +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=4.4.271 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-273.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-273.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-273.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-273.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-273.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-273.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-273.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-273.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-273.experimental.tar.xz ) +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=72e66e960b29795c5d2152d9f7e4403b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.271 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.271 new file mode 100644 index 000000000000..00e318d03be0 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.271 @@ -0,0 +1,14 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 4.9 kernel tree +EAPI=7 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 linux-firmware +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=4.9.271 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-275.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-275.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-275.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-275.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-275.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-275.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-275.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-275.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-275.experimental.tar.xz ) +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=129b592c56acb21c22361008dbae22fc diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.10.42 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.10.42 new file mode 100644 index 000000000000..7c8f66b5ac7e --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.10.42 @@ -0,0 +1,14 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 5.10 kernel tree +EAPI=7 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=5.10.42 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-45.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-45.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.10-45.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-45.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-45.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.10-45.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-45.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-45.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.10-45.experimental.tar.xz ) +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=eac6e1c199f38c804e7021299942c099 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.12.9 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.12.9 new file mode 100644 index 000000000000..a359022d2921 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.12.9 @@ -0,0 +1,14 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 5.12 kernel tree +EAPI=7 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=5.12.9 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-10.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-10.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.12-10.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-10.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-10.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.12-10.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-10.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-10.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.12-10.experimental.tar.xz ) +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=9e120c4716a97df2b2dd3cec9b8f0285 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.124 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.124 new file mode 100644 index 000000000000..be96be21ede1 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.124 @@ -0,0 +1,14 @@ +BDEPEND=!build? ( sys-apps/sed ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 5.4 kernel tree +EAPI=7 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=5.4.124 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-127.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-127.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-127.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-127.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-127.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-127.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-127.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-127.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-127.experimental.tar.xz ) +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 +_md5_=34a3444e8f25923feeb673df89426b67 diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20210511 b/metadata/md5-cache/sys-kernel/linux-firmware-20210518 index 484c74b5bf59..6e0a47ebebc8 100644 --- a/metadata/md5-cache/sys-kernel/linux-firmware-20210511 +++ b/metadata/md5-cache/sys-kernel/linux-firmware-20210518 @@ -10,6 +10,6 @@ RDEPEND=!savedconfig? ( redistributable? ( !sys-firmware/alsa-firmware[alsa_card REQUIRED_USE=initramfs? ( redistributable ) RESTRICT=binchecks strip test unknown-license? ( bindist ) SLOT=0 -SRC_URI=https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/linux-firmware-20210511.tar.xz +SRC_URI=https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/f8462923ed8fc874f770b8c6dfad49d39b381f14.tar.gz -> linux-firmware-20210518.tar.gz _eclasses_=mount-boot 0115c903367b000e52ffd4efa2fb5c3f portability c10bdc40668533b1faf15b1d89df0303 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd -_md5_=d865b9e45eb6e4e9f9ba82f3e00bddf3 +_md5_=360cf9b0125a47be328e9c7c7e1f820e diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.42 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.42 new file mode 100644 index 000000000000..16ce5c3f3bff --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.42 @@ -0,0 +1,16 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( app-crypt/openpgp-keys-kernel ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend setup test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.10.42 +RDEPEND=!sys-kernel/vanilla-kernel-bin:5.10.42 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.10.42 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.42.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.42.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-build b34a23faa4245fd914731f4abd7f70d4 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e portability c10bdc40668533b1faf15b1d89df0303 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 24921b57d6561d87cbef4916a296ada4 verify-sig 40b4f4f782cf67118f594ce604cc4c0a +_md5_=0e2aa050cf08fac5e8c9917b602638a0 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.9 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.9 new file mode 100644 index 000000000000..29faca5e6afe --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.9 @@ -0,0 +1,16 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( app-crypt/openpgp-keys-kernel ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend setup test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.12.9 +RDEPEND=!sys-kernel/vanilla-kernel-bin:5.12.9 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.12.9 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.9.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.9.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-build b34a23faa4245fd914731f4abd7f70d4 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e portability c10bdc40668533b1faf15b1d89df0303 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 24921b57d6561d87cbef4916a296ada4 verify-sig 40b4f4f782cf67118f594ce604cc4c0a +_md5_=5df19398044f74fd0dd076acc605cac3 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.124 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.124 new file mode 100644 index 000000000000..4a6db25f3f7d --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.124 @@ -0,0 +1,15 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( app-crypt/openpgp-keys-kernel ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend setup test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test verify-sig +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2 +PDEPEND=>=virtual/dist-kernel-5.4.124 +RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.124 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.4.124 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.124.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.124.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-build b34a23faa4245fd914731f4abd7f70d4 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 0115c903367b000e52ffd4efa2fb5c3f multilib d410501a125f99ffb560b0c523cd3d1e portability c10bdc40668533b1faf15b1d89df0303 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 24921b57d6561d87cbef4916a296ada4 verify-sig 40b4f4f782cf67118f594ce604cc4c0a +_md5_=1a652dd3004bcc73801b4c105824aafb diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.234 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.235 index eb36b953a715..0b2fdbaa0884 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.234 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.235 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.14.234 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.234.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz +SLOT=4.14.235 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.235.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=58f7232930e52ceba081454f3063a063 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.192 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.193 index 8c4fdd05ebd4..f1d031379889 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.192 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.193 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.19.192 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.192.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz +SLOT=4.19.193 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.193.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=58f7232930e52ceba081454f3063a063 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.270 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.271 index 819185d90122..f9cbedd16b1c 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.270 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.271 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 linux-firmware RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.4.270 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.4.270.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz +SLOT=4.4.271 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.4.271.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=58f7232930e52ceba081454f3063a063 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.270 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.271 index 25d02bf97a34..a0184f1a0ff5 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.270 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.271 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 linux-firmware RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.9.270 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.9.270.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz +SLOT=4.9.271 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.9.271.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=58f7232930e52ceba081454f3063a063 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.10.41 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.10.42 index 824d1a2f099f..2bbe02aff54b 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.10.41 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.10.42 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.10.41 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.10.41.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz +SLOT=5.10.42 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.10.42.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=58f7232930e52ceba081454f3063a063 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.12.8 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.12.9 index ecfc7130070e..0bd38b068bc1 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.12.8 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.12.9 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.12.8 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.12.8.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz +SLOT=5.12.9 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.12.9.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=58f7232930e52ceba081454f3063a063 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.123 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.124 index fa78e83934d2..8f58e80cff1d 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.123 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.124 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.4.123 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.123.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz +SLOT=5.4.124 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.124.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=58f7232930e52ceba081454f3063a063 diff --git a/metadata/md5-cache/sys-kernel/zen-sources-5.11.15 b/metadata/md5-cache/sys-kernel/zen-sources-5.11.15 deleted file mode 100644 index b0fb07be64d1..000000000000 --- a/metadata/md5-cache/sys-kernel/zen-sources-5.11.15 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed ) -DESCRIPTION=The Zen Kernel Live Sources -EAPI=6 -HOMEPAGE=https://github.com/zen-kernel -IUSE=symlink build -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.11.15 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.11.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.11-1.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.11-1.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.11-1.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.11-1.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.11-1.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.11-1.extras.tar.xz https://github.com/zen-kernel/zen-kernel/releases/download/v5.11.15-zen1/v5.11.15-zen1.patch.xz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=bedff61920e0cf134413a73e7230329b diff --git a/metadata/md5-cache/sys-kernel/zen-sources-5.10.16 b/metadata/md5-cache/sys-kernel/zen-sources-5.12.9 index da679eb2b7ea..e5306e9a90a4 100644 --- a/metadata/md5-cache/sys-kernel/zen-sources-5.10.16 +++ b/metadata/md5-cache/sys-kernel/zen-sources-5.12.9 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.10.16 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-1.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-1.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.10-1.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-1.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-1.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.10-1.extras.tar.xz https://github.com/zen-kernel/zen-kernel/releases/download/v5.10.16-zen1/v5.10.16-zen1.patch.xz +SLOT=5.12.9 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-1.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-1.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.12-1.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.12-1.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-1.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.12-1.extras.tar.xz https://github.com/zen-kernel/zen-kernel/releases/download/v5.12.9-zen1/v5.12.9-zen1.patch.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 c2fd42f2d934e63b6fc62411049efaf5 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 _md5_=f8bb216e718225a26e69b38539a7f01a diff --git a/metadata/md5-cache/virtual/dist-kernel-5.10.42 b/metadata/md5-cache/virtual/dist-kernel-5.10.42 new file mode 100644 index 000000000000..75ab6c6bd2c6 --- /dev/null +++ b/metadata/md5-cache/virtual/dist-kernel-5.10.42 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual to depend on any Distribution Kernel +EAPI=7 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +RDEPEND=|| ( ~sys-kernel/gentoo-kernel-5.10.42 ~sys-kernel/gentoo-kernel-bin-5.10.42 ~sys-kernel/vanilla-kernel-5.10.42 ) +SLOT=0/5.10.42 +_md5_=91d8b5962acc5c49e446c8c36367c827 diff --git a/metadata/md5-cache/virtual/dist-kernel-5.12.9 b/metadata/md5-cache/virtual/dist-kernel-5.12.9 new file mode 100644 index 000000000000..722e6bb9030d --- /dev/null +++ b/metadata/md5-cache/virtual/dist-kernel-5.12.9 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual to depend on any Distribution Kernel +EAPI=7 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +RDEPEND=|| ( ~sys-kernel/gentoo-kernel-5.12.9 ~sys-kernel/gentoo-kernel-bin-5.12.9 ~sys-kernel/vanilla-kernel-5.12.9 ) +SLOT=0/5.12.9 +_md5_=91d8b5962acc5c49e446c8c36367c827 diff --git a/metadata/md5-cache/virtual/dist-kernel-5.4.124 b/metadata/md5-cache/virtual/dist-kernel-5.4.124 new file mode 100644 index 000000000000..180cc6d0a4f2 --- /dev/null +++ b/metadata/md5-cache/virtual/dist-kernel-5.4.124 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual to depend on any Distribution Kernel +EAPI=7 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +RDEPEND=|| ( ~sys-kernel/gentoo-kernel-5.4.124 ~sys-kernel/gentoo-kernel-bin-5.4.124 ~sys-kernel/vanilla-kernel-5.4.124 ) +SLOT=0/5.4.124 +_md5_=d432bd6c060165e457b136172ea0be2d diff --git a/metadata/md5-cache/virtual/gnustep-back-0.29.0 b/metadata/md5-cache/virtual/gnustep-back-0.29.0 new file mode 100644 index 000000000000..2126dff0d1ba --- /dev/null +++ b/metadata/md5-cache/virtual/gnustep-back-0.29.0 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for back-end component for the GNUstep GUI Library +EAPI=7 +KEYWORDS=~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +RDEPEND=|| ( ~gnustep-base/gnustep-back-cairo-0.29.0 ~gnustep-base/gnustep-back-art-0.29.0 ~gnustep-base/gnustep-back-xlib-0.29.0 ) +SLOT=0 +_md5_=26821b5ef94144609d169be2af709718 diff --git a/metadata/md5-cache/www-apache/passenger-6.0.8 b/metadata/md5-cache/www-apache/passenger-6.0.8 index bc5d041fca86..f03c228ae70d 100644 --- a/metadata/md5-cache/www-apache/passenger-6.0.8 +++ b/metadata/md5-cache/www-apache/passenger-6.0.8 @@ -4,7 +4,7 @@ DESCRIPTION=Passenger makes deployment of Ruby on Rails applications a breeze EAPI=6 HOMEPAGE=https://www.phusionpassenger.com/ IUSE=apache2 debug test apache2 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~ppc ~ppc64 x86 LICENSE=GPL-2 RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby25(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby26(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby27(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby30(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby30(-)] ) >=dev-libs/libuv-1.8.0 net-misc/curl[ssl] apache2? ( www-servers/apache[apache2_modules_unixd(+)] ) apache2? ( =www-servers/apache-2* ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.8.tar.gz _eclasses_=apache-module 6d6745b832afba32cbcfba34e3ee328f depend.apache d54e0d0bd6b36c476594edc2cee2e332 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng b97a1a9a3103f9a66f622ea3eb2ce12b ruby-utils 03dfa7f54d59d740c2964dc7256d2820 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=0af2537205df560eaf901ed6176d2114 +_md5_=31b13d821b42605a49e47c8392b967dd diff --git a/metadata/md5-cache/www-apps/rt-4.4.4 b/metadata/md5-cache/www-apps/rt-4.4.4-r1 index 1fad558d53b8..3769cdd56d9f 100644 --- a/metadata/md5-cache/www-apps/rt-4.4.4 +++ b/metadata/md5-cache/www-apps/rt-4.4.4-r1 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst prepare prerm setup -DEPEND=>=dev-lang/perl-5.10.1 >=dev-perl/Apache-Session-1.53 >=dev-perl/CGI-4 >=dev-perl/CSS-Squish-0.06 >=dev-perl/Class-Accessor-0.34 >=dev-perl/Class-ReturnValue-0.550.0-r1 >=dev-perl/DBI-1.37 >=dev-perl/Date-Extract-0.02 >=dev-perl/DateTime-Format-Natural-0.67 >=dev-perl/Devel-StackTrace-1.19 >=dev-perl/Email-Address-1.912.0 >=dev-perl/Email-Address-List-0.60.0 >=dev-perl/HTML-FormatText-WithLinks-0.14 >=dev-perl/HTML-Mason-1.43 >=dev-perl/HTML-Scrubber-0.08 >=dev-perl/HTTP-Server-Simple-0.34 >=dev-perl/HTTP-Server-Simple-Mason-0.14 >=dev-perl/Locale-Maketext-Lexicon-0.32 >=dev-perl/Log-Dispatch-2.410.0 >=dev-perl/MIME-tools-5.425 >=dev-perl/MailTools-1.60 >=dev-perl/Module-Versions-Report-1.05 >=dev-perl/Role-Basic-0.12 >=dev-perl/Symbol-Global-Name-0.04 >=dev-perl/Text-Quoted-2.80.0 >=dev-perl/Text-WikiFormat-0.76 >=dev-perl/Tree-Simple-1.04 >=dev-perl/XML-RSS-1.05 >=dev-perl/DBIx-SearchBuilder-1.660.0 >=virtual/perl-Digest-MD5-2.27 >=virtual/perl-Encode-2.730.0 >=virtual/perl-File-Spec-0.8 >=virtual/perl-Getopt-Long-2.24 >=virtual/perl-Locale-Maketext-1.06 >=virtual/perl-Storable-2.08 dev-perl/Business-Hours dev-perl/CGI-Emulate-PSGI dev-perl/CGI-PSGI dev-perl/Cache-Simple-TimedExpiry dev-perl/Calendar-Simple dev-perl/Convert-Color dev-perl/Crypt-Eksblowfish dev-perl/Crypt-SSLeay dev-perl/Crypt-X509 dev-perl/CSS-Minifier-XS dev-perl/Data-Page-Pageset dev-perl/DBD-SQLite dev-perl/Data-GUID dev-perl/Data-ICal dev-perl/Date-Manip dev-perl/Devel-GlobalDestruction dev-perl/File-ShareDir dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil dev-perl/GD[png,gif] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Formatter dev-perl/HTML-FormatText-WithLinks-AndTables dev-perl/HTML-Gumbo dev-perl/HTML-Mason-PSGIHandler dev-perl/HTML-Parser dev-perl/HTML-Quoted dev-perl/HTML-RewriteAttributes dev-perl/HTML-Tree dev-perl/IPC-Run3 dev-perl/JSON dev-perl/JavaScript-Minifier-XS dev-perl/MIME-Types dev-perl/Module-Refresh dev-perl/Mozilla-CA dev-perl/Net-CIDR dev-perl/PerlIO-eol dev-perl/Plack dev-perl/Regexp-Common-net-CIDR dev-perl/Regexp-IPv6 dev-perl/Scope-Upper dev-perl/Starlet dev-perl/String-ShellQuote dev-perl/TermReadKey dev-perl/Text-Autoformat dev-perl/Text-Password-Pronounceable dev-perl/Time-ParseDate dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl dev-perl/Locale-Maketext-Fuzzy dev-perl/Net-IP dev-perl/Net-Server dev-perl/Regexp-Common dev-perl/Text-Template dev-perl/Text-Wrapper virtual/perl-Digest virtual/perl-File-Temp virtual/perl-Scalar-List-Utils virtual/perl-Time-HiRes virtual/perl-libnet fastcgi? ( dev-perl/FCGI dev-perl/FCGI-ProcManager ) !lighttpd? ( dev-perl/Apache-DBI !fastcgi? ( >=www-apache/mod_perl-2 ) ) lighttpd? ( dev-perl/FCGI ) mysql? ( >=dev-perl/DBD-mysql-2.1018 ) postgres? ( >=dev-perl/DBD-Pg-1.43 ) || ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 +DEPEND=>=dev-lang/perl-5.10.1 >=dev-perl/Apache-Session-1.53 >=dev-perl/CGI-4 >=dev-perl/CSS-Squish-0.06 >=dev-perl/Class-Accessor-0.34 >=dev-perl/Class-ReturnValue-0.550.0-r1 >=dev-perl/DBI-1.37 >=dev-perl/Date-Extract-0.02 >=dev-perl/DateTime-Format-Natural-0.67 >=dev-perl/Devel-StackTrace-1.19 >=dev-perl/Email-Address-1.912.0 >=dev-perl/Email-Address-List-0.60.0 >=dev-perl/HTML-FormatText-WithLinks-0.14 >=dev-perl/HTML-Mason-1.43 >=dev-perl/HTML-Scrubber-0.08 >=dev-perl/HTTP-Server-Simple-0.34 >=dev-perl/HTTP-Server-Simple-Mason-0.14 >=dev-perl/Locale-Maketext-Lexicon-0.32 >=dev-perl/Log-Dispatch-2.410.0 >=dev-perl/MIME-tools-5.425 >=dev-perl/MailTools-1.60 >=dev-perl/Module-Versions-Report-1.05 >=dev-perl/Role-Basic-0.12 >=dev-perl/Symbol-Global-Name-0.04 >=dev-perl/Text-Quoted-2.80.0 >=dev-perl/Text-WikiFormat-0.76 >=dev-perl/Tree-Simple-1.04 >=dev-perl/XML-RSS-1.05 >=dev-perl/DBIx-SearchBuilder-1.660.0 >=virtual/perl-Digest-MD5-2.27 >=virtual/perl-Encode-2.730.0 >=virtual/perl-File-Spec-0.8 >=virtual/perl-Getopt-Long-2.24 >=virtual/perl-Locale-Maketext-1.06 >=virtual/perl-Storable-2.08 dev-perl/Business-Hours dev-perl/CGI-Emulate-PSGI dev-perl/CGI-PSGI dev-perl/Cache-Simple-TimedExpiry dev-perl/Calendar-Simple dev-perl/Convert-Color dev-perl/Crypt-Eksblowfish dev-perl/Crypt-SSLeay dev-perl/Crypt-X509 dev-perl/CSS-Minifier-XS dev-perl/Data-Page-Pageset dev-perl/DBD-SQLite dev-perl/Data-GUID dev-perl/Data-ICal dev-perl/Date-Manip dev-perl/Devel-GlobalDestruction dev-perl/File-ShareDir dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil dev-perl/GD[png(+),gif(+)] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Formatter dev-perl/HTML-FormatText-WithLinks-AndTables dev-perl/HTML-Gumbo dev-perl/HTML-Mason-PSGIHandler dev-perl/HTML-Parser dev-perl/HTML-Quoted dev-perl/HTML-RewriteAttributes dev-perl/HTML-Tree dev-perl/IPC-Run3 dev-perl/JSON dev-perl/JavaScript-Minifier-XS dev-perl/MIME-Types dev-perl/Module-Refresh dev-perl/Mozilla-CA dev-perl/Net-CIDR dev-perl/PerlIO-eol dev-perl/Plack dev-perl/Regexp-Common-net-CIDR dev-perl/Regexp-IPv6 dev-perl/Scope-Upper dev-perl/Starlet dev-perl/String-ShellQuote dev-perl/TermReadKey dev-perl/Text-Autoformat dev-perl/Text-Password-Pronounceable dev-perl/Time-ParseDate dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl dev-perl/Locale-Maketext-Fuzzy dev-perl/Net-IP dev-perl/Net-Server dev-perl/Regexp-Common dev-perl/Text-Template dev-perl/Text-Wrapper virtual/perl-Digest virtual/perl-File-Temp virtual/perl-Scalar-List-Utils virtual/perl-Time-HiRes virtual/perl-libnet fastcgi? ( dev-perl/FCGI dev-perl/FCGI-ProcManager ) !lighttpd? ( dev-perl/Apache-DBI !fastcgi? ( >=www-apache/mod_perl-2 ) ) lighttpd? ( dev-perl/FCGI ) mysql? ( >=dev-perl/DBD-mysql-2.1018 ) postgres? ( >=dev-perl/DBD-Pg-1.43 ) || ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 DESCRIPTION=RT is an enterprise-grade ticketing system EAPI=6 HOMEPAGE=https://www.bestpractical.com/rt/ IUSE=mysql +postgres fastcgi lighttpd vhosts KEYWORDS=~amd64 LICENSE=GPL-2 -RDEPEND=>=dev-lang/perl-5.10.1 >=dev-perl/Apache-Session-1.53 >=dev-perl/CGI-4 >=dev-perl/CSS-Squish-0.06 >=dev-perl/Class-Accessor-0.34 >=dev-perl/Class-ReturnValue-0.550.0-r1 >=dev-perl/DBI-1.37 >=dev-perl/Date-Extract-0.02 >=dev-perl/DateTime-Format-Natural-0.67 >=dev-perl/Devel-StackTrace-1.19 >=dev-perl/Email-Address-1.912.0 >=dev-perl/Email-Address-List-0.60.0 >=dev-perl/HTML-FormatText-WithLinks-0.14 >=dev-perl/HTML-Mason-1.43 >=dev-perl/HTML-Scrubber-0.08 >=dev-perl/HTTP-Server-Simple-0.34 >=dev-perl/HTTP-Server-Simple-Mason-0.14 >=dev-perl/Locale-Maketext-Lexicon-0.32 >=dev-perl/Log-Dispatch-2.410.0 >=dev-perl/MIME-tools-5.425 >=dev-perl/MailTools-1.60 >=dev-perl/Module-Versions-Report-1.05 >=dev-perl/Role-Basic-0.12 >=dev-perl/Symbol-Global-Name-0.04 >=dev-perl/Text-Quoted-2.80.0 >=dev-perl/Text-WikiFormat-0.76 >=dev-perl/Tree-Simple-1.04 >=dev-perl/XML-RSS-1.05 >=dev-perl/DBIx-SearchBuilder-1.660.0 >=virtual/perl-Digest-MD5-2.27 >=virtual/perl-Encode-2.730.0 >=virtual/perl-File-Spec-0.8 >=virtual/perl-Getopt-Long-2.24 >=virtual/perl-Locale-Maketext-1.06 >=virtual/perl-Storable-2.08 dev-perl/Business-Hours dev-perl/CGI-Emulate-PSGI dev-perl/CGI-PSGI dev-perl/Cache-Simple-TimedExpiry dev-perl/Calendar-Simple dev-perl/Convert-Color dev-perl/Crypt-Eksblowfish dev-perl/Crypt-SSLeay dev-perl/Crypt-X509 dev-perl/CSS-Minifier-XS dev-perl/Data-Page-Pageset dev-perl/DBD-SQLite dev-perl/Data-GUID dev-perl/Data-ICal dev-perl/Date-Manip dev-perl/Devel-GlobalDestruction dev-perl/File-ShareDir dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil dev-perl/GD[png,gif] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Formatter dev-perl/HTML-FormatText-WithLinks-AndTables dev-perl/HTML-Gumbo dev-perl/HTML-Mason-PSGIHandler dev-perl/HTML-Parser dev-perl/HTML-Quoted dev-perl/HTML-RewriteAttributes dev-perl/HTML-Tree dev-perl/IPC-Run3 dev-perl/JSON dev-perl/JavaScript-Minifier-XS dev-perl/MIME-Types dev-perl/Module-Refresh dev-perl/Mozilla-CA dev-perl/Net-CIDR dev-perl/PerlIO-eol dev-perl/Plack dev-perl/Regexp-Common-net-CIDR dev-perl/Regexp-IPv6 dev-perl/Scope-Upper dev-perl/Starlet dev-perl/String-ShellQuote dev-perl/TermReadKey dev-perl/Text-Autoformat dev-perl/Text-Password-Pronounceable dev-perl/Time-ParseDate dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl dev-perl/Locale-Maketext-Fuzzy dev-perl/Net-IP dev-perl/Net-Server dev-perl/Regexp-Common dev-perl/Text-Template dev-perl/Text-Wrapper virtual/perl-Digest virtual/perl-File-Temp virtual/perl-Scalar-List-Utils virtual/perl-Time-HiRes virtual/perl-libnet fastcgi? ( dev-perl/FCGI dev-perl/FCGI-ProcManager ) !lighttpd? ( dev-perl/Apache-DBI !fastcgi? ( >=www-apache/mod_perl-2 ) ) lighttpd? ( dev-perl/FCGI ) mysql? ( >=dev-perl/DBD-mysql-2.1018 ) postgres? ( >=dev-perl/DBD-Pg-1.43 ) virtual/mta !lighttpd? ( =www-servers/apache-2* ) lighttpd? ( >=www-servers/lighttpd-1.3.13 sys-apps/openrc ) >=app-admin/webapp-config-1.50.15 +RDEPEND=>=dev-lang/perl-5.10.1 >=dev-perl/Apache-Session-1.53 >=dev-perl/CGI-4 >=dev-perl/CSS-Squish-0.06 >=dev-perl/Class-Accessor-0.34 >=dev-perl/Class-ReturnValue-0.550.0-r1 >=dev-perl/DBI-1.37 >=dev-perl/Date-Extract-0.02 >=dev-perl/DateTime-Format-Natural-0.67 >=dev-perl/Devel-StackTrace-1.19 >=dev-perl/Email-Address-1.912.0 >=dev-perl/Email-Address-List-0.60.0 >=dev-perl/HTML-FormatText-WithLinks-0.14 >=dev-perl/HTML-Mason-1.43 >=dev-perl/HTML-Scrubber-0.08 >=dev-perl/HTTP-Server-Simple-0.34 >=dev-perl/HTTP-Server-Simple-Mason-0.14 >=dev-perl/Locale-Maketext-Lexicon-0.32 >=dev-perl/Log-Dispatch-2.410.0 >=dev-perl/MIME-tools-5.425 >=dev-perl/MailTools-1.60 >=dev-perl/Module-Versions-Report-1.05 >=dev-perl/Role-Basic-0.12 >=dev-perl/Symbol-Global-Name-0.04 >=dev-perl/Text-Quoted-2.80.0 >=dev-perl/Text-WikiFormat-0.76 >=dev-perl/Tree-Simple-1.04 >=dev-perl/XML-RSS-1.05 >=dev-perl/DBIx-SearchBuilder-1.660.0 >=virtual/perl-Digest-MD5-2.27 >=virtual/perl-Encode-2.730.0 >=virtual/perl-File-Spec-0.8 >=virtual/perl-Getopt-Long-2.24 >=virtual/perl-Locale-Maketext-1.06 >=virtual/perl-Storable-2.08 dev-perl/Business-Hours dev-perl/CGI-Emulate-PSGI dev-perl/CGI-PSGI dev-perl/Cache-Simple-TimedExpiry dev-perl/Calendar-Simple dev-perl/Convert-Color dev-perl/Crypt-Eksblowfish dev-perl/Crypt-SSLeay dev-perl/Crypt-X509 dev-perl/CSS-Minifier-XS dev-perl/Data-Page-Pageset dev-perl/DBD-SQLite dev-perl/Data-GUID dev-perl/Data-ICal dev-perl/Date-Manip dev-perl/Devel-GlobalDestruction dev-perl/File-ShareDir dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil dev-perl/GD[png(+),gif(+)] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Formatter dev-perl/HTML-FormatText-WithLinks-AndTables dev-perl/HTML-Gumbo dev-perl/HTML-Mason-PSGIHandler dev-perl/HTML-Parser dev-perl/HTML-Quoted dev-perl/HTML-RewriteAttributes dev-perl/HTML-Tree dev-perl/IPC-Run3 dev-perl/JSON dev-perl/JavaScript-Minifier-XS dev-perl/MIME-Types dev-perl/Module-Refresh dev-perl/Mozilla-CA dev-perl/Net-CIDR dev-perl/PerlIO-eol dev-perl/Plack dev-perl/Regexp-Common-net-CIDR dev-perl/Regexp-IPv6 dev-perl/Scope-Upper dev-perl/Starlet dev-perl/String-ShellQuote dev-perl/TermReadKey dev-perl/Text-Autoformat dev-perl/Text-Password-Pronounceable dev-perl/Time-ParseDate dev-perl/TimeDate dev-perl/UNIVERSAL-require dev-perl/libwww-perl dev-perl/Locale-Maketext-Fuzzy dev-perl/Net-IP dev-perl/Net-Server dev-perl/Regexp-Common dev-perl/Text-Template dev-perl/Text-Wrapper virtual/perl-Digest virtual/perl-File-Temp virtual/perl-Scalar-List-Utils virtual/perl-Time-HiRes virtual/perl-libnet fastcgi? ( dev-perl/FCGI dev-perl/FCGI-ProcManager ) !lighttpd? ( dev-perl/Apache-DBI !fastcgi? ( >=www-apache/mod_perl-2 ) ) lighttpd? ( dev-perl/FCGI ) mysql? ( >=dev-perl/DBD-mysql-2.1018 ) postgres? ( >=dev-perl/DBD-Pg-1.43 ) virtual/mta !lighttpd? ( =www-servers/apache-2* ) lighttpd? ( >=www-servers/lighttpd-1.3.13 sys-apps/openrc ) >=app-admin/webapp-config-1.50.15 REQUIRED_USE=^^ ( mysql postgres ) RESTRICT=test -SLOT=4.4.4 +SLOT=4.4.4-r1 SRC_URI=https://download.bestpractical.com/pub/rt/release/rt-4.4.4.tar.gz _eclasses_=depend.apache d54e0d0bd6b36c476594edc2cee2e332 user 26d8ce6329c43cbac965617f1c0627e2 user-info a2abd4e2f4c3b9b06d64bf1329359a02 webapp 990ad6a000cf18d1ef87117e8c7b0a54 -_md5_=3a19e66735f9d24b873773ad84149f42 +_md5_=98b8b472721727f2d53a9a3d0dcfada3 diff --git a/metadata/md5-cache/www-client/google-chrome-beta-91.0.4472.77 b/metadata/md5-cache/www-client/google-chrome-beta-92.0.4515.40 index 5fcd4133dc90..81d5485679e2 100644 --- a/metadata/md5-cache/www-client/google-chrome-beta-91.0.4472.77 +++ b/metadata/md5-cache/www-client/google-chrome-beta-92.0.4515.40 @@ -9,6 +9,6 @@ LICENSE=google-chrome RDEPEND=app-accessibility/at-spi2-atk:2 app-accessibility/at-spi2-core:2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr >=dev-libs/nss-3.26 media-fonts/liberation-fonts media-libs/alsa-lib media-libs/mesa[gbm] net-misc/curl net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libdrm >=x11-libs/libX11-1.5.0 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango x11-misc/xdg-utils selinux? ( sec-policy/selinux-chromium ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_91.0.4472.77-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_92.0.4515.40-1_amd64.deb _eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e pax-utils d3fc79d3d50544347e324864f95206e2 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=bcc54f6c33b23e21a948dc2d14b06bdc diff --git a/metadata/md5-cache/www-client/librewolf-84.0.2 b/metadata/md5-cache/www-client/librewolf-84.0.2 index 6f793ef2ab34..5a7053fc0e52 100644 --- a/metadata/md5-cache/www-client/librewolf-84.0.2 +++ b/metadata/md5-cache/www-client/librewolf-84.0.2 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.59.1 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat > REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/84 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/84.0.2/source/firefox-84.0.2.source.tar.xz -> firefox-84.0.2.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-84-patches-02.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-84-patches-02.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-84-patches-02.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ach.xpi -> firefox-84.0.2-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/af.xpi -> firefox-84.0.2-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/an.xpi -> firefox-84.0.2-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ar.xpi -> firefox-84.0.2-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ast.xpi -> firefox-84.0.2-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/az.xpi -> firefox-84.0.2-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/be.xpi -> firefox-84.0.2-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/bg.xpi -> firefox-84.0.2-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/bn.xpi -> firefox-84.0.2-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/br.xpi -> firefox-84.0.2-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/bs.xpi -> firefox-84.0.2-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ca-valencia.xpi -> firefox-84.0.2-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ca.xpi -> firefox-84.0.2-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/cak.xpi -> firefox-84.0.2-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/cs.xpi -> firefox-84.0.2-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/cy.xpi -> firefox-84.0.2-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/da.xpi -> firefox-84.0.2-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/de.xpi -> firefox-84.0.2-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/dsb.xpi -> firefox-84.0.2-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/el.xpi -> firefox-84.0.2-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/en-CA.xpi -> firefox-84.0.2-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/en-GB.xpi -> firefox-84.0.2-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/eo.xpi -> firefox-84.0.2-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/es-AR.xpi -> firefox-84.0.2-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/es-CL.xpi -> firefox-84.0.2-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/es-ES.xpi -> firefox-84.0.2-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/es-MX.xpi -> firefox-84.0.2-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/et.xpi -> firefox-84.0.2-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/eu.xpi -> firefox-84.0.2-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/fa.xpi -> firefox-84.0.2-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ff.xpi -> firefox-84.0.2-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/fi.xpi -> firefox-84.0.2-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/fr.xpi -> firefox-84.0.2-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/fy-NL.xpi -> firefox-84.0.2-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ga-IE.xpi -> firefox-84.0.2-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/gd.xpi -> firefox-84.0.2-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/gl.xpi -> firefox-84.0.2-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/gn.xpi -> firefox-84.0.2-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/gu-IN.xpi -> firefox-84.0.2-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/he.xpi -> firefox-84.0.2-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/hi-IN.xpi -> firefox-84.0.2-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/hr.xpi -> firefox-84.0.2-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/hsb.xpi -> firefox-84.0.2-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/hu.xpi -> firefox-84.0.2-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/hy-AM.xpi -> firefox-84.0.2-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ia.xpi -> firefox-84.0.2-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/id.xpi -> firefox-84.0.2-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/is.xpi -> firefox-84.0.2-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/it.xpi -> firefox-84.0.2-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ja.xpi -> firefox-84.0.2-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ka.xpi -> firefox-84.0.2-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/kab.xpi -> firefox-84.0.2-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/kk.xpi -> firefox-84.0.2-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/km.xpi -> firefox-84.0.2-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/kn.xpi -> firefox-84.0.2-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ko.xpi -> firefox-84.0.2-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/lij.xpi -> firefox-84.0.2-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/lt.xpi -> firefox-84.0.2-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/lv.xpi -> firefox-84.0.2-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/mk.xpi -> firefox-84.0.2-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/mr.xpi -> firefox-84.0.2-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ms.xpi -> firefox-84.0.2-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/my.xpi -> firefox-84.0.2-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/nb-NO.xpi -> firefox-84.0.2-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ne-NP.xpi -> firefox-84.0.2-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/nl.xpi -> firefox-84.0.2-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/nn-NO.xpi -> firefox-84.0.2-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/oc.xpi -> firefox-84.0.2-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/pa-IN.xpi -> firefox-84.0.2-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/pl.xpi -> firefox-84.0.2-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/pt-BR.xpi -> firefox-84.0.2-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/pt-PT.xpi -> firefox-84.0.2-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/rm.xpi -> firefox-84.0.2-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ro.xpi -> firefox-84.0.2-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ru.xpi -> firefox-84.0.2-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/si.xpi -> firefox-84.0.2-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/sk.xpi -> firefox-84.0.2-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/sl.xpi -> firefox-84.0.2-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/son.xpi -> firefox-84.0.2-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/sq.xpi -> firefox-84.0.2-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/sr.xpi -> firefox-84.0.2-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/sv-SE.xpi -> firefox-84.0.2-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ta.xpi -> firefox-84.0.2-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/te.xpi -> firefox-84.0.2-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/th.xpi -> firefox-84.0.2-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/tl.xpi -> firefox-84.0.2-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/tr.xpi -> firefox-84.0.2-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/trs.xpi -> firefox-84.0.2-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/uk.xpi -> firefox-84.0.2-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/ur.xpi -> firefox-84.0.2-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/uz.xpi -> firefox-84.0.2-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/vi.xpi -> firefox-84.0.2-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/xh.xpi -> firefox-84.0.2-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/zh-CN.xpi -> firefox-84.0.2-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/84.0.2/linux-x86_64/xpi/zh-TW.xpi -> firefox-84.0.2-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=6e6bf18e6b30e4c32ef99af13b205b2c diff --git a/metadata/md5-cache/www-client/librewolf-85.0-r1 b/metadata/md5-cache/www-client/librewolf-85.0-r1 index 126f1e6b004e..5df526bdd1f9 100644 --- a/metadata/md5-cache/www-client/librewolf-85.0-r1 +++ b/metadata/md5-cache/www-client/librewolf-85.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.60 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/85 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/85.0/source/firefox-85.0.source.tar.xz -> firefox-85.0.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-85-patches-02.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-85-patches-02.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-85-patches-02.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ach.xpi -> firefox-85.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/af.xpi -> firefox-85.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/an.xpi -> firefox-85.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ar.xpi -> firefox-85.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ast.xpi -> firefox-85.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/az.xpi -> firefox-85.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/be.xpi -> firefox-85.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bg.xpi -> firefox-85.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bn.xpi -> firefox-85.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/br.xpi -> firefox-85.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/bs.xpi -> firefox-85.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-85.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ca.xpi -> firefox-85.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cak.xpi -> firefox-85.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cs.xpi -> firefox-85.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/cy.xpi -> firefox-85.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/da.xpi -> firefox-85.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/de.xpi -> firefox-85.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/dsb.xpi -> firefox-85.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/el.xpi -> firefox-85.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/en-CA.xpi -> firefox-85.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/en-GB.xpi -> firefox-85.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/eo.xpi -> firefox-85.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-AR.xpi -> firefox-85.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-CL.xpi -> firefox-85.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-ES.xpi -> firefox-85.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/es-MX.xpi -> firefox-85.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/et.xpi -> firefox-85.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/eu.xpi -> firefox-85.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fa.xpi -> firefox-85.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ff.xpi -> firefox-85.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fi.xpi -> firefox-85.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fr.xpi -> firefox-85.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-85.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-85.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gd.xpi -> firefox-85.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gl.xpi -> firefox-85.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gn.xpi -> firefox-85.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-85.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/he.xpi -> firefox-85.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-85.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hr.xpi -> firefox-85.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hsb.xpi -> firefox-85.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hu.xpi -> firefox-85.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-85.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ia.xpi -> firefox-85.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/id.xpi -> firefox-85.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/is.xpi -> firefox-85.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/it.xpi -> firefox-85.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ja.xpi -> firefox-85.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ka.xpi -> firefox-85.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kab.xpi -> firefox-85.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kk.xpi -> firefox-85.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/km.xpi -> firefox-85.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/kn.xpi -> firefox-85.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ko.xpi -> firefox-85.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lij.xpi -> firefox-85.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lt.xpi -> firefox-85.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/lv.xpi -> firefox-85.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/mk.xpi -> firefox-85.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/mr.xpi -> firefox-85.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ms.xpi -> firefox-85.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/my.xpi -> firefox-85.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-85.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-85.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nl.xpi -> firefox-85.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-85.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/oc.xpi -> firefox-85.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-85.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pl.xpi -> firefox-85.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-85.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-85.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/rm.xpi -> firefox-85.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ro.xpi -> firefox-85.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ru.xpi -> firefox-85.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/si.xpi -> firefox-85.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sk.xpi -> firefox-85.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sl.xpi -> firefox-85.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/son.xpi -> firefox-85.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sq.xpi -> firefox-85.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sr.xpi -> firefox-85.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-85.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ta.xpi -> firefox-85.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/te.xpi -> firefox-85.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/th.xpi -> firefox-85.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/tl.xpi -> firefox-85.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/tr.xpi -> firefox-85.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/trs.xpi -> firefox-85.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/uk.xpi -> firefox-85.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/ur.xpi -> firefox-85.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/uz.xpi -> firefox-85.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/vi.xpi -> firefox-85.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/xh.xpi -> firefox-85.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-85.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/85.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-85.0-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=5d0fce40af189928dd0a71a4e867a4f8 diff --git a/metadata/md5-cache/www-client/librewolf-85.0.1 b/metadata/md5-cache/www-client/librewolf-85.0.1 index 3a356b231647..dc43720d163d 100644 --- a/metadata/md5-cache/www-client/librewolf-85.0.1 +++ b/metadata/md5-cache/www-client/librewolf-85.0.1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.60 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/85 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/85.0.1/source/firefox-85.0.1.source.tar.xz -> firefox-85.0.1.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-85-patches-03.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-85-patches-03.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-85-patches-03.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ach.xpi -> firefox-85.0.1-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/af.xpi -> firefox-85.0.1-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/an.xpi -> firefox-85.0.1-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ar.xpi -> firefox-85.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ast.xpi -> firefox-85.0.1-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/az.xpi -> firefox-85.0.1-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/be.xpi -> firefox-85.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/bg.xpi -> firefox-85.0.1-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/bn.xpi -> firefox-85.0.1-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/br.xpi -> firefox-85.0.1-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/bs.xpi -> firefox-85.0.1-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ca-valencia.xpi -> firefox-85.0.1-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ca.xpi -> firefox-85.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/cak.xpi -> firefox-85.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/cs.xpi -> firefox-85.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/cy.xpi -> firefox-85.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/da.xpi -> firefox-85.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/de.xpi -> firefox-85.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/dsb.xpi -> firefox-85.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/el.xpi -> firefox-85.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/en-CA.xpi -> firefox-85.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/en-GB.xpi -> firefox-85.0.1-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/eo.xpi -> firefox-85.0.1-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/es-AR.xpi -> firefox-85.0.1-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/es-CL.xpi -> firefox-85.0.1-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/es-ES.xpi -> firefox-85.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/es-MX.xpi -> firefox-85.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/et.xpi -> firefox-85.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/eu.xpi -> firefox-85.0.1-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/fa.xpi -> firefox-85.0.1-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ff.xpi -> firefox-85.0.1-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/fi.xpi -> firefox-85.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/fr.xpi -> firefox-85.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/fy-NL.xpi -> firefox-85.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ga-IE.xpi -> firefox-85.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/gd.xpi -> firefox-85.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/gl.xpi -> firefox-85.0.1-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/gn.xpi -> firefox-85.0.1-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/gu-IN.xpi -> firefox-85.0.1-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/he.xpi -> firefox-85.0.1-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/hi-IN.xpi -> firefox-85.0.1-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/hr.xpi -> firefox-85.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/hsb.xpi -> firefox-85.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/hu.xpi -> firefox-85.0.1-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/hy-AM.xpi -> firefox-85.0.1-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ia.xpi -> firefox-85.0.1-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/id.xpi -> firefox-85.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/is.xpi -> firefox-85.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/it.xpi -> firefox-85.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ja.xpi -> firefox-85.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ka.xpi -> firefox-85.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/kab.xpi -> firefox-85.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/kk.xpi -> firefox-85.0.1-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/km.xpi -> firefox-85.0.1-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/kn.xpi -> firefox-85.0.1-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ko.xpi -> firefox-85.0.1-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/lij.xpi -> firefox-85.0.1-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/lt.xpi -> firefox-85.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/lv.xpi -> firefox-85.0.1-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/mk.xpi -> firefox-85.0.1-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/mr.xpi -> firefox-85.0.1-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ms.xpi -> firefox-85.0.1-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/my.xpi -> firefox-85.0.1-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/nb-NO.xpi -> firefox-85.0.1-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ne-NP.xpi -> firefox-85.0.1-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/nl.xpi -> firefox-85.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/nn-NO.xpi -> firefox-85.0.1-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/oc.xpi -> firefox-85.0.1-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/pa-IN.xpi -> firefox-85.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/pl.xpi -> firefox-85.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/pt-BR.xpi -> firefox-85.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/pt-PT.xpi -> firefox-85.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/rm.xpi -> firefox-85.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ro.xpi -> firefox-85.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ru.xpi -> firefox-85.0.1-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/si.xpi -> firefox-85.0.1-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/sk.xpi -> firefox-85.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/sl.xpi -> firefox-85.0.1-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/son.xpi -> firefox-85.0.1-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/sq.xpi -> firefox-85.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/sr.xpi -> firefox-85.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/sv-SE.xpi -> firefox-85.0.1-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ta.xpi -> firefox-85.0.1-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/te.xpi -> firefox-85.0.1-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/th.xpi -> firefox-85.0.1-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/tl.xpi -> firefox-85.0.1-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/tr.xpi -> firefox-85.0.1-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/trs.xpi -> firefox-85.0.1-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/uk.xpi -> firefox-85.0.1-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/ur.xpi -> firefox-85.0.1-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/uz.xpi -> firefox-85.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/vi.xpi -> firefox-85.0.1-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/xh.xpi -> firefox-85.0.1-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/zh-CN.xpi -> firefox-85.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/85.0.1/linux-x86_64/xpi/zh-TW.xpi -> firefox-85.0.1-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=9ab6e685714ae1c974374a6e93df0172 diff --git a/metadata/md5-cache/www-client/librewolf-86.0 b/metadata/md5-cache/www-client/librewolf-86.0 index 1b5aafd7a148..8fdf28fb122d 100644 --- a/metadata/md5-cache/www-client/librewolf-86.0 +++ b/metadata/md5-cache/www-client/librewolf-86.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.61 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/86 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/86.0/source/firefox-86.0.source.tar.xz -> firefox-86.0.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-86-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-86-patches-01.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-86-patches-01.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ach.xpi -> firefox-86.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/af.xpi -> firefox-86.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/an.xpi -> firefox-86.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ar.xpi -> firefox-86.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ast.xpi -> firefox-86.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/az.xpi -> firefox-86.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/be.xpi -> firefox-86.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/bg.xpi -> firefox-86.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/bn.xpi -> firefox-86.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/br.xpi -> firefox-86.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/bs.xpi -> firefox-86.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-86.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ca.xpi -> firefox-86.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/cak.xpi -> firefox-86.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/cs.xpi -> firefox-86.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/cy.xpi -> firefox-86.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/da.xpi -> firefox-86.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/de.xpi -> firefox-86.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/dsb.xpi -> firefox-86.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/el.xpi -> firefox-86.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/en-CA.xpi -> firefox-86.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/en-GB.xpi -> firefox-86.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/eo.xpi -> firefox-86.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/es-AR.xpi -> firefox-86.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/es-CL.xpi -> firefox-86.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/es-ES.xpi -> firefox-86.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/es-MX.xpi -> firefox-86.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/et.xpi -> firefox-86.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/eu.xpi -> firefox-86.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/fa.xpi -> firefox-86.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ff.xpi -> firefox-86.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/fi.xpi -> firefox-86.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/fr.xpi -> firefox-86.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-86.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-86.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/gd.xpi -> firefox-86.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/gl.xpi -> firefox-86.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/gn.xpi -> firefox-86.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-86.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/he.xpi -> firefox-86.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-86.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/hr.xpi -> firefox-86.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/hsb.xpi -> firefox-86.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/hu.xpi -> firefox-86.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-86.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ia.xpi -> firefox-86.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/id.xpi -> firefox-86.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/is.xpi -> firefox-86.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/it.xpi -> firefox-86.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ja.xpi -> firefox-86.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ka.xpi -> firefox-86.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/kab.xpi -> firefox-86.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/kk.xpi -> firefox-86.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/km.xpi -> firefox-86.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/kn.xpi -> firefox-86.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ko.xpi -> firefox-86.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/lij.xpi -> firefox-86.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/lt.xpi -> firefox-86.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/lv.xpi -> firefox-86.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/mk.xpi -> firefox-86.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/mr.xpi -> firefox-86.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ms.xpi -> firefox-86.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/my.xpi -> firefox-86.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-86.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-86.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/nl.xpi -> firefox-86.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-86.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/oc.xpi -> firefox-86.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-86.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/pl.xpi -> firefox-86.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-86.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-86.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/rm.xpi -> firefox-86.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ro.xpi -> firefox-86.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ru.xpi -> firefox-86.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/si.xpi -> firefox-86.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/sk.xpi -> firefox-86.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/sl.xpi -> firefox-86.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/son.xpi -> firefox-86.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/sq.xpi -> firefox-86.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/sr.xpi -> firefox-86.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-86.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ta.xpi -> firefox-86.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/te.xpi -> firefox-86.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/th.xpi -> firefox-86.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/tl.xpi -> firefox-86.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/tr.xpi -> firefox-86.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/trs.xpi -> firefox-86.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/uk.xpi -> firefox-86.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/ur.xpi -> firefox-86.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/uz.xpi -> firefox-86.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/vi.xpi -> firefox-86.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/xh.xpi -> firefox-86.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-86.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/86.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-86.0-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=ccbe494c2fdf7055f0fb151f9032548c diff --git a/metadata/md5-cache/www-client/librewolf-86.0.1 b/metadata/md5-cache/www-client/librewolf-86.0.1 index bd08d974bca1..e1cbd0495a84 100644 --- a/metadata/md5-cache/www-client/librewolf-86.0.1 +++ b/metadata/md5-cache/www-client/librewolf-86.0.1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.61 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/86 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/86.0.1/source/firefox-86.0.1.source.tar.xz -> firefox-86.0.1.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-86-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-86-patches-01.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-86-patches-01.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ach.xpi -> firefox-86.0.1-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/af.xpi -> firefox-86.0.1-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/an.xpi -> firefox-86.0.1-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ar.xpi -> firefox-86.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ast.xpi -> firefox-86.0.1-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/az.xpi -> firefox-86.0.1-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/be.xpi -> firefox-86.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/bg.xpi -> firefox-86.0.1-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/bn.xpi -> firefox-86.0.1-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/br.xpi -> firefox-86.0.1-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/bs.xpi -> firefox-86.0.1-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ca-valencia.xpi -> firefox-86.0.1-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ca.xpi -> firefox-86.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/cak.xpi -> firefox-86.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/cs.xpi -> firefox-86.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/cy.xpi -> firefox-86.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/da.xpi -> firefox-86.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/de.xpi -> firefox-86.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/dsb.xpi -> firefox-86.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/el.xpi -> firefox-86.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/en-CA.xpi -> firefox-86.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/en-GB.xpi -> firefox-86.0.1-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/eo.xpi -> firefox-86.0.1-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/es-AR.xpi -> firefox-86.0.1-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/es-CL.xpi -> firefox-86.0.1-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/es-ES.xpi -> firefox-86.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/es-MX.xpi -> firefox-86.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/et.xpi -> firefox-86.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/eu.xpi -> firefox-86.0.1-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/fa.xpi -> firefox-86.0.1-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ff.xpi -> firefox-86.0.1-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/fi.xpi -> firefox-86.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/fr.xpi -> firefox-86.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/fy-NL.xpi -> firefox-86.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ga-IE.xpi -> firefox-86.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/gd.xpi -> firefox-86.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/gl.xpi -> firefox-86.0.1-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/gn.xpi -> firefox-86.0.1-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/gu-IN.xpi -> firefox-86.0.1-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/he.xpi -> firefox-86.0.1-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/hi-IN.xpi -> firefox-86.0.1-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/hr.xpi -> firefox-86.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/hsb.xpi -> firefox-86.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/hu.xpi -> firefox-86.0.1-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/hy-AM.xpi -> firefox-86.0.1-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ia.xpi -> firefox-86.0.1-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/id.xpi -> firefox-86.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/is.xpi -> firefox-86.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/it.xpi -> firefox-86.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ja.xpi -> firefox-86.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ka.xpi -> firefox-86.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/kab.xpi -> firefox-86.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/kk.xpi -> firefox-86.0.1-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/km.xpi -> firefox-86.0.1-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/kn.xpi -> firefox-86.0.1-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ko.xpi -> firefox-86.0.1-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/lij.xpi -> firefox-86.0.1-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/lt.xpi -> firefox-86.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/lv.xpi -> firefox-86.0.1-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/mk.xpi -> firefox-86.0.1-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/mr.xpi -> firefox-86.0.1-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ms.xpi -> firefox-86.0.1-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/my.xpi -> firefox-86.0.1-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/nb-NO.xpi -> firefox-86.0.1-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ne-NP.xpi -> firefox-86.0.1-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/nl.xpi -> firefox-86.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/nn-NO.xpi -> firefox-86.0.1-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/oc.xpi -> firefox-86.0.1-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/pa-IN.xpi -> firefox-86.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/pl.xpi -> firefox-86.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/pt-BR.xpi -> firefox-86.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/pt-PT.xpi -> firefox-86.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/rm.xpi -> firefox-86.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ro.xpi -> firefox-86.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ru.xpi -> firefox-86.0.1-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/si.xpi -> firefox-86.0.1-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/sk.xpi -> firefox-86.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/sl.xpi -> firefox-86.0.1-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/son.xpi -> firefox-86.0.1-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/sq.xpi -> firefox-86.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/sr.xpi -> firefox-86.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/sv-SE.xpi -> firefox-86.0.1-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ta.xpi -> firefox-86.0.1-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/te.xpi -> firefox-86.0.1-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/th.xpi -> firefox-86.0.1-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/tl.xpi -> firefox-86.0.1-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/tr.xpi -> firefox-86.0.1-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/trs.xpi -> firefox-86.0.1-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/uk.xpi -> firefox-86.0.1-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/ur.xpi -> firefox-86.0.1-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/uz.xpi -> firefox-86.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/vi.xpi -> firefox-86.0.1-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/xh.xpi -> firefox-86.0.1-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/zh-CN.xpi -> firefox-86.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/86.0.1/linux-x86_64/xpi/zh-TW.xpi -> firefox-86.0.1-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=ccbe494c2fdf7055f0fb151f9032548c diff --git a/metadata/md5-cache/www-client/librewolf-87.0 b/metadata/md5-cache/www-client/librewolf-87.0 index fb9cf74b355f..1166517ad74e 100644 --- a/metadata/md5-cache/www-client/librewolf-87.0 +++ b/metadata/md5-cache/www-client/librewolf-87.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.62 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/87 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/87.0/source/firefox-87.0.source.tar.xz -> firefox-87.0.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-87-patches-03.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-87-patches-03.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-87-patches-03.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ach.xpi -> firefox-87.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/af.xpi -> firefox-87.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/an.xpi -> firefox-87.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ar.xpi -> firefox-87.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ast.xpi -> firefox-87.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/az.xpi -> firefox-87.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/be.xpi -> firefox-87.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/bg.xpi -> firefox-87.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/bn.xpi -> firefox-87.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/br.xpi -> firefox-87.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/bs.xpi -> firefox-87.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-87.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ca.xpi -> firefox-87.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/cak.xpi -> firefox-87.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/cs.xpi -> firefox-87.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/cy.xpi -> firefox-87.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/da.xpi -> firefox-87.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/de.xpi -> firefox-87.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/dsb.xpi -> firefox-87.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/el.xpi -> firefox-87.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/en-CA.xpi -> firefox-87.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/en-GB.xpi -> firefox-87.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/eo.xpi -> firefox-87.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/es-AR.xpi -> firefox-87.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/es-CL.xpi -> firefox-87.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/es-ES.xpi -> firefox-87.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/es-MX.xpi -> firefox-87.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/et.xpi -> firefox-87.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/eu.xpi -> firefox-87.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/fa.xpi -> firefox-87.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ff.xpi -> firefox-87.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/fi.xpi -> firefox-87.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/fr.xpi -> firefox-87.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-87.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-87.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/gd.xpi -> firefox-87.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/gl.xpi -> firefox-87.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/gn.xpi -> firefox-87.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-87.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/he.xpi -> firefox-87.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-87.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hr.xpi -> firefox-87.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hsb.xpi -> firefox-87.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hu.xpi -> firefox-87.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-87.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ia.xpi -> firefox-87.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/id.xpi -> firefox-87.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/is.xpi -> firefox-87.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/it.xpi -> firefox-87.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ja.xpi -> firefox-87.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ka.xpi -> firefox-87.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/kab.xpi -> firefox-87.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/kk.xpi -> firefox-87.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/km.xpi -> firefox-87.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/kn.xpi -> firefox-87.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ko.xpi -> firefox-87.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/lij.xpi -> firefox-87.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/lt.xpi -> firefox-87.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/lv.xpi -> firefox-87.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/mk.xpi -> firefox-87.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/mr.xpi -> firefox-87.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ms.xpi -> firefox-87.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/my.xpi -> firefox-87.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-87.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-87.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/nl.xpi -> firefox-87.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-87.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/oc.xpi -> firefox-87.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-87.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/pl.xpi -> firefox-87.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-87.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-87.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/rm.xpi -> firefox-87.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ro.xpi -> firefox-87.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ru.xpi -> firefox-87.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/si.xpi -> firefox-87.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sk.xpi -> firefox-87.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sl.xpi -> firefox-87.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/son.xpi -> firefox-87.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sq.xpi -> firefox-87.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sr.xpi -> firefox-87.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-87.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ta.xpi -> firefox-87.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/te.xpi -> firefox-87.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/th.xpi -> firefox-87.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/tl.xpi -> firefox-87.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/tr.xpi -> firefox-87.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/trs.xpi -> firefox-87.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/uk.xpi -> firefox-87.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ur.xpi -> firefox-87.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/uz.xpi -> firefox-87.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/vi.xpi -> firefox-87.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/xh.xpi -> firefox-87.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-87.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-87.0-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=3492ee03fc5cac5e07c08db68c497da7 diff --git a/metadata/md5-cache/www-client/librewolf-87.0-r1 b/metadata/md5-cache/www-client/librewolf-87.0-r1 index c458a08df935..95b394e9cd3f 100644 --- a/metadata/md5-cache/www-client/librewolf-87.0-r1 +++ b/metadata/md5-cache/www-client/librewolf-87.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.62 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/87 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/87.0/source/firefox-87.0.source.tar.xz -> firefox-87.0.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-87-patches-04.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-87-patches-04.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-87-patches-04.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ach.xpi -> firefox-87.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/af.xpi -> firefox-87.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/an.xpi -> firefox-87.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ar.xpi -> firefox-87.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ast.xpi -> firefox-87.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/az.xpi -> firefox-87.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/be.xpi -> firefox-87.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/bg.xpi -> firefox-87.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/bn.xpi -> firefox-87.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/br.xpi -> firefox-87.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/bs.xpi -> firefox-87.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-87.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ca.xpi -> firefox-87.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/cak.xpi -> firefox-87.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/cs.xpi -> firefox-87.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/cy.xpi -> firefox-87.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/da.xpi -> firefox-87.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/de.xpi -> firefox-87.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/dsb.xpi -> firefox-87.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/el.xpi -> firefox-87.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/en-CA.xpi -> firefox-87.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/en-GB.xpi -> firefox-87.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/eo.xpi -> firefox-87.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/es-AR.xpi -> firefox-87.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/es-CL.xpi -> firefox-87.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/es-ES.xpi -> firefox-87.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/es-MX.xpi -> firefox-87.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/et.xpi -> firefox-87.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/eu.xpi -> firefox-87.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/fa.xpi -> firefox-87.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ff.xpi -> firefox-87.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/fi.xpi -> firefox-87.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/fr.xpi -> firefox-87.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-87.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-87.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/gd.xpi -> firefox-87.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/gl.xpi -> firefox-87.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/gn.xpi -> firefox-87.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-87.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/he.xpi -> firefox-87.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-87.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hr.xpi -> firefox-87.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hsb.xpi -> firefox-87.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hu.xpi -> firefox-87.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-87.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ia.xpi -> firefox-87.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/id.xpi -> firefox-87.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/is.xpi -> firefox-87.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/it.xpi -> firefox-87.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ja.xpi -> firefox-87.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ka.xpi -> firefox-87.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/kab.xpi -> firefox-87.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/kk.xpi -> firefox-87.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/km.xpi -> firefox-87.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/kn.xpi -> firefox-87.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ko.xpi -> firefox-87.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/lij.xpi -> firefox-87.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/lt.xpi -> firefox-87.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/lv.xpi -> firefox-87.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/mk.xpi -> firefox-87.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/mr.xpi -> firefox-87.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ms.xpi -> firefox-87.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/my.xpi -> firefox-87.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-87.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-87.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/nl.xpi -> firefox-87.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-87.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/oc.xpi -> firefox-87.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-87.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/pl.xpi -> firefox-87.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-87.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-87.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/rm.xpi -> firefox-87.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ro.xpi -> firefox-87.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ru.xpi -> firefox-87.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/si.xpi -> firefox-87.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sk.xpi -> firefox-87.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sl.xpi -> firefox-87.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/son.xpi -> firefox-87.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sq.xpi -> firefox-87.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sr.xpi -> firefox-87.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-87.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ta.xpi -> firefox-87.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/te.xpi -> firefox-87.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/th.xpi -> firefox-87.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/tl.xpi -> firefox-87.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/tr.xpi -> firefox-87.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/trs.xpi -> firefox-87.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/uk.xpi -> firefox-87.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/ur.xpi -> firefox-87.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/uz.xpi -> firefox-87.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/vi.xpi -> firefox-87.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/xh.xpi -> firefox-87.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-87.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/87.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-87.0-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=2467b5f167180135ede057090e6456b1 diff --git a/metadata/md5-cache/www-client/librewolf-88.0 b/metadata/md5-cache/www-client/librewolf-88.0 index cbe94b177f6e..acaef5769e58 100644 --- a/metadata/md5-cache/www-client/librewolf-88.0 +++ b/metadata/md5-cache/www-client/librewolf-88.0 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.63 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/88 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/88.0/source/firefox-88.0.source.tar.xz -> firefox-88.0.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-88-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-88-patches-01.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-88-patches-01.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ach.xpi -> firefox-88.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/af.xpi -> firefox-88.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/an.xpi -> firefox-88.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ar.xpi -> firefox-88.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ast.xpi -> firefox-88.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/az.xpi -> firefox-88.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/be.xpi -> firefox-88.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/bg.xpi -> firefox-88.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/bn.xpi -> firefox-88.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/br.xpi -> firefox-88.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/bs.xpi -> firefox-88.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-88.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ca.xpi -> firefox-88.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/cak.xpi -> firefox-88.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/cs.xpi -> firefox-88.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/cy.xpi -> firefox-88.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/da.xpi -> firefox-88.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/de.xpi -> firefox-88.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/dsb.xpi -> firefox-88.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/el.xpi -> firefox-88.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/en-CA.xpi -> firefox-88.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/en-GB.xpi -> firefox-88.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/eo.xpi -> firefox-88.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/es-AR.xpi -> firefox-88.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/es-CL.xpi -> firefox-88.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/es-ES.xpi -> firefox-88.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/es-MX.xpi -> firefox-88.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/et.xpi -> firefox-88.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/eu.xpi -> firefox-88.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/fa.xpi -> firefox-88.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ff.xpi -> firefox-88.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/fi.xpi -> firefox-88.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/fr.xpi -> firefox-88.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-88.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-88.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/gd.xpi -> firefox-88.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/gl.xpi -> firefox-88.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/gn.xpi -> firefox-88.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-88.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/he.xpi -> firefox-88.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-88.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/hr.xpi -> firefox-88.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/hsb.xpi -> firefox-88.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/hu.xpi -> firefox-88.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-88.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ia.xpi -> firefox-88.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/id.xpi -> firefox-88.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/is.xpi -> firefox-88.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/it.xpi -> firefox-88.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ja.xpi -> firefox-88.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ka.xpi -> firefox-88.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/kab.xpi -> firefox-88.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/kk.xpi -> firefox-88.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/km.xpi -> firefox-88.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/kn.xpi -> firefox-88.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ko.xpi -> firefox-88.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/lij.xpi -> firefox-88.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/lt.xpi -> firefox-88.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/lv.xpi -> firefox-88.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/mk.xpi -> firefox-88.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/mr.xpi -> firefox-88.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ms.xpi -> firefox-88.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/my.xpi -> firefox-88.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-88.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-88.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/nl.xpi -> firefox-88.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-88.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/oc.xpi -> firefox-88.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-88.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/pl.xpi -> firefox-88.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-88.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-88.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/rm.xpi -> firefox-88.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ro.xpi -> firefox-88.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ru.xpi -> firefox-88.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/si.xpi -> firefox-88.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/sk.xpi -> firefox-88.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/sl.xpi -> firefox-88.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/son.xpi -> firefox-88.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/sq.xpi -> firefox-88.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/sr.xpi -> firefox-88.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-88.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ta.xpi -> firefox-88.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/te.xpi -> firefox-88.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/th.xpi -> firefox-88.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/tl.xpi -> firefox-88.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/tr.xpi -> firefox-88.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/trs.xpi -> firefox-88.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/uk.xpi -> firefox-88.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/ur.xpi -> firefox-88.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/uz.xpi -> firefox-88.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/vi.xpi -> firefox-88.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/xh.xpi -> firefox-88.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-88.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/88.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-88.0-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=d3a87d5961a6935e6991bbac64414b25 diff --git a/metadata/md5-cache/www-client/librewolf-88.0.1 b/metadata/md5-cache/www-client/librewolf-88.0.1 index ea403f9e005c..92de86c8fb51 100644 --- a/metadata/md5-cache/www-client/librewolf-88.0.1 +++ b/metadata/md5-cache/www-client/librewolf-88.0.1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/nss-3.63 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) SLOT=0/88 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/88.0.1/source/firefox-88.0.1.source.tar.xz -> firefox-88.0.1.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-88-patches-03.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-88-patches-03.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-88-patches-03.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ach.xpi -> firefox-88.0.1-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/af.xpi -> firefox-88.0.1-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/an.xpi -> firefox-88.0.1-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ar.xpi -> firefox-88.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ast.xpi -> firefox-88.0.1-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/az.xpi -> firefox-88.0.1-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/be.xpi -> firefox-88.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/bg.xpi -> firefox-88.0.1-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/bn.xpi -> firefox-88.0.1-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/br.xpi -> firefox-88.0.1-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/bs.xpi -> firefox-88.0.1-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ca-valencia.xpi -> firefox-88.0.1-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ca.xpi -> firefox-88.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/cak.xpi -> firefox-88.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/cs.xpi -> firefox-88.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/cy.xpi -> firefox-88.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/da.xpi -> firefox-88.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/de.xpi -> firefox-88.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/dsb.xpi -> firefox-88.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/el.xpi -> firefox-88.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/en-CA.xpi -> firefox-88.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/en-GB.xpi -> firefox-88.0.1-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/eo.xpi -> firefox-88.0.1-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/es-AR.xpi -> firefox-88.0.1-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/es-CL.xpi -> firefox-88.0.1-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/es-ES.xpi -> firefox-88.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/es-MX.xpi -> firefox-88.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/et.xpi -> firefox-88.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/eu.xpi -> firefox-88.0.1-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/fa.xpi -> firefox-88.0.1-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ff.xpi -> firefox-88.0.1-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/fi.xpi -> firefox-88.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/fr.xpi -> firefox-88.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/fy-NL.xpi -> firefox-88.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ga-IE.xpi -> firefox-88.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/gd.xpi -> firefox-88.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/gl.xpi -> firefox-88.0.1-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/gn.xpi -> firefox-88.0.1-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/gu-IN.xpi -> firefox-88.0.1-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/he.xpi -> firefox-88.0.1-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/hi-IN.xpi -> firefox-88.0.1-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/hr.xpi -> firefox-88.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/hsb.xpi -> firefox-88.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/hu.xpi -> firefox-88.0.1-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/hy-AM.xpi -> firefox-88.0.1-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ia.xpi -> firefox-88.0.1-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/id.xpi -> firefox-88.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/is.xpi -> firefox-88.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/it.xpi -> firefox-88.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ja.xpi -> firefox-88.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ka.xpi -> firefox-88.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/kab.xpi -> firefox-88.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/kk.xpi -> firefox-88.0.1-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/km.xpi -> firefox-88.0.1-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/kn.xpi -> firefox-88.0.1-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ko.xpi -> firefox-88.0.1-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/lij.xpi -> firefox-88.0.1-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/lt.xpi -> firefox-88.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/lv.xpi -> firefox-88.0.1-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/mk.xpi -> firefox-88.0.1-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/mr.xpi -> firefox-88.0.1-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ms.xpi -> firefox-88.0.1-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/my.xpi -> firefox-88.0.1-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/nb-NO.xpi -> firefox-88.0.1-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ne-NP.xpi -> firefox-88.0.1-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/nl.xpi -> firefox-88.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/nn-NO.xpi -> firefox-88.0.1-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/oc.xpi -> firefox-88.0.1-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/pa-IN.xpi -> firefox-88.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/pl.xpi -> firefox-88.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/pt-BR.xpi -> firefox-88.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/pt-PT.xpi -> firefox-88.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/rm.xpi -> firefox-88.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ro.xpi -> firefox-88.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ru.xpi -> firefox-88.0.1-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/si.xpi -> firefox-88.0.1-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/sk.xpi -> firefox-88.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/sl.xpi -> firefox-88.0.1-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/son.xpi -> firefox-88.0.1-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/sq.xpi -> firefox-88.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/sr.xpi -> firefox-88.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/sv-SE.xpi -> firefox-88.0.1-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ta.xpi -> firefox-88.0.1-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/te.xpi -> firefox-88.0.1-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/th.xpi -> firefox-88.0.1-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/tl.xpi -> firefox-88.0.1-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/tr.xpi -> firefox-88.0.1-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/trs.xpi -> firefox-88.0.1-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/uk.xpi -> firefox-88.0.1-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/ur.xpi -> firefox-88.0.1-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/uz.xpi -> firefox-88.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/vi.xpi -> firefox-88.0.1-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/xh.xpi -> firefox-88.0.1-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/zh-CN.xpi -> firefox-88.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/88.0.1/linux-x86_64/xpi/zh-TW.xpi -> firefox-88.0.1-zh-TW.xpi ) -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 bd6465c9675067123b8f45f3ba3a3d76 libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f3e436ef90778e50bc48f02069b5eb56 +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=81f81ba8061207a3e501b916b0c14645 diff --git a/metadata/md5-cache/www-client/librewolf-89.0 b/metadata/md5-cache/www-client/librewolf-89.0 new file mode 100644 index 000000000000..2d3342424dfe --- /dev/null +++ b/metadata/md5-cache/www-client/librewolf-89.0 @@ -0,0 +1,16 @@ +BDEPEND=|| ( dev-lang/python:3.10[ncurses,sqlite,ssl] dev-lang/python:3.9[ncurses,sqlite,ssl] dev-lang/python:3.8[ncurses,sqlite,ssl] dev-lang/python:3.7[ncurses,sqlite,ssl] dev-lang/python:3.6[ncurses,sqlite,ssl] ) app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.19.0 >=net-libs/nodejs-10.23.1 virtual/pkgconfig >=virtual/rust-1.47.0 || ( ( sys-devel/clang:12 sys-devel/llvm:12 clang? ( =sys-devel/lld-12* pgo? ( =sys-libs/compiler-rt-sanitizers-12*[profile] ) ) ) ( sys-devel/clang:11 sys-devel/llvm:11 clang? ( =sys-devel/lld-11* pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) ) ) ( sys-devel/clang:10 sys-devel/llvm:10 clang? ( =sys-devel/lld-10* pgo? ( =sys-libs/compiler-rt-sanitizers-10*[profile] ) ) ) ) amd64? ( >=dev-lang/nasm-2.13 ) x86? ( >=dev-lang/nasm-2.13 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=>=dev-libs/nss-3.64 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.8.1:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.7.4:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( media-sound/sndio ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4[sdk] ) ) wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) amd64? ( virtual/opengl ) x86? ( virtual/opengl ) !!sys-devel/llvm:0 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=LibreWolf Web Browser +EAPI=7 +HOMEPAGE=https://librewolf-community.gitlab.io/ +IUSE=+clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate hardened hwaccel jack lto +openh264 pgo pulseaudio screencast sndio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx +system-webp wayland wifi l10n_ach l10n_af l10n_an l10n_ar l10n_ast l10n_az l10n_be l10n_bg l10n_bn l10n_br l10n_bs l10n_ca-valencia l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mk l10n_mr l10n_ms l10n_my l10n_nb l10n_ne l10n_nl l10n_nn l10n_oc l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tl l10n_tr l10n_trs l10n_uk l10n_ur l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW pgo +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +PROPERTIES=live +RDEPEND=>=dev-libs/nss-3.64 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.8.1:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.7.4:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( media-sound/sndio ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4 ) ) selinux? ( sec-policy/selinux-mozilla ) +REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) +SLOT=0/89 +SRC_URI=https://archive.mozilla.org/pub/firefox/releases/89.0/source/firefox-89.0.source.tar.xz -> firefox-89.0.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-89-patches-02.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-89-patches-02.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-89-patches-02.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ach.xpi -> firefox-89.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/af.xpi -> firefox-89.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/an.xpi -> firefox-89.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ar.xpi -> firefox-89.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ast.xpi -> firefox-89.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/az.xpi -> firefox-89.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/be.xpi -> firefox-89.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/bg.xpi -> firefox-89.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/bn.xpi -> firefox-89.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/br.xpi -> firefox-89.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/bs.xpi -> firefox-89.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-89.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ca.xpi -> firefox-89.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/cak.xpi -> firefox-89.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/cs.xpi -> firefox-89.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/cy.xpi -> firefox-89.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/da.xpi -> firefox-89.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/de.xpi -> firefox-89.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/dsb.xpi -> firefox-89.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/el.xpi -> firefox-89.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/en-CA.xpi -> firefox-89.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/en-GB.xpi -> firefox-89.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/eo.xpi -> firefox-89.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/es-AR.xpi -> firefox-89.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/es-CL.xpi -> firefox-89.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/es-ES.xpi -> firefox-89.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/es-MX.xpi -> firefox-89.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/et.xpi -> firefox-89.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/eu.xpi -> firefox-89.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/fa.xpi -> firefox-89.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ff.xpi -> firefox-89.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/fi.xpi -> firefox-89.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/fr.xpi -> firefox-89.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-89.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-89.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/gd.xpi -> firefox-89.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/gl.xpi -> firefox-89.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/gn.xpi -> firefox-89.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-89.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/he.xpi -> firefox-89.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-89.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/hr.xpi -> firefox-89.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/hsb.xpi -> firefox-89.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/hu.xpi -> firefox-89.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-89.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ia.xpi -> firefox-89.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/id.xpi -> firefox-89.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/is.xpi -> firefox-89.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/it.xpi -> firefox-89.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ja.xpi -> firefox-89.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ka.xpi -> firefox-89.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/kab.xpi -> firefox-89.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/kk.xpi -> firefox-89.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/km.xpi -> firefox-89.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/kn.xpi -> firefox-89.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ko.xpi -> firefox-89.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/lij.xpi -> firefox-89.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/lt.xpi -> firefox-89.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/lv.xpi -> firefox-89.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/mk.xpi -> firefox-89.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/mr.xpi -> firefox-89.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ms.xpi -> firefox-89.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/my.xpi -> firefox-89.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-89.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-89.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/nl.xpi -> firefox-89.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-89.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/oc.xpi -> firefox-89.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-89.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/pl.xpi -> firefox-89.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-89.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-89.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/rm.xpi -> firefox-89.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ro.xpi -> firefox-89.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ru.xpi -> firefox-89.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/si.xpi -> firefox-89.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/sk.xpi -> firefox-89.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/sl.xpi -> firefox-89.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/son.xpi -> firefox-89.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/sq.xpi -> firefox-89.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/sr.xpi -> firefox-89.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-89.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ta.xpi -> firefox-89.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/te.xpi -> firefox-89.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/th.xpi -> firefox-89.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/tl.xpi -> firefox-89.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/tr.xpi -> firefox-89.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/trs.xpi -> firefox-89.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/uk.xpi -> firefox-89.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/ur.xpi -> firefox-89.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/uz.xpi -> firefox-89.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/vi.xpi -> firefox-89.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/xh.xpi -> firefox-89.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-89.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-89.0-zh-TW.xpi ) +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 check-reqs 97b90bd8fb799993925e6b3a683184e5 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e librewolf-r1 67c44f35ebb0096c29764677377c8efe libtool f143db5a74ccd9ca28c1234deffede96 llvm e00745e3b8d63dc13bfe5a2d7310ee6b multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils d3fc79d3d50544347e324864f95206e2 python-any-r1 17241a11501065ff3651350040875aa9 python-utils-r1 fc2351244f3684078565b89754cf82af toolchain-funcs 24921b57d6561d87cbef4916a296ada4 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=222a26048c5184020c7e7b8c122392d0 diff --git a/metadata/md5-cache/www-client/microsoft-edge-beta-91.0.864.33 b/metadata/md5-cache/www-client/microsoft-edge-beta-91.0.864.41 index a4934931789e..3a53f46a43b8 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-beta-91.0.864.33 +++ b/metadata/md5-cache/www-client/microsoft-edge-beta-91.0.864.41 @@ -9,6 +9,6 @@ LICENSE=microsoft-edge RDEPEND=app-accessibility/at-spi2-atk:2 app-accessibility/at-spi2-core:2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-fonts/liberation-fonts media-libs/alsa-lib media-libs/mesa[gbm] net-misc/curl[ssl] net-print/cups sys-apps/dbus sys-apps/util-linux x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango x11-misc/xdg-utils RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.33-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.41-1_amd64.deb _eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e pax-utils d3fc79d3d50544347e324864f95206e2 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=4384ee9b7aa07b38e4b7d7250f6b6862 diff --git a/metadata/md5-cache/www-client/microsoft-edge-dev-92.0.884.2 b/metadata/md5-cache/www-client/microsoft-edge-dev-92.0.902.4 index 957c66fa1780..0123a86a3cf1 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-dev-92.0.884.2 +++ b/metadata/md5-cache/www-client/microsoft-edge-dev-92.0.902.4 @@ -9,6 +9,6 @@ LICENSE=microsoft-edge RDEPEND=app-accessibility/at-spi2-atk:2 app-accessibility/at-spi2-core:2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-fonts/liberation-fonts media-libs/alsa-lib media-libs/mesa[gbm] net-misc/curl[ssl] net-print/cups sys-apps/dbus sys-apps/util-linux x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango x11-misc/xdg-utils RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_92.0.884.2-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_92.0.902.4-1_amd64.deb _eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e pax-utils d3fc79d3d50544347e324864f95206e2 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=4384ee9b7aa07b38e4b7d7250f6b6862 diff --git a/metadata/md5-cache/www-client/opera-beta-77.0.4054.38 b/metadata/md5-cache/www-client/opera-beta-77.0.4054.38 new file mode 100644 index 000000000000..0a83def01fa7 --- /dev/null +++ b/metadata/md5-cache/www-client/opera-beta-77.0.4054.38 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst postrm preinst prepare pretend setup unpack +DEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=A fast and secure web browser +EAPI=7 +HOMEPAGE=https://www.opera.com/ +IUSE=+proprietary-codecs suid kernel_linux +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es-419 +l10n_es +l10n_fil +l10n_fi +l10n_fr-CA +l10n_fr +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_ko +l10n_lt +l10n_lv +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW +KEYWORDS=-* ~amd64 +LICENSE=OPERA-2018 +RDEPEND=app-accessibility/at-spi2-atk:2 app-accessibility/at-spi2-core:2 dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss gnome-base/gsettings-desktop-schemas media-libs/alsa-lib media-libs/mesa[gbm] net-misc/curl net-print/cups sys-apps/dbus x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/pango +RESTRICT=bindist mirror strip +SLOT=0 +SRC_URI=https://download1.operacdn.com/pub/opera-beta/77.0.4054.38/linux/opera-beta_77.0.4054.38_amd64.deb https://download2.operacdn.com/pub/opera-beta/77.0.4054.38/linux/opera-beta_77.0.4054.38_amd64.deb https://download3.operacdn.com/pub/opera-beta/77.0.4054.38/linux/opera-beta_77.0.4054.38_amd64.deb https://download4.operacdn.com/pub/opera-beta/77.0.4054.38/linux/opera-beta_77.0.4054.38_amd64.deb proprietary-codecs? ( https://dev.gentoo.org/~sultan/distfiles/www-client/opera/opera-ffmpeg-codecs-91.0.4472.19.tar.xz ) +_eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e pax-utils d3fc79d3d50544347e324864f95206e2 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=1bf7fd06da390c6e0914466401d0d1c1 diff --git a/metadata/md5-cache/www-client/vivaldi-snapshot-3.8.2259.32 b/metadata/md5-cache/www-client/vivaldi-snapshot-3.8.2259.32 deleted file mode 100644 index d11a74a58b72..000000000000 --- a/metadata/md5-cache/www-client/vivaldi-snapshot-3.8.2259.32 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install postinst postrm preinst prepare setup unpack -DEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A browser for our friends -EAPI=7 -HOMEPAGE=https://vivaldi.com/ -IUSE=proprietary-codecs widevine kernel_linux +l10n_af +l10n_am +l10n_ar +l10n_az +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_de-CH +l10n_el +l10n_en-GB +l10n_en-US +l10n_eo +l10n_es +l10n_es-419 +l10n_es-PE +l10n_et +l10n_eu +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_fy +l10n_gd +l10n_gl +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_hy +l10n_id +l10n_io +l10n_is +l10n_it +l10n_ja +l10n_jbo +l10n_ka +l10n_kab +l10n_kn +l10n_ko +l10n_ku +l10n_lt +l10n_lv +l10n_mk +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_nn +l10n_pa +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sc +l10n_sk +l10n_sl +l10n_sq +l10n_sr +l10n_sr-Latn +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW -KEYWORDS=-* ~amd64 ~arm ~arm64 ~x86 -LICENSE=Vivaldi -RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/speex net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver 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/libXtst x11-libs/pango[X] proprietary-codecs? ( media-video/ffmpeg:0/56.58.58[chromium(-)] ) widevine? ( www-plugins/chrome-binary-plugins ) -RESTRICT=bindist mirror -SLOT=0 -SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.8.2259.32-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.8.2259.32-1_arm64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.8.2259.32-1_armhf.deb ) x86? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.8.2259.32-1_i386.deb ) -_eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=edbda6a3c5d148fc64f36b9df74c6180 diff --git a/metadata/md5-cache/www-client/vivaldi-snapshot-3.9.2305.3 b/metadata/md5-cache/www-client/vivaldi-snapshot-4.0.2312.3 index 712ea7e9d686..9b38971b8f66 100644 --- a/metadata/md5-cache/www-client/vivaldi-snapshot-3.9.2305.3 +++ b/metadata/md5-cache/www-client/vivaldi-snapshot-4.0.2312.3 @@ -9,6 +9,6 @@ LICENSE=Vivaldi RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/speex net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver 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/libXtst x11-libs/pango[X] proprietary-codecs? ( media-video/ffmpeg:0/56.58.58[chromium(-)] ) widevine? ( www-plugins/chrome-binary-plugins ) RESTRICT=bindist mirror SLOT=0 -SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.9.2305.3-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.9.2305.3-1_arm64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.9.2305.3-1_armhf.deb ) +SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_4.0.2312.3-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_4.0.2312.3-1_arm64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_4.0.2312.3-1_armhf.deb ) _eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=c18238329aadececd6635ffb411871eb diff --git a/metadata/md5-cache/www-misc/xxv-1.6.1-r1 b/metadata/md5-cache/www-misc/xxv-1.6.1-r2 index 0aae01324489..717e1bd02a5c 100644 --- a/metadata/md5-cache/www-misc/xxv-1.6.1-r1 +++ b/metadata/md5-cache/www-misc/xxv-1.6.1-r2 @@ -2,12 +2,12 @@ DEFINED_PHASES=config install postrm prepare setup DESCRIPTION=WWW Admin for the VDR (Video Disk Recorder) EAPI=5 HOMEPAGE=https://projects.vdr-developer.org/projects/xxv -IUSE=-mplayer themes +IUSE=mplayer themes KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 PDEPEND=mplayer? ( media-video/mplayer ) -RDEPEND=>=media-video/vdr-1.2.6 media-video/vdr2jpeg media-fonts/corefonts virtual/mysql dev-perl/CGI virtual/perl-Digest-MD5 virtual/perl-Getopt-Long virtual/perl-MIME-Base64 virtual/perl-Time-HiRes virtual/perl-IO-Compress dev-perl/Config-Tiny dev-perl/Date-Manip dev-perl/DBD-mysql dev-perl/DBI dev-perl/Digest-HMAC dev-perl/Encode-Detect dev-perl/Event dev-perl/Font-TTF dev-perl/GD[png,gif] dev-perl/IO-Socket-INET6 dev-perl/JSON dev-perl/JSON-XS dev-perl/Linux-Inotify2 dev-perl/Locale-gettext dev-perl/MP3-Info dev-perl/Net-Amazon dev-perl/Net-Telnet dev-perl/Net-XMPP dev-perl/Proc-ProcessTable dev-perl/SOAP-Lite dev-perl/txt2html dev-perl/Template-GD dev-perl/Template-Toolkit dev-perl/XML-RSS themes? ( >=x11-themes/xxv-skins-1.6 ) +RDEPEND=>=media-video/vdr-1.2.6 media-video/vdr2jpeg media-fonts/corefonts virtual/mysql dev-perl/CGI virtual/perl-Digest-MD5 virtual/perl-Getopt-Long virtual/perl-MIME-Base64 virtual/perl-Time-HiRes virtual/perl-IO-Compress dev-perl/Config-Tiny dev-perl/Date-Manip dev-perl/DBD-mysql dev-perl/DBI dev-perl/Digest-HMAC dev-perl/Encode-Detect dev-perl/Event dev-perl/Font-TTF dev-perl/GD[png(+),gif(+)] dev-perl/IO-Socket-INET6 dev-perl/JSON dev-perl/JSON-XS dev-perl/Linux-Inotify2 dev-perl/Locale-gettext dev-perl/MP3-Info dev-perl/Net-Amazon dev-perl/Net-Telnet dev-perl/Net-XMPP dev-perl/Proc-ProcessTable dev-perl/SOAP-Lite dev-perl/txt2html dev-perl/Template-GD dev-perl/Template-Toolkit dev-perl/XML-RSS themes? ( >=x11-themes/xxv-skins-1.6 ) SLOT=0 SRC_URI=mirror://vdr-developerorg/718/xxv-1.6.1.tgz mirror://gentoo/xxv-1.6.1.tgz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b42ab6b0055f46311c8e8fe34dbeed7d +_md5_=661a188b5809092e9a89dfeb068e1d13 diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-91.0.4472.77_beta b/metadata/md5-cache/www-plugins/chrome-binary-plugins-92.0.4515.40_beta index d8b3d85bb8f9..931c29cb36db 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-91.0.4472.77_beta +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-92.0.4515.40_beta @@ -7,6 +7,6 @@ LICENSE=google-chrome RDEPEND=dev-libs/glib:2 dev-libs/nspr dev-libs/nss !www-plugins/chrome-binary-plugins:0 !www-plugins/chrome-binary-plugins:stable !www-plugins/chrome-binary-plugins:unstable RESTRICT=bindist mirror strip SLOT=beta -SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_91.0.4472.77-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_92.0.4515.40-1_amd64.deb _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 _md5_=5f3ea21bdfa8ac8a2d6473433e7959b2 diff --git a/metadata/md5-cache/www-servers/monkeyd-1.6.9-r1 b/metadata/md5-cache/www-servers/monkeyd-1.6.9-r1 index edbc31dc0861..b7de4f5bae94 100644 --- a/metadata/md5-cache/www-servers/monkeyd-1.6.9-r1 +++ b/metadata/md5-cache/www-servers/monkeyd-1.6.9-r1 @@ -3,7 +3,7 @@ DEPEND=dev-util/cmake monkeyd_plugins_tls? ( net-libs/mbedtls:= ) DESCRIPTION=A small, fast, and scalable web server EAPI=5 HOMEPAGE=http://www.monkey-project.com/ -IUSE=cgi -debug fastcgi php static-plugins monkeyd_plugins_auth monkeyd_plugins_cheetah monkeyd_plugins_dirlisting +monkeyd_plugins_liana monkeyd_plugins_logger monkeyd_plugins_mandril monkeyd_plugins_tls +IUSE=cgi debug fastcgi php static-plugins monkeyd_plugins_auth monkeyd_plugins_cheetah monkeyd_plugins_dirlisting +monkeyd_plugins_liana monkeyd_plugins_logger monkeyd_plugins_mandril monkeyd_plugins_tls KEYWORDS=amd64 arm ~mips ppc ppc64 x86 LICENSE=GPL-2 RDEPEND=php? ( dev-lang/php ) cgi? ( dev-lang/php[cgi] ) @@ -11,4 +11,4 @@ REQUIRED_USE=monkeyd_plugins_tls? ( !static-plugins ) elibc_uclibc? ( !debug ) c SLOT=0 SRC_URI=http://monkey-project.com/releases/1.6/monkey-1.6.9.tar.gz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user 26d8ce6329c43cbac965617f1c0627e2 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a94b8d67811d4af0c058d131631657f7 +_md5_=c224182a15dc9ffbd4ce8f6d34fd1a34 diff --git a/metadata/md5-cache/www-servers/monkeyd-9999 b/metadata/md5-cache/www-servers/monkeyd-9999 index ba924ffd4108..95275627f72b 100644 --- a/metadata/md5-cache/www-servers/monkeyd-9999 +++ b/metadata/md5-cache/www-servers/monkeyd-9999 @@ -3,11 +3,11 @@ DEPEND=dev-util/cmake monkeyd_plugins_tls? ( net-libs/mbedtls:= ) >=dev-vcs/git- DESCRIPTION=A small, fast, and scalable web server EAPI=5 HOMEPAGE=http://www.monkey-project.com/ -IUSE=cgi -debug fastcgi php static-plugins monkeyd_plugins_auth monkeyd_plugins_cheetah monkeyd_plugins_dirlisting +monkeyd_plugins_liana monkeyd_plugins_logger monkeyd_plugins_mandril monkeyd_plugins_tls +IUSE=cgi debug fastcgi php static-plugins monkeyd_plugins_auth monkeyd_plugins_cheetah monkeyd_plugins_dirlisting +monkeyd_plugins_liana monkeyd_plugins_logger monkeyd_plugins_mandril monkeyd_plugins_tls LICENSE=GPL-2 PROPERTIES=live RDEPEND=php? ( dev-lang/php ) cgi? ( dev-lang/php[cgi] ) REQUIRED_USE=monkeyd_plugins_tls? ( !static-plugins ) elibc_uclibc? ( !debug ) cgi? ( php ) SLOT=0 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc git-r3 b8e8c92aa5fe8df7187e466138eb4e52 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 user 26d8ce6329c43cbac965617f1c0627e2 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f22d44daf8f030df02c96b3d6633f62a +_md5_=e6ef55647747515ed0998fa088553756 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-460.84 b/metadata/md5-cache/x11-drivers/nvidia-drivers-460.84 new file mode 100644 index 000000000000..dcbe3ad5a57a --- /dev/null +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-460.84 @@ -0,0 +1,14 @@ +BDEPEND=app-misc/pax-utils virtual/pkgconfig virtual/pkgconfig +DEFINED_PHASES=compile install postinst postrm preinst prepare setup unpack +DEPEND=acct-group/video acct-user/nvpd net-libs/libtirpc tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) static-libs? ( x11-libs/libX11 x11-libs/libXext ) tools? ( media-libs/libglvnd sys-apps/dbus x11-base/xorg-proto x11-libs/libXrandr x11-libs/libXv x11-libs/libvdpau ) driver? ( kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) ) driver? ( sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) ) +DESCRIPTION=NVIDIA Accelerated Graphics Driver +EAPI=7 +HOMEPAGE=https://www.nvidia.com/download/index.aspx +IUSE=+X +driver static-libs +tools kernel_linux kernel_linux kernel_linux dist-kernel driver abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=-* ~amd64 +LICENSE=GPL-2 MIT NVIDIA-r2 ZLIB +RDEPEND=acct-group/video acct-user/nvpd net-libs/libtirpc tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm x11-libs/pango ) X? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) driver? ( kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) ) +SLOT=0/460 +SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/460.84/NVIDIA-Linux-x86_64-460.84.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/460.84/NVIDIA-Linux-aarch64-460.84.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-460.84.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-460.84.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-460.84.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-460.84.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-460.84.tar.bz2 +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 linux-mod 2356a95549dd8cb503f063d05e88c0c8 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f optfeature e142388219c7fee6ff016fe1c78a10a5 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=48e772e87b34cfc81e543660572a0efb diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-465.31 b/metadata/md5-cache/x11-drivers/nvidia-drivers-465.31 index eaabaf215b95..6828e254610c 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-465.31 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-465.31 @@ -11,4 +11,4 @@ RDEPEND=acct-group/video acct-user/nvpd net-libs/libtirpc tools? ( dev-libs/atk SLOT=0/465 SRC_URI=amd64? ( https://download.nvidia.com/XFree86/Linux-x86_64/465.31/NVIDIA-Linux-x86_64-465.31.run ) arm64? ( https://download.nvidia.com/XFree86/Linux-aarch64/465.31/NVIDIA-Linux-aarch64-465.31.run ) https://download.nvidia.com/XFree86/nvidia-installer/nvidia-installer-465.31.tar.bz2 https://download.nvidia.com/XFree86/nvidia-modprobe/nvidia-modprobe-465.31.tar.bz2 https://download.nvidia.com/XFree86/nvidia-persistenced/nvidia-persistenced-465.31.tar.bz2 https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-465.31.tar.bz2 https://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-465.31.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info 30ded7f9adbdd03d3e848cdd74f6c395 linux-mod 2356a95549dd8cb503f063d05e88c0c8 multibuild 6b3d5ee849dafe6cdfd7b859c211fb01 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build c311a933538fe97b72600926696ea66f optfeature e142388219c7fee6ff016fe1c78a10a5 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 unpacker 517f16af48ee3ab88180dd58b5143213 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=88a98d7e17e37c9ea0c81fccc5ece2c2 +_md5_=a57f5df0f10315bd79025cca63236c83 diff --git a/metadata/md5-cache/x11-misc/fbpager-20090221-r1 b/metadata/md5-cache/x11-misc/fbpager-20090221-r1 index 6d652a47a0bc..b7d962296348 100644 --- a/metadata/md5-cache/x11-misc/fbpager-20090221-r1 +++ b/metadata/md5-cache/x11-misc/fbpager-20090221-r1 @@ -1,4 +1,4 @@ -DEFINED_PHASES=configure postinst +DEFINED_PHASES=configure postinst prepare DEPEND=x11-libs/libX11 xrender? ( x11-libs/libXrender ) DESCRIPTION=A Pager for fluxbox EAPI=6 @@ -9,4 +9,5 @@ LICENSE=MIT RDEPEND=x11-libs/libX11 xrender? ( x11-libs/libXrender ) SLOT=0 SRC_URI=mirror://gentoo/fbpager-20090221.tar.bz2 -_md5_=84c8dc7682ffc81e94e5f50bbc1c9098 +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=e2d76259350b19d7f583f805d74e0f61 diff --git a/metadata/md5-cache/x11-misc/fbpager-20090221-r2 b/metadata/md5-cache/x11-misc/fbpager-20090221-r2 new file mode 100644 index 000000000000..d79ffabbe817 --- /dev/null +++ b/metadata/md5-cache/x11-misc/fbpager-20090221-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure postinst prepare +DEPEND=x11-libs/libX11 xrender? ( x11-libs/libXrender ) +DESCRIPTION=A Pager for fluxbox +EAPI=7 +HOMEPAGE=http://git.fluxbox.org/fbpager.git/ +IUSE=+xrender +KEYWORDS=~amd64 ~mips ~ppc ~sparc ~x86 +LICENSE=MIT +RDEPEND=x11-libs/libX11 xrender? ( x11-libs/libXrender ) +SLOT=0 +SRC_URI=mirror://gentoo/fbpager-20090221.tar.bz2 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=13ee9b061597004448a22ef5fb5298fa diff --git a/metadata/md5-cache/x11-misc/xaos-3.6 b/metadata/md5-cache/x11-misc/xaos-3.6 index 271bf5760a3b..0c5746235abb 100644 --- a/metadata/md5-cache/x11-misc/xaos-3.6 +++ b/metadata/md5-cache/x11-misc/xaos-3.6 @@ -4,11 +4,11 @@ DEPEND=sci-libs/gsl:= sys-libs/zlib aalib? ( media-libs/aalib ) gtk? ( x11-libs/ DESCRIPTION=Very fast real-time fractal zoomer EAPI=7 HOMEPAGE=http://matek.hu/xaos/doku.php -IUSE=aalib doc -gtk nls png svga threads X +IUSE=aalib doc gtk nls png svga threads X KEYWORDS=amd64 ppc sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=sci-libs/gsl:= sys-libs/zlib aalib? ( media-libs/aalib ) gtk? ( x11-libs/gtk+:2 ) png? ( media-libs/libpng:0= ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86vm ) SLOT=0 SRC_URI=mirror://sourceforge/xaos/xaos-3.6.tar.gz https://dev.gentoo.org/~jlec/distfiles/xaos.png.tar _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 desktop c0d27bf73aa08ca05b663dbd31fbef28 gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 -_md5_=1a52b694f22e642133f1bfdac4b23112 +_md5_=fda14a2be1537ee8cd8e0346064c1421 diff --git a/metadata/md5-cache/x11-terms/rxvt-unicode-9.22-r9 b/metadata/md5-cache/x11-terms/rxvt-unicode-9.22-r9 index ea1cea61f480..57574117a7d7 100644 --- a/metadata/md5-cache/x11-terms/rxvt-unicode-9.22-r9 +++ b/metadata/md5-cache/x11-terms/rxvt-unicode-9.22-r9 @@ -4,7 +4,7 @@ DEPEND=>=sys-libs/ncurses-5.7-r6:= media-libs/fontconfig x11-libs/libX11 x11-lib DESCRIPTION=rxvt clone with xft and unicode support EAPI=7 HOMEPAGE=http://software.schmorp.de/pkg/rxvt-unicode.html -IUSE=-24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf iso14755 +mousewheel +perl -sgrmouse startup-notification unicode3 +utmp +wtmp xft +IUSE=24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf iso14755 +mousewheel +perl sgrmouse startup-notification unicode3 +utmp +wtmp xft KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris LICENSE=GPL-3 RDEPEND=>=sys-libs/ncurses-5.7-r6:= media-libs/fontconfig x11-libs/libX11 x11-libs/libXrender gdk-pixbuf? ( x11-libs/gdk-pixbuf ) kernel_Darwin? ( dev-perl/Mac-Pasteboard ) perl? ( dev-lang/perl:= ) startup-notification? ( x11-libs/startup-notification ) xft? ( x11-libs/libXft ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-9.22.tar.bz2 https://dev.gentoo.org/~marecki/dists/rxvt-unicode/rxvt-unicode-9.22_24-bit-color_cpixl-20201108.patch.xz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic bc2e7662a4a9a8643be851982a837ddc gnuconfig 9f91b4b0c84e734a87492d4293f03de5 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e prefix de7d8e2b10085ed5ff09ad70e4753e5c systemd fdf0d765c3f11f91fe54f8def9a8c0e6 toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1288ddff1ef220fcd702112cfdf3039b +_md5_=e88d6a230b3b66e75cae31024c594315 diff --git a/metadata/md5-cache/x11-themes/papirus-icon-theme-20200901 b/metadata/md5-cache/x11-themes/papirus-icon-theme-20200901 deleted file mode 100644 index ed2240c7d311..000000000000 --- a/metadata/md5-cache/x11-themes/papirus-icon-theme-20200901 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst -DESCRIPTION=icon theme for Linux -EAPI=7 -HOMEPAGE=https://github.com/PapirusDevelopmentTeam/papirus-icon-theme -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -SLOT=0 -SRC_URI=https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/20200901.tar.gz -> papirus-icon-theme-20200901.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 24921b57d6561d87cbef4916a296ada4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=13af74fec53925a4432760951309eb2e diff --git a/metadata/md5-cache/x11-themes/papirus-icon-theme-20210601 b/metadata/md5-cache/x11-themes/papirus-icon-theme-20210601 new file mode 100644 index 000000000000..7e4c1443e0cf --- /dev/null +++ b/metadata/md5-cache/x11-themes/papirus-icon-theme-20210601 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare +DEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Free and open source SVG icon theme +EAPI=7 +HOMEPAGE=https://github.com/PapirusDevelopmentTeam/papirus-icon-theme +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +SLOT=0 +SRC_URI=https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/20210601.tar.gz -> papirus-icon-theme-20210601.tar.gz +_eclasses_=xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=845f8831ddbfd25d8ca5a49eefba4b6c diff --git a/net-analyzer/squid-graph/squid-graph-3.2-r1.ebuild b/net-analyzer/squid-graph/squid-graph-3.2-r2.ebuild index b21b0a0ae0d0..fd59a4c508da 100644 --- a/net-analyzer/squid-graph/squid-graph-3.2-r1.ebuild +++ b/net-analyzer/squid-graph/squid-graph-3.2-r2.ebuild @@ -12,7 +12,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -RDEPEND="dev-perl/GD[png]" +RDEPEND="dev-perl/GD[png(+)]" src_install() { dobin apacheconv generate.cgi squid-graph timeconv diff --git a/net-analyzer/wireshark/files/wireshark-3.4.4-cmake-3.20.patch b/net-analyzer/wireshark/files/wireshark-3.4.4-cmake-3.20.patch deleted file mode 100644 index 63d62e8e254a..000000000000 --- a/net-analyzer/wireshark/files/wireshark-3.4.4-cmake-3.20.patch +++ /dev/null @@ -1,30 +0,0 @@ -https://gitlab.com/wireshark/wireshark/-/merge_requests/2532?commit_id=6ef6e8f607456e239e5f1a326803846930d34fa8.diff -https://bugs.gentoo.org/775029 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -1115,6 +1115,10 @@ ws_find_package(Systemd BUILD_sdjournal HAVE_SYSTEMD) - - # Build the Qt GUI? - if(BUILD_wireshark) -+ set(CMAKE_AUTOMOC ON) -+ set(CMAKE_AUTOUIC ON) -+ set(CMAKE_AUTORCC ON) -+ - # Untested, may not work if CMAKE_PREFIX_PATH gets overwritten - # somewhere. The if WIN32 in this place is annoying as well. - if(WIN32) -diff --git a/ui/qt/CMakeLists.txt b/ui/qt/CMakeLists.txt -index ff0efeae1614511fbe12ed00d5b82f2714fa55f5..cd36913f10d949a8a701060833b0878086798bf4 100644 ---- a/ui/qt/CMakeLists.txt -+++ b/ui/qt/CMakeLists.txt -@@ -631,10 +631,6 @@ include_directories( - ${CMAKE_CURRENT_SOURCE_DIR} - ) - --set(CMAKE_AUTOMOC TRUE) --set(CMAKE_AUTOUIC TRUE) --set(CMAKE_AUTORCC TRUE) -- - if(NOT Qt5Widgets_VERSION VERSION_LESS "5.9") - # Drop the file modification time of source files from generated files - # to help with reproducible builds. We do not use QFileInfo.lastModified diff --git a/net-fs/autofs/autofs-5.1.6-r1.ebuild b/net-fs/autofs/autofs-5.1.6-r1.ebuild index 743ec6519497..cbbf2773535c 100644 --- a/net-fs/autofs/autofs-5.1.6-r1.ebuild +++ b/net-fs/autofs/autofs-5.1.6-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.kernel.org/pub/linux/daemons/${PN}/v5/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86" -IUSE="-dmalloc ldap +libtirpc mount-locking sasl systemd" +IUSE="dmalloc ldap +libtirpc mount-locking sasl systemd" # currently, sasl code assumes the presence of kerberosV RDEPEND=">=sys-apps/util-linux-2.20 diff --git a/net-fs/autofs/autofs-5.1.7.ebuild b/net-fs/autofs/autofs-5.1.7.ebuild index 5387d293f411..da73cde6f2a0 100644 --- a/net-fs/autofs/autofs-5.1.7.ebuild +++ b/net-fs/autofs/autofs-5.1.7.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.kernel.org/pub/linux/daemons/${PN}/v5/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="-dmalloc ldap +libtirpc mount-locking sasl systemd" +IUSE="dmalloc ldap +libtirpc mount-locking sasl systemd" # currently, sasl code assumes the presence of kerberosV RDEPEND=">=sys-apps/util-linux-2.20 diff --git a/net-libs/libpcap/libpcap-1.10.0.ebuild b/net-libs/libpcap/libpcap-1.10.0.ebuild index e17ca9253266..ead6948c37ee 100644 --- a/net-libs/libpcap/libpcap-1.10.0.ebuild +++ b/net-libs/libpcap/libpcap-1.10.0.ebuild @@ -25,7 +25,7 @@ fi LICENSE="BSD" SLOT="0" -IUSE="bluetooth dbus netlink rdma -remote static-libs usb -yydebug" +IUSE="bluetooth dbus netlink rdma remote static-libs usb yydebug" RDEPEND=" bluetooth? ( net-wireless/bluez:=[${MULTILIB_USEDEP}] ) diff --git a/net-libs/libpcap/libpcap-9999.ebuild b/net-libs/libpcap/libpcap-9999.ebuild index b0505e64ff65..f7cc40d1b868 100644 --- a/net-libs/libpcap/libpcap-9999.ebuild +++ b/net-libs/libpcap/libpcap-9999.ebuild @@ -23,7 +23,7 @@ fi LICENSE="BSD" SLOT="0" -IUSE="bluetooth dbus netlink rdma -remote static-libs usb -yydebug" +IUSE="bluetooth dbus netlink rdma remote static-libs usb yydebug" RDEPEND=" bluetooth? ( net-wireless/bluez:=[${MULTILIB_USEDEP}] ) diff --git a/net-libs/onion/onion-0.8.ebuild b/net-libs/onion/onion-0.8.ebuild index 2be5752a9a3d..a283da472b81 100644 --- a/net-libs/onion/onion-0.8.ebuild +++ b/net-libs/onion/onion-0.8.ebuild @@ -25,7 +25,7 @@ LICENSE="|| ( GPL-2+ Apache-2.0 ) AGPL-3" SLOT="0" IUSE=" gnutls pam png jpeg xml systemd sqlite boehm-gc - test examples cxx -libev -libevent + test examples cxx libev libevent redis " RESTRICT="!test? ( test )" diff --git a/net-libs/onion/onion-9999.ebuild b/net-libs/onion/onion-9999.ebuild index 96a276b10f55..10ba2b76bbf0 100644 --- a/net-libs/onion/onion-9999.ebuild +++ b/net-libs/onion/onion-9999.ebuild @@ -25,7 +25,7 @@ LICENSE="|| ( GPL-2+ Apache-2.0 ) AGPL-3" SLOT="0" IUSE=" gnutls pam png jpeg xml systemd sqlite boehm-gc - test examples cxx -libev -libevent + test examples cxx libev libevent redis " RESTRICT="!test? ( test )" diff --git a/net-misc/ntpsec/ntpsec-1.2.0-r1.ebuild b/net-misc/ntpsec/ntpsec-1.2.0-r1.ebuild index ea45f64c594b..f2f526145152 100644 --- a/net-misc/ntpsec/ntpsec-1.2.0-r1.ebuild +++ b/net-misc/ntpsec/ntpsec-1.2.0-r1.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} == *9999* ]]; then else SRC_URI="ftp://ftp.ntpsec.org/pub/releases/${PN}-${PV}.tar.gz" RESTRICT="mirror" - KEYWORDS="amd64 arm ~arm64 ~x86" + KEYWORDS="amd64 arm arm64 ~x86" fi DESCRIPTION="The NTP reference implementation, refactored" diff --git a/net-nntp/nzbget/Manifest b/net-nntp/nzbget/Manifest index 3c429fa7e3c4..3f73bd02833c 100644 --- a/net-nntp/nzbget/Manifest +++ b/net-nntp/nzbget/Manifest @@ -1,2 +1,2 @@ -DIST nzbget-20.0.tar.gz 1925665 BLAKE2B 4c4e93bb0fa170b4b6433cbb7d27f3fa67ed033c462711b19e179f42c18dfed044c937e6a7ce4b08a620f4d7af7d3ec9245de16f15d4db8005d3d8dc4f8f46d4 SHA512 8b0fe8ea41b64be9a2f624ef0fa2a8b8987bee412db68a0e8f1b607ce6be7bfd03f60ecc5e49807f4c726e136bc5a355c44559b215fea2bd290c2eb62a0b5927 DIST nzbget-21.0.tar.gz 1988902 BLAKE2B ee9204a978502562348dc4945e19b084d8d17f566099cfe7e95dac154ffac6d772084c9c070fba0d585cd2229d0a5760b3298ef29eba52d7c75edbc9fe43e310 SHA512 bbee5073a2788a17d78009b7ae0c41473aa4d8424301e7e62b2544dc8993e1e3b6e1026dd9f71af5627293d2113d8637a4a6138eee0a328554df298117dd6bb3 +DIST nzbget-21.1.tar.gz 1988916 BLAKE2B 74298c5c7f3986831f36832a8ffe596543196b5b46500925de478bf11cab8e66fb36dee9458533a4194d82123765b29e37914463d72fd206e218b4875861001a SHA512 d8dc1ad324f675c5505e623049a14c022475267aa03dcd5d8fd6cf9ed3b776cc2776077b61d035e252937ea4b6bf8f90bd33e715cfd842d2e012615df3ffeafb diff --git a/net-nntp/nzbget/nzbget-20.0.ebuild b/net-nntp/nzbget/nzbget-20.0.ebuild deleted file mode 100644 index 487dcba041f5..000000000000 --- a/net-nntp/nzbget/nzbget-20.0.ebuild +++ /dev/null @@ -1,129 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic user - -MY_PV=${PV/_pre/-r} -MY_P=${PN}-${PV/_pre/-testing-r} - -DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files" -HOMEPAGE="https://nzbget.net/" -SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 arm ppc x86" -IUSE="debug gnutls ncurses +parcheck ssl test zlib" -RESTRICT="!test? ( test )" - -RDEPEND="dev-libs/libxml2:= - ncurses? ( sys-libs/ncurses:0= ) - ssl? ( - gnutls? ( - net-libs/gnutls:= - dev-libs/nettle:= - ) - !gnutls? ( dev-libs/openssl:0=[-bindist] ) - ) - zlib? ( sys-libs/zlib:= )" -DEPEND="${RDEPEND} - test? ( - || ( - app-arch/rar - app-arch/unrar - ) - ) - virtual/pkgconfig" -DOCS=( ChangeLog README nzbget.conf ) - -S=${WORKDIR}/${PN}-${PV/_pre*/-testing} - -check_compiler() { - if [[ ${MERGE_TYPE} != binary ]] && ! test-flag-CXX -std=c++14; then - eerror "${P} requires a C++14-capable compiler. Your current compiler" - eerror "does not seem to support the -std=c++14 option. Please" - eerror "upgrade to gcc-4.9 or an equivalent version supporting C++14." - die "The currently active compiler does not support -std=c++14" - fi -} - -pkg_pretend() { - check_compiler -} - -pkg_setup() { - check_compiler -} - -src_prepare() { - default - eautoreconf - - sed -i 's:^ScriptDir=.*:ScriptDir=/usr/share/nzbget/ppscripts:' nzbget.conf || die - - sed \ - -e 's:^MainDir=.*:MainDir=/var/lib/nzbget:' \ - -e 's:^LogFile=.*:LogFile=/var/log/nzbget/nzbget.log:' \ - -e 's:^WebDir=.*:WebDir=/usr/share/nzbget/webui:' \ - -e 's:^ConfigTemplate=.*:ConfigTemplate=/usr/share/nzbget/nzbget.conf:' \ - -e 's:^DaemonUsername=.*:DaemonUsername=nzbget:' \ - nzbget.conf > nzbgetd.conf || die -} - -src_configure() { - local myconf=( - $(use_enable debug) - $(use_enable ncurses curses) - $(use_enable parcheck) - $(use_enable ssl tls) - $(use_enable zlib gzip) - $(use_enable test tests) - --with-tlslib=$(usex gnutls GnuTLS OpenSSL) - ) - econf "${myconf[@]}" -} - -src_test() { - ./nzbget --tests || die "Tests failed" -} - -src_install() { - default - - insinto /etc - doins nzbget.conf - doins nzbgetd.conf - - keepdir /var/lib/nzbget/{dst,nzb,queue,tmp} - keepdir /var/log/nzbget - - newinitd "${FILESDIR}"/nzbget.initd-r1 nzbget - newconfd "${FILESDIR}"/nzbget.confd nzbget -} - -pkg_preinst() { - enewgroup nzbget - enewuser nzbget -1 -1 /var/lib/nzbget nzbget - - fowners nzbget:nzbget /var/lib/nzbget/{dst,nzb,queue,tmp} - fperms 750 /var/lib/nzbget/{queue,tmp} - fperms 770 /var/lib/nzbget/{dst,nzb} - - fowners nzbget:nzbget /var/log/nzbget - fperms 750 /var/log/nzbget - - fowners nzbget:nzbget /etc/nzbgetd.conf - fperms 640 /etc/nzbgetd.conf -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]] ; then - elog - elog "Please add users that you want to be able to use the system-wide" - elog "nzbget daemon to the nzbget group. To access the daemon run nzbget" - elog "with the --configfile /etc/nzbgetd.conf option." - elog - fi -} diff --git a/net-nntp/nzbget/nzbget-21.0.ebuild b/net-nntp/nzbget/nzbget-21.1.ebuild index 3b9a5af5466d..e1ccd0f93356 100644 --- a/net-nntp/nzbget/nzbget-21.0.ebuild +++ b/net-nntp/nzbget/nzbget-21.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools flag-o-matic user systemd +inherit autotools systemd MY_PV=${PV/_pre/-r} MY_P=${PN}-${PV/_pre/-testing-r} @@ -18,7 +18,8 @@ KEYWORDS="~amd64 ~arm ~ppc ~x86" IUSE="debug gnutls ncurses +parcheck ssl test zlib" RESTRICT="!test? ( test )" -RDEPEND="dev-libs/libxml2:= +DEPEND=" + dev-libs/libxml2:= ncurses? ( sys-libs/ncurses:0= ) ssl? ( gnutls? ( @@ -28,35 +29,24 @@ RDEPEND="dev-libs/libxml2:= !gnutls? ( dev-libs/openssl:0=[-bindist] ) ) zlib? ( sys-libs/zlib:= )" -DEPEND="${RDEPEND} +RDEPEND=" + ${DEPEND} + acct-user/nzbget + acct-group/nzbget +" +BDEPEND=" test? ( || ( app-arch/rar app-arch/unrar ) ) - virtual/pkgconfig" + virtual/pkgconfig +" DOCS=( ChangeLog README nzbget.conf ) S=${WORKDIR}/${PN}-${PV/_pre*/-testing} -check_compiler() { - if [[ ${MERGE_TYPE} != binary ]] && ! test-flag-CXX -std=c++14; then - eerror "${P} requires a C++14-capable compiler. Your current compiler" - eerror "does not seem to support the -std=c++14 option. Please" - eerror "upgrade to gcc-4.9 or an equivalent version supporting C++14." - die "The currently active compiler does not support -std=c++14" - fi -} - -pkg_pretend() { - check_compiler -} - -pkg_setup() { - check_compiler -} - src_prepare() { default eautoreconf @@ -96,7 +86,6 @@ src_install() { doins nzbget.conf doins nzbgetd.conf - keepdir /var/lib/nzbget/{dst,nzb,queue,tmp} keepdir /var/log/nzbget newinitd "${FILESDIR}"/nzbget.initd-r1 nzbget @@ -105,13 +94,6 @@ src_install() { } pkg_preinst() { - enewgroup nzbget - enewuser nzbget -1 -1 /var/lib/nzbget nzbget - - fowners nzbget:nzbget /var/lib/nzbget/{dst,nzb,queue,tmp} - fperms 750 /var/lib/nzbget/{queue,tmp} - fperms 770 /var/lib/nzbget/{dst,nzb} - fowners nzbget:nzbget /var/log/nzbget fperms 750 /var/log/nzbget diff --git a/net-p2p/vuze/vuze-5.7.6.0-r1.ebuild b/net-p2p/vuze/vuze-5.7.6.0-r1.ebuild index 86c28f600dba..a26544780ba1 100644 --- a/net-p2p/vuze/vuze-5.7.6.0-r1.ebuild +++ b/net-p2p/vuze/vuze-5.7.6.0-r1.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/azureus/${PN}/${MY_SRC}/${MY_SRC}_source.zip" LICENSE="GPL-2 BSD" SLOT="0" -KEYWORDS="amd64 ppc64 ~x86" +KEYWORDS="amd64 ppc64 x86" # bundles parts of http://www.programmers-friend.org/ # bundles bcprov - 1.37 required but not in the tree diff --git a/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild b/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild index 739950568156..2fcef3b41aff 100644 --- a/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild +++ b/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -9,7 +9,7 @@ inherit perl-module webapp DESCRIPTION="Generic Model Organism Database Project - The Generic Genome Browser" HOMEPAGE="http://gmod.org/wiki/GBrowse" KEYWORDS="~amd64 ~x86" -IUSE="-minimal mysql postgres +sqlite" +IUSE="minimal mysql postgres +sqlite" SLOT="0" WEBAPP_MANUAL_SLOT="yes" diff --git a/sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild b/sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild index e5dc816bc78a..461c4f51b071 100644 --- a/sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild +++ b/sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -15,7 +15,7 @@ HOMEPAGE="http://www.bioperl.org/" SLOT="0" KEYWORDS="amd64 x86" -IUSE="-minimal test" +IUSE="minimal test" #SRC_TEST="do" RESTRICT="test" diff --git a/sys-apps/ack/Manifest b/sys-apps/ack/Manifest index 2f82db886a1f..9380f8c02104 100644 --- a/sys-apps/ack/Manifest +++ b/sys-apps/ack/Manifest @@ -1,4 +1,2 @@ -DIST ack-v3.0.0.tar.gz 238646 BLAKE2B 679cf84c7dffd6f1ec3881de465cbdbebf9ec8958a6e36c5265d11492d84990a67b34af0e42041280b9a9ab6c57d951a2c73ba5b6fe07c9ac8774bac445c10fd SHA512 2bf4e9719d8a5ec56c9d31acbcff647aece7b52ff7ffaacbfec56e59e30efb9ca7397fa379e13a9113a27abe47053261b9adb641b995d3e8579d459c0483fb45 -DIST ack-v3.2.0.tar.gz 246140 BLAKE2B ac729ba6b1c7f0b720ddd076498452660f7f50ba7f866f908717d19c2ef985858d63dad96a2acd5c93d0a991a1870bec895da3dc64b974bc11c5f74b9245332a SHA512 3604a8ad6a79c63fdd65721fc790db09f345f66b81e5272fa073cb53b7964b576ba3638e1f358d8e0c28c38acd0d9a0362f2666ece9abe374cf6355b752a0f69 -DIST ack-v3.3.1.tar.gz 250024 BLAKE2B 3cf4882929afb05ea592a7e964a06745bef58303d5bc1c66e65ca3eb7d21fccc7fe285b142fe9518cfd9eb5c37bc32dfbec113df775b84de4f55b12864a4ba9e SHA512 7f0a5cc55b331f69877d186699e2fab64a196b0ea0fd148699b7be5f9a7bb2850ecf9e45dc026325af8407a37f719faf3f3e314c43e48d575b3685087461addd DIST ack-v3.4.0.tar.gz 251106 BLAKE2B 192d1e851ef5bd3547e21fe49cf276180eb278af783209046c02e4a1ae1471c7b24aaf6825223aad96dedea9fd266576a2021dcb808b0e229312e8237e2f7afd SHA512 cc8de5a784f63a8f48b9548e930972578866d0fcc520febc6002d1ce4f9b55aabb0c8e87860586a668d94b5091c66194c05a07c584fe30fad2c5d786aee95db5 +DIST ack-v3.5.0.tar.gz 249718 BLAKE2B dedd11b424f7274c45dabfd0ddf2c92ee9d15ccf40d251c79159aef6e93071c963291722a2024db1d4828ae02c1310d3fec366ca8bd5f249da2c0c73f7e303cb SHA512 f5b9321fc62cf2ab86fa7dc933dd44245314ebd26bee2d8769f85c15fc8b4493d0757ca4430708f0ebea5692f9c73ad17cc00bc46d1f611b8489b30811df307d diff --git a/sys-apps/ack/ack-3.0.0.ebuild b/sys-apps/ack/ack-3.0.0.ebuild deleted file mode 100644 index 01badc0b6234..000000000000 --- a/sys-apps/ack/ack-3.0.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -DIST_AUTHOR=PETDANCE -DIST_VERSION="v${PV}" -inherit perl-module - -DESCRIPTION="ack is a tool like grep, optimized for programmers" -HOMEPAGE="https://beyondgrep.com" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-perl/File-Next-1.160.0" -DEPEND="${RDEPEND} - test? ( dev-perl/IO-Tty )" - -PATCHES=( "${FILESDIR}"/${PN}-3.0.0-gentoo.patch ) - -src_test() { - # Tests fail when run in parallel and if dev-perl/IO-Tty is installed - # which enables interactive tests that need to read from stdin. If IO-Tty - # is not installed the related tests are skipped. - MAKEOPTS+=" -j1" perl-module_src_test -} diff --git a/sys-apps/ack/ack-3.2.0.ebuild b/sys-apps/ack/ack-3.2.0.ebuild deleted file mode 100644 index 4ae50c324a70..000000000000 --- a/sys-apps/ack/ack-3.2.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -DIST_AUTHOR=PETDANCE -DIST_VERSION="v${PV}" -inherit perl-module - -DESCRIPTION="ack is a tool like grep, optimized for programmers" -HOMEPAGE="https://beyondgrep.com" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-perl/File-Next-1.180.0" -DEPEND="${RDEPEND} - test? ( dev-perl/IO-Tty )" - -PATCHES=( "${FILESDIR}"/${PN}-3.0.0-gentoo.patch ) - -src_test() { - # Tests fail when run in parallel and if dev-perl/IO-Tty is installed - # which enables interactive tests that need to read from stdin. If IO-Tty - # is not installed the related tests are skipped. - MAKEOPTS+=" -j1" perl-module_src_test -} diff --git a/sys-apps/ack/ack-3.3.1.ebuild b/sys-apps/ack/ack-3.5.0.ebuild index cb79809565e6..fe8c7cc38c9b 100644 --- a/sys-apps/ack/ack-3.3.1.ebuild +++ b/sys-apps/ack/ack-3.5.0.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://beyondgrep.com" LICENSE="Artistic-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" diff --git a/sys-apps/ack/files/ack-3.0.0-gentoo.patch b/sys-apps/ack/files/ack-3.0.0-gentoo.patch deleted file mode 100644 index 09972519ed89..000000000000 --- a/sys-apps/ack/files/ack-3.0.0-gentoo.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- a/lib/App/Ack/ConfigDefault.pm -+++ b/lib/App/Ack/ConfigDefault.pm -@@ -263,6 +263,10 @@ - # http://en.wikipedia.org/wiki/Fortran - --type-add=fortran:ext:f,f77,f90,f95,f03,for,ftn,fpp - -+# Gentoo -+# https://www.gentoo.org/ -+--type-add=gentoo:ext:ebuild,eclass -+ - # Go - # http://golang.org/ - --type-add=go:ext:go ---- a/t/ack-filetypes.t -+++ b/t/ack-filetypes.t -@@ -26,6 +26,7 @@ - elisp - erlang - fortran -+gentoo - go - groovy - gsp diff --git a/sys-apps/duc/duc-1.4.3-r1.ebuild b/sys-apps/duc/duc-1.4.3-r1.ebuild index 7425a6401b06..e3f8f9050fbe 100644 --- a/sys-apps/duc/duc-1.4.3-r1.ebuild +++ b/sys-apps/duc/duc-1.4.3-r1.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/zevv/duc" LICENSE="GPL-2" SLOT="0" -IUSE="cairo gui -leveldb ncurses -sqlite +tokyocabinet X" +IUSE="cairo gui leveldb ncurses sqlite +tokyocabinet X" REQUIRED_USE=" ^^ ( tokyocabinet leveldb sqlite ) diff --git a/sys-apps/duc/duc-9999.ebuild b/sys-apps/duc/duc-9999.ebuild index 7425a6401b06..e3f8f9050fbe 100644 --- a/sys-apps/duc/duc-9999.ebuild +++ b/sys-apps/duc/duc-9999.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/zevv/duc" LICENSE="GPL-2" SLOT="0" -IUSE="cairo gui -leveldb ncurses -sqlite +tokyocabinet X" +IUSE="cairo gui leveldb ncurses sqlite +tokyocabinet X" REQUIRED_USE=" ^^ ( tokyocabinet leveldb sqlite ) diff --git a/sys-auth/elogind/elogind-246.10-r1.ebuild b/sys-auth/elogind/elogind-246.10-r1.ebuild index ace259aca9cf..91b8f39f39c7 100644 --- a/sys-auth/elogind/elogind-246.10-r1.ebuild +++ b/sys-auth/elogind/elogind-246.10-r1.ebuild @@ -9,7 +9,7 @@ if [[ ${PV} = *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc x86" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc x86" fi inherit linux-info meson pam udev xdg-utils diff --git a/sys-auth/polkit/Manifest b/sys-auth/polkit/Manifest index c1e90f0d5ca8..6533565ddf22 100644 --- a/sys-auth/polkit/Manifest +++ b/sys-auth/polkit/Manifest @@ -1,3 +1,4 @@ DIST polkit-0.116.tar.gz 1548311 BLAKE2B e9761a2934136d453a47b81dd1f132f9fc96c45b731d5fceb2aa7706f5325b6499f6acbb68032befc1b21878b1b54754685607c916ca8e02a8accca3ca014b31 SHA512 b66b01cc2bb4349de70147f41f161f0f6f41e7230b581dfb054058b48969ec57041ab05b51787c749ccfc36aa5f317952d7e7ba337b4f6f6c0a923ed5866c2d5 DIST polkit-0.117.tar.gz 1554536 BLAKE2B 1cf7e0ff9db19a29be626f4bea96c9e2ef8b1eab4b8287a5f1f4d2a818b86d58c1c4c4a41849d95e31559dba1b18853a31e934ebbadd8e07f94dfd58b45240e0 SHA512 c10ea984f2386fe436e58a2866e5323afc80d24f744f0ee61d966941259aa491bd96b07d911434aa731b300c3cca25b647804b396501175ab5b3c53384e94c70 DIST polkit-0.118.tar.gz 1556765 BLAKE2B d048b37b1ff8ad59a2d8a333a3b459d1592b61f7a6d9a9569f8b2984de913d71abfc9748e242c7453f0bce4f322bd44672e35309f181afd22488794ca0e47119 SHA512 3d412f40c903cfaf68530f9c0cb616106f8edf43bec6805de129f8bb9cb4e64c98da6bf02caa3ef5619974f3e2df7a70564f08b92901662453477e9005752b4e +DIST polkit-0.119.tar.gz 1387409 BLAKE2B aeb605598393d1cab40f7c77954008a0392600584c5fe8cc9acaa0e122418ee48b9cce0b6839189ea415277ff0ae4dbd5b7c71cb910aa349dcaf7e1f3f70ef06 SHA512 0260fb15da1c4c1f429e8223260981e64e297f1be8ced42f6910f09ea6581b8205aca06c9c601eb4a128acba2f468de0223118f96862ba769f95721894cf1578 diff --git a/sys-auth/polkit/polkit-0.116-r1.ebuild b/sys-auth/polkit/polkit-0.116-r1.ebuild index e68234b005a6..e1624d37a10f 100644 --- a/sys-auth/polkit/polkit-0.116-r1.ebuild +++ b/sys-auth/polkit/polkit-0.116-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" -IUSE="elogind examples gtk +introspection jit kde nls pam selinux systemd test" +IUSE="elogind examples gtk +introspection kde nls pam selinux systemd test" RESTRICT="!test? ( test )" REQUIRED_USE="^^ ( elogind systemd )" diff --git a/sys-auth/polkit/polkit-0.117.ebuild b/sys-auth/polkit/polkit-0.117.ebuild index 800d91a13472..f14e9de1bf05 100644 --- a/sys-auth/polkit/polkit-0.117.ebuild +++ b/sys-auth/polkit/polkit-0.117.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc ~x86" -IUSE="elogind examples gtk +introspection jit kde nls pam selinux systemd test" +IUSE="elogind examples gtk +introspection kde nls pam selinux systemd test" RESTRICT="!test? ( test )" REQUIRED_USE="^^ ( elogind systemd )" diff --git a/sys-auth/polkit/polkit-0.118.ebuild b/sys-auth/polkit/polkit-0.118.ebuild index e04bbab4c847..eb34c84d071f 100644 --- a/sys-auth/polkit/polkit-0.118.ebuild +++ b/sys-auth/polkit/polkit-0.118.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="amd64 arm arm64 ~mips ppc64 ~riscv ~s390 x86" -IUSE="elogind examples gtk +introspection jit kde nls pam selinux systemd test" +IUSE="elogind examples gtk +introspection kde nls pam selinux systemd test" RESTRICT="!test? ( test )" REQUIRED_USE="^^ ( elogind systemd )" diff --git a/sys-auth/polkit/polkit-0.119.ebuild b/sys-auth/polkit/polkit-0.119.ebuild new file mode 100644 index 000000000000..f047c46c16fe --- /dev/null +++ b/sys-auth/polkit/polkit-0.119.ebuild @@ -0,0 +1,131 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools pam pax-utils systemd xdg-utils + +DESCRIPTION="Policy framework for controlling privileges for system-wide services" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/polkit https://gitlab.freedesktop.org/polkit/polkit" +SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc64 ~riscv ~s390 x86" +IUSE="elogind examples gtk +introspection kde nls pam selinux systemd test" +RESTRICT="!test? ( test )" + +REQUIRED_USE="^^ ( elogind systemd )" + +BDEPEND=" + acct-user/polkitd + app-text/docbook-xml-dtd:4.1.2 + app-text/docbook-xsl-stylesheets + dev-libs/glib + dev-libs/gobject-introspection-common + dev-libs/libxslt + dev-util/glib-utils + dev-util/gtk-doc-am + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig + introspection? ( dev-libs/gobject-introspection ) +" +DEPEND=" + dev-lang/spidermonkey:78[-debug] + dev-libs/glib:2 + dev-libs/expat + elogind? ( sys-auth/elogind ) + pam? ( + sys-auth/pambase + sys-libs/pam + ) + systemd? ( sys-apps/systemd:0=[policykit] ) +" +RDEPEND="${DEPEND} + acct-user/polkitd + selinux? ( sec-policy/selinux-policykit ) +" +PDEPEND=" + gtk? ( || ( + >=gnome-extra/polkit-gnome-0.105 + >=lxde-base/lxsession-0.5.2 + ) ) + kde? ( kde-plasma/polkit-kde-agent ) +" + +DOCS=( docs/TODO HACKING NEWS README ) + +PATCHES=( + "${FILESDIR}"/${PN}-0.115-elogind.patch # bug 660880 +) + +QA_MULTILIB_PATHS=" + usr/lib/polkit-1/polkit-agent-helper-1 + usr/lib/polkit-1/polkitd" + +src_prepare() { + default + + sed -i -e 's|unix-group:wheel|unix-user:0|' src/polkitbackend/*-default.rules || die #401513 + + # Workaround upstream hack around standard gtk-doc behavior, bug #552170 + sed -i -e 's/@ENABLE_GTK_DOC_TRUE@\(TARGET_DIR\)/\1/' \ + -e '/install-data-local:/,/uninstall-local:/ s/@ENABLE_GTK_DOC_TRUE@//' \ + -e 's/@ENABLE_GTK_DOC_FALSE@install-data-local://' \ + docs/polkit/Makefile.in || die + + # disable broken test - bug #624022 + sed -i -e "/^SUBDIRS/s/polkitbackend//" test/Makefile.am || die + + # Fix cross-building, bug #590764, elogind patch, bug #598615 + eautoreconf +} + +src_configure() { + xdg_environment_reset + + local myeconfargs=( + --localstatedir="${EPREFIX}"/var + --disable-static + --enable-man-pages + --disable-gtk-doc + --disable-examples + $(use_enable elogind libelogind) + $(use_enable introspection) + $(use_enable nls) + $(usex pam "--with-pam-module-dir=$(getpam_mod_dir)" '') + --with-authfw=$(usex pam pam shadow) + $(use_enable systemd libsystemd-login) + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" + $(use_enable test) + --with-os-type=gentoo + ) + econf "${myeconfargs[@]}" +} + +src_compile() { + default + + # Required for polkitd on hardened/PaX due to spidermonkey's JIT + pax-mark mr src/polkitbackend/.libs/polkitd test/polkitbackend/.libs/polkitbackendjsauthoritytest +} + +src_install() { + default + + if use examples; then + docinto examples + dodoc src/examples/{*.c,*.policy*} + fi + + diropts -m 0700 -o polkitd + keepdir /usr/share/polkit-1/rules.d + + find "${ED}" -name '*.la' -delete || die +} + +pkg_postinst() { + chmod 0700 "${EROOT}"/{etc,usr/share}/polkit-1/rules.d + chown polkitd "${EROOT}"/{etc,usr/share}/polkit-1/rules.d +} diff --git a/sys-fs/fuse/fuse-3.10.3.ebuild b/sys-fs/fuse/fuse-3.10.3.ebuild index a2dc93388584..c69b0650ad77 100644 --- a/sys-fs/fuse/fuse-3.10.3.ebuild +++ b/sys-fs/fuse/fuse-3.10.3.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/libfuse/libfuse/releases/download/${P}/${P}.tar.xz" LICENSE="GPL-2 LGPL-2.1" SLOT="3" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86" IUSE="+suid test" RESTRICT="!test? ( test )" diff --git a/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild b/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild index 65982b5c176f..2740f0d35651 100644 --- a/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild +++ b/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/reiser4/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 -sparc ~x86" +KEYWORDS="amd64 arm ~arm64 ~ppc ppc64 -sparc x86" IUSE="debug readline static static-libs" LIB_DEPEND=">=sys-libs/libaal-1.0.7:=[static-libs(+)] diff --git a/sys-kernel/gentoo-kernel-bin/Manifest b/sys-kernel/gentoo-kernel-bin/Manifest index 53613b4c2e98..11a1690d44dc 100644 --- a/sys-kernel/gentoo-kernel-bin/Manifest +++ b/sys-kernel/gentoo-kernel-bin/Manifest @@ -8,8 +8,12 @@ DIST genpatches-5.10-43.base.tar.xz 1461848 BLAKE2B fb1bf2fe69c6698cdbd345895010 DIST genpatches-5.10-43.extras.tar.xz 1772 BLAKE2B 1c2c2ec1b7a2814572b464a02e582821bb04c143524dd98ccdb330463230e1370167b8fdcf269d137f4087d21b60ba07dc72c5da2d47f8dafbb1a9598611b804 SHA512 e8085e8d9c5a82d9d8b10d2212577fc3878beaad4e52f145bd5490b3e7f440762f95ecb7a2266eb99a91ce7d98fbf48f241eba86329aa35a1d9103733e7195a1 DIST genpatches-5.10-44.base.tar.xz 1463796 BLAKE2B b4e002718b2542c1806eb89cd552f11e3ed9b3a2c2e531c590d05d8796bd6a462457c1afebf1794e10dd2419c45102acb7d4e371055b1ae750a959bb3720ab96 SHA512 4e0d54ddc9a43427c418a9c0891b8dd02088a9b75ca011328401af994c54a5fc5498db228f3ecd6aa752afd058483f460e86fbe4393c24815974300108e7324c DIST genpatches-5.10-44.extras.tar.xz 1768 BLAKE2B 287454aae7ff60ac375b570e5132c33f81471348af58b999ca1355d15e7fd1f0839c369e28e18496dd0f9a43d6bbaed03318a9358a5b9384c3f27c109f7447e5 SHA512 d69a0a32dbd79eafe4168bccf55c0b0765e5311bd2f81ef93ce4f709990b6a789eb057b2afac7364b18e5f811b9610e7d8e10efff07a6e396c8e897b76a50378 +DIST genpatches-5.10-45.base.tar.xz 1520656 BLAKE2B b2dbe0274ff6a90e2e8b5edd99b1505654f4e7fa777e8944a0e7ccbc23c3c8f938e061d470adb678f4a177738b22d855812c38890592a55f6746ff1f52da4e93 SHA512 b997601f68c852ceed6307c2966ba7eb6f7f4e17f30be38153b6b6604d0bea18ab0f4f66a1bb79474b0b330e30288c441026df18bbb761acb071b0f8ab8f00c2 +DIST genpatches-5.10-45.extras.tar.xz 1768 BLAKE2B c7a3221f2c330d1463f88ce23d0ac70692ec4f390b7a10cb6ce6be19e948f8595b2b7ad0fae90b4cf1c94bb8c1469be545cf3352b91e99b93cfedc7cfcc9d7ae SHA512 51e28cb3d536e4df5743c55e1f95803a44ffaca7da75ac73dbe575051ddf3198dff4c69a0bf32fd479962ce518f5ed57be8fc3c71f426edfafb814c350f16393 DIST genpatches-5.11-25.base.tar.xz 1030312 BLAKE2B c3e0f5840c32292d36be31a8606934bfa1ccb7e31f04cd214574009577907d00912bacce1f85dddeda77ba99f40f61fa5aa5259a693c74abd63a05be5a44f2aa SHA512 5adbe3770562b57d7180a44ccca8e665cc5b0d9ba5168c4b3555b348708edd7469464bd770124d9a8641095bdbe786d843ae3da64b845d577999c9e40360c970 DIST genpatches-5.11-25.extras.tar.xz 1772 BLAKE2B 0bd2afbd93cd7553c8e058f61c515ed9d47e9f328529e6cf36a7100b363dc8e4c3004afa06a0c0b95963bcf69a216ae6a7bf595062401725a4a25f942f44a3e8 SHA512 114094a87bad0dc4a265847fa18b88a2795daf151de8451bb4fbe4af70f3f4bcff8905d8d90522f85914bb7ba7227ebab7f69ab59112afb2187332b393450fec +DIST genpatches-5.12-10.base.tar.xz 564792 BLAKE2B 127e64196c8aa0b65dab7de4dad4b97052c53451f27a1948453d8910afd59b3a5c4ffc316a439bd053b433b057df127bb252d994f6447a82dc1434eb317e0d1f SHA512 e4c9eebb61de9af0fa4a53472c18f39f87196a804c63ff796eff992f75450719400e7bed5cd8ddce6b09db8330be443ddb2ce0241d8058aedcdb5e332a4178eb +DIST genpatches-5.12-10.extras.tar.xz 1772 BLAKE2B 31e3959f1dab1ae1ff5f39b75c455e559e96bd4527e94677494accfa75fd14df2667ecea8ba5df59d3fa1ec9464ba18a257a8a5e76c0602049732f66829785ad SHA512 6e2bf6f7eada61ece1f65d1461377ba5532dd45b57b58b7ee6dae9485809d4c329c6ba8d6d0d0ee9027612a01946f756069b50c44d60d2f543e9864231abd676 DIST genpatches-5.12-7.base.tar.xz 447756 BLAKE2B c7d1f923bf45adba7a60ae56eab5e6ac3e132f6fc9186da1bc10d48c19dbf7ab39fc07cbb93112b39b13fa921223b1f6aedb28e2d053600b7787a2bc2b55defc SHA512 ee12bac503ec5ff48d918240b5e16c03df01378d572421d648863d82db8c89a79316d1c0339b6156cc5c1a0de64cf20e81b2900fd23b96f0c274a171e90aa279 DIST genpatches-5.12-7.extras.tar.xz 1772 BLAKE2B 3f593739f9330a6dab17be9307c163d6ca4e39e821d79db2b6a3f88b3af8c973c713be26ebd11d155d18336f9613fa5b0c9c44e43c0674bfc4f9e0c5d7519874 SHA512 e273b619d284246670381a6a6bc5f9835a6ed7023bfae14b31783242ce504d6909a5dfb47e6a5cb5d81cb499fb897daaeb8e5d0306359a47ba22e0818d499d25 DIST genpatches-5.12-8.base.tar.xz 486256 BLAKE2B 55607b8e42132706dd6d5b2716ec252fdae5b7b2d0e4c7874aa4d9f558172f207d7597eb77030651a5c490b86eedeaf1174e9908277e989e06a4cc048b1ceecd SHA512 3651b48fd077624d7e9b9471bddfa3ed0b5d4656374b73b92192de26925a12b3c4923dba9764ff12c1fad94047b404c61f23cd2eb4d4383775eaaa0ded3e7907 @@ -26,6 +30,8 @@ DIST genpatches-5.4-125.base.tar.xz 3512440 BLAKE2B 4a63e044f420911602426aaacd64 DIST genpatches-5.4-125.extras.tar.xz 1768 BLAKE2B bfa75a0d735871051ce3f66962b9287ef80d4928dea58ce2f9b4d817788d4975e8aed09888ef2cba716292eb650633cf9a191843b81e69f8f717f5b44fec6dc7 SHA512 ae8a8e69c44567baaf1a7efc27bb3384da6f83c9f80c90b692e90c296bcc33862f4670ab72969ae727b310a5995a707c1bf112c67ca268893f32b616f6391f24 DIST genpatches-5.4-126.base.tar.xz 3514976 BLAKE2B 9d3ddbf2a9d2957a76f3c172afbc040f7ecf97ecb9014277c110aded0fb808c2b09a1191a7596a396d2b2fc2fe91e964b3ec3ff99688eca9b0da256f57454680 SHA512 5f89c7034d55f3465ca9ab8a2d976af139a49d269ae0f04a05dc5a8ae6bb88e436ecfe7bd6bdc3c3d8beb6d6f681c8e87003d2595b8c9677f41d5b64629be411 DIST genpatches-5.4-126.extras.tar.xz 1772 BLAKE2B 900e7881ef06469e55c4c79b140454d14dc2a8f244b4972439c2fec1c50b95ac8cbe2713dbc64a8e0c7789b517d1350ee91eb75bdd8d45a12289b2445b567acf SHA512 477e1626042f16a139972960be3e62a1f04103607cff026dfd1fe32d79699503d3a336b7241d0b5f6d843d3441a436b59a9c51408fc5ac7e905b1adea52a4e8f +DIST genpatches-5.4-127.base.tar.xz 3553224 BLAKE2B 99331a43982e2dc9efab061b25663e59284e7f1758f683f288fe09ebddc0790ea901e722cde8b9955085afdbb4f2bb45b546ab632a45d310aef9fc16d6cdb0fb SHA512 a78106c658cf7cd1ad08ee100f9cfeade4e1eaf0da9c6e3819a59e54dad9a17a36ee46d8c38dedae58c5f30444054906344e813f9a2d8f0405be2a588a1f9c8b +DIST genpatches-5.4-127.extras.tar.xz 1772 BLAKE2B da124b0076e952e1468ee4adc8965a6c346b945fd56e828903fd8dd2689d8433ad07457792ac7a78431a76c142d9c77955b2fbdba042063b80df331acdeb8cf8 SHA512 284260c19cf81d0c444747e1adc588ddc3442c3e69a1729841e39b8e4df9dc4cff8e852fc7db56033a1f2b3770a7c34010dd331eab71910da1a719347f56eed7 DIST gentoo-kernel-5.10.33-1.amd64.xpak 65526470 BLAKE2B 205070bff9d1a7f7e58a26fcca367c325272d0f7e0cab1bda70fbe451ee7f5ee9a9a52d89cadc43d879e1d026a0feae2d8cd3756b53ab1b94f797af88bd3b038 SHA512 d01f6e9e00bad450cc71e2cf079d0306ce2d3f234d477cf44507d984c64efb77be3b20b27c05d81b41cd3329e6bec654a284202dd409c74f625af65d4f1d9c15 DIST gentoo-kernel-5.10.33-1.arm64.xpak 59313277 BLAKE2B db163fcb9b75ad919fa1aa329b653ecb82eabfae6e50a2f2a32aae8acc7c9802ff76f4c84fe1dd180f20511dd100d695c9c8e7db1e93f93a284b18061cb16fce SHA512 50f979a6314a4603a4f3bbc906fc4ac9d3854b666bcbe83e6a1c3b9209c33aff9fad4f291d491b8ce188f17188759703a2da665d170c317bb47d1ca283571976 DIST gentoo-kernel-5.10.33-1.x86.xpak 57243809 BLAKE2B 209b1c49bb4d43ca73a438b021bee5274a003caf6c94fe1448f61bd39ba4ce6ddb021125b998e386edc16662c5266945c876b2ad4d5986f177088a2425a31895 SHA512 5399b3788dea2172112d3e52082bfd5a2120accf50acdd0a5a4897e495413b706a237c5f82ae6dd9a6e8a95c41aaa1f06c475043fa4c88bf81dac11b1fab79e9 @@ -41,6 +47,8 @@ DIST gentoo-kernel-5.10.40-1.x86.xpak 57236415 BLAKE2B 803f67facaaa6f162f34290c7 DIST gentoo-kernel-5.10.41-1.amd64.xpak 65519229 BLAKE2B 1e11591d6aff9976116eff850c9a776e3da59731b6326886c47a47a49e242206a1711c7acef2bf591f26088f1e48a0e5430b55080acf23e94a061da234aacad2 SHA512 a255ae0856d940d051d69eef998b83de172d821f497b9fa752e97775e9dc0836ba5f0dcdfb019038c9799ff4a460e6b2fc30aa48c0f77060446d7f6c75b97e71 DIST gentoo-kernel-5.10.41-1.arm64.xpak 58996490 BLAKE2B c206bf22c57e3d13a9c61699e21c4beeb8c76df15f314eb18b92150199996bebc34bf950bd52b272ace25c8156e81d4f4d74bf1fbc796b08f5d0eabff195fcd0 SHA512 3ce0edbd214192e7fa63c033191853776e797c42e945d5a2e6ded6ab70c0c67576571a73595cf67975a987af7c091d1c6ae542cb827ddc31ebf854ff04589b7e DIST gentoo-kernel-5.10.41-1.x86.xpak 57258381 BLAKE2B e66c7ae5e45d5e2a5258bbc297565c50978c8097e14ce34f8219d021b823bdb776b55f01aa3137fa44cb3016c8cd2459594dfbe8cb0e511f48ce6aa7b566610b SHA512 22d74f1015898f9cb835e435a6b48b017ff3712deaa44c1b250c646ce0853aa71b00e7d027b84d5669113d5b7ca29348970255daa1bad3cd965a0a55ef127a5d +DIST gentoo-kernel-5.10.42-1.amd64.xpak 65510073 BLAKE2B 1fa0b8fcb134a2d30360086bc0845427e375bd8d6f8ad4b42b0ec3a38cc977e7cd4c63967ace8a9a92a7d43cbadc71c9aa8a808442a7106e3a3845125fc0e942 SHA512 766f0b7fe8cef48d075bbb839f3ad7dc6e0d4ee5f46678dc6b2f7d4491ed01dbb367c56fb3e8aed59c5bb337a55d1591e375f626bac276e611d12419100de641 +DIST gentoo-kernel-5.10.42-1.x86.xpak 57252640 BLAKE2B 474affc3ecb668d978593cbaaa7d58e1fdac9c933797e5da57de71e43d49710986b6227938778bbdc51ff9b443137cf8ee6e9df1abc2fc096af9361c79074fec SHA512 0c321e5928469badda460f480d6a6d5e8b8f9e0572e3c834fd9aee7cbe49f28ca6b104bdcde84c5929a84a8884947dd31b9db33e8ad7183c3860fc120010148d DIST gentoo-kernel-5.11.22-1.amd64.xpak 65882786 BLAKE2B aa98de82c4f47a586474f6f888a12fa3fb4605bd3dae576a36a9edfd10b669cb586d975dd6dfd4fac0ca3906e56a14250effb44b54ea6646898b12ddeeb6ae28 SHA512 1cd5f40f7ae0500158d05e3da14788a407faef9c471001fa5cb403e6cbbd062130645166cab28f3ad79cb6318dd0fb5961a515952a91de35f34b44483931c5a2 DIST gentoo-kernel-5.11.22-1.arm64.xpak 59725454 BLAKE2B bffe7733b1ab766ab7afae20c77696ab36bed989dae7fef60e6eba752da8f918240e0d28fdce01d5813775c4013df80ba495e6ed7163838bde2896ffce96fb06 SHA512 8b1e4b0f6ca7294a457574f23557df1cc99dc6be41f3a36f6a871cb8a21d52f0556279afe400301bbdf715d4e07134da845c37318a1e6df9e14e379cf4252f68 DIST gentoo-kernel-5.11.22-1.x86.xpak 57639501 BLAKE2B 5d4cb13fcf9d60f0865d1048985a920a85cd13aac338c475a0cf3c2ebdc2414b5130b6d511456d52881ef37bf0f8623cb3b60694d990a274ae1e048788f44f02 SHA512 c116911b8941980ceb1026d603c038758dca821a390274b5165dc9e101962872b8051889e5685ea304d51996be602170c5aea5080f7e66421f707d4563974df7 @@ -53,6 +61,8 @@ DIST gentoo-kernel-5.12.7-1.x86.xpak 58091403 BLAKE2B d4648d72e421aa8a2e85529e83 DIST gentoo-kernel-5.12.8-1.amd64.xpak 66367297 BLAKE2B adadd41d205de9376e4f2c7c1354e692f04050940dc2d98d0b0381c8d45b2bb6b63a79c797dc31c9b9374f6d6d1533a5e2c30a3a9c2d0a389179ae75ed732ab8 SHA512 6b9bc14c4ebf757f14cbcba1c1190fb6329891af4558c5d9705a946aa36adc514bdcbd352f044c57c2026f4619def0720106dbb0e7aaec545e894cd1bc25697a DIST gentoo-kernel-5.12.8-1.arm64.xpak 59934047 BLAKE2B f2ecf71fe91aaad771ef380e029d419114dc13133a1021d378dd89c70ea3f31b88e445da2a110bff43d43c75446fbfce753aa13008977f2a9f795d1c767507e5 SHA512 cb0fe3d3937739dd2f218d895f6c9185f71606d3016a15020703e03e97d2903a0b3865a0751811f6771f9a367f68e0fc36a56b667cf21ae2e673e6e86d934114 DIST gentoo-kernel-5.12.8-1.x86.xpak 58087343 BLAKE2B 11d7693cf474bf9b736e2c347831da8208475c1ecc09a9a974fb4512f941c98108379bbca25011a2f2dfb7a229a69a39c69e5687947744edf20e3e6d7193b0c3 SHA512 409aeefe20ed363b7b7bf944707c884c963afb7054767ba6793ad889ac3edfc698234d8b8bef2e7ab708c529178905ce7aec877e3c35e3976545b4aa0e5ab838 +DIST gentoo-kernel-5.12.9-1.amd64.xpak 66361019 BLAKE2B 179b6c33014af458d28277bb1cf0e05952ce6d544f0f8388c29938fa1ce0a50fe019f117017276c5d06540828ea31391d214bfcdcbbac04c5c92aee8df16b013 SHA512 97b1b2d61b01878cc29890584dd83190374b1bf8692268c417366ffe63f76d5875b0be2e99823eb2bcdc45755638664f8721458240671fe907f06fd320dde8f5 +DIST gentoo-kernel-5.12.9-1.x86.xpak 58104639 BLAKE2B 145a490565efd5926bed22faf66f1bff756bab880a5a890f2a9e25e31c39489d38621718a1225289cea9e81dc609e232531a832b65ba76a7aa8be8eabba85904 SHA512 b6842920e12306f14180812aa5d841dec91d221cc00374d1cf694ccd1a139233e5ccacbe06ca7c0540fc04c9c1228f9e796172941a7f7265b503209442cee668 DIST gentoo-kernel-5.4.115-1.amd64.xpak 61381562 BLAKE2B e36468cb61a73daffd9709bc8e13eb1c11a0ec1e8f68df55c07eaa50e7538337534ca48342b019b308c99c121628f55c868a5577b2c1a5a4a67cdd72a6fea8ef SHA512 5bb1836cfd7b746aa5d8e947d6fe63c368f86a0d439e56106a77b3f3c3999d3761f238bfd76b5785035ff68869da271a2c3a4dfb5f09fb16b343e0d296ad9d60 DIST gentoo-kernel-5.4.115-1.arm64.xpak 56473345 BLAKE2B ba662f7d08629dc4fd8978de1db9f0f4400cde21802590a168f9737da03013e27c09a5ecbadcc99f482c935f20db61f9395bc006390b46bea45af305f1677620 SHA512 2ee5adf31d0a8c2bfa76cfadd5c56e818cf31cea3323c91517cd752ce4c87256c2a4f33583119977e37538669d5e2046f77fdd0b9c6adf15ccc498e7179a2088 DIST gentoo-kernel-5.4.115-1.x86.xpak 53174038 BLAKE2B 497eafe82f52493f8fb9c9703be26f6df39a8e7f5d123c8e26f46b53c6d13531674da658d965d50159e52275c1c91490136372bc14828a90164bb21aa8ccbf32 SHA512 c10f98b0160f5809aa734c9e74f189e9d55ea5e4b568a9fa6d1d269606d683dd117c193cea412d61ac9899b2690ac364a2f57a16582c58ed512386e78d029b8b @@ -68,6 +78,8 @@ DIST gentoo-kernel-5.4.122-1.x86.xpak 53177302 BLAKE2B b71a2918e7f4bbafd2e01bde3 DIST gentoo-kernel-5.4.123-1.amd64.xpak 61368911 BLAKE2B c3252e04180c56eb0edaadfc6ad8c1b3416f760b2fc613c43673829774b661bde3e3fc59474cfca455b8fc98f9ada42141421d537658a75943c079ea34a981f8 SHA512 7b647c9b1a7c0f5db8c41a791efe13a14abc5a34ce2fa3913111e6a64c8704b2b949c54c63f887e9ea934d163a8b504571c83c6eda1dd4a97ca8eac32edde587 DIST gentoo-kernel-5.4.123-1.arm64.xpak 56055188 BLAKE2B e7cce2cc33010b30c0929de502e204b975b692bec366ced27b878cd5c8fd62b51396d93d8fb1a8a4a5b01ea1ec3e2674a20c52285a26c623d4dd6b2659f34082 SHA512 840139b1219abc0ffbfa184f3b9c33ab5342874c2bd0244a9326d91dd186e97a61f6699c7dd22349842e0a617cc1c8a8ccf6f8e64c26d5c06b9848c19628ce0e DIST gentoo-kernel-5.4.123-1.x86.xpak 53189077 BLAKE2B 3bb6d0813c6574941c63aedaa0e12f9c7a332665c9c4a7ca4475b669c81bfe2cfcb73e603858eb4fd7d448deef5f801e3ebd374fb6c3fab90c393690f65f90ed SHA512 72e15a705b3be1b51952a8b126b3db4ba1897938a5405b83cc0df2319ed4c3c4752fc73e6623b47c77b08dc58d4178c2f92ba8b06927cf4c6d062c3e9cc0ff5d +DIST gentoo-kernel-5.4.124-1.amd64.xpak 61369250 BLAKE2B 8b39782d1f46585d412cc3939b8ca74a1cdd39be004baec7779cd685a43013306a3652c2cfdbf26b63a921f2c75bcdc646e3b0c98060af5eac7d2d5ad0ebca14 SHA512 8e106c597925ba2d6cac294573991437e91ff6c7a5bef81cbedb9c5027123905e8ab2a2c0ef76bdd16a323b3a071e319238ca5caf66697aab2ce5953c2b1f165 +DIST gentoo-kernel-5.4.124-1.x86.xpak 53172119 BLAKE2B 825a7e78f4dcd27fd8b02c86b06955a00b9dfd99cb9cef91acb3de81ec613e42a949e2916985696b4ba592954c4c777e2a783c5178763d46afe4f19cf2c6ed34 SHA512 8e87fe1273b12246ad3a8df6eb2d8a1ccc8b64358e3d04a216a612be6d27c10a0895de51b3542437afe52694caff1ed038165b3c37ed63794fce1cc1b320e451 DIST linux-5.10.tar.xz 116606704 BLAKE2B b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1 SHA512 95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e DIST linux-5.11.tar.xz 117619104 BLAKE2B 81300c27bd5476387a83123aaeb4163c73eb61e9245806c23660cb5e6a4fa88ffc9def027031335fa0270fc4080506cd415990014364e3a98b9d2e8c58a29524 SHA512 a567ec133018bb5ec00c60281479b466c26e02137a93a9c690e83997947df02b6fd94e76e8df748f6d70ceb58a19bacc3b1467de10b7a1fad2763db32b3f1330 DIST linux-5.12.tar.xz 118112412 BLAKE2B 842d921b9a73d2aaade763dbd2ec67bdfe0275baa6d628b775f5c87574ad7dc86f0419afcd48c10c1235f4bffa16084243f2cf4556e6afcd391e975fe8ba530b SHA512 be03b6fee1d1ea8087b09874d27c0a602c0b04fd90ad38b975bd2c8455a07e83c29b56814aaf1389e82305fae0e4c2d1701075a7f0a7295dd28149f967ec5b3d diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.42.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.42.ebuild new file mode 100644 index 000000000000..6208453ad7c9 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.42.ebuild @@ -0,0 +1,117 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-install toolchain-funcs + +MY_P=linux-${PV%.*} +GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 3 )) +BINPKG=${P/-bin/}-1 + +DESCRIPTION="Pre-built Linux kernel with genpatches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak + -> ${BINPKG}.amd64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak + -> ${BINPKG}.x86.xpak + )" +S=${WORKDIR} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT}" +PDEPEND=" + >=virtual/dist-kernel-${PV}" +BDEPEND=" + sys-devel/bc + sys-devel/flex + virtual/libelf + virtual/yacc" + +QA_PREBUILT='*' + +KV_LOCALVERSION='-gentoo-dist' +KPV=${PV}${KV_LOCALVERSION} + +src_unpack() { + default + ebegin "Unpacking ${BINPKG}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${BINPKG} failed" +} + +src_prepare() { + local PATCHES=( + # meh, genpatches have no directory + "${WORKDIR}"/*.patch + ) + cd "${MY_P}" || die + default +} + +src_configure() { + # force ld.bfd if we can find it easily + local LD="$(tc-getLD)" + if type -P "${LD}.bfd" &>/dev/null; then + LD+=.bfd + fi + + tc-export_build_env + local makeargs=( + V=1 + + HOSTCC="$(tc-getBUILD_CC)" + HOSTCXX="$(tc-getBUILD_CXX)" + HOSTCFLAGS="${BUILD_CFLAGS}" + HOSTLDFLAGS="${BUILD_LDFLAGS}" + + CROSS_COMPILE=${CHOST}- + AS="$(tc-getAS)" + CC="$(tc-getCC)" + LD="${LD}" + AR="$(tc-getAR)" + NM="$(tc-getNM)" + STRIP=":" + OBJCOPY="$(tc-getOBJCOPY)" + OBJDUMP="$(tc-getOBJDUMP)" + + # we need to pass it to override colliding Gentoo envvar + ARCH=$(tc-arch-kernel) + + O="${WORKDIR}"/modprep + ) + + mkdir modprep || die + cp "usr/src/linux-${KPV}/.config" modprep/ || die + emake -C "${MY_P}" "${makeargs[@]}" modules_prepare +} + +src_test() { + kernel-install_test "${KPV}" \ + "${WORKDIR}/usr/src/linux-${KPV}/$(dist-kernel_get_image_path)" \ + "lib/modules/${KPV}" +} + +src_install() { + mv lib usr "${ED}"/ || die + + # strip out-of-source build stuffs from modprep + # and then copy built files + find modprep -type f '(' \ + -name Makefile -o \ + -name '*.[ao]' -o \ + '(' -name '.*' -a -not -name '.config' ')' \ + ')' -delete || die + rm modprep/source || die + cp -p -R modprep/. "${ED}/usr/src/linux-${KPV}"/ || die +} diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.12.9.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.12.9.ebuild new file mode 100644 index 000000000000..f6712def1088 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.12.9.ebuild @@ -0,0 +1,117 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-install toolchain-funcs + +MY_P=linux-${PV%.*} +GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 1 )) +BINPKG=${P/-bin/}-1 + +DESCRIPTION="Pre-built Linux kernel with genpatches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak + -> ${BINPKG}.amd64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak + -> ${BINPKG}.x86.xpak + )" +S=${WORKDIR} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT}" +PDEPEND=" + >=virtual/dist-kernel-${PV}" +BDEPEND=" + sys-devel/bc + sys-devel/flex + virtual/libelf + virtual/yacc" + +QA_PREBUILT='*' + +KV_LOCALVERSION='-gentoo-dist' +KPV=${PV}${KV_LOCALVERSION} + +src_unpack() { + default + ebegin "Unpacking ${BINPKG}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${BINPKG} failed" +} + +src_prepare() { + local PATCHES=( + # meh, genpatches have no directory + "${WORKDIR}"/*.patch + ) + cd "${MY_P}" || die + default +} + +src_configure() { + # force ld.bfd if we can find it easily + local LD="$(tc-getLD)" + if type -P "${LD}.bfd" &>/dev/null; then + LD+=.bfd + fi + + tc-export_build_env + local makeargs=( + V=1 + + HOSTCC="$(tc-getBUILD_CC)" + HOSTCXX="$(tc-getBUILD_CXX)" + HOSTCFLAGS="${BUILD_CFLAGS}" + HOSTLDFLAGS="${BUILD_LDFLAGS}" + + CROSS_COMPILE=${CHOST}- + AS="$(tc-getAS)" + CC="$(tc-getCC)" + LD="${LD}" + AR="$(tc-getAR)" + NM="$(tc-getNM)" + STRIP=":" + OBJCOPY="$(tc-getOBJCOPY)" + OBJDUMP="$(tc-getOBJDUMP)" + + # we need to pass it to override colliding Gentoo envvar + ARCH=$(tc-arch-kernel) + + O="${WORKDIR}"/modprep + ) + + mkdir modprep || die + cp "usr/src/linux-${KPV}/.config" modprep/ || die + emake -C "${MY_P}" "${makeargs[@]}" modules_prepare +} + +src_test() { + kernel-install_test "${KPV}" \ + "${WORKDIR}/usr/src/linux-${KPV}/$(dist-kernel_get_image_path)" \ + "lib/modules/${KPV}" +} + +src_install() { + mv lib usr "${ED}"/ || die + + # strip out-of-source build stuffs from modprep + # and then copy built files + find modprep -type f '(' \ + -name Makefile -o \ + -name '*.[ao]' -o \ + '(' -name '.*' -a -not -name '.config' ')' \ + ')' -delete || die + rm modprep/source || die + cp -p -R modprep/. "${ED}/usr/src/linux-${KPV}"/ || die +} diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.124.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.124.ebuild new file mode 100644 index 000000000000..6208453ad7c9 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.124.ebuild @@ -0,0 +1,117 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-install toolchain-funcs + +MY_P=linux-${PV%.*} +GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 3 )) +BINPKG=${P/-bin/}-1 + +DESCRIPTION="Pre-built Linux kernel with genpatches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak + -> ${BINPKG}.amd64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak + -> ${BINPKG}.x86.xpak + )" +S=${WORKDIR} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT}" +PDEPEND=" + >=virtual/dist-kernel-${PV}" +BDEPEND=" + sys-devel/bc + sys-devel/flex + virtual/libelf + virtual/yacc" + +QA_PREBUILT='*' + +KV_LOCALVERSION='-gentoo-dist' +KPV=${PV}${KV_LOCALVERSION} + +src_unpack() { + default + ebegin "Unpacking ${BINPKG}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${BINPKG} failed" +} + +src_prepare() { + local PATCHES=( + # meh, genpatches have no directory + "${WORKDIR}"/*.patch + ) + cd "${MY_P}" || die + default +} + +src_configure() { + # force ld.bfd if we can find it easily + local LD="$(tc-getLD)" + if type -P "${LD}.bfd" &>/dev/null; then + LD+=.bfd + fi + + tc-export_build_env + local makeargs=( + V=1 + + HOSTCC="$(tc-getBUILD_CC)" + HOSTCXX="$(tc-getBUILD_CXX)" + HOSTCFLAGS="${BUILD_CFLAGS}" + HOSTLDFLAGS="${BUILD_LDFLAGS}" + + CROSS_COMPILE=${CHOST}- + AS="$(tc-getAS)" + CC="$(tc-getCC)" + LD="${LD}" + AR="$(tc-getAR)" + NM="$(tc-getNM)" + STRIP=":" + OBJCOPY="$(tc-getOBJCOPY)" + OBJDUMP="$(tc-getOBJDUMP)" + + # we need to pass it to override colliding Gentoo envvar + ARCH=$(tc-arch-kernel) + + O="${WORKDIR}"/modprep + ) + + mkdir modprep || die + cp "usr/src/linux-${KPV}/.config" modprep/ || die + emake -C "${MY_P}" "${makeargs[@]}" modules_prepare +} + +src_test() { + kernel-install_test "${KPV}" \ + "${WORKDIR}/usr/src/linux-${KPV}/$(dist-kernel_get_image_path)" \ + "lib/modules/${KPV}" +} + +src_install() { + mv lib usr "${ED}"/ || die + + # strip out-of-source build stuffs from modprep + # and then copy built files + find modprep -type f '(' \ + -name Makefile -o \ + -name '*.[ao]' -o \ + '(' -name '.*' -a -not -name '.config' ')' \ + ')' -delete || die + rm modprep/source || die + cp -p -R modprep/. "${ED}/usr/src/linux-${KPV}"/ || die +} diff --git a/sys-kernel/gentoo-kernel/Manifest b/sys-kernel/gentoo-kernel/Manifest index 7e5dcf87299a..fac6b9463339 100644 --- a/sys-kernel/gentoo-kernel/Manifest +++ b/sys-kernel/gentoo-kernel/Manifest @@ -8,8 +8,12 @@ DIST genpatches-5.10-43.base.tar.xz 1461848 BLAKE2B fb1bf2fe69c6698cdbd345895010 DIST genpatches-5.10-43.extras.tar.xz 1772 BLAKE2B 1c2c2ec1b7a2814572b464a02e582821bb04c143524dd98ccdb330463230e1370167b8fdcf269d137f4087d21b60ba07dc72c5da2d47f8dafbb1a9598611b804 SHA512 e8085e8d9c5a82d9d8b10d2212577fc3878beaad4e52f145bd5490b3e7f440762f95ecb7a2266eb99a91ce7d98fbf48f241eba86329aa35a1d9103733e7195a1 DIST genpatches-5.10-44.base.tar.xz 1463796 BLAKE2B b4e002718b2542c1806eb89cd552f11e3ed9b3a2c2e531c590d05d8796bd6a462457c1afebf1794e10dd2419c45102acb7d4e371055b1ae750a959bb3720ab96 SHA512 4e0d54ddc9a43427c418a9c0891b8dd02088a9b75ca011328401af994c54a5fc5498db228f3ecd6aa752afd058483f460e86fbe4393c24815974300108e7324c DIST genpatches-5.10-44.extras.tar.xz 1768 BLAKE2B 287454aae7ff60ac375b570e5132c33f81471348af58b999ca1355d15e7fd1f0839c369e28e18496dd0f9a43d6bbaed03318a9358a5b9384c3f27c109f7447e5 SHA512 d69a0a32dbd79eafe4168bccf55c0b0765e5311bd2f81ef93ce4f709990b6a789eb057b2afac7364b18e5f811b9610e7d8e10efff07a6e396c8e897b76a50378 +DIST genpatches-5.10-45.base.tar.xz 1520656 BLAKE2B b2dbe0274ff6a90e2e8b5edd99b1505654f4e7fa777e8944a0e7ccbc23c3c8f938e061d470adb678f4a177738b22d855812c38890592a55f6746ff1f52da4e93 SHA512 b997601f68c852ceed6307c2966ba7eb6f7f4e17f30be38153b6b6604d0bea18ab0f4f66a1bb79474b0b330e30288c441026df18bbb761acb071b0f8ab8f00c2 +DIST genpatches-5.10-45.extras.tar.xz 1768 BLAKE2B c7a3221f2c330d1463f88ce23d0ac70692ec4f390b7a10cb6ce6be19e948f8595b2b7ad0fae90b4cf1c94bb8c1469be545cf3352b91e99b93cfedc7cfcc9d7ae SHA512 51e28cb3d536e4df5743c55e1f95803a44ffaca7da75ac73dbe575051ddf3198dff4c69a0bf32fd479962ce518f5ed57be8fc3c71f426edfafb814c350f16393 DIST genpatches-5.11-25.base.tar.xz 1030312 BLAKE2B c3e0f5840c32292d36be31a8606934bfa1ccb7e31f04cd214574009577907d00912bacce1f85dddeda77ba99f40f61fa5aa5259a693c74abd63a05be5a44f2aa SHA512 5adbe3770562b57d7180a44ccca8e665cc5b0d9ba5168c4b3555b348708edd7469464bd770124d9a8641095bdbe786d843ae3da64b845d577999c9e40360c970 DIST genpatches-5.11-25.extras.tar.xz 1772 BLAKE2B 0bd2afbd93cd7553c8e058f61c515ed9d47e9f328529e6cf36a7100b363dc8e4c3004afa06a0c0b95963bcf69a216ae6a7bf595062401725a4a25f942f44a3e8 SHA512 114094a87bad0dc4a265847fa18b88a2795daf151de8451bb4fbe4af70f3f4bcff8905d8d90522f85914bb7ba7227ebab7f69ab59112afb2187332b393450fec +DIST genpatches-5.12-10.base.tar.xz 564792 BLAKE2B 127e64196c8aa0b65dab7de4dad4b97052c53451f27a1948453d8910afd59b3a5c4ffc316a439bd053b433b057df127bb252d994f6447a82dc1434eb317e0d1f SHA512 e4c9eebb61de9af0fa4a53472c18f39f87196a804c63ff796eff992f75450719400e7bed5cd8ddce6b09db8330be443ddb2ce0241d8058aedcdb5e332a4178eb +DIST genpatches-5.12-10.extras.tar.xz 1772 BLAKE2B 31e3959f1dab1ae1ff5f39b75c455e559e96bd4527e94677494accfa75fd14df2667ecea8ba5df59d3fa1ec9464ba18a257a8a5e76c0602049732f66829785ad SHA512 6e2bf6f7eada61ece1f65d1461377ba5532dd45b57b58b7ee6dae9485809d4c329c6ba8d6d0d0ee9027612a01946f756069b50c44d60d2f543e9864231abd676 DIST genpatches-5.12-7.base.tar.xz 447756 BLAKE2B c7d1f923bf45adba7a60ae56eab5e6ac3e132f6fc9186da1bc10d48c19dbf7ab39fc07cbb93112b39b13fa921223b1f6aedb28e2d053600b7787a2bc2b55defc SHA512 ee12bac503ec5ff48d918240b5e16c03df01378d572421d648863d82db8c89a79316d1c0339b6156cc5c1a0de64cf20e81b2900fd23b96f0c274a171e90aa279 DIST genpatches-5.12-7.extras.tar.xz 1772 BLAKE2B 3f593739f9330a6dab17be9307c163d6ca4e39e821d79db2b6a3f88b3af8c973c713be26ebd11d155d18336f9613fa5b0c9c44e43c0674bfc4f9e0c5d7519874 SHA512 e273b619d284246670381a6a6bc5f9835a6ed7023bfae14b31783242ce504d6909a5dfb47e6a5cb5d81cb499fb897daaeb8e5d0306359a47ba22e0818d499d25 DIST genpatches-5.12-8.base.tar.xz 486256 BLAKE2B 55607b8e42132706dd6d5b2716ec252fdae5b7b2d0e4c7874aa4d9f558172f207d7597eb77030651a5c490b86eedeaf1174e9908277e989e06a4cc048b1ceecd SHA512 3651b48fd077624d7e9b9471bddfa3ed0b5d4656374b73b92192de26925a12b3c4923dba9764ff12c1fad94047b404c61f23cd2eb4d4383775eaaa0ded3e7907 @@ -26,6 +30,8 @@ DIST genpatches-5.4-125.base.tar.xz 3512440 BLAKE2B 4a63e044f420911602426aaacd64 DIST genpatches-5.4-125.extras.tar.xz 1768 BLAKE2B bfa75a0d735871051ce3f66962b9287ef80d4928dea58ce2f9b4d817788d4975e8aed09888ef2cba716292eb650633cf9a191843b81e69f8f717f5b44fec6dc7 SHA512 ae8a8e69c44567baaf1a7efc27bb3384da6f83c9f80c90b692e90c296bcc33862f4670ab72969ae727b310a5995a707c1bf112c67ca268893f32b616f6391f24 DIST genpatches-5.4-126.base.tar.xz 3514976 BLAKE2B 9d3ddbf2a9d2957a76f3c172afbc040f7ecf97ecb9014277c110aded0fb808c2b09a1191a7596a396d2b2fc2fe91e964b3ec3ff99688eca9b0da256f57454680 SHA512 5f89c7034d55f3465ca9ab8a2d976af139a49d269ae0f04a05dc5a8ae6bb88e436ecfe7bd6bdc3c3d8beb6d6f681c8e87003d2595b8c9677f41d5b64629be411 DIST genpatches-5.4-126.extras.tar.xz 1772 BLAKE2B 900e7881ef06469e55c4c79b140454d14dc2a8f244b4972439c2fec1c50b95ac8cbe2713dbc64a8e0c7789b517d1350ee91eb75bdd8d45a12289b2445b567acf SHA512 477e1626042f16a139972960be3e62a1f04103607cff026dfd1fe32d79699503d3a336b7241d0b5f6d843d3441a436b59a9c51408fc5ac7e905b1adea52a4e8f +DIST genpatches-5.4-127.base.tar.xz 3553224 BLAKE2B 99331a43982e2dc9efab061b25663e59284e7f1758f683f288fe09ebddc0790ea901e722cde8b9955085afdbb4f2bb45b546ab632a45d310aef9fc16d6cdb0fb SHA512 a78106c658cf7cd1ad08ee100f9cfeade4e1eaf0da9c6e3819a59e54dad9a17a36ee46d8c38dedae58c5f30444054906344e813f9a2d8f0405be2a588a1f9c8b +DIST genpatches-5.4-127.extras.tar.xz 1772 BLAKE2B da124b0076e952e1468ee4adc8965a6c346b945fd56e828903fd8dd2689d8433ad07457792ac7a78431a76c142d9c77955b2fbdba042063b80df331acdeb8cf8 SHA512 284260c19cf81d0c444747e1adc588ddc3442c3e69a1729841e39b8e4df9dc4cff8e852fc7db56033a1f2b3770a7c34010dd331eab71910da1a719347f56eed7 DIST gentoo-kernel-config-5.10.32.tar.gz 1269 BLAKE2B 4a21a57d567d9a527ef829f375275c65347b2e6461b00e50099458c496af0a7b3b863a6e1d8421ad18c52c64c1c4cd7e5fd416673b67738cde6253af8a9f18db SHA512 a83ef22a7f9f83f01bd65a5470f0678111b0a7dcf1dc564e04264f68cc54833dbed4cccffe2864caf3ac14169611259f0bb786c1aefe194372d6d3f67fa64c00 DIST gentoo-kernel-config-5.4.114.tar.gz 1298 BLAKE2B e494041cd63ba53f055cfd555e359934d5054238bd096addd7965754e6708bada63398c4b315318f73130ed81c1391524388396775632248870721f1ce23f203 SHA512 225600db53532ee131dd83d10cecc97a83f4615975ff32f3f6190a15eace64707cb59490bb42940e4429f9054221b9d9a589ada443922062bb5ee18ecc42c26c DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d SHA512 7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52 diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.42.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.42.ebuild new file mode 100644 index 000000000000..624447890ba1 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.42.ebuild @@ -0,0 +1,90 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build + +MY_P=linux-${PV%.*} +GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 3 )) +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.10.12 +CONFIG_HASH=836165dd2dff34e4f2c47ca8f9c803002c1e6530 +GENTOO_CONFIG_VER=5.10.32 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="debug" +REQUIRED_USE="arm? ( savedconfig )" + +RDEPEND=" + !sys-kernel/gentoo-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/pahole )" +PDEPEND=" + >=virtual/dist-kernel-${PV}" + +src_prepare() { + local PATCHES=( + # meh, genpatches have no directory + "${WORKDIR}"/*.patch + ) + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm) + return + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + echo 'CONFIG_LOCALVERSION="-gentoo-dist"' > "${T}"/version.config || die + local merge_configs=( + "${T}"/version.config + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.9.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.9.ebuild new file mode 100644 index 000000000000..ca7cf2b59bdd --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.9.ebuild @@ -0,0 +1,90 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build + +MY_P=linux-${PV%.*} +GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 1 )) +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.12.5 +CONFIG_HASH=17639df044f5f81bbf267f566426eae4a5187875 +GENTOO_CONFIG_VER=5.10.32 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="debug" +REQUIRED_USE="arm? ( savedconfig )" + +RDEPEND=" + !sys-kernel/gentoo-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/pahole )" +PDEPEND=" + >=virtual/dist-kernel-${PV}" + +src_prepare() { + local PATCHES=( + # meh, genpatches have no directory + "${WORKDIR}"/*.patch + ) + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm) + return + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + echo 'CONFIG_LOCALVERSION="-gentoo-dist"' > "${T}"/version.config || die + local merge_configs=( + "${T}"/version.config + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.124.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.124.ebuild new file mode 100644 index 000000000000..ae1bc4c4fa70 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.124.ebuild @@ -0,0 +1,97 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build + +MY_P=linux-${PV%.*} +GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 3 )) +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.4.21 +CONFIG_HASH=2809b7faa6a8cb232cd825096c146b7bdc1e08ea +GENTOO_CONFIG_VER=5.4.114 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz + https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64.config + -> kernel-x86_64.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64.config + -> kernel-aarch64.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le.config + -> kernel-ppc64le.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686.config + -> kernel-i686.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="debug" + +RDEPEND=" + !sys-kernel/gentoo-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/pahole )" +PDEPEND=" + >=virtual/dist-kernel-${PV}" + +pkg_pretend() { + ewarn "Starting with 5.4.52, Distribution Kernels are switching from Arch" + ewarn "Linux configs to Fedora. Please keep a backup kernel just in case." + + kernel-install_pkg_pretend +} + +src_prepare() { + local PATCHES=( + # meh, genpatches have no directory + "${WORKDIR}"/*.patch + ) + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + echo 'CONFIG_LOCALVERSION="-gentoo-dist"' > "${T}"/version.config || die + local merge_configs=( + "${T}"/version.config + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + [[ ${ARCH} == x86 ]] && merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/32-bit.config + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 69e85146cf8d..2ffd70097a1c 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -13,6 +13,9 @@ DIST genpatches-4.14-243.extras.tar.xz 3344 BLAKE2B f27fd591f73cb86c2146f96487bb DIST genpatches-4.14-244.base.tar.xz 5065596 BLAKE2B 0f3fa81eeb1a468c78e1035084c38d2c91803234211a6ae221ca30330333a1eaaf94e168f8d5e4a330c65766d7e881520a040fb1bb3e9caff7a64aee88085bbd SHA512 bee609b3bb439cd46f9eb829b307c3e04a12858b2005ebdecc601321ca12c47b595da6b8a0687aa8fffaadd4024e8b5c1229e4dbf9045016f103fee6ad32f260 DIST genpatches-4.14-244.experimental.tar.xz 5712 BLAKE2B fa97572c7809853564dcc0880d7d0296becc392a8cb2a689fa7fcc667d425b8dcf884d06b7bcfa5ca3a41dd8b8b33550aaf002fa6bbf650eca9319297a2878a6 SHA512 d862c08014ca3cca23c9037a15e0a4bc3d15724ceebb2f9ff96c29ceb0d9abaf116cfdf9b26e5416e6bdef60bb2902e83d457ea315015e2718766222652820f7 DIST genpatches-4.14-244.extras.tar.xz 3340 BLAKE2B 3a183c7510f1b307645965cadba0c0d227e32bc974e25455a67a91a756edc1db83d6d1190a0fcb1a350ed406641862e926ae22f8b9e024790473e32f54477d61 SHA512 50bd0e579dedb525fc4fede7e17d67140bb50e1fd193e8132aa380363f25d00c4a262bb3ae27978d8cb36acf2e6cfe189dca97ba0fa645dfc9a4a015702144ea +DIST genpatches-4.14-245.base.tar.xz 5088568 BLAKE2B e3ee618f5d01c6a644c5569a251f4c2ac0ff1289016bb88d9d4f2e4a06e5a617999f916fa6c9b1ab15ffc5e1c489e6e930dedb4c574904e9a44255aba98ef790 SHA512 257f7ab39bd26da027968de2b33d04a2579f21d0a0c01677d721ba9eaea38ea79b0dab8781cd35d3e2982b7bcddde640a325b90dd85e19a2a5ffe9cda5c3a694 +DIST genpatches-4.14-245.experimental.tar.xz 5712 BLAKE2B 753174ec3f8660c5f42d12e0060dc56ff12664213741c7decad7efe423e11f834b8658df9484a4871b931c85402b935d9769d6c0228302dba5f8e929d768e97b SHA512 9a3c93867b620d8d96ce66245ccc533771b066ba4e43105ea3e7ea2a996018002694c2681872cef876f6ad4c7212c292b38db57c2863308150031c4e997b39d4 +DIST genpatches-4.14-245.extras.tar.xz 3340 BLAKE2B ffc618ba8382228cb3d320a7866d6aecf0606a4fafed465f1fd2c8b47fedb3dd388b9d9ee5de369e7e05cf7709a328afefb9a7730b4c2ded14df45da8d1b079d SHA512 9869d74dd0216cda2b520b109d01807e0d789c71532e4b39ba44ff9e392a4cb3318567818ea47ec2ee86491cd85e478b04ff6686e1ab9e2a59c0584d413f55da DIST genpatches-4.19-183.base.tar.xz 4496972 BLAKE2B 50b2a224e191ab6aac262b592752b78cc2259bde77a3191d069afc5f27a987b1749f9886883e3d20e2e52d2a1a38b01fb53d8bc5872220b88bf794476899136e SHA512 954ee22987946fa1961ed843fad5439e9adae501e7e6b37c9a5f42b3e89a87c0b4b688111bb3df2643db1febf6cd6297b0eaaef3484a4087cb5f41239978d3d4 DIST genpatches-4.19-183.experimental.tar.xz 7500 BLAKE2B fa2afd996ff04ceda3c59126fe7de12085c9abbf91101d88c94e9c0e01e8590c8b129aeabef872a238f51d230eb3acb21b0f30e6169dcf5f9c8bf62e2c34a054 SHA512 e36f71faca3ad33c465148fcf8f5ae44bf1ae07e06cd03b32420930b09bd9a698306e26579d69c14a87735805380bef8424cdddd375df878eca920ed5f78986e DIST genpatches-4.19-183.extras.tar.xz 3316 BLAKE2B 776b600248dbebfb9f87af1b6149ac9867f94559d1e7cb4b9018144d2fc6c901cda19099e0cbc07f1b5837d6cf9a0dfdfa2e034a1ead20dfb042c029a36a62b4 SHA512 00dca69d69edf3dc7c902d992e08c67a9907d398c29d60fab3df4703efb6ee296c2693fc5acc2c47f32bc93fb8be33ab0bee1be98ec1a009810e26cf12d94b14 @@ -31,6 +34,9 @@ DIST genpatches-4.19-190.extras.tar.xz 3316 BLAKE2B f3ff5b85f52ffacf999718431700 DIST genpatches-4.19-191.base.tar.xz 4656276 BLAKE2B ac8bfe61392e48ea172f46fc5ae2722b1e621772867a6fbf0d54e8fe1b561c61e277b3f906363b0026ef84c4241a1d9bcfcfec9f231b3f8d8c3a128ebcdfc5d2 SHA512 66b23b28eb498153f5233a1bbe758a1acf6ea9dc06ed49a2e3975d4a9904f9ae7221c70c280aad52b7770481277402e4307bb5b19b4dc2b6c844123293a2c0c8 DIST genpatches-4.19-191.experimental.tar.xz 5468 BLAKE2B a7a954f3eb3a8e3ecdd0d8c26da229efb75c5a898ac846eb2680e61ad27be7c912bbe7750ce877413987fbb59d7c49204383d2cbcd34f47dfd574dcde39f6804 SHA512 da6607314fa96c3c0d01cfab074fb0cd677c667566ae205a9978529a86744fd2c0237f48a77b6f2b34274ac531c3cbc83f26110b3a11da80ac90308167d22a4a DIST genpatches-4.19-191.extras.tar.xz 3316 BLAKE2B 5e01bf56c303ccf715aaeb6ce9291c0b5b37dd452812e03701495f5a55c69b19fa8f38c3bbee72b6e76fc52279959db9778c5da098bd518833deffcbde3ecc81 SHA512 f2b421abc495d9979795623ace56829f777ea9982cb3bdf798198829ec1c6ef85a7f5e3b983ab5c3b2b8660d0f7ac8442f47809c26471d5f02af399e5639f6b7 +DIST genpatches-4.19-192.base.tar.xz 4684416 BLAKE2B 693ba848fbd0baa16e824265a783355d7b70237ca094c02d82f824f1dab7089ebbb370f647f71ae090933fc78444c259ca3105ee72d3a3cf248156e2f80a0d78 SHA512 8b0084a5e37dc1e572ec877e0d23a45954d93319b28cf9094cdeb40e498f34c14b2eba5b5dcdcec8dfc83ee94a5a2298e87ba7a79634772b74deb71a96534c67 +DIST genpatches-4.19-192.experimental.tar.xz 5464 BLAKE2B 7eac91d5066fe75322b75a5904de8bb2e458a1e2329d8d530f304bd179d51415134d94a322b2599d2c3d3fb9456d82b0bebc4af95e05f0ae4c28fb02b446add6 SHA512 cbc59fb07a6a2c4f55a40c30167aff54fff5907ecd6b40aa7233bbaae4232a5907ee7a8a93b93392edbb9d339b4c04421381ba84dcddfe4989e715f833e01df0 +DIST genpatches-4.19-192.extras.tar.xz 3316 BLAKE2B b721bbde314f1ad3b8972ba55f2761bab9ca0c3c11e89d946dee2a4b3ec1c01c573b3c6abd44042b1c65251190f7fd664c94c533f274198a40bffe1c10892c34 SHA512 3d5e8389279ed354e1318010381266eba34044870825f7792b497dfbedb83bf5aeb69e0c31780264b105ab14574927e839b04778207ce8ef6d988ecc11190380 DIST genpatches-4.4-266.base.tar.xz 4099364 BLAKE2B 0bb0dfcabbd191b2dbfd73171ae5871580f75fba2a4343237c0ad6e68a9868d0818633bbf27abc82600f78bd983b50833b3d70d477369ecbbf16c87cfaeee2ec SHA512 cca98ce814f7eb12fb57163982111d2f063d0998d149e95c5bb8c06339461e5bc52e1201c1045342fbd2304be2838b9960272e5594dd62c89fcb4f100bb05ecb DIST genpatches-4.4-266.experimental.tar.xz 83304 BLAKE2B d05c680a7df6aedbd790086b4654a90a810656b98dd912bcbd1d2cd1bc27e98104a3ea863315ccba7de2dfcefa4e337b510f604ab5a80059c9d090fe7d282a77 SHA512 b3e816541e7fa68f3bbfc443e9d89837c4bf8b28303853f3a05db4f2748725c3a7c4879820334b0850ed2f3b29e477f763aa004e7426bf2fb7d688b1221e63dc DIST genpatches-4.4-266.extras.tar.xz 1788 BLAKE2B d7d582abe322309701d006c6744eebd331fac15bcb06ae76367e772fc815a28405fadfa9714669368b0a7c074ef1ac695dc7619da09ae9b70d2700bdb7a47726 SHA512 81ad23a472cc8052d6b94ab846850d796019314f6cded442572ed683c35bd99bb30f801c7f4d1b75262f633d299b0dde2df879d61848e3c6440b1a2760577904 @@ -46,6 +52,9 @@ DIST genpatches-4.4-271.extras.tar.xz 1788 BLAKE2B 0653c3d5f1a0eb30865ae32691d2a DIST genpatches-4.4-272.base.tar.xz 4153664 BLAKE2B 423f371f354fcc80f5e04170a3bfbcd12e65d6ad0655e5405e806d63fe7386fd74b57f7351eec172029b5fa01b30ef7494026d04e91aff117445f5263c97fb1d SHA512 2e29b3f9fca31d2db7fb530e3b772a16813823be04b52a0574ef8e500a0dff35519a1c7303c6df8f4840185ad07a09d8fe808d8304fcd0d25c6030f2b17dc9a3 DIST genpatches-4.4-272.experimental.tar.xz 83280 BLAKE2B 70b056c4b8a0bcb8dd8342c35a02da074dce52282b191f4fd5e1a4e5f0d6e33c004b783feb6031b6ff588d788a28abe2aa5237de8fd22660ba39c0329d59c4e3 SHA512 3c1f0ee57aeb174cce0fe198137a8ead9c6a65f0f5addb237efd9a3cc94ad80c42ff70150e205d4eace5a0733fa330e994d7c6822acde35825b034737bf63b32 DIST genpatches-4.4-272.extras.tar.xz 1788 BLAKE2B 174fd84f69a26acefd0a57c9132eb048c1b3ac6f74d1a49f0ace0ff34772a227b7d33c6617aef397a87eba1d4c9b89884a2f1753e70a41969e0514f7a58df9f8 SHA512 fc54dc626b17e86243661a333c6684795dcb01ee401ae01cc9afee019b1c31191823ac1fa0b9da8c9809ee43b20832054be16deb63a265c61e200a8d87877f01 +DIST genpatches-4.4-273.base.tar.xz 4168408 BLAKE2B dcc4926adccc04d30902c44e32b5b969c2acfcf64fa789b94cb4483eed0a2695d5ff219114867138c623923868270c0e206dc516ded54301c1cf6ef35943dd0d SHA512 cd54b48caad1fdc7098293f3665cd951074cb5a67a0566ad8245f08f76b9fc3c76618cd740c3d89aaf72f0d8fc2c66f2f79e1a97f3ae246bb94013dc95b03edf +DIST genpatches-4.4-273.experimental.tar.xz 83300 BLAKE2B 50caae5bbdcb90369de02c890164e552b2c4024c135360d99b192bdbbc6c1a3161ca83c18ffbeead127f9e75c24708948fca71616ca44623f75e747fe1cc5f90 SHA512 2f3504c8bca529be121ac580c1f66454b994d02f49bed243d144cdd7e81764a94e55e1aa0c5e721b1906c83755743ec65f431a283eacfead1f019dc30b3c51cf +DIST genpatches-4.4-273.extras.tar.xz 1788 BLAKE2B 5d479ad6922af8f9075cf6d7a98de0ab2e59afd5de8fe16460fa71369252edabd77fbae4501a1f0a52070866ed0cfb83e651ffd758812e2ef3ff5c8f5a578eff SHA512 17cf36324dec82eff4cb2b82a1ad3b5e35bb247f439b71ea0ad06566a9735121cc3eb8b5076f5c7bb2e30d0460755c308730bb4646d339786cb94d9a98fd0e77 DIST genpatches-4.9-268.base.tar.xz 4614764 BLAKE2B a5156251e1106347dcda111db6abbcb5f174c42dabfc3694f6b8fc45ded4414e41d8a56d062ae29828b8b033f08b3f541229c033c45d862bad6a52ab539667ac SHA512 468092419b2badd24cd4fbb87fcbe965b5e94145e4fb049916385dbcd1080d1b7a63fe0e17b046a5996a44ab915613d0d7389550fc74eb03f6669be0d6db60e4 DIST genpatches-4.9-268.experimental.tar.xz 106408 BLAKE2B 31f60f4d61bfd60d001a708584aa3f84a688a4e0e28665c6d82c4c2ad60201e3fb64b69e0611a1e607dee3036a5dcc56bb0ef01766122b666136e104fe1d6dbe SHA512 1b9eb7c2881216e49c0cb81f541b3ed3042f86b3c1ed43f463456ea3f41feb453026d524860fd7b9eb1a51177a1a911b33d9b34162bbc5281552bab3fef33c2c DIST genpatches-4.9-268.extras.tar.xz 3340 BLAKE2B ec67f3d538afcd97de03ced99050a5ffa7529a880b86ea2258e66e5de4981aa12f12c7127ff302084fec9ed71416c66b349de3727f46e4f0262eea7a2a20da8f SHA512 33e415c7360542bf1e8a0e77ef7e3f8b3c4b8f761f1b07607740222a1be15ec88b3036330a35daf900f93e25dbedef16506ff40553b65a8b6e3b3f5d1d79c6a1 @@ -61,6 +70,9 @@ DIST genpatches-4.9-273.extras.tar.xz 3340 BLAKE2B b79ef7885a145ce7088bba216331d DIST genpatches-4.9-274.base.tar.xz 4681728 BLAKE2B 53f0651102238168e205271b311c46ed422f81760430aaa0bd2dacd52c9818e92719bfac2ff9b7c16cf1d904d01a9b6f51af54c52c0bc023f182bb45ea14352a SHA512 7b7bff4ed98e8c9ec99dfcd85189a3986edbb5d2b117a715ec1402afb3a29c4c69aa152d08f4b685e4791ac6e9318515552d1b954b61558fcf7f1e7502c73915 DIST genpatches-4.9-274.experimental.tar.xz 106404 BLAKE2B 0d33a806f73ccfc1a6a1ad10973a8150ab05717aa9610cf9057f12ae533503148c942bb55ce4a9daa33eba9058d8d8547d1f34fb2ad282dc21bf143a13b7e1ef SHA512 9a338aacbcab7dfa4d30bdf9b974b3a59972bb9ce6b2fde88ebf4607b1df8f4083661c21fa8bb0dcee3092fd0ed3fe32b940489fc57eed51136ddf06b87b1911 DIST genpatches-4.9-274.extras.tar.xz 3340 BLAKE2B 38bec65335ff3f4e4a3d35a62397f9ddddcdca68db8562a055a0f2bf7b698cb987df32a2e8c3b2449a32d044d7db9e5f38f265205e8e95144379b01fcf2a8792 SHA512 38849c5a0b0637aca4b6bef6112a0d502a4df90dcc98dc17af305b42fe665299cc930ff2ce00dd4c518194ddcc64894e328878c1f1a1816f8b7d74620696c412 +DIST genpatches-4.9-275.base.tar.xz 4698836 BLAKE2B e39b5e563fc0993509d20e83cbf6effe0ecb248f65b2c32b4c338bad685ba23417e29689d665e65b66cd6c3644226cb28c6330c1b83048802c777c6cf1e9dd18 SHA512 5120ccf8b313c1f2647a9d3d87ccbd91254ec8dfc40d8d11f322e94aa64e7772d43557fe6334ed0ffd3aa1606bfece4d209b86fbb7aecfa0452fa6cd5e293cf1 +DIST genpatches-4.9-275.experimental.tar.xz 106392 BLAKE2B d9890ce4c52fa52b69ad1ec7d0066f3e05ce038373c8a7e008dcbb65eb8b32925db34d278313cbd4f81923017cfbf9a38f7872e6f428852e65690662c0847fa2 SHA512 8a54ba5c20b5daf71194b5547f6d468e406cf9a0cdd977cd8b10a7915ca67531f150ece94755b78cc1e94280152e3beefd87fb697b90d4628883a819d27a5574 +DIST genpatches-4.9-275.extras.tar.xz 3340 BLAKE2B 933a93c010a1510e88b64f49e8b4687f29f02cd9931556e2ff370d471d3ab9c006a9576edda9e609553c54fabec2a35c91ffe8cced999614d4a19f82d4bc549a SHA512 6d3f6c17d958f057047f5a2cd98cfbeef54bbe8dcce3656d9cb27cd4225965a3868d2b9cb7bd9f51d8875246034fec420e45d933db76851dbfa5ac44dcd3472b DIST genpatches-5.10-30.base.tar.xz 991908 BLAKE2B 524e7e66358b3bf311f1347e6a8c8daeed82e6a71340e51157a207580e4e028f230caea696c1e611d57d129113948938a62ef105adcf8f09c5041baedde93aa4 SHA512 3986617d71cd582ece369693624f0013cd88b57a65c3a051975da30931973b161e01fce104abc6d2f08295a2c27e536b98782435c1110086175c7fd5051d62d1 DIST genpatches-5.10-30.experimental.tar.xz 16544 BLAKE2B 3d9225f0f460fe316053360606a8284faccef03af7e22e1156045e71a24ea83fa900258cc80439089b0d5b54ac2022f548bc3f47fc04d7645d3c27033bc9f2bb SHA512 fce31c497391aff783eab83aa3a23949e13009a0422b6b5b1cbf295e133b8140215690c56c9550bd8b532e95490e40626a33bff152da066933e5a5270e392953 DIST genpatches-5.10-30.extras.tar.xz 1772 BLAKE2B 7fd98f16922f7a3ea703a5dd2622152b761a47fb7da8a108281e4a9ecb37f9295347a23081b2859039b8b47049ac530d74a05358b7fdb4a8c9a97fffd8103c44 SHA512 ca23be16f47ebea149496eafb0ce9c6068a3a46be01abf9d95b5e693e5a5063e7692003bc23658269d55f923233f1124854515a3f35a94dc385410c6978e25ac @@ -79,9 +91,15 @@ DIST genpatches-5.10-43.extras.tar.xz 1772 BLAKE2B 1c2c2ec1b7a2814572b464a02e582 DIST genpatches-5.10-44.base.tar.xz 1463796 BLAKE2B b4e002718b2542c1806eb89cd552f11e3ed9b3a2c2e531c590d05d8796bd6a462457c1afebf1794e10dd2419c45102acb7d4e371055b1ae750a959bb3720ab96 SHA512 4e0d54ddc9a43427c418a9c0891b8dd02088a9b75ca011328401af994c54a5fc5498db228f3ecd6aa752afd058483f460e86fbe4393c24815974300108e7324c DIST genpatches-5.10-44.experimental.tar.xz 16884 BLAKE2B 7aabc8ea6c04605b411c104a19cff77abe49203dd181d16e0aefe4415be0b6e84689d8813e2282afeea2ba94393178f170e161cc393404a29b370dc63af9431e SHA512 1d68344f2da1ce8dad039440da7f619a408f44f4659500ee71ffad7d57f6d3ec217ab1778c3a3ee7631b5c92f88e2bab4ccb98484801cf6da098634d759d3178 DIST genpatches-5.10-44.extras.tar.xz 1768 BLAKE2B 287454aae7ff60ac375b570e5132c33f81471348af58b999ca1355d15e7fd1f0839c369e28e18496dd0f9a43d6bbaed03318a9358a5b9384c3f27c109f7447e5 SHA512 d69a0a32dbd79eafe4168bccf55c0b0765e5311bd2f81ef93ce4f709990b6a789eb057b2afac7364b18e5f811b9610e7d8e10efff07a6e396c8e897b76a50378 +DIST genpatches-5.10-45.base.tar.xz 1520656 BLAKE2B b2dbe0274ff6a90e2e8b5edd99b1505654f4e7fa777e8944a0e7ccbc23c3c8f938e061d470adb678f4a177738b22d855812c38890592a55f6746ff1f52da4e93 SHA512 b997601f68c852ceed6307c2966ba7eb6f7f4e17f30be38153b6b6604d0bea18ab0f4f66a1bb79474b0b330e30288c441026df18bbb761acb071b0f8ab8f00c2 +DIST genpatches-5.10-45.experimental.tar.xz 16892 BLAKE2B 82e65ff2e2bd809215aa7ac1865e18a1d30ad18e6fe6adb6ce7134afa69724e80ec9a71cdbc27b0a397625ad8d32bf5c238f979047d25198c08d36a53d654b63 SHA512 d60bdf2376a7d1c10af26edd9c6b2f6fd24f9314fbb6d6c16648f6d32f0159ba799536281978f6f9391180329fbe56831c2b9fd3754cfda123d325184bda9a66 +DIST genpatches-5.10-45.extras.tar.xz 1768 BLAKE2B c7a3221f2c330d1463f88ce23d0ac70692ec4f390b7a10cb6ce6be19e948f8595b2b7ad0fae90b4cf1c94bb8c1469be545cf3352b91e99b93cfedc7cfcc9d7ae SHA512 51e28cb3d536e4df5743c55e1f95803a44ffaca7da75ac73dbe575051ddf3198dff4c69a0bf32fd479962ce518f5ed57be8fc3c71f426edfafb814c350f16393 DIST genpatches-5.11-25.base.tar.xz 1030312 BLAKE2B c3e0f5840c32292d36be31a8606934bfa1ccb7e31f04cd214574009577907d00912bacce1f85dddeda77ba99f40f61fa5aa5259a693c74abd63a05be5a44f2aa SHA512 5adbe3770562b57d7180a44ccca8e665cc5b0d9ba5168c4b3555b348708edd7469464bd770124d9a8641095bdbe786d843ae3da64b845d577999c9e40360c970 DIST genpatches-5.11-25.experimental.tar.xz 68516 BLAKE2B 4e37499626ae7daa447e34c567184c5079fe5d144e48d732ed843cb18fd1a6be02270b59e1d6782ba0770f5d0021513501cb1fd31fe8371f2f5f342d8fa576d4 SHA512 e5eeb32780dbfa59cc199459ceb635853886d09b6343541b24fb4621c2d4092601d511c0f670635faaf32c11c1c067aa939431bb12c678da8a7a131f5dd99cc3 DIST genpatches-5.11-25.extras.tar.xz 1772 BLAKE2B 0bd2afbd93cd7553c8e058f61c515ed9d47e9f328529e6cf36a7100b363dc8e4c3004afa06a0c0b95963bcf69a216ae6a7bf595062401725a4a25f942f44a3e8 SHA512 114094a87bad0dc4a265847fa18b88a2795daf151de8451bb4fbe4af70f3f4bcff8905d8d90522f85914bb7ba7227ebab7f69ab59112afb2187332b393450fec +DIST genpatches-5.12-10.base.tar.xz 564792 BLAKE2B 127e64196c8aa0b65dab7de4dad4b97052c53451f27a1948453d8910afd59b3a5c4ffc316a439bd053b433b057df127bb252d994f6447a82dc1434eb317e0d1f SHA512 e4c9eebb61de9af0fa4a53472c18f39f87196a804c63ff796eff992f75450719400e7bed5cd8ddce6b09db8330be443ddb2ce0241d8058aedcdb5e332a4178eb +DIST genpatches-5.12-10.experimental.tar.xz 70008 BLAKE2B 5f0fd437d51b9ef16ffa3ef8750a7fc3ce5464a3f19e4c16b7e345b3fa3c36575609d7b9f82be33c8a1c919c67f2beb91d5c37f542436dda9af301b4bb78100b SHA512 ce221e96214790b911d5aaedb7b1336ed86ef1350412fba0e20e15241a892df17a8c97768bb9ece7f4abfc61374f0a9dea72a0de197f6821ed3be700a66818fe +DIST genpatches-5.12-10.extras.tar.xz 1772 BLAKE2B 31e3959f1dab1ae1ff5f39b75c455e559e96bd4527e94677494accfa75fd14df2667ecea8ba5df59d3fa1ec9464ba18a257a8a5e76c0602049732f66829785ad SHA512 6e2bf6f7eada61ece1f65d1461377ba5532dd45b57b58b7ee6dae9485809d4c329c6ba8d6d0d0ee9027612a01946f756069b50c44d60d2f543e9864231abd676 DIST genpatches-5.12-5.base.tar.xz 324732 BLAKE2B ffc81b215a8ffa8e6f18bd3dd92b4ef0476590cb4d0a34006ae0a773424ec44cd6d35ecfe72bf2fbaaa23e492dbdb37318f8fd157842f7a5b1d101ec0ce1a315 SHA512 61f297ace3883762136229ad900712b999568fb89e3e7ff934868a0876ec27660c448205c1b9df9bf52e35488eca93a655543108317ecb411fb9675dabd9233a DIST genpatches-5.12-5.experimental.tar.xz 70032 BLAKE2B 281241c599294e5d35219f267334a686d82ea8433acaa48090f8cfaf797a00c9a3097396f5335c080034d87660184107061234fbd7ae64e5c8b84d24689cac45 SHA512 7f5831715d669aaca9cd5ca82bf90c08beedcfd37f80e0a0be890b2d4504681e0f09821b958b737d6197f0bb380ad1b71ec1d10eba0775bc895c48b65349f32a DIST genpatches-5.12-5.extras.tar.xz 1772 BLAKE2B 68d49361597505fd94f30ef14bc1248804e29ee05b73c8f6ba997b1dae20f4d435d69f9270eb8cfb7917450a00f40fc46f521441f18f68dacfb9a95b5d2f2577 SHA512 e862aa5433b11160b4e69d981b84f49c941cbf457ca0846e2d1b0f9c1dc9c467a316d9e8bfe486e29cd0811a55a17bba909749899c9fe4bca1279146303e1293 @@ -112,6 +130,9 @@ DIST genpatches-5.4-125.extras.tar.xz 1768 BLAKE2B bfa75a0d735871051ce3f66962b92 DIST genpatches-5.4-126.base.tar.xz 3514976 BLAKE2B 9d3ddbf2a9d2957a76f3c172afbc040f7ecf97ecb9014277c110aded0fb808c2b09a1191a7596a396d2b2fc2fe91e964b3ec3ff99688eca9b0da256f57454680 SHA512 5f89c7034d55f3465ca9ab8a2d976af139a49d269ae0f04a05dc5a8ae6bb88e436ecfe7bd6bdc3c3d8beb6d6f681c8e87003d2595b8c9677f41d5b64629be411 DIST genpatches-5.4-126.experimental.tar.xz 16916 BLAKE2B e982120e42e594c54dfe95b52130824056b18cb56dfabc8ef05046db6cde1f2ed9b5eebd8397dac1e17412bbae92638229695e9b4c50f0f466403ea7993f470a SHA512 1878ac9998900d1dcbb6b248903dc5e58b3f7d8e63b1384b1b4f5de7c3d263747a13a81f5c0aeee299a83e4d7d83222f89714337259b0b7d21e180a7df30c7c0 DIST genpatches-5.4-126.extras.tar.xz 1772 BLAKE2B 900e7881ef06469e55c4c79b140454d14dc2a8f244b4972439c2fec1c50b95ac8cbe2713dbc64a8e0c7789b517d1350ee91eb75bdd8d45a12289b2445b567acf SHA512 477e1626042f16a139972960be3e62a1f04103607cff026dfd1fe32d79699503d3a336b7241d0b5f6d843d3441a436b59a9c51408fc5ac7e905b1adea52a4e8f +DIST genpatches-5.4-127.base.tar.xz 3553224 BLAKE2B 99331a43982e2dc9efab061b25663e59284e7f1758f683f288fe09ebddc0790ea901e722cde8b9955085afdbb4f2bb45b546ab632a45d310aef9fc16d6cdb0fb SHA512 a78106c658cf7cd1ad08ee100f9cfeade4e1eaf0da9c6e3819a59e54dad9a17a36ee46d8c38dedae58c5f30444054906344e813f9a2d8f0405be2a588a1f9c8b +DIST genpatches-5.4-127.experimental.tar.xz 16912 BLAKE2B 23b0f9d02d47edfcd8a1050a2b87db0bd598c9a3d779dc6435bf184f5be0d811a6218be493eba58ae25c07245ca7d748b2153ce362e5cf15d59ba7df377d2cd6 SHA512 e0f66d4d85fdb72c1fcde05f8f10df1127045c576b19d6919f3e5878126e380a8582bb64e52d54775c9a3ac32b419055e5d443d1e253d03974d78fa2adc5a422 +DIST genpatches-5.4-127.extras.tar.xz 1772 BLAKE2B da124b0076e952e1468ee4adc8965a6c346b945fd56e828903fd8dd2689d8433ad07457792ac7a78431a76c142d9c77955b2fbdba042063b80df331acdeb8cf8 SHA512 284260c19cf81d0c444747e1adc588ddc3442c3e69a1729841e39b8e4df9dc4cff8e852fc7db56033a1f2b3770a7c34010dd331eab71910da1a719347f56eed7 DIST linux-4.14.tar.xz 100770500 BLAKE2B 85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a SHA512 77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 DIST linux-4.19.tar.xz 103117552 BLAKE2B 1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0 SHA512 ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4 DIST linux-4.4.tar.xz 87295988 BLAKE2B f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb SHA512 13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.235.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.235.ebuild new file mode 100644 index 000000000000..63a8006fd7aa --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.235.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="245" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.193.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.193.ebuild new file mode 100644 index 000000000000..32ed235c0d6e --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.193.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="192" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.271.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.271.ebuild new file mode 100644 index 000000000000..abee1bd6d08b --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.271.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="273" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.271.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.271.ebuild new file mode 100644 index 000000000000..c1d00315e710 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.271.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="275" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.10.42.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.10.42.ebuild new file mode 100644 index 000000000000..7604093f6a8d --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.10.42.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="45" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.12.9.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.12.9.ebuild new file mode 100644 index 000000000000..3e1a89ccc214 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.12.9.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="10" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.124.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.124.ebuild new file mode 100644 index 000000000000..558b7bdb0075 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.124.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="127" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/linux-firmware/Manifest b/sys-kernel/linux-firmware/Manifest index 71b18c367239..3bb8a4e8c317 100644 --- a/sys-kernel/linux-firmware/Manifest +++ b/sys-kernel/linux-firmware/Manifest @@ -1,4 +1,4 @@ DIST linux-firmware-20201218.tar.xz 137880408 BLAKE2B 32839d61d743ade53aad7df0c87e90c28c9eff2e40e8072ebb283907c9a3800b7a0020a3c4ea2350f691ebd7ad9c5d71a1a83991c9099cd9b9bc5f9a908732c9 SHA512 9dfce57ad8d23939860d0b005cbbc80227c67e9739479473b1e36a5d32392df1d341eba3a85c0e243590841954dae298913e96168e72c68eeb3762dfd65a38b3 DIST linux-firmware-20210208.tar.xz 146701492 BLAKE2B 49d39e9a6cf1ee1afc41c6317e680ab90937f0be437a940113b99504215fff7320a7442e3243d5831277dc6fbc043734461f32721b2f0a5dc12960162be6b2a4 SHA512 122673a9f4662a807667127fc88f85115063836b98283951cc46887cae43e1d6bc912b5b95bf50e1e896ff4b9197577e53705ccb259b614d29c3bae37a637b6d DIST linux-firmware-20210315.tar.xz 151454796 BLAKE2B aef09bf2043117c821c5e1460d02d50131e46c2c4257dd3816813089881791b876670990d774dc3e43060785f7303ef509cdec45b64f300ee1acba769bfdc5d1 SHA512 499f0cd746f700ac95f8ca9947d1fb402f3bc53dd5302101ce94f0510ee013b5fa3b8cb6316ace93e3bb2df0a25fb53eb8099acc45c9bec051aa92986e9d188f -DIST linux-firmware-20210511.tar.xz 166689864 BLAKE2B 4c5b1ec5f8112652404730dd0ea9e6533358d8a7e91c01fc53592934b8c7d8a1757855aabc74eb5ffaf2091c656da6bf0e5d7362540434472428dc3db4cd9a8b SHA512 10073d562c386338d7c6b7efb9c24bd1959c3b640ae99fd225d5f3f3f4fe93798417f77b34585d674e3355f8dc9ae9592d23c8f13bc884716c6508f1c0714b44 +DIST linux-firmware-20210518.tar.gz 328396097 BLAKE2B 7e7b2a41a8906e9bf6147a6ca4dc9cd57db66e98cf10fe4edf8ab56905bf6ad5eca88c479cad5e585b55cad765f051e6b96c0f827c2fa85ba78706b48ba9e047 SHA512 64c81d97aafa43fd438a29258ffcd812497bbd1b22c40b1e352ffea5a40c3c61b5f5a9788d76508c7010209a82ae3938ac6e28ff7f4dffc1582f6e5f8b8c00da diff --git a/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild b/sys-kernel/linux-firmware/linux-firmware-20210518.ebuild index e973e48dea3c..c269b544847a 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20210518.ebuild @@ -6,7 +6,7 @@ inherit mount-boot savedconfig # In case this is a real snapshot, fill in commit below. # For normal, tagged releases, leave blank -MY_COMMIT= +MY_COMMIT="f8462923ed8fc874f770b8c6dfad49d39b381f14" if [[ ${PV} == 99999999* ]]; then inherit git-r3 @@ -14,6 +14,7 @@ if [[ ${PV} == 99999999* ]]; then else if [[ -n "${MY_COMMIT}" ]]; then SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${MY_COMMIT}" else SRC_URI="https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/${P}.tar.xz" fi diff --git a/sys-kernel/vanilla-kernel/Manifest b/sys-kernel/vanilla-kernel/Manifest index bb7652130f68..4f810a5885d8 100644 --- a/sys-kernel/vanilla-kernel/Manifest +++ b/sys-kernel/vanilla-kernel/Manifest @@ -26,6 +26,8 @@ DIST linux-5.10.40.tar.sign 991 BLAKE2B 014af0182f92fd1e273d5d3ca0a8f98fe95cf926 DIST linux-5.10.40.tar.xz 116350428 BLAKE2B f1df7204db26d588a93d09e1322e20f57b426a0e33a11bbb111e88805b43ebb865ebcf1c7a75362650bed372102706a48171521c62a07d1261e604c03b553d24 SHA512 1b55504b5ccef17c4392a6e78a6fa481a10c5778147450dd492aceac5ed8089ee76f7f650f4cacd9ceb03a5173f33dbfa0a0c975fc29ce7fff7a31a9f59e941f DIST linux-5.10.41.tar.sign 991 BLAKE2B 5b4bfb33003683dee548649237d3941d2f62ff0d3d9b1bf45cfdec225b651c425915466fb0f4bff2e8f65f16818194e81cc2223bf315d957918d69ef51de0824 SHA512 7551bc199b8e25f762cd2c2fd0b46a61d7c06efff56338ada581f7dbab296d41b26be55abb82bc51e8c37452a2ba1d403ada7e18a74c735d9acb1aadf1fa682f DIST linux-5.10.41.tar.xz 116345168 BLAKE2B a8d7acea8a756a226788721c54cd9f9c13003bdaa76e76090a678045e108921c3feeec1660b66c87048380ff97f8050ccdbdf8d9d4878134dad250b0cd60cd0c SHA512 67cc3b1ea1fee86a775d51dd94fa1c69c5006f500da575778ac4cf1c168014efcdaa75adae1524a5f6535410c0e5d25cedd44e172212b4da255ff68f5fcbf2b9 +DIST linux-5.10.42.tar.sign 991 BLAKE2B cbf7ee5fdea8e46c53bfe086d7600e4afa8e6ece6191a49f73223baaaadee1328097b06e6801cba6600b207f04d7ae3904f7c8485cac88a7cbc22f3ba0252a85 SHA512 985cdbc055ed79f39a7ffc5fce37252879ea8f9a29c4049bd006196504c667fb33e96437529350ee0e12f0a6fa792be69b4963a496c01f13259347a90ccc39ef +DIST linux-5.10.42.tar.xz 116351444 BLAKE2B 095722895f2570761ebb152fab4a0bf296e891c2f9270192f0e070e765af4d9c1d9297bb87dff00ea56d97035971f4e0adbce1b412b4f7484dbb5cee9e68fafd SHA512 c55fadf0a2b3cf43ef65fdd58768fe13cc3e4d8cd6876897a6feca75c414c4e5ecaed61b96128c16ccdeb184ea0044dd36eb02bcb09c58d9a8ee88946d88c0be DIST linux-5.11.22.tar.sign 991 BLAKE2B fe9fc24695c42e7784b98da7555f3b70352763a2bffac2ad1488a371960d12e15ae2a559ecf11227dfc96c06c0b45dc46200b7f4be87717c3d55e7b2ad484a75 SHA512 6a18971c881fd314f04eaa32865f57e4b43513a5bb114e047e59eb5a19ae8e02acc13a306f701a29ab73c7e9a5b9e8af67626686f340179270732bb76f77e3a7 DIST linux-5.11.22.tar.xz 117681288 BLAKE2B 21e1a7c6400c6997ec0a66a4ccd7c3789ad99e9319e8f412a5e26f44b309ca6581077f84fd17ebf265089956ed2625acce12d6d6d9f246690c6acd6b21279840 SHA512 1f61c1d9e2ed3095110105b6f33565343e762c7e5e5f9406a3a5884b78ca8ff8e31bb5da2880b45b92ca3adb0539dd69597791de87a41369cf77e325abfae35c DIST linux-5.12.6.tar.sign 989 BLAKE2B b56b774cf47797224f97a93e4ae6708cc14773a42f4d5768f694fa102071118f6a66ffc5532c01906db1291cd67b0d316d1716eca727a3b7d2a3ca55fc637d00 SHA512 8e46afe9027d8c12b280afb061b26dcb95a297f57b5ab63cf752ab63a3d19452478192596b7687f40f2fcb7382de041cd7cf678810eeb0ce69ed6b338ed8cf8d @@ -34,6 +36,8 @@ DIST linux-5.12.7.tar.sign 989 BLAKE2B a45f96c052de0bde5c6bcb02bd434cb8f413fb1fa DIST linux-5.12.7.tar.xz 118153292 BLAKE2B 7881dceb8a88dfc290ef8e175e31f6b7cba30c1b343883344915acda6b9b20484496511f1d2d9a7e8195621db3b4c93fdc16c1d5be5cb9b685d1d8940800ab58 SHA512 4896446ace0ed0edbdce47d79be35f913b9dc98f1004822ffbcbdb86775609fc51d71ef642640d1de909f59631824bcbdd70d28f79f431e992d46bbfdd861712 DIST linux-5.12.8.tar.sign 989 BLAKE2B f7ef67cdd8a9a52f681fd3e23c3e62458ec4fbc0a168125fe4008041f17cec31dcc8dfa7a08d05eb558157eac63519ce64d08ee395a63786366c2a6c45d0b63c SHA512 038f13cf8ea04714db6a1b12550cea6fba23ac69c58ea61671e6f6c7031710e7452e34318200a30359aefad31ec40bb9a29d65f38836b8e68bfe086d4f3bbfe9 DIST linux-5.12.8.tar.xz 118153560 BLAKE2B c2d0c2239c5b440cc93e1e0e312511497eccf9e5cef61707c7f42fa924f66defdd4275575341b46b3ee45269c705dd2ba2e2c68fb1dd4ced438b852803180ddb SHA512 8a5f1774bee223445ad147d2f83a7b3a2c19ea620d0f3964344bb33d003fec17d36279b522745c03467e361ebd61479a4f7122e5911bb6b817ff52ee55c736d9 +DIST linux-5.12.9.tar.sign 989 BLAKE2B 7108f67507b638849a0e54e093fd6522fd58a05e6ab253497adc03f293a22339cfddb661ce393154b44ab39832e795d5293ce6d42e99950eeedd5b9957d63982 SHA512 4095a64f4aadc5449be95cfda53326ea545f7586f5e0c0c85ec48eb1c630a1dd8e778b47409758d1ff931373f8f5eb366aeaaa5e7d5bc3e567444eeb9850db72 +DIST linux-5.12.9.tar.xz 118153984 BLAKE2B c4ba5b7da3e7af4edb3511b63a21f3d6ca8138f4a5fa77714f49a97f7c06db21daf3df66bb905561d6975b6652bf5b517e995f5e673328b9df3415f37ac01fd0 SHA512 f97b025db8a469ff982d445356dac78765a4a5625fa442e0242598c807df49753eedd99517e3ca6d1713714f12b802d58e752b3b71259eb2540b86422a72e937 DIST linux-5.4.115.tar.sign 991 BLAKE2B ca965dda28839e3ac3f6a582137257402de9ef3fb825d811c3c86b9d52660bc5e056a7b3bfdc5353b6d24574c9c54ae46e688bf520199349ffeb527ce7246c7b SHA512 b691a972909827c0a97cf8e901e2a36adebac280c0a32f1bac57107ed5d5f1b1b20ee2a5ca08136fd077b9c80d3f72d5084c0623a88362cb1e21f2f72a26c695 DIST linux-5.4.115.tar.xz 109094472 BLAKE2B c4a8047d8297eae22e0e581f70caba430cc93cdf92a81e0cce12a787248c8d1687bbbb35c3f41808609f6b3f78d491277d9f7daf1910235439b95cd48c5c9233 SHA512 3e2dcdeadb8fb1e67116f04b00c3716686d12a99ee3e48ea3ac9fb1263a36b7b1c01aa837cf0a8409f21392b44abf64e92ed264091b3f5205b75c3b67bb30ffe DIST linux-5.4.120.tar.sign 991 BLAKE2B 12c786791b72afccc4a3f9c412b900f25355920c3b253160bc9da0193983dfaaf4ed81886e5ffc252b07b34dec6d6daa59625bf46b1ebd6a7aca8522235923f6 SHA512 67b32fb8cfcd125ee66201d76eec364d7d8839a3055d43eac88eb812201969d0ed9d94d8c57e9be8b35f0a8972475381c6d41e480c7c6086cf351d4388f80c04 @@ -44,3 +48,5 @@ DIST linux-5.4.122.tar.sign 991 BLAKE2B 4c954e2fbfc89654da1646374b813f494d9a47e9 DIST linux-5.4.122.tar.xz 109109228 BLAKE2B d9989903e30afea012fb46734378d2252519312bbab6c8380e53d43010b4f1a95f7cc0ab5dbe3ead700c609ea8ca0060fc67808f8a22f773dda26e836232dd59 SHA512 4b97b1754e342fc50db970883ecf1baee7f6402c5a4738bb4ce372614862e8fe93a45e5c95e2afa6c09171e6d9740400786eef45157f19ad2d7b5c110a39173a DIST linux-5.4.123.tar.sign 991 BLAKE2B 42b98117b38e31ad2a9f0dea49a59b4d5892b127cfea6ee71b163330f3c2daed75220c6ed5c633684e30ca5d8459d841ce92d09eb41be37985cf2dd51683904d SHA512 0f0b39e279736e562aaa954b0c60640a25371b495b39e9c1e08c7e7d8d85ce458820f65693d3212ff853c1187035169b5858aeb5fe26fb0ab9e0c62ab530e937 DIST linux-5.4.123.tar.xz 109106272 BLAKE2B 4f88e1cfd16f4cca07e9f39ab9be089dbc4df0d5741e96f1f57233a72362d0e44e4434c97b3d44d8567b1ffc1d0700516d12068d5e3e25f945d441882c20b055 SHA512 96080ffa9cdad4964effac84d8cb2f146bcd51eb88b4fe7c682b508511182709100ca22855220a00a4fe8302f6e618e148764dec9960802954a5aa43b98d0d85 +DIST linux-5.4.124.tar.sign 991 BLAKE2B 61e01b1eb9fbb399694189177a7d14da233123671426c4f0e97433e8c8d27099a9c983a1e0e16625e05fc5e4bb83d8fcb50c195be95e4fbb7d3024fa58f95843 SHA512 c4ebf1812c9b66eacdbcde9078f62a4cf95024d1cf92c6f7344c395f0c6b911304238358ae936df0b62c79df50af0a50ac99f462587c17d85e2418cf4178c4ae +DIST linux-5.4.124.tar.xz 109107832 BLAKE2B a92d3862376ae4189cbedb3596a2d87734e940e264cfb52d3e5a03890f276b9c7214fd6200aa8acfbf5c831f9b2d5a50be04ffa507cd27db2cbb262c42903987 SHA512 8a12950ba364670373ae0f0c8ca5fd43b424de0529df129cc2725ff80dae4f6bef221748a27df91b459d40733880f901d11bb99afee6170ba6d807fb8e6fb133 diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.10.42.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-5.10.42.ebuild new file mode 100644 index 000000000000..12c958a4bb2d --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.10.42.ebuild @@ -0,0 +1,102 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build verify-sig + +MY_P=linux-${PV} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.10.12 +CONFIG_HASH=836165dd2dff34e4f2c47ca8f9c803002c1e6530 +GENTOO_CONFIG_VER=5.10.32 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.sign + ) + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="debug" +REQUIRED_USE=" + arm? ( savedconfig )" + +RDEPEND=" + !sys-kernel/vanilla-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( app-crypt/openpgp-keys-kernel )" +PDEPEND=" + >=virtual/dist-kernel-${PV}" + +VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + einfo "Unpacking linux-${PV}.tar.xz ..." + verify-sig_verify_detached - "${DISTDIR}"/linux-${PV}.tar.sign \ + < <(xz -cd "${DISTDIR}"/linux-${PV}.tar.xz | tee >(tar -x)) + assert "Unpack failed" + unpack "gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz" + else + default + fi +} + +src_prepare() { + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm) + return + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + echo 'CONFIG_LOCALVERSION="-dist"' > "${T}"/version.config || die + local merge_configs=( + "${T}"/version.config + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.12.9.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-5.12.9.ebuild new file mode 100644 index 000000000000..32d99a8f85d0 --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.12.9.ebuild @@ -0,0 +1,102 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build verify-sig + +MY_P=linux-${PV} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.12.5 +CONFIG_HASH=17639df044f5f81bbf267f566426eae4a5187875 +GENTOO_CONFIG_VER=5.10.32 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.sign + ) + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="debug" +REQUIRED_USE=" + arm? ( savedconfig )" + +RDEPEND=" + !sys-kernel/vanilla-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( app-crypt/openpgp-keys-kernel )" +PDEPEND=" + >=virtual/dist-kernel-${PV}" + +VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + einfo "Unpacking linux-${PV}.tar.xz ..." + verify-sig_verify_detached - "${DISTDIR}"/linux-${PV}.tar.sign \ + < <(xz -cd "${DISTDIR}"/linux-${PV}.tar.xz | tee >(tar -x)) + assert "Unpack failed" + unpack "gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz" + else + default + fi +} + +src_prepare() { + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm) + return + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + echo 'CONFIG_LOCALVERSION="-dist"' > "${T}"/version.config || die + local merge_configs=( + "${T}"/version.config + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.124.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.124.ebuild new file mode 100644 index 000000000000..dc33930084ad --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.124.ebuild @@ -0,0 +1,108 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build verify-sig + +MY_P=linux-${PV} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.4.21 +CONFIG_HASH=2809b7faa6a8cb232cd825096c146b7bdc1e08ea +GENTOO_CONFIG_VER=5.4.114 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.sign + ) + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64.config + -> kernel-x86_64.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64.config + -> kernel-aarch64.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le.config + -> kernel-ppc64le.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686.config + -> kernel-i686.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="debug" + +RDEPEND=" + !sys-kernel/vanilla-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( app-crypt/openpgp-keys-kernel )" +PDEPEND=" + >=virtual/dist-kernel-${PV}" + +VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/kernel.org.asc + +pkg_pretend() { + ewarn "Starting with 5.4.52, Distribution Kernels are switching from Arch" + ewarn "Linux configs to Fedora. Please keep a backup kernel just in case." + + kernel-install_pkg_pretend +} + +src_unpack() { + if use verify-sig; then + einfo "Unpacking linux-${PV}.tar.xz ..." + verify-sig_verify_detached - "${DISTDIR}"/linux-${PV}.tar.sign \ + < <(xz -cd "${DISTDIR}"/linux-${PV}.tar.xz | tee >(tar -x)) + assert "Unpack failed" + unpack "gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz" + else + default + fi +} + +src_prepare() { + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + echo 'CONFIG_LOCALVERSION="-dist"' > "${T}"/version.config || die + local merge_configs=( + "${T}"/version.config + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + [[ ${ARCH} == x86 ]] && merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/32-bit.config + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 9e5128b056b2..731c76fd9f57 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -5,10 +5,10 @@ DIST linux-4.9.tar.xz 93192404 BLAKE2B 83ae310b17d47f1f18d6d28537c31e10f3e60458c DIST linux-5.10.tar.xz 116606704 BLAKE2B b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1 SHA512 95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e DIST linux-5.12.tar.xz 118112412 BLAKE2B 842d921b9a73d2aaade763dbd2ec67bdfe0275baa6d628b775f5c87574ad7dc86f0419afcd48c10c1235f4bffa16084243f2cf4556e6afcd391e975fe8ba530b SHA512 be03b6fee1d1ea8087b09874d27c0a602c0b04fd90ad38b975bd2c8455a07e83c29b56814aaf1389e82305fae0e4c2d1701075a7f0a7295dd28149f967ec5b3d DIST linux-5.4.tar.xz 109441440 BLAKE2B 193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13 SHA512 9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f -DIST patch-4.14.234.xz 4281664 BLAKE2B 166124258a85b8c5d6ba37c1b921c46f6764e15e65a7341ae012fc1bd706ff12511fc22b0e3b90c8704332c6d04c66563ad41dc794482a9707eec5d4311b99b9 SHA512 37423d3253ba4119c1e34034e97439f2b9c386173605634406d514e90ab26ca66ec22c01a568b7a617ef3162d3e6941382dfcdce1bd7522b6297a20c517139cc -DIST patch-4.19.192.xz 4008052 BLAKE2B c09b1ef4aaf80821f87e44112333a965a9649ac483a0c7e565173368d1fb94d10203aa19e7309629e2e45f8c3eddcb89604df5a456073184def34d06d3f0ed05 SHA512 aaa26151441c3467c5caab5d818a32f58982ffc9678ffb416c8b427b71b012e6d6d61a397e8f2e11f06509c3181085d40e40207f0681a11510619488e6b98218 -DIST patch-4.4.270.xz 3555344 BLAKE2B cc3cc56e68c72f8b9c8276657d010f5a5ad281f2744c317d64b47527e3b1ea9c2ecdb6e4c3d09b8ac9581b5783bb82d083af2d0b0f107ad5d9c08414913c927b SHA512 715e8242fe1a133d3b9f25058b5a5e780476feb3f17712fdc5f27a6a5082ede1ff173b59297ea29f3bff7afc3ec582340f61e0090f98bee0542392006d634ad7 -DIST patch-4.9.270.xz 3973648 BLAKE2B b7eddf72601fc583b9f95493541a495ce647a8df14cb95ea949f3fddc7a1c03319047f9ef181647e46796df80e8aeafe68813c4b5cde76e6950f29dd8bfc060e SHA512 02f9278a1b7f0eceaf1f14e56d2d4752835c772b9ed3a87556c8e951493c40fad2e523bece5b655267f3b5349c112d0ea72a8c0fbb38151ec257b9a2f499dc74 -DIST patch-5.10.41.xz 1386280 BLAKE2B 223a299c0d5902fbdc8890b95aa20707a384595e7f7d3299117f1d847f5e8bda041e45a4df076f38f1ced8103b7477b5f2c990849f7e5557f65f99ccf92841fb SHA512 58164cd7a7f75b5de01affc61795f3f9386f9e4adfcc71ea8a4f03ffe34c1ec33e48f9c537a456a06afad2cdd9af672485c51ecff0fa495ef7f72f5ee2b5fa6f -DIST patch-5.12.8.xz 478216 BLAKE2B dfe75a8e8ce03bd2a96151908f37bdcc3a20ae5e9530724670a8aac555cc8ac3d83c7bca38661651a60121dc8cec94818eeca599e9b2b00f70285759d638b2b8 SHA512 fbb37ec298437b3be125bcd23f9d1561c978840982b15298964c57bdda65f2c5edd505f4c382a6a2b9c89ff07674f27b77e7912a7b5a287adef263334d6150ae -DIST patch-5.4.123.xz 2972932 BLAKE2B 736c6230da98fab6c85d555bcfae6d3551a81bcc897a62a6d994b0fd668a5ddef5e326f5e91e2b7283f5b56d05b1b525263be76f05db3fe6f44d3e5c988ded45 SHA512 ca54bad5a466c283bb74aae632d91b831005b253b41137d69d466e59f35d687e45b3b1a8b4b4caa813bf2c55ac497cfca69bd6d0c264e56a697e1b44b6a6883f +DIST patch-4.14.235.xz 4299416 BLAKE2B 456b70cac19e7638dfa826983c9be8addb5a18e7b9827be84b0478a0dfed1d4997ece82b1960dc3dfba5a7bb8d17adf33e62916fb823bc19ffddf335a33e6b38 SHA512 a0ad98d60bebad099e82a40ff3a3661e4284a080aa4ed1b4a059a3de97362ccdf78e19744a0a9531bf179d5d7375547c42eeb9420780226a98109f95ca1750c2 +DIST patch-4.19.193.xz 4028404 BLAKE2B 4eb96c41384b244ab40f3c47080151ae8b9a194bbb378737e804cc30a416a83f3a21af6b3fb5dfa79435efd6344c2b2fa32c81bb7daa218f212b64d208dd41d9 SHA512 b2382a705df90cf450ee516c60ff69b8557e046b825e85a96aab9eec2cd6179f142363f6d6d644e7ce48be167ce2dcec68f76ea29521eadda1297685764e8011 +DIST patch-4.4.271.xz 3566876 BLAKE2B 4d5094d278582b9a4f8777fd9d0219093a31c13190f5f272901c10f9669597bfd24aa37d81363f1805ab17f7a62fd5886929eebc6326715fd88072397d8f08a9 SHA512 c3468533a54fc07b096812f8ca294f89f91002fa6de41a2ee48de4ef12d3fc514518b70408f7d350b4fe2872877d95fcdb27380c39ea17bdc4c91a4f9e3515e2 +DIST patch-4.9.271.xz 3987312 BLAKE2B 9641ae5d372bd24d52980329a842f415c33d624d706ee7ad346ca17b1e80a1da77c2617520097bd08fd0b734656249c24d3687829017f97fded72ade0375a915 SHA512 22de80fabb1b9160a14179e76dcc72bcac2e1afe6ebb2f47af5927a75ed21d949c8fbe8c42d746b665d76b9794c05402c6fceb2675cc512d68e894eeecadff18 +DIST patch-5.10.42.xz 1439320 BLAKE2B c7c2b7ea7b2c5e71135142f15d8a4a7958f11cc6b44bfa157fb0791b453479285ec800bc2a20c6d9fb1748e2f92a4927933e43b6bb5a1d815f5c16e39be10eae SHA512 ce17a528f5cad21f1221529c259529dd044b5d1d05a386a53945dbbfe3d6dd79ccbc93c8534c5a6456e1984fd911d34b7a81a9c15e0ca869bb6853ee0e6b4734 +DIST patch-5.12.9.xz 552052 BLAKE2B d1de3a40d85315ad09fe7d188c4b8dc2e17f369954bb7ae7ce36a13dd6412459168f29547d11b1f0fe3c4fb3a48f1aa1c15748e67005ca3b7ca53297f4e6a7b3 SHA512 d1aa28613d3574bf73b9025fc8c91296c9ac3149476dd7548112a9f80a76bb8db33e6b566cd918d21000a4c84e3e2b089153e2eac3d6333eca3c5e0b6286729b +DIST patch-5.4.124.xz 3006220 BLAKE2B 394645f0cf7898c98d416e93858b3effe171d5bdbc968bccd876c41de527ce0221331a06744cc081a05407d3b539d7ab83ae526ff1cc99e9e17629af7b968932 SHA512 9a8a5388d921c55a6f620f2da0528c4d0ed4487cfa58ac876b7b9625247860e3b25bbfcd39b4ae73f34c2d2b8a45b155a149613a650a1306bdab4bad57f8f9e9 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.14.234.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.14.235.ebuild index 7083facc514b..7083facc514b 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-4.14.234.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-4.14.235.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.19.192.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.19.193.ebuild index 7083facc514b..7083facc514b 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-4.19.192.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-4.19.193.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.270.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.4.271.ebuild index 7083facc514b..7083facc514b 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-4.4.270.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-4.4.271.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.270.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.9.271.ebuild index 7083facc514b..7083facc514b 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-4.9.270.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-4.9.271.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.10.41.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.10.42.ebuild index 7083facc514b..7083facc514b 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-5.10.41.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-5.10.42.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.12.8.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.12.9.ebuild index 7083facc514b..7083facc514b 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-5.12.8.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-5.12.9.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.4.123.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.4.124.ebuild index 7083facc514b..7083facc514b 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-5.4.123.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-5.4.124.ebuild diff --git a/sys-kernel/zen-sources/Manifest b/sys-kernel/zen-sources/Manifest index c5790010a097..788be0dc7bf0 100644 --- a/sys-kernel/zen-sources/Manifest +++ b/sys-kernel/zen-sources/Manifest @@ -1,8 +1,4 @@ -DIST genpatches-5.10-1.base.tar.xz 3840 BLAKE2B 08ac1f83dc9a1cfc1d4cf0a3a5ab4c9d4686a80348247ec7cd1da6e49db92d6932a1864113f2631d5528a4ba732945b2afe73d03061bd3c532b3d1e4d9571999 SHA512 04356093c4df6a7ee0876b89be5b90f8bc90c920628e5fe69b5787ce82e003be05eaac142310f10f32d0549a6676af846734ae4ac188c2b96c2eca2cb0a6f4b0 -DIST genpatches-5.10-1.extras.tar.xz 1768 BLAKE2B e99d5d2137d5752845ba8284a0dd57620851c3620603e871973af5841b54e9bfdde92ea2408ddedb55355f2c954c80641b06098060043916d2483e10cfb8293a SHA512 0034e5ab57cccb2e969a3b9e1f674614ca853779c552c37be9c5afb0a37112bf8f2c30e1b21832d56320c70c1d622081b60369c6a86fa737a23c3ed953267453 -DIST genpatches-5.11-1.base.tar.xz 3440 BLAKE2B eb1e9a9f2060023cb410bf3db8c4f4fe283eff47f545a434dfc1edb98aa513940f30a2a88566422192b79f7ab36c607b9bc63253c067070d9a479d6318fd34b3 SHA512 a862fe33272bb6b0e4095c862c74361f015fc57316b9dbbdf2782f2e57c131fbe7fe9b9ba81c3d5a7d71788f2d56abdbd28f1c7571973c3f378cd05199c0421f -DIST genpatches-5.11-1.extras.tar.xz 1772 BLAKE2B e6f8eae67db54099424f33e17bbfa66d36ae44c98d5f58969634a709a4b949a675a7ec1053eab4db4f745513d9730b68439ecf888e92f0fc9ef369822b39a388 SHA512 cf9d0ee27618b1b49322cefda8d85f66fd94820b9902948c8dd9a33d4e14acf511e7aabf611df5e070a4011e06d80164a512d124f5686b5b16fd81409098d8eb -DIST linux-5.10.tar.xz 116606704 BLAKE2B b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1 SHA512 95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e -DIST linux-5.11.tar.xz 117619104 BLAKE2B 81300c27bd5476387a83123aaeb4163c73eb61e9245806c23660cb5e6a4fa88ffc9def027031335fa0270fc4080506cd415990014364e3a98b9d2e8c58a29524 SHA512 a567ec133018bb5ec00c60281479b466c26e02137a93a9c690e83997947df02b6fd94e76e8df748f6d70ceb58a19bacc3b1467de10b7a1fad2763db32b3f1330 -DIST v5.10.16-zen1.patch.xz 702476 BLAKE2B 3aff93587e1607cfe241f81ba9f2cd00f8bdbf1f42850040afe8ed3c7b95fd5d578256f9e41f1921d105399dc88b575472b66d6434b55bb44e7f987c09742417 SHA512 6dde0849fdb9181d62fe547eb1bfd48d2577c0c795ab22c7a298a441f7da8d8e948ca081ec9a080a19222e4ae6a0a461a19109632ea96a9c224481b776652e20 -DIST v5.11.15-zen1.patch.xz 803520 BLAKE2B 608329973058e0ef1b0b7bde3576d38aa6ab1e59dac6fed3d1e7e4f862864bc816a4444a2c19fdbdff20228a460025c91fcba6c6180bbd0e9d3988a6ec770246 SHA512 75a03679617f5356e80ed737411d3f5c1f0be61aaa8fe10b8cf02299518d76417a9fe19b96c7597d70d1e04d201dbe1ac74b98b05063c7b0088c799efe3106bd +DIST genpatches-5.12-1.base.tar.xz 3440 BLAKE2B 642d0cf2382de42feb6b5942f6449000b1b638ab80e0a4dec4a70c17201806f20e6e83542e11b44841fbf5806bced3b6ea3fb5f516846ca502eb22ceb4202f77 SHA512 27f023e4533601910c2bb5ba65171e7c0092f5b20fe76711c3bdb9b171bb9ed47dff2e5911d904dc97d28be181d48a74cc0960d8b77eba0b4cf84f05ba7c108a +DIST genpatches-5.12-1.extras.tar.xz 1772 BLAKE2B 3de99462690e77f87a30d211f7fc14937b41123739c28b1aeea2935383766685a5befa631cfc19afe583db9ca0aafa2ce4140a327707161e73ab14135e837432 SHA512 67c1d650540e50079264e66ce072e546f9001f776188760f794514f6edf78b85e115710b031573bd6cdd53aa599fa9afb743272dac19817a83df5f97354fef3c +DIST linux-5.12.tar.xz 118112412 BLAKE2B 842d921b9a73d2aaade763dbd2ec67bdfe0275baa6d628b775f5c87574ad7dc86f0419afcd48c10c1235f4bffa16084243f2cf4556e6afcd391e975fe8ba530b SHA512 be03b6fee1d1ea8087b09874d27c0a602c0b04fd90ad38b975bd2c8455a07e83c29b56814aaf1389e82305fae0e4c2d1701075a7f0a7295dd28149f967ec5b3d +DIST v5.12.9-zen1.patch.xz 798140 BLAKE2B 42d75857c393afc72b025d8cd2d818c7645b6ea8418ebeada51f774d5fae538a10778465521ed506a7ac81499e073328f2bf01144d4e2c5046a0554e91eb0009 SHA512 37af4de4e9d182e8090bf74d79d1df54683575a2ed3688d5d6246d532dcbaec41688cc6ebdace5c1ef72b769724fa7b6508529551b3c5febbd2e78a606ccda1e diff --git a/sys-kernel/zen-sources/zen-sources-5.11.15.ebuild b/sys-kernel/zen-sources/zen-sources-5.11.15.ebuild deleted file mode 100644 index 2ce2e0c8f2f8..000000000000 --- a/sys-kernel/zen-sources/zen-sources-5.11.15.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras" -K_GENPATCHES_VER="1" -K_SECURITY_UNSUPPORTED="1" -K_NOSETEXTRAVERSION="1" -ZEN_VER="v${PV}-zen1" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~amd64 ~x86" -HOMEPAGE="https://github.com/zen-kernel" -IUSE="" - -DESCRIPTION="The Zen Kernel Live Sources" - -ZEN_URI="https://github.com/zen-kernel/zen-kernel/releases/download/${ZEN_VER}/${ZEN_VER}.patch.xz" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI} ${ZEN_URI}" - -UNIPATCH_LIST="${DISTDIR}/${ZEN_VER}.patch.xz" -UNIPATCH_STRICTORDER="yes" - -K_EXTRAEINFO="For more info on zen-sources, and for how to report problems, see: \ -${HOMEPAGE}, also go to #zen-sources on freenode" - -pkg_setup() { - ewarn - ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any way." - ewarn "If you need support, please contact the zen developers directly." - ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues with" - ewarn "the ebuilds. Thank you." - ewarn - kernel-2_pkg_setup -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/zen-sources/zen-sources-5.10.16.ebuild b/sys-kernel/zen-sources/zen-sources-5.12.9.ebuild index ef149d6a6a93..ef149d6a6a93 100644 --- a/sys-kernel/zen-sources/zen-sources-5.10.16.ebuild +++ b/sys-kernel/zen-sources/zen-sources-5.12.9.ebuild diff --git a/virtual/dist-kernel/dist-kernel-5.10.42.ebuild b/virtual/dist-kernel/dist-kernel-5.10.42.ebuild new file mode 100644 index 000000000000..3df38272de32 --- /dev/null +++ b/virtual/dist-kernel/dist-kernel-5.10.42.ebuild @@ -0,0 +1,19 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual to depend on any Distribution Kernel" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +RDEPEND=" + || ( + ~sys-kernel/gentoo-kernel-${PV} + ~sys-kernel/gentoo-kernel-bin-${PV} + ~sys-kernel/vanilla-kernel-${PV} + )" diff --git a/virtual/dist-kernel/dist-kernel-5.12.9.ebuild b/virtual/dist-kernel/dist-kernel-5.12.9.ebuild new file mode 100644 index 000000000000..3df38272de32 --- /dev/null +++ b/virtual/dist-kernel/dist-kernel-5.12.9.ebuild @@ -0,0 +1,19 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual to depend on any Distribution Kernel" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +RDEPEND=" + || ( + ~sys-kernel/gentoo-kernel-${PV} + ~sys-kernel/gentoo-kernel-bin-${PV} + ~sys-kernel/vanilla-kernel-${PV} + )" diff --git a/virtual/dist-kernel/dist-kernel-5.4.124.ebuild b/virtual/dist-kernel/dist-kernel-5.4.124.ebuild new file mode 100644 index 000000000000..11d6573ded7c --- /dev/null +++ b/virtual/dist-kernel/dist-kernel-5.4.124.ebuild @@ -0,0 +1,19 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual to depend on any Distribution Kernel" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +RDEPEND=" + || ( + ~sys-kernel/gentoo-kernel-${PV} + ~sys-kernel/gentoo-kernel-bin-${PV} + ~sys-kernel/vanilla-kernel-${PV} + )" diff --git a/virtual/gnustep-back/gnustep-back-0.29.0.ebuild b/virtual/gnustep-back/gnustep-back-0.29.0.ebuild new file mode 100644 index 000000000000..7c22edfe2bff --- /dev/null +++ b/virtual/gnustep-back/gnustep-back-0.29.0.ebuild @@ -0,0 +1,14 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual for back-end component for the GNUstep GUI Library" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" + +RDEPEND="|| ( + ~gnustep-base/gnustep-back-cairo-${PV} + ~gnustep-base/gnustep-back-art-${PV} + ~gnustep-base/gnustep-back-xlib-${PV} + )" diff --git a/www-apache/passenger/passenger-6.0.8.ebuild b/www-apache/passenger/passenger-6.0.8.ebuild index 17074fb367be..4d290110e58a 100644 --- a/www-apache/passenger/passenger-6.0.8.ebuild +++ b/www-apache/passenger/passenger-6.0.8.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~ppc ~ppc64 x86" IUSE="apache2 debug" ruby_add_bdepend "dev-ruby/rake" diff --git a/www-apps/rt/rt-4.4.4.ebuild b/www-apps/rt/rt-4.4.4-r1.ebuild index 3cbe269e83c9..8f0b49e9cc7a 100644 --- a/www-apps/rt/rt-4.4.4.ebuild +++ b/www-apps/rt/rt-4.4.4-r1.ebuild @@ -73,7 +73,7 @@ DEPEND=" dev-perl/File-Which dev-perl/GDGraph dev-perl/GDTextUtil - dev-perl/GD[png,gif] + dev-perl/GD[png(+),gif(+)] dev-perl/GnuPG-Interface dev-perl/GraphViz dev-perl/HTML-Formatter diff --git a/www-client/google-chrome-beta/Manifest b/www-client/google-chrome-beta/Manifest index 0010ada5f32a..59dc495ef81c 100644 --- a/www-client/google-chrome-beta/Manifest +++ b/www-client/google-chrome-beta/Manifest @@ -1 +1 @@ -DIST google-chrome-beta_91.0.4472.77-1_amd64.deb 83320016 BLAKE2B 4e41c205dfadf67254e2e046857c2eaa5ee0f2eee74ae24a5c5cf46661b031262bb98977cfb2137829664c1a17589501a2733500cec24e798cf3671ddc4980e1 SHA512 7d3750e5662f4a51037da387298558671888ec2550b215585b6412b9014f6a1aff5dec857fe3c7857e73f74ba1211a69e1f9a2a9e0339d4cef4b6792c65975b0 +DIST google-chrome-beta_92.0.4515.40-1_amd64.deb 80212704 BLAKE2B e0754a0ae681e5976d602312abe936fc2e817e5828e40bb273b920fa185ff6a121d82dbdd839143f389f49b2ddc15da6f5b1014a3d7454ec5c56ad718b121875 SHA512 46926ec6a17324e04b71da8782e0acbfe3bb5b9a12b3a89d607a2c2f87858ab5b3fc72ed5e48e28df1476f3ea28a98e7f81e08dd659aef8b7a6d73ebd30881c9 diff --git a/www-client/google-chrome-beta/google-chrome-beta-91.0.4472.77.ebuild b/www-client/google-chrome-beta/google-chrome-beta-92.0.4515.40.ebuild index 823e4a8ef49e..823e4a8ef49e 100644 --- a/www-client/google-chrome-beta/google-chrome-beta-91.0.4472.77.ebuild +++ b/www-client/google-chrome-beta/google-chrome-beta-92.0.4515.40.ebuild diff --git a/www-client/librewolf/Manifest b/www-client/librewolf/Manifest index 7bebaef1c554..68c4e92f1774 100644 --- a/www-client/librewolf/Manifest +++ b/www-client/librewolf/Manifest @@ -867,3 +867,100 @@ DIST firefox-88.0.1-zh-CN.xpi 579525 BLAKE2B c00b2a37cf63d48d6e5a3cc56989f48c824 DIST firefox-88.0.1-zh-TW.xpi 579882 BLAKE2B 4ed4a8014104df8c6c3e8664f758ec71912269f7932aa3e628df463f3753001ca0cf52a6150f3dbefa515f54acee9d1c45e2974088d97f13715d301a5601c366 SHA512 80b202347ad89aad7e8dbccab0120ec1774a60f081503fe24902106f9ef15bb2493640fa5f68ef17b60f8857d2fbaff9df458635df9da10ae55e4a4d3e893701 DIST firefox-88.0.1.source.tar.xz 376465316 BLAKE2B 9a5f5b77e927de9a2bd6a448d1037438e2481b252c28398ded19e01ca4f371595c089a215144b010d35a16437d4e54e2055c176bc47e63492b6bec87ca621f99 SHA512 e2d7fc950ba49f225c83ee1d799d6318fcf16c33a3b7f40b85c49d5b7865f7e632c703e5fd227a303b56e2565d0796283ebb12d7fd1a02781dcaa45e84cea934 DIST firefox-88.0.source.tar.xz 373744508 BLAKE2B 2ce5a9e21f51d78e7dd576805d9b0d56308d5a7a99aaa4f7ef85746d0bd1b6b420b5b35adc850721ca89ffeeadd69bf3fe10de66ffe7b88f99a34fa18346b610 SHA512 f58f44f2f0d0f54eae5ab4fa439205feb8b9209b1bf2ea2ae0c9691e9e583bae2cbd4033edb5bdf4e37eda5b95fca688499bed000fe26ced8ff4bbc49347ce31 +DIST firefox-89-patches-02.tar.xz 34192 BLAKE2B 06d54c82c2c9202fd176ea850872be626d3da38cc42f14def0a29a18f4cb52b851b7984c3880d35cf16b66cd5316d8a65212d6242350f1bb4f981d5deb050e16 SHA512 0e43645a81c75dc22da7091e00b9a1cdf055d6b4c2ded7ca1c15badb87fcfd29a7afb43ca0142627388d81c8728095a41b7e2a5983cdb1ea447269d8e6057003 +DIST firefox-89.0-ach.xpi 467444 BLAKE2B 7620cb550d3f7b980cdf45ed15d2b964fdcd125c794a9f2b78892dec5d0250d15428ada892d5ac75223d6fc225aaff0d862624b7edc98e91549535b0ffbab909 SHA512 dd416ae0e9097a293acc6a70b2d857cf6b9ad65ff1d54d51c751cb938e7e703faf117d037ed3fc84b2e2108884369a803f7a7745c86130682ddedd3cdac81de5 +DIST firefox-89.0-af.xpi 431273 BLAKE2B 5bcda20dbce7e0af3afbadd46406250647f13b43fb38fae5de471e9c993e3f1a0f5e562042ccdf169ceee1796f94570b30560012a27dd1f9a544bda9a0407ea6 SHA512 f18b464c4f1db7e6a28570023ac503fa4daa851125d3570649c9cd02337a3e08266295450c9c9d6a31d93045afab58750bd2152e4c94133cf75e29d638b66559 +DIST firefox-89.0-an.xpi 515265 BLAKE2B a1495c217bf92f5861a3ce8f6f1d3d5e43a6c48a3769e9b0280a7643badb649d560031965eb469cfee466bd75680c6ef5004ba3678b8e1a337d987d02b7c9acc SHA512 3e86112841abe359e490a415eb596a5f2b50e2ae5d5fb99f0d608a54b03eb35ef3986a6adc54046bbf89163ef0bc17862e90f78ebd18bb6a39bb111d05216843 +DIST firefox-89.0-ar.xpi 580093 BLAKE2B dc4542f4269bc55a849e5a50b3faf240c4299a5cf053cb31975d9136a6a622c753f3d76b697e839cc013fca7ca443aa6b79a66669ed83606dbf812420538c45d SHA512 60d8e158de33ad00d0180bb0d11f19934551f0b54970fac998e56d47f8da02177ad7be59eacd004a2e36e0c438f0c7e1fc369c48e33a96435e7169d105061f53 +DIST firefox-89.0-ast.xpi 506057 BLAKE2B 6b40a25304c24c1fab9d6fb92d5912c993bf2b1749efc4f8a69ad677aaeb97d710f427e37f43dac62f05059645915f1ad7d8672cd1541701720b1e49ed870294 SHA512 d9f9d783e0a62748923bed45a597346c19d849969accab27e2b231ccea00de7433a2cae6fc5d6ff889386e52961e544892e62b79a065f2a2adb09785a9586fa5 +DIST firefox-89.0-az.xpi 503312 BLAKE2B 31f602cba632617ccc09eba7530135a2323d27758bb28367f678ca66fe354b48957e7b7c33bee468e681baff126222950e8a1678a5d2dd89cd4106359e64492c SHA512 23be6e07afc040eecb277cfc1c7472e8d87eec3308569265378a98fb64db857c61d2370af3171e2fd27dbe130b9519f98f9fbad134570a102d8d653106313e88 +DIST firefox-89.0-be.xpi 631192 BLAKE2B 23761f04e55195f50a9c1a47634c1e0b089b739fea768af98f8873ddfc324f68c5bf762a3c929b3a7a6b9cf08554546f0f1b74467416484876da0236fceb6df9 SHA512 c9f7060a7e02dab1e653faecdb417ea362cda8e16811a180dba861ce6a435f913028f7e15e4864490513ae606da97a4a306fa6a2cbf0a731cd7b6fe9768c2bb5 +DIST firefox-89.0-bg.xpi 576970 BLAKE2B aad84ac50e3a5eca260befeba09ef099a8ae4a175b4160a8c9efcb80c00de656c9ac0ac88e4e5305de5342604447adb66c73bdb82554392ed272700c1280e909 SHA512 ecf27f9757c60cb35575cf9c85014cbb50a5254bff50cb6a67d2d7ee9f8316145e4c1ad0a128a21dca7f801d7252723e8bb776075af70722e47a1f02f9443e75 +DIST firefox-89.0-bn.xpi 579296 BLAKE2B 007183f8214ef8a398e7a8bbaf177cd6443054a2236bb59999b20c9c851d7727126b1acf75d6f13683f480895c74b022691d9cce55ef39148baf72b54b808bb7 SHA512 e1416e626f5e2257b5b42e417ab568874e0a8f0df88e8e14b8d0fc379da2ec615b1f7d83281e89b4d302a75b85229e85a7dcd6c0be82294db4e76ff64f8f71a8 +DIST firefox-89.0-br.xpi 527037 BLAKE2B f75b59552a833d0b527c0a0cd7a96132e31de3ef957aed056d43ad1c3f2d6534ea1dc12b5929d54ef3c1f3925166609ed691467efe186d334cd0e962b1f156ba SHA512 5c64221b0f54e61625425715d1d969782ee8b2e8d20f84c4332910aff29c92a84d9450e62ab290df131e66c5b9972c19ada9cd706e00f2fcaae16f06c8659416 +DIST firefox-89.0-bs.xpi 472172 BLAKE2B 8c04c8fc80a3073d140165d186771efbe71cfa09d6332865f1389ae49461420848a749a3d15403a90792b7fb8bf6b99802c8460e2170afef54d03b6722dc326e SHA512 88dc9783914253edfe7ab1891e633de2124b21ae977183a158970163e808ee2ad511cdf690f05852950b221feac0dbcb5bc2045fa72caef8431bbfd0b5b754dd +DIST firefox-89.0-ca-valencia.xpi 548358 BLAKE2B 4893c67291abb0b5f0ea995860ffdff5e87146af6fd7d78e5c00c46092902ce5bb15939d2147c595e331421b55a0353a30cbc65e7b6c7358544999a1e388700b SHA512 86a44a82faa05b56e5d06e35853c38be3d22311f3753e7384ad0d25972f82dc6ecd78af963d9157cc6069f8b1b039960d16ab42b40b06b67f5ef31d0a2d7f44e +DIST firefox-89.0-ca.xpi 540877 BLAKE2B 38886de1ed71f4673e040909ce3594a20dc187d26a1e1a4efa280944a7e12600039d17cf13d47b7be0ea4e190e245fe99cb3ba227e40c499ab53ad49a681b70b SHA512 6134a2c547b13a9d9d1d36bf4b9958d0301a99383ed45efd0719bfb49407c8d6739d3df453eca1fc82c7fef85f0bf30d93a1161e630ebc1f9a91b753a032d904 +DIST firefox-89.0-cak.xpi 572312 BLAKE2B d5cf23c2ecd65ae92def715b0f1678ab61cb6d36cfef3b2fd286b673c9bd9f3ea3b20f989b7b7eb78e53ee097bbf3343efd1b641c39e0d861a61450af6cf43d0 SHA512 856811d0199374bb4a01e839d83f19143079007e0da1409a91b94571a817bc38f5a5f0a1a91dfe7210f6a0cdb65c52c440e307197a02b28fc4f949e54b55e77f +DIST firefox-89.0-cs.xpi 572805 BLAKE2B 06076a677b6aa7b238a9dccb269324682ba2ac42bb099456b6697a8abf9a92fa418d7ea39191fc350d60549babc5b0fbcc6b31bbdef4301460d9a2824b77829f SHA512 f63932b8f0eac207c24f3d7cbfb94a7fdb882767897903ce9e65adb5edeb4af875ace61ea933afb88d9977cd8aafcc1ba3eb50c61d2a7c2d785e1e6aa7d64d84 +DIST firefox-89.0-cy.xpi 551348 BLAKE2B 5aa137e9b64c34b578a85f855fbd4617789e78a10c281ef2dcb8a82a12d884d85b2f5500ba0b938a610a38ba014ebd786e163378e6f78bec461a497e58664c1f SHA512 e17f524f0540f34353c59b802c4aa1458e89f75c92e4625d668b5923b2fd09f166660746a4d7c5fcfd1bb2ab002384a07a2d07d05edd133acf51483f5ed955f0 +DIST firefox-89.0-da.xpi 543288 BLAKE2B 98d6e15a624211ac65e0209c35c7306aa41f142e7fb8472afdfda5f60b92a8f19c2e9d14982e48c60d57c24f2c56a4f7a7137491fc300cad04d4c351690a6c70 SHA512 cd72e36f9747ce3ccdc29459c312abf8bbe67bd5e1ee0368f5c7a428c4a6b3dfa073cfbc892e38d225755898d259d0069bfa4ce882ccb5a9aea1dd6574c2e716 +DIST firefox-89.0-de.xpi 563045 BLAKE2B 3df897a9abfa893d5432576ed260bf04df212878c38f8a9f954b8f1e62694f964127345a514764f18669714921b3276b3f18860dc8d9473a4d7485644d61986f SHA512 e204d0ebb7058801249b5889945f67df60013fd3f56cf57e9d23bac37238aa4fad1b9eaaea863004dbcaabb890e0c30a80e55f69315d75bc569c2ea60ccd6bbd +DIST firefox-89.0-dsb.xpi 575725 BLAKE2B dbd465778d01e8702f0f78b1be2b446b03dab8f604c18defaaca1b2883dbabc87bef4d0bf690fea1b14b045464dcea43f04fb64a090c0320cbb028e6f5fc41f7 SHA512 ad6d681a51a153788a86dd72455e7e1148c6887cf56975f664f9da3c32514491c8f8b4f848e05210377c5cdba4bc327fe42071956bbf9d8571f433f8fdf695ac +DIST firefox-89.0-el.xpi 649167 BLAKE2B 755817f5bd3d5d2e92c0d2587f850f16ec6126af21b0810e0851a0f83820d8342dac97cff1c9a5b04a60cde53495fcc25556eba329a4ddb0d5100ec13a69dd8a SHA512 906592944bc2a2fdc060d125030b0ee0d0976995c7e3685a7cd50559a5d03dc2dde2ceadfda041a1631a688da105ae24708b8b7e196c494fa7309a3a91366a14 +DIST firefox-89.0-en-CA.xpi 517781 BLAKE2B 210f4b1ac73e4909f862e7f6c86938a07648e52474a0a146f7702b8a15eed4818a1aa0019ca115d7b8dc7465a72ca813cb58f4b1292df44a848cd0c99ffdfdf9 SHA512 72d130ad92ded6527280bc4b28041ca9deb8da18f04843853bf463d7b9bcb01dd0e76dfd5cb0a67cb356743264bdf921c5961d2891bb751247fb31b7816efbc2 +DIST firefox-89.0-en-GB.xpi 518774 BLAKE2B 2b8e0d0ab7f0c76299fbf5092b07f6a10ba89332361847cc7f3f526ae7cb12ea503d7f0793c4081066d1c56aa56c1e92431ecd21e819344e2e3289dc6949b29f SHA512 922cf46a7d9409a9ba3c7844f8617ace13383279dee1a6a6a78e7254e44edacb9958d486a6b597bb6dc9fa765a22e5fd3d20cb391ea94bde0e744efab72bb2cb +DIST firefox-89.0-eo.xpi 543566 BLAKE2B 5e67e2055d277bd7b97f252ff05d223442349a4ad62d1a005cce1ef268e8a06c7c775948874938d8c134da2a7101ca288130c431d3fbd3d0af6d94c867c305b5 SHA512 a985a486e1f06da900deea570227159736f4af6df0262c5e4ff989641ccbd616e3f4d29b45ffdac39770ecc33556564e6833857a529a6706acc76372f0074c36 +DIST firefox-89.0-es-AR.xpi 556496 BLAKE2B d8b19b5c37ec4a268a946e0866eda4a2c59c30384bcdee6bc326012d42d68472cfcd242ff75a8fec11adb963a308a4a8c3cc7296c82fefc6d6c50ad8fdf0b828 SHA512 27f02c43e047a1e29eef36f3c34c2663b18842528d9a842e3c38f0a3c390f3cf40f8d7e3e1d686293795a9e4b61adf86ba9fff550ff4ec9b65f7fc2262bca759 +DIST firefox-89.0-es-CL.xpi 554620 BLAKE2B 2c839e0927d6e7b9f9a05cf72cdd592f083e8ece009b0fb8f94bcd02992a96a317ff8a437b0f5785b44055e0b17485cc1d16ba083c61d3f6510c11791bc921e7 SHA512 117efeea143c49c6fc0991aec1b1f3b015a8fcb146b1644c082f39c8c06d427e57a7fbb3642f6f5309ffe7c651810e71f53d0000d07ee9dea70f31387c6b76cd +DIST firefox-89.0-es-ES.xpi 545105 BLAKE2B b9efd0008e8f54587ab5ecb30cf5bacb2440618b8cc7da9daf2d9f4c6070b9bd8aadb1408cf2f933f1716aa403ab49daa9304aff060b36c0e294639265948379 SHA512 59d231f33eba50b9d3031ced9949929b06a6af929471c4e06ecdd933c9726fa5fdb84ac333438ebfe421ee718fee4908f355600031c736dff0818843f21b144a +DIST firefox-89.0-es-MX.xpi 548396 BLAKE2B 0808ea1a2f2ee5a51966d6f3f36c73a8d9d4f4e92604902f608d256cc48e41d9e984bac919266066a8c6cbfcf83136acfb29356c3668a08843e03a4c917d128d SHA512 39074ae46cdaed70682de46ef59a2c60e4cb6670436d3f3dcc76df825c392fbe17c67a1b00b9cf75ea740aa95c13856c07a63f1ba3532c19d354bfb94088e2e9 +DIST firefox-89.0-et.xpi 496460 BLAKE2B 6b50823eeec0e44e0a0eafaf90b4663e0e17096195260497653547ea635eac67701eb256ae9e3f6a3ae6c3bde4b814c286b852930e98457cf35f603bce3d1762 SHA512 bfdd02e2d41b00000e84f92977958f87abac95375abc54866861ade98c78ca35749d3b9edd32c1384a5c4da33b0939ed89464214b160c277956d87bd6f98c7b7 +DIST firefox-89.0-eu.xpi 544153 BLAKE2B abdab27c63fe941d36ab271fee480d2b17567e2ddfe0b8cdebbf83692a68715a1c52917e55d4ac14f711e764c8dcda2e12fcfed49623cbca3e0f117b3b7db2c4 SHA512 3b466fc839801a6ea0403799c83b14b143cd5c06bd9a0fce7a9a6831624580f7de91ff306283449c53d6a195108ba2fea501f5a9394adaaeec4375b111e7f7ac +DIST firefox-89.0-fa.xpi 561129 BLAKE2B d9b44f6c29a0a4a3a6cafda47716de9d0bff86f4e3c139f0e86b02e0db6f0519b289770872de6eaca3ab8b9564768bd0526c95b187c511553505f326380b1c83 SHA512 542f1ff846ff47dcbabc19479cbbf347d674580e5d081f21e0108c964ee00455cd1214fa45f847906c4084c24584c69e8e824655a8441198996390bacbfebd58 +DIST firefox-89.0-ff.xpi 487850 BLAKE2B 488c6d93dfe2422576d96f8454a0982108227511bff1977e7eab17a0303d4f631f4e3992dc732b3112094fc9e19b84592fb41654f5ae82d33e1c1c5a809387a0 SHA512 980aaa3ed22acfe77f12b31762f101c41a46ee0e59dc41cd9d7a7873d19f42843db5ee151a3a9f73d8c11b6584ce1dd932ecad3c15d991c4b55bdf8d13d45522 +DIST firefox-89.0-fi.xpi 542136 BLAKE2B 37a07892111d05ed46fe567010aff69c23f437137c8269a743dd1138dc7658bdcabf96fa17bb5efa043bca753d517728627b43276c49aa874c911f5a4c88f118 SHA512 5ff3e8394a032f4fc35507a823be3121cf9504a5c8ce968c6580c594f1789adc5ddaec1abd2683dea1f4e09d90e7ea2de989b8dd60e372fbcbd838e0060a750b +DIST firefox-89.0-fr.xpi 566466 BLAKE2B 69394e105115e98e0ac64bd7b9aea3c5f8c22cd8d19187ed9a3f5e763afc2b7c468d1070280a16c1507f343cebf5e05e723251a041702c6dc3c84fedec89f584 SHA512 fcb19c37ebff5d0d8124dcc7b05a5f8c9ca0e39ab6ade05b6a8879461d42f050227dc974e259606dd1d8ee4789e6081f6d647dca3ae58a326cd980fa01daedb6 +DIST firefox-89.0-fy-NL.xpi 552202 BLAKE2B bb3a9833acdc53f2442349d3bccec48dda81c642be9b21c4e0c901c53a6b74bb77d7676a07e9d91516c72b91f436cd59d2c528ad126490b8c9bee72c0f1cdc51 SHA512 eeefe846a98e844dff152d34fc609b98d10c8a0fa9b4d936ee80f4904191ed66e1d7e752dbee6ee5e8ddb94aaf74db82eec73582a8fa56a16b2798c38b14ec34 +DIST firefox-89.0-ga-IE.xpi 472857 BLAKE2B e3a2392fbe81bd61a19ad2a922137c51981e450b85d72a9507ad7ed1a53d1c0986f12cfdc02b8af9d5d1618527bcb358b5afd4500b0efe6486a06ea5706803bc SHA512 d9df4c6a41c25f51a88bede7e2d771ca54a31d56692b6843b78aff55bfc866ad46f39545e1beea6d46d65381bfc25fad56510b2dc4e7e8b9659262caa6f30ce7 +DIST firefox-89.0-gd.xpi 502210 BLAKE2B 6b46c88f465047cc111733276c56ae06ba83dda907bd93f7ebc0b9478ecc09ff5885147e3d63a9f830e9f189ca1ea65f832d8c504d08fcb8e90d21e2cd8b3048 SHA512 26ae967973031bf0aa9f9dc90d3d568af23d9e8fefbf4100980c8583f9c9ce54505df042b8c23c6de41b37ee865f39b7139e2ce19f661ba6602d7848566c8e9e +DIST firefox-89.0-gl.xpi 551076 BLAKE2B db921351b3edf459a3ea92b94b25f74dc94f4b905db617e76a4ffcbb634f74427e33720ea549b0cbd40c89b34efba26685c7c91c502d4cd8d916320f95b68e30 SHA512 951344d72c127f6f2c38659b459e14e3ddbb392e6e6893871e186b9cf319675261d65c7aae7603da6dcbdd7caacf4303f2cc6c8ac3fb62cb93d21574e405dd98 +DIST firefox-89.0-gn.xpi 567486 BLAKE2B 1119215b99e6f8abf5d498ffee4ba48ff22dae13a3a2ceecccffa23bd5b075ad2ee4ced43f835f1ecdee2a1858c6c3cee6fd6ce2c0f7dd8621564c243a257ffc SHA512 b7a3a07ed1669a47bc8f1f449122b6c5c438c70d415aed6828853175769ccaae09b6aafc32d5979f378ee0b6ce5f058945b300cf8c67d7b395b6a63174afbd1c +DIST firefox-89.0-gu-IN.xpi 547170 BLAKE2B 10ccf0a24d88c23ed60dcf32b166df7d7f81c56abe1863ed1ad5e17e360cf1bdd8fae4b2c063d798355cb67745f2b26820c070ab85e57b2296b47b1f1466112d SHA512 555c6e5f6bfc1bdf5f79c92aa2e81d682829b1955e8089fbfc6169358172d13372d38291cdc7e1931686ebb193c0396b0a5912a5e19c6dbaf47512c939dc7229 +DIST firefox-89.0-he.xpi 566472 BLAKE2B 103b71e94c9a115e920f4377ee9ce1827deb3b7ae851705a70a4cfa595c3d9a3e89f9879c541ffbc0255b18ba0f068964227ef66d460538a7872f4b6a7ae0d29 SHA512 e7b3bbdc3c36e0e8f1244dec3e33db95f0b35b46f0f9de9da5c6ad68afeac2cfba34861767e1565d50308260ccefdf2cd5a2b7f8109aed9893d594aa334ebfc1 +DIST firefox-89.0-hi-IN.xpi 579120 BLAKE2B 7da8b6ba3e20a26bd9619d955fe1b031962a327ceb6e15fef30d3a9c791d833e3695605a94f81cfbbcae2a20b2edbea804ac74c8c0074da36347ae5583fda078 SHA512 341a132fdc118004af5e9a5c4cf612d1e97d1f998bfb38504b0c9cfee665ad55b428c73e47f8949a15bb158ca30ce0cbcffe5cb72d89620e465a1c0d216c5e40 +DIST firefox-89.0-hr.xpi 547981 BLAKE2B bbfafe8af7161c138b598e4a098470a48dfd097daed74a92e98782585af400cfea905a594dc03e7183d15cd001d1a488ce9647e40b20dca491298c1461ca8622 SHA512 dc9b9eb6e865781a7b8844d59c5420bf2f077dca1a080d74d8020bc0365be38e172414e7d1688035a85822c724377653349ce17e64c2b1e4b0842ea2c1bb3de7 +DIST firefox-89.0-hsb.xpi 571862 BLAKE2B 8aae767f653f1a056d11cfe64135fc7dd1cc4f7b7a7cd0860ab36cb817461e87cedaa7404a14ef2eb04550468c4bc316d9292a922b772948b8c39bd905c68170 SHA512 710c1859cb15fb3c370dc5d063d63508fb16bdfdd274e995e00491ec5d64ff16ff73b91466dc4ef694b9b9170c66fa50125e348c130dd8ecf5b9fcb34ff927d7 +DIST firefox-89.0-hu.xpi 575477 BLAKE2B b67aca1edd96a9a927013aa4c6f6adcbef092d777573e79a07b438a7499a078643f17f933a5675d9091a5a78659d5dbcc7581d51b004e12ed035f28766df726e SHA512 37613893d6ea3162a4ec55b680099051a98125ac5d877268cce6f834e28045eeb09cdaa01d5eb6e208d312ae09b45989c7ccb67e7faf29c498f0f7e94261f069 +DIST firefox-89.0-hy-AM.xpi 599171 BLAKE2B 496177baa604245c5f251777eae2c4246dedcdbdc5fd7e171e65e484543d9eeb3255535ef1892873983c344c54d241fb24007ee348bbc1d7fa1647eb2c3b7c0e SHA512 3e03f45b55cc8dee73c9708a98c72be287dcdde76ecc83439f243a55ae20f9ceffb265dcf9ae6e3cb86fb75cb6300dce2b1624b3be41124999e0e9008dbdc9a9 +DIST firefox-89.0-ia.xpi 541186 BLAKE2B 8c3e84bca2e916eafc9ef4d03d81fcaa8a812f11f02a5b463c3148de91549b44137a0f6af5b988ddff5815b99615cc9dd5260e8527d8e559e3db9e73bb82b472 SHA512 081fedcb3911021d79fa52ad1573bd939f83696de5624930d52944926cb26aa77142349a09baf74f1509d1ebab583572d56dda34e78081d41801086414c39520 +DIST firefox-89.0-id.xpi 537723 BLAKE2B 2b3b3816ed799a1f3aecd29ac2bacf147326fe54a556ea17f7d9e69e7aec2899da27cb83ab2a636e2371ca0d1d64934e26c118ab57ba4f6c8ead1a4283d23c9b SHA512 54979f34425a3ae55407d099fca30e6293a29a82ade6f3ef7b3ca7187f9414c96e1e339861ac5d6224dd8a379a53a4c1ea845356e42d0d22e99d6b0ebd139a03 +DIST firefox-89.0-is.xpi 483449 BLAKE2B a75afd2c51ac04da1d0d6628975b5744c1ddab6a94d32356304945dfab506f5f351f27551bd4171c6a2eabd3f50cc973641efa4e99f4e0176bfe8700547bf857 SHA512 b42de1855aceca779bef460b355d4413ec5677f54e5f037229dfe14c5de56deafd36288a83ec8710ba5247da81aa4bba3ba97c579dc6f83e7d25ef5dd53fec4c +DIST firefox-89.0-it.xpi 469422 BLAKE2B 54638dad88408d0abcabd6b50ecf5a38fd85ed4f916af9d94a5f8e668cd53c4814dcbaba633f850021157856a44395ced3b06a2eee0af9c8d60480dcd83a9c21 SHA512 226edd1bad94e895488a479cd0226909bdb37e73c2de2f78a634ef463fe455f91de39f7332d4a68af9a9a0598e53ded553afa841e4973ba18c26eb2af9468dfa +DIST firefox-89.0-ja.xpi 601275 BLAKE2B 563424d6a28553ed6082b6016a73682ad2691e27f85aa0881fe61b5b03ed6b21e74ba8ffa62825ec66e312a5c1aa1d34a63020aae4f5e253cd764374fec0a5c2 SHA512 fdee8a09d425af6f2c08323cadc51d7d73cc40d49cca075317cec96da46884dba45359192e1a219ff16399196e838a7e0b4bb0739f886c7f9ee7f74cd12c9c27 +DIST firefox-89.0-ka.xpi 603273 BLAKE2B 3c97405156d4bcd1612c2a8fbffa6a26ae6869c57b140a3523ee4c987f28144ae0c0d87fdc7c1731ece65072a2098b82bc6840b9a27b2b69ab030326cc95668b SHA512 dc408827d387bee04f0b49501cbbe54646dd7a9bee4da6034d22370987f384e9bb774a0bc8b5d38e3fe8daf290ee76165d9957daaf363068db21c2e034d48c02 +DIST firefox-89.0-kab.xpi 559616 BLAKE2B 37f1d4dc09a709261bbbe9076f070ecd67441df8f0470b3a907320826d708c1fec33ec7be38d2d33fa4add74123bf06cd4e17a9577afa4a3b2fc6dd20b9e47d5 SHA512 21065337584695324e0658e9ab536dce4f874ba95f7fdf23344045df522cf1d4044f403ddc2e77a482e14a62e87ea8254d1abff83cf125263c27c9ae584406db +DIST firefox-89.0-kk.xpi 618863 BLAKE2B b58201ab0ad7998ca7dd8e0c6133f97b473239c94c47f44216b274fabae7d78994d9701d6a13a22409af26bbcc8f105a28dbb7e7a4197497f5a9a38a8b81d940 SHA512 babfd593996fed02efd165a80d92c61da773d882bb76fe0e0b901784f9900b472812fff47bb2830de2058869c432e6932704ea4197f374de92aabe0f98e4c16f +DIST firefox-89.0-km.xpi 543106 BLAKE2B d6b22c64a503a5b9910d419092234bb0664ed316b2bca79a724683f68956fa9468463758e52a14d9dbe8fcfff32111386927669dbea2f259359cbf629448763e SHA512 568c78ce62b893306c1ed3681612821048c89aa562402e4eea874db11086ffda2ebf5a872b8bb6c753c2a61a5d11769a0b29b66f5420b3e4d53b46bde49a4379 +DIST firefox-89.0-kn.xpi 510229 BLAKE2B 83482843a00dc563e759a1b8769e53471859fa843f69e82a5e43a824c3378535d82d9510dfbd5bdd996a5e40e8f8dc6289891dc614ff2bac400a39dab00a9722 SHA512 43464538a8495a2f3654751b12bd1f5eaab7ffc365f0f61f54315451cd85d3413c4f5497dc0bb65329cc90fa774ef83c45adef195a07020d5e511934cb008cc6 +DIST firefox-89.0-ko.xpi 587144 BLAKE2B a70434b3bf11877c71fabbcf47708c05c38844190b473964c9cf8011cbab8dbc657afb59b5c6807aa2a537dd3748a0d1007ca6b0fdc39efb2eff61c9d01549b5 SHA512 ea401b49588bd7e4b42ba9211d2d2d05adba5b027c559d50426caf72336a96d9cf14f8e3eae01c6322d5696c7cd82c90c237053aba1660710c3bfc4d73b06228 +DIST firefox-89.0-lij.xpi 481899 BLAKE2B a82537d943bd5996884da7205c23e9af89f72bf848810bcc82fb23a18d8fe00f26ffc3baa73320d85350d0a42b49955b307ff0a1f5cb03dabe732dc854118326 SHA512 647c051f6faa92a83e37c480c9939ed94667cbb34e9db7964bf043f8742fdf0cb4e6f4110341da4bb7df0c1355bb32b09cb7dfa97955cfbe30ea1622030c5760 +DIST firefox-89.0-lt.xpi 568939 BLAKE2B 0ecc128f2635249b18f53607b401312e3a9383052f75352599c1ae2de58985bfafd2d56906775e0c079a47c24ed2bbf9efafa4069267214cb47ebdf5b904d55b SHA512 4b627f4e6240821174b990bec50eb3b2286543cc36f6be3202240a60f59eaee44e2b44f0979994de67715070a7c135bbed123cab75beccdd4b43fee0a8dc8cc4 +DIST firefox-89.0-lv.xpi 475440 BLAKE2B c3de085bf316aad37a1b2c9dd22ad49a8a8b32817002b9c9c29838c947d3775985e35a045476a0cc47500927b869f9158f13d716980e7086d8e61563bc4a91a8 SHA512 9459adfe10f203699ef773b2640a92c2510fe0edf348ba2feace9c892c57dbfe747925a9eb4732b00c802ba70e5635590ba15e49ab82eb6ec7973e49b8099b2e +DIST firefox-89.0-mk.xpi 471211 BLAKE2B 7dd9ce39d3a9a211eb614dba6276a8cf091ace29e3823a70a8512a9b196e98f99f1edd246c9a0eb176c64a142a3e9b7a4b96a16107869e1de6862cb14cbb6b86 SHA512 c5b78492baaadc0f64dbe4a1b78a4636c866fa1c5c0b36634f80544c9fbcf2f83198a2dd7fbdf1100cc997ceeb59bf62ce8a88de20c07b96eb95b743157c0120 +DIST firefox-89.0-mr.xpi 547355 BLAKE2B 1d7df95907362ab7e0f3c82d47cf9a474de931cba80dad62a4d6dd555ec38f09e2e6c0ad53156774dc7cce914dbf96ba37654d0581d25e6ae49747915072358e SHA512 525699485c51c85ae92c81e539aba6dc7425687ddbfc53d442c7f43c2dfa214c89ce2e80c9a1ba35b56c5aed49718bce3a687d40b382b29569316a92f441c2a8 +DIST firefox-89.0-ms.xpi 459067 BLAKE2B 0e7f57f65f7f5885cccd38f33de852d00232a3731330a3914802644418460a31bdade5b6c564e9aee153e351e2bad67638784a7733a813fac819352392a88a2c SHA512 101628191ca8cb59025b610210f589656a0f54be54b381fb4b8207a862899522ab6d251cf2f21fdfbf93acb89efd57b3b017df420d1135d431faff74774aeb7d +DIST firefox-89.0-my.xpi 530823 BLAKE2B 2aab1ce79a8926b0faeaf18a3d1093c6fbbefd6796f25f4546b1f3049a59366fb080eb9a9d0f2b4c7a09771bb69bec8830419fa3baf87a57a0247ccb2037285d SHA512 3e9e4d32c62471f084b76bc73fc6b0f6b4bf0373b2009eea6d0a5f6eed0402ba8f890328a9fbba1df25d04321c4e37b1cfc35aab68f2c5fdc1002ba37a37244b +DIST firefox-89.0-nb-NO.xpi 537947 BLAKE2B b881032a2e687de6c909301e078afa776b5fc9e36f5af9898bf70cb94fdc09063f80e110b908d390629df7bc567118d54b31872992a06393c5334e10eefa2e05 SHA512 3b811680d3d18c7ecf1818917938b7b21ee5934bd615bc3e97244e49ef4b176d4cb4a83c38e633c9e9e19acb2e3c1bd768bf6df26467c1bae148f9f3d055d3ae +DIST firefox-89.0-ne-NP.xpi 487881 BLAKE2B f3244fce1c2a7f95f1521f67cee4fdb7501af89424560cc5abbe3bf0c40ffab908737f632a7d76edd5b17a938931ffd9846509429f75a79b9c93999f3ccab9ce SHA512 fa5097259aa30fe280324078fc78d51b5d3a75f8270fa2caaec70f6dfc69276586cc2d44ef2c9b3cd253b87f03e60eac6015ef54cff7e5e49bc5002ebe96f4e4 +DIST firefox-89.0-nl.xpi 546008 BLAKE2B d1d677590a822e8cd1d1c7ec451bb1290f152c0084830f1e645858baec438e86181bb386f7606dab197c997dd5566c8a8e22411cd7fadbd7539fb13d5b016118 SHA512 314789b591c35c4463c1559d98bdf1737527e153e4ffa8ccb968ebeb81aee7818f566c668e43f095f76667962ca346dbf412ec493c457f7fcfcc29b01508f2a1 +DIST firefox-89.0-nn-NO.xpi 540491 BLAKE2B 55e716e2baf59fe65d5812fd57c4ca2acf472a33c5fa2cfa81810ca55d92c2fffed3d08b902f23a77e6b39579efd920b5f57ab164b9dff8f7546d8811a873730 SHA512 7bbf8c48923d577598fa2b94f746f912a123b3ac8413687a34c1a1be7e5a931ebe49b67676dbcc465595a0ef616058f8dd26e21c98cead6390d223f324434d49 +DIST firefox-89.0-oc.xpi 562502 BLAKE2B 6732d9bcda5cfc957f1ac6789d560b45f5c1f93cc8dce6dc742321c101ef9392e4afc880da973d601a2eb6cd1445f5e936c8062c89c4a6a1138e7998e519a950 SHA512 d0226549199784ad1d2858f637cd748aef3286b1bc7cab6996d2dfb27e7f43410147e85f5008adf937168f55419a24802f5c2d84acfd893892993e3e2952f369 +DIST firefox-89.0-pa-IN.xpi 610372 BLAKE2B 1a51a6ae6f8059a2d801b1a3f2a9838f8c2b9c99bf07f2aedb6a0156cc32240eef601226355650c4d0528c070445f0c76577d452b376bcc068becfc0dc9fa68d SHA512 7a88768a7c04aa87d8feb909ef65ef278846647b6a014b2b66b3b333b19797a969804b3d023beacaae52d529856adf89a0ad7ca84823db607019560995128dac +DIST firefox-89.0-pl.xpi 565556 BLAKE2B 9f534e793f252c0b8c4bf4245e0e27512e6cee90af40bb2c73d839b892f131d33f8cecdd32477eec0a8059c59c7e752e9657874aa239f996357488e4745c78d9 SHA512 d43bc7b2c60abe866003914011d8ac2e03e4fbfb332ac92ad6d8327ab69ec5e423accf0cc61d8f1052325929b4583e76a029d8b8cfcbcb8e012f26ad7c84639f +DIST firefox-89.0-pt-BR.xpi 551777 BLAKE2B c110e7173cd8f08a6a80f0f2b7a7b9f62e5d5b7fb4c8ad865a84b552363a7441432ef76746ccbdb1cd09ce778cbb07880d199b47e12e45036d3f27b2956f5908 SHA512 4ffe40da04ecbbbb04541aec49c61de4e6063aed1e72679a40bc3a50dbbaef04c94cb9e97e400044c61c9feebdb1a067582ddaf212af3d207fc77bd443743072 +DIST firefox-89.0-pt-PT.xpi 554258 BLAKE2B 49f46537b3cfc45cd088b5cb84449130a991cbb31cff5af45f41c7cb9cc84dbf115f532a112e9b7ba03f421aea5eb2c6e00958abab50a8e89b9247f7d19ef0ea SHA512 b419a87a2c21e5f976bf3aa74ca7b8acac6aae135c6c2f577de531e45bf26be52e0671c54e6e2460ff17899abeb0d71a7a39037f634043e5824de39a24ccd24b +DIST firefox-89.0-rm.xpi 546488 BLAKE2B 847251192b66885a35010384c03f4ccf63b90ea51292c9802d5b9e3d8fc452361cd57e8018ce62e0b20518d35c47afc47b7fe4cc0585bd90fac47a8fef52471c SHA512 2619e0079e10cab7a718725ed4b3b016f14f78d643b6dce84540ab9679065ea541ab3c2c23f66c9327dfbd355cd4e8c7a127ecfeee85f5bf962474920731d65f +DIST firefox-89.0-ro.xpi 539729 BLAKE2B c3e4246a57b05ae23658d60e56e869dde6733bb1f0af73ceccfc953557d770aed5be01f9e3128c66863faa3aa883db9df9fd1c53060cfce7c5295b3ab93dc569 SHA512 a8a9e48ac09ef84bfdd7645724d01f6e63f022ddee9c0a29f665e09084bf045397ad1de8cf89353bb34f68c0bec92919d3c343892f0223e070640c2baef6f035 +DIST firefox-89.0-ru.xpi 638010 BLAKE2B 80c13a906d27ea5e4047d62acb44ecc10a48f9fd4c46e96a16d2f4510ae1130394a73847251e238cecac2a68d5f2f811a1a4a0ed10da4dead9c24402f293eb9e SHA512 3bad5ac71547379cd88be14e8544865b0ffd7fd2984587da1fd367c28cd354512442e7b5d21fa139b6f549772088e7a7b82bd4366c3722c862ec70f24d8791cc +DIST firefox-89.0-si.xpi 496809 BLAKE2B e905c7eb52359b17c624a2aaa00468a01f2df4ecfcc2410657982d32f41dbd0e7c86f6ef4e6a0ea7982abcdf760c826d1431eb7f2e7e2a1fa6009017905ebf51 SHA512 97dc99fedb9d7d651c9e89ec1bec43728fc3c42271962f7091304d46d038f554b3b4997ca8b861064b1bd01bf62c95a4b75c28f2b0642e17b492214adcfd3135 +DIST firefox-89.0-sk.xpi 575285 BLAKE2B 25bc0b37265067ec4f38c4556b27f292f98273112737e019f9eb3d657f338196c618a0206db2ce05749ea81c14541058f1ac859352b29b77ec7647a8e7f71ab8 SHA512 56ceeabb43fcac2c6b888e0f6b1433ec508918127271cc52b68aec040be119f05ab603be449c1943bb40e47acf0878bcbc1b663a416ffe2e6469236a00efd940 +DIST firefox-89.0-sl.xpi 545282 BLAKE2B 88be79bf6d1bdbcfdccfb0d50ea1b9c3aa03d350ed43b833e02ba8710b76eead3deaad9b6cb822fa01c1a29cdaad97114cb5ddc0d2f466c8f021f1dadb1e3a4e SHA512 f5676e2024207237bdaff6b62469c389e22e09570d8dbbbb71e7afe8329600684d3a0dbd2d22823051784f62596517554463d78be70f61113049ffee45025c43 +DIST firefox-89.0-son.xpi 428542 BLAKE2B 33c6803c97bce89b2ef4ee9376bea7c0772b99393833ef82a7af57bb2b5d3c768ac4b1c40494a785cd138fc2b33c8db7046a4a877ad466a77fadb3c56db6166b SHA512 abbc213a378b680b41d7f7a935d095a7d28e09055fc9bf59c755e655f858173ebc151721f6af37870e282f1b0c7c742b7259663aa2badba30bebf437b044457a +DIST firefox-89.0-sq.xpi 565304 BLAKE2B 67aa8064682e40c4e99fef3ee938b19de2995c87e1628c8d4d3a2dfb5e94208d8d0b4319d6035d028b87ae1fc6018e2888e1e1f730e88e2d18596b9fcfc7789d SHA512 05d275c69947fff92a3176b3e88f98466c8d5324755f570d7343c17a65f532abdb8014a54f6d065b98b620dae4bedcb4bfd5d3e49f6b9f0b5b2ccd590164e482 +DIST firefox-89.0-sr.xpi 597862 BLAKE2B d96bd51525d754f17221a3aa94e7da9430fb20829c72037b1f5d122a4a00202a91f5a82f49963abbeae94b56f88f7fe78b9cd696086f9a3fe94cc8df593e2647 SHA512 57e7d3448fc2959a557679f551f57b6512727934518e0d54682a8dbec6b6b74a24246bfc91a67d2e498a8122abf5cbabbc0f666e8c4a4c6aaf17277ea8769ccb +DIST firefox-89.0-sv-SE.xpi 549181 BLAKE2B 96153e3d253401d1f6c8ef39c941a1cf43e183fd0417cf0b37b44eb7e7e6aecd400f9cb0344ef2c7a2ae8d4d8d87740317348f787b498bf56ba5c6891ab4274d SHA512 1cd09e531388618bfa9fe93b85eec4cbd798226901b4c3e43f1c21fd3f7539f8a9c4d1909fff8d950ffda11ed4104eeb6700f8fadfb8a42a768a43f64d28ae50 +DIST firefox-89.0-ta.xpi 526049 BLAKE2B e9eab0d2709e7fbef61ff9c124a603c10a1dfa79e297be84a8cde409f5933d6024bd87295f8ad596949de2804eddf09908533dc25f9b83e001dd41cdd093b1a2 SHA512 6e05c53571f83819947943863eb4dbd6d1f32699888e64394dd3ee7bf8d26045a88812e7dace8c41f4e27576dbd211acaffe41d92c277ade6788a27ec7574ad1 +DIST firefox-89.0-te.xpi 568332 BLAKE2B 4d013e3f6513b741bc7304516b04ea1b9e3df4b48a2c16fec6c43843f6d9f2da34dc70f3d950dd45aa5d22bec6192d8bc11a9e4df2d24b3bc5b6de10b00113e7 SHA512 0437c18f25399c9ba58b6d9defebb4bc3807576cba49959a758c82e228bfcccd94939553480cfaeb468f3d37955600356dd8cc1dd34a2fa10df9a36adbf772e5 +DIST firefox-89.0-th.xpi 616899 BLAKE2B f5c19a77fb6c9ef34f441ee25cecd09e3bad498feebde34ba25684b04b9a7f038ea31e6705cfb25264db6a3f849e2cb06f4979903149444d90eb1f5364950ab0 SHA512 d7aae1798c50ed9e7e6ec562a156dd5203c2d432d32025bb32e0f96372b29e556bf49c9522990923568d3a15c87d1b651e26d156d6037c383c70d1504208ed24 +DIST firefox-89.0-tl.xpi 527819 BLAKE2B 5eec252b959e390cc80456c7bd60a440978d262b59eeda89f5cda8c464896a72e74ff0024b36fbc67ade5f035d1af5af74da8989f4c636bf9edc471beb85d6c1 SHA512 14aedc8a4060986d2463804082077c6377e59d443b431dc92ad151289ac20582a53b9b823544f8c0efa26aade34d8c18ca61db862e1bbae202703f8e085da00c +DIST firefox-89.0-tr.xpi 561422 BLAKE2B cb630d02e498e02bb226dffc7a6a7e34a7bf72791554b631e3c4dce25b4c03d4e84c47763e0eee6c82204d41c3ffdc5ee0c23b7975b3ea47d08a241876901222 SHA512 dfb1a0b2038dfd503e06b35638aa016ead6d488130367cd28000a5071bf405087f4bb8a39d3d0350137caa1854259eb416c3ce8f97e759845e09bb6fe4bd9aa7 +DIST firefox-89.0-trs.xpi 506426 BLAKE2B 8df9462ab766e41debe92911d0294c2123d14c36a174c497540c54387075b57a207c394288cf2c3d08891ce73c6659b36d148c5803541ee01044fd432c8ef978 SHA512 bc096c30117afa919d44b30db6b312437cc6cf1417ecbffed760153ba2341d3efa6c3a11e26ba88052a4d960e4a8cebef8b276bf31dc6683704c9dad07bb63b1 +DIST firefox-89.0-uk.xpi 631757 BLAKE2B bf77e6433fb141adf4a1bdd91070257c2c816b25efdbabf2536f3b53e284011813ba5089310000df6c0db01a5e98c6ea3d7cb3fb0c483a602492e770a45e1097 SHA512 adf417c6dbf8d125ee55df0eddf2fe2ff719be96ce53b18e3b1928bb0f223a6d86756347a0d8a33fd4592a2c419fb52b8410ee5e396001b70b2edbb945a606d0 +DIST firefox-89.0-ur.xpi 568635 BLAKE2B 3a2cd526fcb97aa36c5ac37df7ce6ff7e3d11e47e04da60ad968370e053b2597474b957cb8043a674a61d949c8bf9c51aab86ba3e094e7bef18204500f405247 SHA512 3d9948bfceed9e1551d3ea45068cd13318a7ff3de9383a040df5d7d062540a7fdb0b3e336a9f5aa454b18ea23454e25d97e80f42471485a2662dba11496a2a4c +DIST firefox-89.0-uz.xpi 482812 BLAKE2B 80fdfa568013e9e036e3215f1c8ed1079f53ff9d98882cce41eab27b2f2e282e943a217df4bb0a4b697aa74866eaf9190da57fb51c5a3db822c68eea0178cab8 SHA512 2656f1bda76a75e4bf54a45dd2f55672e6497666254593f7a9fe07ffb1e24d3a62872a718affa04fa9ecf62dfcda6d93c401b428123373a5e35ecd3dc8a532b8 +DIST firefox-89.0-vi.xpi 583128 BLAKE2B b92515dc39697d3d3519de3767f60ac955334c10ecc4a56e88be8664ef5d0bbd59f22f5dfe6acd906c389b217b9645f5f70e1cde4ca06e1612e95d57fcd23092 SHA512 d0f59864e9c12d88e084c40ea508314c86aa850b823dceac4de694b92f399ea076ff7edcb01ae5e8641f0ed527b2ca435317b73acc4d2e78f9bb692dac2ec4d0 +DIST firefox-89.0-xh.xpi 430715 BLAKE2B 9fa6c688b9f4eaff2b128b58910cede20b4a83476d283d27326be66eeb137d2c571a3ac02472de7d54075a6886c064017ab95615e706b770cc9ba320912c4846 SHA512 77a58649b7bde95fc52472ff1e3a80bf127d18200231c68c992be2e2dde8dc093c1f5ff0d06044f55e6a62da68ff29bf14e74eea7bc79309a9b67db3c9d8b1f3 +DIST firefox-89.0-zh-CN.xpi 584729 BLAKE2B 14b90888a13e25810bfc47374941fc1ada1b39e75e98e00e71d505c91e2e41b463f5b83eee73d69fcd782a7c258215daa56977717eb0d0bb9bd93ef7baf426a1 SHA512 71b1c4ff073ed3f5417abd8793b764368817b9415966fcbd85b1c43be9e242fe03472a59e7f5a2a8631840d806932e272326bba79f4a54c1e69c4d582ab6295c +DIST firefox-89.0-zh-TW.xpi 585191 BLAKE2B 61325e7e8d70b5c8337084e4a950275566703909e3712bd53dd50345f1ad956563aa84db7aab0430211d070bdfffb781d9218ae59c8c9ace96b51ff1b6eedc04 SHA512 b38831845954791b1f60421a97356e31f7479f1d803e50946fcc86c925c1c25ad09db557a3936de1b94c736a0753b3b78227e6044fb7574c7ee7f0184e1fb512 +DIST firefox-89.0.source.tar.xz 371153536 BLAKE2B da5d1347149664c2da3315f9ede38c576d64a532daf10a46dfd2f7cb226110aaec84ce9285e50c151c8665fe2bf3df1d8de8e744b0b8ccfb41103920c10a6b3e SHA512 5089720feda15d054d0aa4c3bdeb84760314dadd6381d7360e688d8e396154868220c6315add650d8d2a42652cb8a9bfeb833885812ef0bd70a74ee58ad18aa3 diff --git a/www-client/librewolf/librewolf-88.0.1.ebuild b/www-client/librewolf/librewolf-88.0.1.ebuild index dab840c55107..1155b956b09f 100644 --- a/www-client/librewolf/librewolf-88.0.1.ebuild +++ b/www-client/librewolf/librewolf-88.0.1.ebuild @@ -14,6 +14,10 @@ WANT_AUTOCONF="2.1" VIRTUALX_REQUIRED="pgo" +# Librewolf version (please rev-bump if changed) +# Used when cloning patches repository. +LIBREWOLF_PV="${PV}-1" + MOZ_ESR= MOZ_PV=${PV} diff --git a/www-client/librewolf/librewolf-89.0.ebuild b/www-client/librewolf/librewolf-89.0.ebuild new file mode 100644 index 000000000000..6a2eba24162a --- /dev/null +++ b/www-client/librewolf/librewolf-89.0.ebuild @@ -0,0 +1,1149 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +FIREFOX_PATCHSET="firefox-89-patches-02.tar.xz" + +LLVM_MAX_SLOT=12 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +PYTHON_REQ_USE="ncurses,sqlite,ssl" + +WANT_AUTOCONF="2.1" + +VIRTUALX_REQUIRED="pgo" + +# Librewolf version (please rev-bump if changed) +# Used when cloning patches repository. +LIBREWOLF_PV="${PV}-1" + +MOZ_ESR= + +MOZ_PV=${PV} +MOZ_PV_SUFFIX= +if [[ ${PV} =~ (_(alpha|beta|rc).*)$ ]] ; then + MOZ_PV_SUFFIX=${BASH_REMATCH[1]} + + # Convert the ebuild version to the upstream Mozilla version + MOZ_PV="${MOZ_PV/_alpha/a}" # Handle alpha for SRC_URI + MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI + MOZ_PV="${MOZ_PV%%_rc*}" # Handle rc for SRC_URI +fi + +if [[ -n ${MOZ_ESR} ]] ; then + # ESR releases have slightly different version numbers + MOZ_PV="${MOZ_PV}esr" +fi + +MOZ_PN="firefox" +MOZ_P="${MOZ_PN}-${MOZ_PV}" +MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" +MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" + +inherit autotools check-reqs desktop flag-o-matic gnome2-utils llvm \ + multiprocessing pax-utils python-any-r1 toolchain-funcs \ + virtualx xdg librewolf-r1 + +MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" + +if [[ ${PV} == *_rc* ]] ; then + MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/candidates/${MOZ_PV}-candidates/build${PV##*_rc}" +fi + +PATCH_URIS=( + https://dev.gentoo.org/~{axs,polynomial-c,whissi}/mozilla/patchsets/${FIREFOX_PATCHSET} +) + +SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz + ${PATCH_URIS[@]}" + +DESCRIPTION="LibreWolf Web Browser" +HOMEPAGE="https://librewolf-community.gitlab.io/" + +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +SLOT="0/$(ver_cut 1)" +LICENSE="MPL-2.0 GPL-2 LGPL-2.1" +IUSE="+clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate + hardened hwaccel jack lto +openh264 pgo pulseaudio screencast sndio selinux + +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent + +system-libvpx +system-webp wayland wifi" + +REQUIRED_USE="debug? ( !system-av1 ) + screencast? ( wayland )" + +BDEPEND="${PYTHON_DEPS} + app-arch/unzip + app-arch/zip + >=dev-util/cbindgen-0.19.0 + >=net-libs/nodejs-10.23.1 + virtual/pkgconfig + >=virtual/rust-1.47.0 + || ( + ( + sys-devel/clang:12 + sys-devel/llvm:12 + clang? ( + =sys-devel/lld-12* + pgo? ( =sys-libs/compiler-rt-sanitizers-12*[profile] ) + ) + ) + ( + sys-devel/clang:11 + sys-devel/llvm:11 + clang? ( + =sys-devel/lld-11* + pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) + ) + ) + ( + sys-devel/clang:10 + sys-devel/llvm:10 + clang? ( + =sys-devel/lld-10* + pgo? ( =sys-libs/compiler-rt-sanitizers-10*[profile] ) + ) + ) + ) + amd64? ( >=dev-lang/nasm-2.13 ) + x86? ( >=dev-lang/nasm-2.13 )" + +CDEPEND=" + >=dev-libs/nss-3.64 + >=dev-libs/nspr-4.29 + dev-libs/atk + dev-libs/expat + >=x11-libs/cairo-1.10[X] + >=x11-libs/gtk+-2.18:2 + >=x11-libs/gtk+-3.4.0:3[X] + x11-libs/gdk-pixbuf + >=x11-libs/pango-1.22.0 + >=media-libs/libpng-1.6.35:0=[apng] + >=media-libs/mesa-10.2:* + media-libs/fontconfig + >=media-libs/freetype-2.4.10 + kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) + virtual/freedesktop-icon-theme + >=x11-libs/pixman-0.19.2 + >=dev-libs/glib-2.26:2 + >=sys-libs/zlib-1.2.3 + >=dev-libs/libffi-3.0.10:= + media-video/ffmpeg + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXt + dbus? ( + sys-apps/dbus + dev-libs/dbus-glib + ) + screencast? ( media-video/pipewire:0/0.3 ) + system-av1? ( + >=media-libs/dav1d-0.8.1:= + >=media-libs/libaom-1.0.0:= + ) + system-harfbuzz? ( + >=media-libs/harfbuzz-2.7.4:0= + >=media-gfx/graphite2-1.3.13 + ) + system-icu? ( >=dev-libs/icu-67.1:= ) + system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) + system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) + system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) + system-webp? ( >=media-libs/libwebp-1.1.0:0= ) + wifi? ( + kernel_linux? ( + sys-apps/dbus + dev-libs/dbus-glib + net-misc/networkmanager + ) + ) + jack? ( virtual/jack ) + selinux? ( sec-policy/selinux-mozilla ) + sndio? ( media-sound/sndio )" + +RDEPEND="${CDEPEND} + jack? ( virtual/jack ) + openh264? ( media-libs/openh264:*[plugin] ) + pulseaudio? ( + || ( + media-sound/pulseaudio + >=media-sound/apulse-0.1.12-r4 + ) + ) + selinux? ( sec-policy/selinux-mozilla )" + +DEPEND="${CDEPEND} + pulseaudio? ( + || ( + media-sound/pulseaudio + >=media-sound/apulse-0.1.12-r4[sdk] + ) + ) + wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) + amd64? ( virtual/opengl ) + x86? ( virtual/opengl )" + +S="${WORKDIR}/firefox-${PV%_*}" + +# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or +# overridden in the enviromnent (advanced hackers only) +if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then + MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) +fi + +llvm_check_deps() { + if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then + ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + + if use clang ; then + if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then + ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + + if use pgo ; then + if ! has_version -b "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}*" ; then + ewarn "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + fi + fi + + einfo "Using LLVM slot ${LLVM_SLOT} to build" >&2 +} + +MOZ_LANGS=( + ach af an ar ast az be bg bn br bs ca-valencia ca cak cs cy + da de dsb el en-CA en-GB en-US eo es-AR es-CL es-ES es-MX et eu + fa ff fi fr fy-NL ga-IE gd gl gn gu-IN he hi-IN hr hsb hu hy-AM + ia id is it ja ka kab kk km kn ko lij lt lv mk mr ms my + nb-NO ne-NP nl nn-NO oc pa-IN pl pt-BR pt-PT rm ro ru + si sk sl son sq sr sv-SE ta te th tl tr trs uk ur uz vi + xh zh-CN zh-TW +) + +mozilla_set_globals() { + # https://bugs.gentoo.org/587334 + local MOZ_TOO_REGIONALIZED_FOR_L10N=( + fy-NL ga-IE gu-IN hi-IN hy-AM nb-NO ne-NP nn-NO pa-IN sv-SE + ) + + local lang xflag + for lang in "${MOZ_LANGS[@]}" ; do + # en and en_US are handled internally + if [[ ${lang} == en ]] || [[ ${lang} == en-US ]] ; then + continue + fi + + # strip region subtag if $lang is in the list + if has ${lang} "${MOZ_TOO_REGIONALIZED_FOR_L10N[@]}" ; then + xflag=${lang%%-*} + else + xflag=${lang} + fi + + SRC_URI+=" l10n_${xflag/[_@]/-}? (" + SRC_URI+=" ${MOZ_SRC_BASE_URI}/linux-x86_64/xpi/${lang}.xpi -> ${MOZ_P_DISTFILES}-${lang}.xpi" + SRC_URI+=" )" + IUSE+=" l10n_${xflag/[_@]/-}" + done +} +mozilla_set_globals + +moz_clear_vendor_checksums() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -ne 1 ]] ; then + die "${FUNCNAME} requires exact one argument" + fi + + einfo "Clearing cargo checksums for ${1} ..." + + sed -i \ + -e 's/\("files":{\)[^}]*/\1/' \ + "${S}"/third_party/rust/${1}/.cargo-checksum.json \ + || die +} + +moz_install_xpi() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local DESTDIR=${1} + shift + + insinto "${DESTDIR}" + + local emid xpi_file xpi_tmp_dir + for xpi_file in "${@}" ; do + emid= + xpi_tmp_dir=$(mktemp -d --tmpdir="${T}") + + # Unpack XPI + unzip -qq "${xpi_file}" -d "${xpi_tmp_dir}" || die + + # Determine extension ID + if [[ -f "${xpi_tmp_dir}/install.rdf" ]] ; then + emid=$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' "${xpi_tmp_dir}/install.rdf") + [[ -z "${emid}" ]] && die "failed to determine extension id from install.rdf" + elif [[ -f "${xpi_tmp_dir}/manifest.json" ]] ; then + emid=$(sed -n -e 's/.*"id": "\([^"]*\)".*/\1/p' "${xpi_tmp_dir}/manifest.json") + [[ -z "${emid}" ]] && die "failed to determine extension id from manifest.json" + else + die "failed to determine extension id" + fi + + einfo "Installing ${emid}.xpi into ${ED}${DESTDIR} ..." + newins "${xpi_file}" "${emid}.xpi" + done +} + +mozconfig_add_options_ac() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local reason=${1} + shift + + local option + for option in ${@} ; do + echo "ac_add_options ${option} # ${reason}" >>${MOZCONFIG} + done +} + +mozconfig_add_options_mk() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local reason=${1} + shift + + local option + for option in ${@} ; do + echo "mk_add_options ${option} # ${reason}" >>${MOZCONFIG} + done +} + +mozconfig_use_enable() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 1 ]] ; then + die "${FUNCNAME} requires at least one arguments" + fi + + local flag=$(use_enable "${@}") + mozconfig_add_options_ac "$(use ${1} && echo +${1} || echo -${1})" "${flag}" +} + +mozconfig_use_with() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 1 ]] ; then + die "${FUNCNAME} requires at least one arguments" + fi + + local flag=$(use_with "${@}") + mozconfig_add_options_ac "$(use ${1} && echo +${1} || echo -${1})" "${flag}" +} + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]] ; then + if use pgo ; then + if ! has usersandbox $FEATURES ; then + die "You must enable usersandbox as X server can not run as root!" + fi + fi + + # Ensure we have enough disk space to compile + if use pgo || use lto || use debug ; then + CHECKREQS_DISK_BUILD="13500M" + else + CHECKREQS_DISK_BUILD="6400M" + fi + + check-reqs_pkg_pretend + fi +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]] ; then + if use pgo ; then + if ! has userpriv ${FEATURES} ; then + eerror "Building ${PN} with USE=pgo and FEATURES=-userpriv is not supported!" + fi + fi + + # Ensure we have enough disk space to compile + if use pgo || use lto || use debug ; then + CHECKREQS_DISK_BUILD="13500M" + else + CHECKREQS_DISK_BUILD="6400M" + fi + + check-reqs_pkg_setup + + llvm_pkg_setup + + if use clang && use lto ; then + local version_lld=$(ld.lld --version 2>/dev/null | awk '{ print $2 }') + [[ -n ${version_lld} ]] && version_lld=$(ver_cut 1 "${version_lld}") + [[ -z ${version_lld} ]] && die "Failed to read ld.lld version!" + + # temp fix for https://bugs.gentoo.org/768543 + # we can assume that rust 1.49.0 always uses llvm 11 + local version_rust=$(rustc -Vv 2>/dev/null | grep -F -- 'release:' | awk '{ print $2 }') + [[ -n ${version_rust} ]] && version_rust=$(ver_cut 1-2 "${version_rust}") + [[ -z ${version_rust} ]] && die "Failed to read version from rustc!" + + if ver_test "${version_rust}" -eq "1.49" ; then + local version_llvm_rust="11" + else + local version_llvm_rust=$(rustc -Vv 2>/dev/null | grep -F -- 'LLVM version:' | awk '{ print $3 }') + [[ -n ${version_llvm_rust} ]] && version_llvm_rust=$(ver_cut 1 "${version_llvm_rust}") + [[ -z ${version_llvm_rust} ]] && die "Failed to read used LLVM version from rustc!" + fi + + if ver_test "${version_lld}" -ne "${version_llvm_rust}" ; then + eerror "Rust is using LLVM version ${version_llvm_rust} but ld.lld version belongs to LLVM version ${version_lld}." + eerror "You will be unable to link ${CATEGORY}/${PN}. To proceed you have the following options:" + eerror " - Manually switch rust version using 'eselect rust' to match used LLVM version" + eerror " - Switch to dev-lang/rust[system-llvm] which will guarantee matching version" + eerror " - Build ${CATEGORY}/${PN} without USE=lto" + die "LLVM version used by Rust (${version_llvm_rust}) does not match with ld.lld version (${version_lld})!" + fi + fi + + if ! use clang && [[ $(gcc-major-version) -eq 11 ]] \ + && ! has_version -b ">sys-devel/gcc-11.1.0:11" ; then + # bug 792705 + eerror "Using GCC 11 to compile firefox is currently known to be broken (see bug #792705)." + die "Set USE=clang or select <gcc-11 to build ${CATEGORY}/${P}." + fi + + python-any-r1_pkg_setup + + # Avoid PGO profiling problems due to enviroment leakage + # These should *always* be cleaned up anyway + unset \ + DBUS_SESSION_BUS_ADDRESS \ + DISPLAY \ + ORBIT_SOCKETDIR \ + SESSION_MANAGER \ + XAUTHORITY \ + XDG_CACHE_HOME \ + XDG_SESSION_COOKIE + + # Build system is using /proc/self/oom_score_adj, bug #604394 + addpredict /proc/self/oom_score_adj + + if ! mountpoint -q /dev/shm ; then + # If /dev/shm is not available, configure is known to fail with + # a traceback report referencing /usr/lib/pythonN.N/multiprocessing/synchronize.py + ewarn "/dev/shm is not mounted -- expect build failures!" + fi + + # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) + # Note: These are for Gentoo Linux use ONLY. For your own distribution, please + # get your own set of keys. + if [[ -z "${MOZ_API_KEY_GOOGLE+set}" ]] ; then + MOZ_API_KEY_GOOGLE="AIzaSyDEAOvatFogGaPi0eTgsV_ZlEzx0ObmepsMzfAc" + fi + + # Ensure we use C locale when building, bug #746215 + export LC_ALL=C + fi +} + +src_unpack() { + local _lp_dir="${WORKDIR}/language_packs" + local _src_file + + if [[ ! -d "${_lp_dir}" ]] ; then + mkdir "${_lp_dir}" || die + fi + + for _src_file in ${A} ; do + if [[ ${_src_file} == *.xpi ]]; then + cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" + else + unpack ${_src_file} + fi + done + + librewolf-r1_src_unpack +} + +src_prepare() { + use lto && rm -v "${WORKDIR}"/firefox-patches/*-LTO-Only-enable-LTO-*.patch + eapply "${WORKDIR}/firefox-patches" + + # Allow user to apply any additional patches without modifing ebuild + eapply_user + + # Make LTO respect MAKEOPTS + sed -i \ + -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ + "${S}"/build/moz.configure/lto-pgo.configure \ + || die "sed failed to set num_cores" + + # Make ICU respect MAKEOPTS + sed -i \ + -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ + "${S}"/intl/icu_sources_data.py \ + || die "sed failed to set num_cores" + + # sed-in toolchain prefix + sed -i \ + -e "s/objdump/${CHOST}-objdump/" \ + "${S}"/python/mozbuild/mozbuild/configure/check_debug_ranges.py \ + || die "sed failed to set toolchain prefix" + + sed -i \ + -e 's/ccache_stats = None/return None/' \ + "${S}"/python/mozbuild/mozbuild/controller/building.py \ + || die "sed failed to disable ccache stats call" + + einfo "Removing pre-built binaries ..." + find "${S}"/third_party -type f \( -name '*.so' -o -name '*.o' \) -print -delete || die + + # Clearing checksums where we have applied patches + moz_clear_vendor_checksums target-lexicon-0.9.0 + + # Create build dir + BUILD_DIR="${WORKDIR}/${PN}_build" + mkdir -p "${BUILD_DIR}" || die + + # Write API keys to disk + echo -n "${MOZ_API_KEY_GOOGLE//gGaPi/}" > "${S}"/api-google.key || die + + xdg_src_prepare +} + +src_configure() { + # Show flags set at the beginning + einfo "Current BINDGEN_CFLAGS:\t${BINDGEN_CFLAGS:-no value set}" + einfo "Current CFLAGS:\t\t${CFLAGS:-no value set}" + einfo "Current CXXFLAGS:\t\t${CXXFLAGS:-no value set}" + einfo "Current LDFLAGS:\t\t${LDFLAGS:-no value set}" + einfo "Current RUSTFLAGS:\t\t${RUSTFLAGS:-no value set}" + + local have_switched_compiler= + if use clang && ! tc-is-clang ; then + # Force clang + einfo "Enforcing the use of clang due to USE=clang ..." + have_switched_compiler=yes + AR=llvm-ar + CC=${CHOST}-clang + CXX=${CHOST}-clang++ + NM=llvm-nm + RANLIB=llvm-ranlib + elif ! use clang && ! tc-is-gcc ; then + # Force gcc + have_switched_compiler=yes + einfo "Enforcing the use of gcc due to USE=-clang ..." + AR=gcc-ar + CC=${CHOST}-gcc + CXX=${CHOST}-g++ + NM=gcc-nm + RANLIB=gcc-ranlib + fi + + if [[ -n "${have_switched_compiler}" ]] ; then + # Because we switched active compiler we have to ensure + # that no unsupported flags are set + strip-unsupported-flags + fi + + # Ensure we use correct toolchain + export HOST_CC="$(tc-getBUILD_CC)" + export HOST_CXX="$(tc-getBUILD_CXX)" + tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG + + # Pass the correct toolchain paths through cbindgen + if tc-is-cross-compiler ; then + export BINDGEN_CFLAGS="${SYSROOT:+--sysroot=${ESYSROOT}} --target=${CHOST} ${BINDGEN_CFLAGS-}" + fi + + # Set MOZILLA_FIVE_HOME + export MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" + + # python/mach/mach/mixin/process.py fails to detect SHELL + export SHELL="${EPREFIX}/bin/bash" + + # Set MOZCONFIG + export MOZCONFIG="${S}/.mozconfig" + + # Initialize MOZCONFIG + mozconfig_add_options_ac '' --enable-application=browser + + # Set Gentoo defaults + export MOZILLA_OFFICIAL=1 + + mozconfig_add_options_ac 'Gentoo default' \ + --allow-addon-sideload \ + --disable-cargo-incremental \ + --disable-crashreporter \ + --disable-install-strip \ + --disable-strip \ + --disable-updater \ + --enable-release \ + --enable-system-ffi \ + --enable-system-pixman \ + --host="${CBUILD:-${CHOST}}" \ + --libdir="${EPREFIX}/usr/$(get_libdir)" \ + --prefix="${EPREFIX}/usr" \ + --target="${CHOST}" \ + --without-ccache \ + --with-intl-api \ + --with-libclang-path="$(llvm-config --libdir)" \ + --with-system-nspr \ + --with-system-nss \ + --with-system-png \ + --with-system-zlib \ + --with-toolchain-prefix="${CHOST}-" \ + --with-unsigned-addon-scopes=app,system \ + --x-includes="${SYSROOT}${EPREFIX}/usr/include" \ + --x-libraries="${SYSROOT}${EPREFIX}/usr/$(get_libdir)" + + # Set update channel + local update_channel=release + [[ -n ${MOZ_ESR} ]] && update_channel=esr + mozconfig_add_options_ac '' --update-channel=${update_channel} + + if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then + mozconfig_add_options_ac '' --enable-rust-simd + fi + + if [[ -s "${S}/api-google.key" ]] ; then + local key_origin="Gentoo default" + if [[ $(cat "${S}/api-google.key" | md5sum | awk '{ print $1 }') != 709560c02f94b41f9ad2c49207be6c54 ]] ; then + key_origin="User value" + fi + + mozconfig_add_options_ac "${key_origin}" \ + --with-google-location-service-api-keyfile="${S}/api-google.key" \ + --with-google-safebrowsing-api-keyfile="${S}/api-google.key" + else + einfo "Building without Google API key ..." + fi + + mozconfig_use_with system-av1 + mozconfig_use_with system-harfbuzz + mozconfig_use_with system-harfbuzz system-graphite2 + mozconfig_use_with system-icu + mozconfig_use_with system-jpeg + mozconfig_use_with system-libevent system-libevent "${SYSROOT}${EPREFIX}/usr" + mozconfig_use_with system-libvpx + mozconfig_use_with system-webp + + mozconfig_use_enable dbus + + use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme + + mozconfig_use_enable geckodriver + + if use hardened ; then + mozconfig_add_options_ac "+hardened" --enable-hardening + append-ldflags "-Wl,-z,relro -Wl,-z,now" + fi + + mozconfig_use_enable jack + + mozconfig_use_enable pulseaudio + # force the deprecated alsa sound code if pulseaudio is disabled + if use kernel_linux && ! use pulseaudio ; then + mozconfig_add_options_ac '-pulseaudio' --enable-alsa + fi + + mozconfig_use_enable sndio + + mozconfig_use_enable wifi necko-wifi + + if use wayland ; then + mozconfig_add_options_ac '+wayland' --enable-default-toolkit=cairo-gtk3-wayland + else + mozconfig_add_options_ac '' --enable-default-toolkit=cairo-gtk3 + fi + + if use lto ; then + if use clang ; then + # Upstream only supports lld when using clang + mozconfig_add_options_ac "forcing ld=lld due to USE=clang and USE=lto" --enable-linker=lld + + mozconfig_add_options_ac '+lto' --enable-lto=cross + else + # ThinLTO is currently broken, see bmo#1644409 + mozconfig_add_options_ac '+lto' --enable-lto=full + fi + + if use pgo ; then + mozconfig_add_options_ac '+pgo' MOZ_PGO=1 + + if use clang ; then + # Used in build/pgo/profileserver.py + export LLVM_PROFDATA="llvm-profdata" + fi + fi + else + # Avoid auto-magic on linker + if use clang ; then + # This is upstream's default + mozconfig_add_options_ac "forcing ld=lld due to USE=clang" --enable-linker=lld + else + mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd + fi + fi + + # LTO flag was handled via configure + filter-flags '-flto*' + + mozconfig_use_enable debug + if use debug ; then + mozconfig_add_options_ac '+debug' --disable-optimize + else + if is-flag '-g*' ; then + if use clang ; then + mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols=$(get-flag '-g*') + else + mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols + fi + else + mozconfig_add_options_ac 'Gentoo default' --disable-debug-symbols + fi + + if is-flag '-O0' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O0 + elif is-flag '-O4' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O4 + elif is-flag '-O3' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O3 + elif is-flag '-O1' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O1 + elif is-flag '-Os' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-Os + else + mozconfig_add_options_ac "Gentoo default" --enable-optimize=-O2 + fi + fi + + # Debug flag was handled via configure + filter-flags '-g*' + + # Optimization flag was handled via configure + filter-flags '-O*' + + # Modifications to better support ARM, bug #553364 + if use cpu_flags_arm_neon ; then + mozconfig_add_options_ac '+cpu_flags_arm_neon' --with-fpu=neon + + if ! tc-is-clang ; then + # thumb options aren't supported when using clang, bug 666966 + mozconfig_add_options_ac '+cpu_flags_arm_neon' \ + --with-thumb=yes \ + --with-thumb-interwork=no + fi + fi + + if [[ ${CHOST} == armv*h* ]] ; then + mozconfig_add_options_ac 'CHOST=armv*h*' --with-float-abi=hard + + if ! use system-libvpx ; then + sed -i \ + -e "s|softfp|hard|" \ + "${S}"/media/libvpx/moz.build \ + || die + fi + fi + + if use clang ; then + # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204 + # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822 + # toolkit/moz.configure Elfhack section: target.cpu in ('arm', 'x86', 'x86_64') + local disable_elf_hack= + if use amd64 ; then + disable_elf_hack=yes + elif use x86 ; then + disable_elf_hack=yes + elif use arm ; then + disable_elf_hack=yes + fi + + if [[ -n ${disable_elf_hack} ]] ; then + mozconfig_add_options_ac 'elf-hack is broken when using Clang' --disable-elf-hack + fi + elif tc-is-gcc ; then + if ver_test $(gcc-fullversion) -ge 10 ; then + einfo "Forcing -fno-tree-loop-vectorize to workaround GCC bug, see bug 758446 ..." + append-cxxflags -fno-tree-loop-vectorize + fi + fi + + # Additional ARCH support + case "${ARCH}" in + arm) + # Reduce the memory requirements for linking + if use clang ; then + # Nothing to do + :; + elif tc-ld-is-gold || use lto ; then + append-ldflags -Wl,--no-keep-memory + else + append-ldflags -Wl,--no-keep-memory -Wl,--reduce-memory-overheads + fi + ;; + esac + + if ! use elibc_glibc ; then + mozconfig_add_options_ac '!elibc_glibc' --disable-jemalloc + fi + + # Allow elfhack to work in combination with unstripped binaries + # when they would normally be larger than 2GiB. + append-ldflags "-Wl,--compress-debug-sections=zlib" + + # Make revdep-rebuild.sh happy; Also required for musl + append-ldflags -Wl,-rpath="${MOZILLA_FIVE_HOME}",--enable-new-dtags + + # Pass $MAKEOPTS to build system + export MOZ_MAKE_FLAGS="${MAKEOPTS}" + + # Use system's Python environment + export MACH_USE_SYSTEM_PYTHON=1 + + # Disable notification when build system has finished + export MOZ_NOSPAM=1 + + # Portage sets XARGS environment variable to "xargs -r" by default which + # breaks build system's check_prog() function which doesn't support arguments + mozconfig_add_options_ac 'Gentoo default' "XARGS=${EPREFIX}/usr/bin/xargs" + + # Set build dir + mozconfig_add_options_mk 'Gentoo default' "MOZ_OBJDIR=${BUILD_DIR}" + + librewolf-r1_src_configure + + # Show flags we will use + einfo "Build BINDGEN_CFLAGS:\t${BINDGEN_CFLAGS:-no value set}" + einfo "Build CFLAGS:\t\t${CFLAGS:-no value set}" + einfo "Build CXXFLAGS:\t\t${CXXFLAGS:-no value set}" + einfo "Build LDFLAGS:\t\t${LDFLAGS:-no value set}" + einfo "Build RUSTFLAGS:\t\t${RUSTFLAGS:-no value set}" + + # Handle EXTRA_CONF and show summary + local ac opt hash reason + + # Apply EXTRA_ECONF entries to $MOZCONFIG + if [[ -n ${EXTRA_ECONF} ]] ; then + IFS=\! read -a ac <<<${EXTRA_ECONF// --/\!} + for opt in "${ac[@]}"; do + mozconfig_add_options_ac "EXTRA_ECONF" --${opt#--} + done + fi + + echo + echo "==========================================================" + echo "Building ${PF} with the following configuration" + grep ^ac_add_options "${MOZCONFIG}" | while read ac opt hash reason; do + [[ -z ${hash} || ${hash} == \# ]] \ + || die "error reading mozconfig: ${ac} ${opt} ${hash} ${reason}" + printf " %-30s %s\n" "${opt}" "${reason:-mozilla.org default}" + done + echo "==========================================================" + echo + + ./mach configure || die +} + +src_compile() { + local virtx_cmd= + + if use pgo ; then + virtx_cmd=virtx + + # Reset and cleanup environment variables used by GNOME/XDG + gnome2_environment_reset + + addpredict /root + fi + + local -x GDK_BACKEND=x11 + + ${virtx_cmd} ./mach build --verbose \ + || die +} + +src_install() { + # xpcshell is getting called during install + pax-mark m \ + "${BUILD_DIR}"/dist/bin/xpcshell \ + "${BUILD_DIR}"/dist/bin/${PN} \ + "${BUILD_DIR}"/dist/bin/plugin-container + + DESTDIR="${D}" ./mach install || die + + # Upstream cannot ship symlink but we can (bmo#658850) + rm "${ED}${MOZILLA_FIVE_HOME}/${PN}-bin" || die + dosym ${PN} ${MOZILLA_FIVE_HOME}/${PN}-bin + + # Don't install llvm-symbolizer from sys-devel/llvm package + if [[ -f "${ED}${MOZILLA_FIVE_HOME}/llvm-symbolizer" ]] ; then + rm -v "${ED}${MOZILLA_FIVE_HOME}/llvm-symbolizer" || die + fi + + # Install policy (currently only used to disable application updates) + insinto ${MOZILLA_FIVE_HOME}/distribution/ + newins "${FILESDIR}"/disable-auto-update.policy.json policies.json + + # Install system-wide preferences + local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" + insinto "${PREFS_DIR}" + newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js + + local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js" + + # Set dictionary path to use system hunspell + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set spellchecker.dictionary_path pref" + pref("spellchecker.dictionary_path", "${EPREFIX}/usr/share/myspell"); + EOF + + # Force hwaccel prefs if USE=hwaccel is enabled + if use hwaccel ; then + cat "${FILESDIR}"/gentoo-hwaccel-prefs.js \ + >>"${GENTOO_PREFS}" \ + || die "failed to add prefs to force hardware-accelerated rendering to all-gentoo.js" + fi + + if ! use gmp-autoupdate ; then + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + einfo "Disabling auto-update for ${plugin} plugin ..." + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" + pref("media.${plugin}.autoupdate", false); + EOF + done + fi + + # Force the graphite pref if USE=system-harfbuzz is enabled, since the pref cannot disable it + if use system-harfbuzz ; then + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set gfx.font_rendering.graphite.enabled pref" + sticky_pref("gfx.font_rendering.graphite.enabled", true); + EOF + fi + + # Install language packs + local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) + if [[ -n "${langpacks}" ]] ; then + moz_install_xpi "${MOZILLA_FIVE_HOME}/distribution/extensions" "${langpacks[@]}" + fi + + # Install geckodriver + if use geckodriver ; then + einfo "Installing geckodriver into ${ED}${MOZILLA_FIVE_HOME} ..." + pax-mark m "${BUILD_DIR}"/dist/bin/geckodriver + exeinto "${MOZILLA_FIVE_HOME}" + doexe "${BUILD_DIR}"/dist/bin/geckodriver + + dosym ${MOZILLA_FIVE_HOME}/geckodriver /usr/bin/geckodriver + fi + + # Install icons + local icon_srcdir="${S}/browser/branding/${PN}" + + insinto /usr/share/icons/hicolor/symbolic/apps + + local icon size + for icon in "${icon_srcdir}"/default*.png ; do + size=${icon%.png} + size=${size##*/default} + + if [[ ${size} -eq 48 ]] ; then + newicon "${icon}" ${PN}.png + fi + + newicon -s ${size} "${icon}" ${PN}.png + done + + # Install menus + local wrapper_wayland="${MOZ_PN}-wayland.sh" + local wrapper_x11="${MOZ_PN}-x11.sh" + local desktop_file="${FILESDIR}/icon/${MOZ_PN}-r2.desktop" + local display_protocols="auto X11" + local icon="${PN}" + local name="LibreWolf" + local use_wayland="false" + + if use wayland ; then + display_protocols+=" Wayland" + use_wayland="true" + fi + + local app_name desktop_filename display_protocol exec_command + for display_protocol in ${display_protocols} ; do + app_name="${name} on ${display_protocol}" + desktop_filename="${PN}-${display_protocol,,}.desktop" + + case ${display_protocol} in + Wayland) + exec_command="${PN}-wayland --name ${PN}-wayland" + newbin "${FILESDIR}/${wrapper_wayland}" ${PN}-wayland + ;; + X11) + if ! use wayland ; then + # Exit loop here because there's no choice so + # we don't need wrapper/.desktop file for X11. + continue + fi + + exec_command="${PN}-x11 --name ${PN}-x11" + newbin "${FILESDIR}/${wrapper_x11}" ${PN}-x11 + ;; + *) + app_name="${name}" + desktop_filename="${PN}.desktop" + exec_command="${PN}" + ;; + esac + + cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die + + sed -i \ + -e "s:@NAME@:${app_name}:" \ + -e "s:@EXEC@:${exec_command}:" \ + -e "s:@ICON@:${icon}:" \ + "${WORKDIR}/${PN}.desktop-template" \ + || die + + newmenu "${WORKDIR}/${PN}.desktop-template" "${desktop_filename}" + + rm "${WORKDIR}/${PN}.desktop-template" || die + done + + # Install generic wrapper script + [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" + newbin "${FILESDIR}/${MOZ_PN}.sh" ${PN} + + # Update wrapper + local wrapper + for wrapper in \ + "${ED}/usr/bin/${PN}" \ + "${ED}/usr/bin/${PN}-x11" \ + "${ED}/usr/bin/${PN}-wayland" \ + ; do + [[ ! -f "${wrapper}" ]] && continue + + sed -i \ + -e "s:@PREFIX@:${EPREFIX}/usr:" \ + -e "s:@MOZ_FIVE_HOME@:${MOZILLA_FIVE_HOME}:" \ + -e "s:@APULSELIB_DIR@:${apulselib}:" \ + -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ + "${wrapper}" \ + || die + done + + librewolf-r1_src_install +} + +pkg_preinst() { + xdg_pkg_preinst + + # If the apulse libs are available in MOZILLA_FIVE_HOME then apulse + # does not need to be forced into the LD_LIBRARY_PATH + if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then + einfo "APULSE found; Generating library symlinks for sound support ..." + local lib + pushd "${ED}${MOZILLA_FIVE_HOME}" &>/dev/null || die + for lib in ../apulse/libpulse{.so{,.0},-simple.so{,.0}} ; do + # A quickpkg rolled by hand will grab symlinks as part of the package, + # so we need to avoid creating them if they already exist. + if [[ ! -L ${lib##*/} ]] ; then + ln -s "${lib}" ${lib##*/} || die + fi + done + popd &>/dev/null || die + fi +} + +pkg_postinst() { + xdg_pkg_postinst + + if ! use gmp-autoupdate ; then + elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" + elog "installing into new profiles:" + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + elog "\t ${plugin}" + done + elog + fi + + if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then + elog "Apulse was detected at merge time on this system and so it will always be" + elog "used for sound. If you wish to use pulseaudio instead please unmerge" + elog "media-sound/apulse." + elog + fi + + local show_doh_information show_normandy_information + + if [[ -z "${REPLACING_VERSIONS}" ]] ; then + # New install; Tell user that DoH is disabled by default + show_doh_information=yes + show_normandy_information=yes + else + local replacing_version + for replacing_version in ${REPLACING_VERSIONS} ; do + if ver_test "${replacing_version}" -lt 70 ; then + # Tell user only once about our DoH default + show_doh_information=yes + fi + + if ver_test "${replacing_version}" -lt 74.0-r2 ; then + # Tell user only once about our Normandy default + show_normandy_information=yes + fi + done + fi + + if [[ -n "${show_doh_information}" ]] ; then + elog + elog "Note regarding Trusted Recursive Resolver aka DNS-over-HTTPS (DoH):" + elog "Due to privacy concerns (encrypting DNS might be a good thing, sending all" + elog "DNS traffic to Cloudflare by default is not a good idea and applications" + elog "should respect OS configured settings), \"network.trr.mode\" was set to 5" + elog "(\"Off by choice\") by default." + elog "You can enable DNS-over-HTTPS in ${PN^}'s preferences." + fi + + # bug 713782 + if [[ -n "${show_normandy_information}" ]] ; then + elog + elog "Upstream operates a service named Normandy which allows Mozilla to" + elog "push changes for default settings or even install new add-ons remotely." + elog "While this can be useful to address problems like 'Armagadd-on 2.0' or" + elog "revert previous decisions to disable TLS 1.0/1.1, privacy and security" + elog "concerns prevail, which is why we have switched off the use of this" + elog "service by default." + elog + elog "To re-enable this service set" + elog + elog " app.normandy.enabled=true" + elog + elog "in about:config." + fi +} diff --git a/www-client/librewolf/metadata.xml b/www-client/librewolf/metadata.xml index 6304719b51eb..7de3dd6b6a85 100644 --- a/www-client/librewolf/metadata.xml +++ b/www-client/librewolf/metadata.xml @@ -25,6 +25,7 @@ for faster binaries. This option will double the compile time.</flag> <flag name="screenshot">Allow to disable screenshot extension in global profile</flag> <flag name="screencast">Enable support for remote desktop and screen cast using <pkg>media-video/pipewire</pkg></flag> + <flag name="sndio">Enable support for the <pkg>media-sound/sndio</pkg> backend</flag> <flag name="system-av1">Use the system-wide <pkg>media-libs/dav1d</pkg> and <pkg>media-libs/libaom</pkg> library instead of bundled.</flag> <flag name="system-harfbuzz">Use the system-wide <pkg>media-libs/harfbuzz</pkg> diff --git a/www-client/microsoft-edge-beta/Manifest b/www-client/microsoft-edge-beta/Manifest index 93dc17ded44a..e7a85cc6ad62 100644 --- a/www-client/microsoft-edge-beta/Manifest +++ b/www-client/microsoft-edge-beta/Manifest @@ -1,3 +1,3 @@ -DIST microsoft-edge-beta_91.0.864.33-1_amd64.deb 99662722 BLAKE2B 125160c68e1a630b41afce93f35e0d6c2a12fa61cb23e595095b362bc958a909f9539981adaae1657ba9c7ec5ba78a6e6d9135f43078a2a5bb5d6476d5c34541 SHA512 734a43283911027b8915d200943f54858070f0531a8eb860320645a946aa196b37ec20f6c2def6be1061ad82997f7b4e6dc5f14508e9d40903178167a423540d DIST microsoft-edge-beta_91.0.864.36-1_amd64.deb 99691792 BLAKE2B 3e30e37f033e2ffd2f3af4f581850145d4e6d3468e95c44dcd596f976c75fdad3f51c0a1f5a2b9889abb8e4c5e3d64072ee61eefadacb33774ae7ab2027d09fb SHA512 cf010900a4d6bc4f08c2f776961b6039b2e640a86d90535b197222520f419773f4431f217d86f9b25f9fc841fa76aacc37de65387aaf97439c64d2b83f1de37e DIST microsoft-edge-beta_91.0.864.37-1_amd64.deb 99670130 BLAKE2B 2cec37231e18a3034e056a90300fdbbf003cef44a9c3963dfc5f3c55f39599c242d216650bc99e483abddcdc83f384bd372589bfde89535d5c5916efb438d821 SHA512 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 +DIST microsoft-edge-beta_91.0.864.41-1_amd64.deb 99832786 BLAKE2B a7f26c9a92adc4deba1c04d6ee26bedb5360824aed48b397dfaf66cd3f524b9efbbc77c0191f52ae40d70e0ea9f1ca4943e58dc20f8ad7e40bcabb1636a02a8a SHA512 119a5c3cd2065b578705a76983e4d670427f2de356b529a22186c6e77b159f6d35e2e4195ea93f84d17b4469a1da5744b6957cbde0748e9421422b3fcc02a22a diff --git a/www-client/microsoft-edge-beta/microsoft-edge-beta-91.0.864.33.ebuild b/www-client/microsoft-edge-beta/microsoft-edge-beta-91.0.864.41.ebuild index 6887ef49a3a3..6887ef49a3a3 100644 --- a/www-client/microsoft-edge-beta/microsoft-edge-beta-91.0.864.33.ebuild +++ b/www-client/microsoft-edge-beta/microsoft-edge-beta-91.0.864.41.ebuild diff --git a/www-client/microsoft-edge-dev/Manifest b/www-client/microsoft-edge-dev/Manifest index 5e116d11d368..fb7c3823ed6f 100644 --- a/www-client/microsoft-edge-dev/Manifest +++ b/www-client/microsoft-edge-dev/Manifest @@ -1,3 +1,3 @@ -DIST microsoft-edge-dev_92.0.884.2-1_amd64.deb 102844126 BLAKE2B c215eb9b57b1259dbb526c004accdbd36d2b40b6737a2943ca06fa003866c4e65b2ab86b40dfef0f531f7f296e2266df2712bf9dd36b246961090a50ff1a6dbd SHA512 1effca51bd31c158d80c1bee6b8379d77b94169c0f43f8247282dd64b0c4965e6700f86bdf2d42fcac57c78a0c59cfd2750aea45badcc8e01a1a5f38a5cde1d7 DIST microsoft-edge-dev_92.0.891.1-1_amd64.deb 106010804 BLAKE2B 343614830e6f1ae0d77f130532374a8258512bbf04185544f3818de45cdaaa2062fe46cb6a2e39f7779fe9fd5ba0c6585b6219a1f84c8d334030dd48425f160c SHA512 456220d70c7b77fc9e1fbceb78dea5b7226fd878538a1706af8cac2ce428eb2227be593273a4a539e4161233fb33f573a2a56528946463a96aa7fd4997cbc61b DIST microsoft-edge-dev_92.0.902.2-1_amd64.deb 102629280 BLAKE2B e101203230eaaf8569a9c96881a6b8874e64e168cec328e39aadb529b754e7b9ff11b429da7df7b2c46ba7deb865a5ddef6b0dbcaeec79669f2fe6eba387b019 SHA512 1a90911a465f65ca2712c1a7958a4d48153e8f5095381f49254e5f9aecb2f52a7a12793e7fa629cf9765ed0e6d64ec8d52af06c8353c173c0c1e7e90c89dc86e +DIST microsoft-edge-dev_92.0.902.4-1_amd64.deb 101983702 BLAKE2B 71a636cd0f5c6478f1c61c2fe9e1c73216e20fdf6976afd1202bf548266fa15ee9dd775688f2d769e9e5d65497c20b9c40bf53a719f1c4ead270738779ae35c6 SHA512 3ea11ae74d40d6c7590af75c619f5d87288327e520ab7dc1d812326d56bdacf15f2ad53bc48ddd36b005171afcdbf24ec6a9815cd3e3b55e6507ae08bd7d826b diff --git a/www-client/microsoft-edge-dev/microsoft-edge-dev-92.0.884.2.ebuild b/www-client/microsoft-edge-dev/microsoft-edge-dev-92.0.902.4.ebuild index 6887ef49a3a3..6887ef49a3a3 100644 --- a/www-client/microsoft-edge-dev/microsoft-edge-dev-92.0.884.2.ebuild +++ b/www-client/microsoft-edge-dev/microsoft-edge-dev-92.0.902.4.ebuild diff --git a/www-client/opera-beta/Manifest b/www-client/opera-beta/Manifest index 4204f789e85d..5cf18839d6c1 100644 --- a/www-client/opera-beta/Manifest +++ b/www-client/opera-beta/Manifest @@ -1,3 +1,4 @@ DIST opera-beta_77.0.4054.14_amd64.deb 74436584 BLAKE2B 07f73149b2b073ac7fa4b77b074ab0c67e6f1a6c7dae5cc2428f17042acef6616da61b988c11ca5ba71cbee245163cdac752c365c4e8fafd11da5f91439d5f71 SHA512 1fa86b20d0d573edb4e1ab167710599d5ccecae4897fefac365a5d76f41b9260eedfdbfe2394d48afba5fce1aaab9701aa33438f5d21ce95db5116900c55db01 DIST opera-beta_77.0.4054.19_amd64.deb 74518136 BLAKE2B a4ebfff4eda040eaec1c885825d4e1ca12113daeb2a911ec8c761b0f21d4488a2e3a92617dbbe560952810bd16e427a69e0fe0e07e37e76eaf32541d31f4b7ef SHA512 a4d0541064e845d54e31c89d1bae54ff1ea6460104829c3052a61376718c0472e5318ae25e7f6341e27b15639bd25abef221c53e720f026192ff56798e4f26b2 +DIST opera-beta_77.0.4054.38_amd64.deb 74524540 BLAKE2B a62a16d139561fa29d56cece83768815e220e1da8e72b25e09d540c7180f53b4c5d7aed14fe947864b69622816476a89f717689e7fd45f046c4691929996b27f SHA512 110ddc0c6bb6d9cee9f56f363669bc847ea90c2c86257a6e146dc87fa04f8e89ee4316de83d4243699b31724a5214fef4715f11c5c56cba11534ad829533512e DIST opera-ffmpeg-codecs-91.0.4472.19.tar.xz 1383552 BLAKE2B f278bcef8ec013e24bb5293f50cb82be8b9381d181d6e837e8ed0f5b5f7fbdbde4d6e16e30787def46c333f2d6fb7573c7fbdf09697400d9429b3bc154a8da92 SHA512 58c419e469f257e5d3a7ec2fb18885a61aa8f4d6a56f8f6922fb4d4cecbfd9267d7cd72a451d1b23ee88bad0bebd83affa0850a1bbf7b2b26dac398752c7e905 diff --git a/www-client/opera-beta/opera-beta-77.0.4054.38.ebuild b/www-client/opera-beta/opera-beta-77.0.4054.38.ebuild new file mode 100644 index 000000000000..ac62c3431ac4 --- /dev/null +++ b/www-client/opera-beta/opera-beta-77.0.4054.38.ebuild @@ -0,0 +1,132 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +CHROMIUM_LANGS=" + be bg bn ca cs da de el en-GB en-US es-419 es fil fi fr-CA fr hi hr hu id + it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi + zh-CN zh-TW +" +inherit chromium-2 multilib pax-utils unpacker xdg + +DESCRIPTION="A fast and secure web browser" +HOMEPAGE="https://www.opera.com/" +LICENSE="OPERA-2018" +SLOT="0" + +SRC_URI_BASE=( + "https://download1.operacdn.com/pub/${PN}" + "https://download2.operacdn.com/pub/${PN}" + "https://download3.operacdn.com/pub/${PN}" + "https://download4.operacdn.com/pub/${PN}" +) + +if [[ ${PN} == opera ]]; then + MY_PN=${PN}-stable + SRC_URI_BASE=( "${SRC_URI_BASE[@]/%//desktop}" ) +else + MY_PN=${PN} +fi + +KEYWORDS="-* ~amd64" + +FFMPEG_VERSION="91.0.4472.19" + +SRC_URI="${SRC_URI_BASE[@]/%//${PV}/linux/${MY_PN}_${PV}_amd64.deb} + proprietary-codecs? ( + https://dev.gentoo.org/~sultan/distfiles/www-client/opera/opera-ffmpeg-codecs-${FFMPEG_VERSION}.tar.xz + )" + +IUSE="+proprietary-codecs suid" +RESTRICT="bindist mirror strip" + +RDEPEND=" + app-accessibility/at-spi2-atk:2 + app-accessibility/at-spi2-core:2 + dev-libs/atk + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + gnome-base/gsettings-desktop-schemas + media-libs/alsa-lib + media-libs/mesa[gbm] + net-misc/curl + net-print/cups + sys-apps/dbus + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+:3 + x11-libs/libdrm + x11-libs/libxcb + x11-libs/libxkbcommon + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrandr + x11-libs/pango +" + +QA_PREBUILT="*" +S=${WORKDIR} +OPERA_HOME="opt/opera${PN#opera}" + +pkg_pretend() { + # Protect against people using autounmask overzealously + use amd64 || die "opera only works on amd64" +} + +pkg_setup() { + chromium_suid_sandbox_check_kernel_config +} + +src_unpack() { + : +} + +src_install() { + dodir / + cd "${ED}" || die + unpacker + + # move to /opt, bug #573052 + mkdir -p "${OPERA_HOME%${PN}}" + mv "usr/lib/x86_64-linux-gnu/${PN}" "${OPERA_HOME%${PN}}" || die + rm -r "usr/lib" || die + + # disable auto update + rm "${OPERA_HOME}/${PN%-*}_autoupdate"{,.licenses,.version} || die + + rm -r "usr/share/lintian" || die + + # fix docs + mv usr/share/doc/${MY_PN} usr/share/doc/${PF} || die + gzip -d usr/share/doc/${PF}/changelog.gz || die + + # fix desktop file + sed -i \ + -e 's|^TargetEnvironment|X-&|g' \ + usr/share/applications/${PN}.desktop || die + + # remove unused language packs + pushd "${OPERA_HOME}/localization" > /dev/null || die + chromium_remove_language_paks + popd > /dev/null || die + + # setup opera symlink + rm "usr/bin/${PN}" || die + dosym "../../${OPERA_HOME}/${PN}" "/usr/bin/${PN}" + + # install proprietary codecs + rm "${OPERA_HOME}/resources/ffmpeg_preload_config.json" || die + if use proprietary-codecs; then + mv lib_extra "${OPERA_HOME}" + fi + + # pax mark opera, bug #562038 + pax-mark m "${OPERA_HOME}/opera" + # enable suid sandbox if requested + use suid && fperms 4711 "${OPERA_HOME}/opera_sandbox" +} diff --git a/www-client/seamonkey/files/seamonkey-2.53.7.1-CLEANUP-workaround.patch b/www-client/seamonkey/files/seamonkey-2.53.7.1-CLEANUP-workaround.patch index eca3d3980189..d61341b1e75c 100644 --- a/www-client/seamonkey/files/seamonkey-2.53.7.1-CLEANUP-workaround.patch +++ b/www-client/seamonkey/files/seamonkey-2.53.7.1-CLEANUP-workaround.patch @@ -1,6 +1,5 @@ -diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/ActorsParent.cpp seamonkey-2.53.7.1-dwok/dom/indexedDB/ActorsParent.cpp ---- seamonkey-2.53.7.1-orig/dom/indexedDB/ActorsParent.cpp 2020-08-10 13:30:33.000000000 +0200 -+++ seamonkey-2.53.7.1-dwok/dom/indexedDB/ActorsParent.cpp 2021-05-19 19:34:09.717778077 +0200 +--- seamonkey-2.53.7.1/dom/indexedDB/ActorsParent.cpp ++++ seamonkey-2.53.7.1/dom/indexedDB/ActorsParent.cpp @@ -11381,7 +11381,7 @@ AutoSavepoint::~AutoSavepoint() MOZ_ASSERT(mDEBUGTransaction->GetMode() == IDBTransaction::READ_WRITE || mDEBUGTransaction->GetMode() == @@ -100,9 +99,8 @@ diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/ActorsParent.cpp seamonkey-2.53 connection->DoIdleProcessing(/* aNeedsCheckpoint */ true); connection->EnableQuotaChecks(); -diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBCursor.cpp seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBCursor.cpp ---- seamonkey-2.53.7.1-orig/dom/indexedDB/IDBCursor.cpp 2020-08-10 13:30:33.000000000 +0200 -+++ seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBCursor.cpp 2021-05-19 19:34:21.313733906 +0200 +--- seamonkey-2.53.7.1/dom/indexedDB/IDBCursor.cpp ++++ seamonkey-2.53.7.1/dom/indexedDB/IDBCursor.cpp @@ -686,7 +686,7 @@ IDBCursor::Update(JSContext* aCx, JS::Ha return nullptr; } @@ -112,9 +110,8 @@ diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBCursor.cpp seamonkey-2.53.7. IsSourceDeleted() || !mHaveValue || mType == Type_ObjectStoreKey || -diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBDatabase.cpp seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBDatabase.cpp ---- seamonkey-2.53.7.1-orig/dom/indexedDB/IDBDatabase.cpp 2020-04-01 13:01:50.000000000 +0200 -+++ seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBDatabase.cpp 2021-05-19 19:34:54.769606469 +0200 +--- seamonkey-2.53.7.1/dom/indexedDB/IDBDatabase.cpp ++++ seamonkey-2.53.7.1/dom/indexedDB/IDBDatabase.cpp @@ -673,7 +673,7 @@ IDBDatabase::Transaction(JSContext* aCx, break; case IDBTransactionMode::Readwrite: @@ -151,9 +148,8 @@ diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBDatabase.cpp seamonkey-2.53. case IDBTransaction::VERSION_CHANGE: transactionsThatNeedWarning.AppendElement(transaction); break; -diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBObjectStore.cpp seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBObjectStore.cpp ---- seamonkey-2.53.7.1-orig/dom/indexedDB/IDBObjectStore.cpp 2020-08-10 13:30:33.000000000 +0200 -+++ seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBObjectStore.cpp 2021-05-19 19:35:22.341501444 +0200 +--- seamonkey-2.53.7.1/dom/indexedDB/IDBObjectStore.cpp ++++ seamonkey-2.53.7.1/dom/indexedDB/IDBObjectStore.cpp @@ -1546,7 +1546,7 @@ IDBObjectStore::AddOrPut(JSContext* aCx, MOZ_ASSERT(aCx); MOZ_ASSERT_IF(aFromCursor, aOverwrite); @@ -163,9 +159,8 @@ diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBObjectStore.cpp seamonkey-2. mDeletedSpec) { aRv.Throw(NS_ERROR_DOM_INDEXEDDB_NOT_ALLOWED_ERR); return nullptr; -diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBTransaction.cpp seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBTransaction.cpp ---- seamonkey-2.53.7.1-orig/dom/indexedDB/IDBTransaction.cpp 2020-02-18 00:37:49.000000000 +0100 -+++ seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBTransaction.cpp 2021-05-19 19:35:36.725446648 +0200 +--- seamonkey-2.53.7.1/dom/indexedDB/IDBTransaction.cpp ++++ seamonkey-2.53.7.1/dom/indexedDB/IDBTransaction.cpp @@ -221,7 +221,7 @@ IDBTransaction::Create(JSContext* aCx, I MOZ_ASSERT(aMode == READ_ONLY || aMode == READ_WRITE || @@ -184,9 +179,8 @@ diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBTransaction.cpp seamonkey-2. return IDBTransactionMode::Cleanup; case VERSION_CHANGE: -diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBTransaction.h seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBTransaction.h ---- seamonkey-2.53.7.1-orig/dom/indexedDB/IDBTransaction.h 2020-02-18 00:37:49.000000000 +0100 -+++ seamonkey-2.53.7.1-dwok/dom/indexedDB/IDBTransaction.h 2021-05-19 19:35:48.609401384 +0200 +--- seamonkey-2.53.7.1/dom/indexedDB/IDBTransaction.h ++++ seamonkey-2.53.7.1/dom/indexedDB/IDBTransaction.h @@ -59,7 +59,7 @@ public: READ_ONLY = 0, READ_WRITE, @@ -205,9 +199,8 @@ diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/IDBTransaction.h seamonkey-2.53 mMode == VERSION_CHANGE; } -diff -urNp seamonkey-2.53.7.1-orig/dom/indexedDB/ProfilerHelpers.h seamonkey-2.53.7.1-dwok/dom/indexedDB/ProfilerHelpers.h ---- seamonkey-2.53.7.1-orig/dom/indexedDB/ProfilerHelpers.h 2020-02-18 00:37:49.000000000 +0100 -+++ seamonkey-2.53.7.1-dwok/dom/indexedDB/ProfilerHelpers.h 2021-05-19 19:35:57.029369312 +0200 +--- seamonkey-2.53.7.1/dom/indexedDB/ProfilerHelpers.h ++++ seamonkey-2.53.7.1/dom/indexedDB/ProfilerHelpers.h @@ -130,7 +130,7 @@ public: case IDBTransaction::READ_WRITE_FLUSH: AppendLiteral("\"readwriteflush\""); diff --git a/www-client/vivaldi-snapshot/Manifest b/www-client/vivaldi-snapshot/Manifest index 5dce9d6fa532..4945a5577175 100644 --- a/www-client/vivaldi-snapshot/Manifest +++ b/www-client/vivaldi-snapshot/Manifest @@ -1,11 +1,7 @@ -DIST vivaldi-snapshot_3.8.2259.32-1_amd64.deb 82415088 BLAKE2B 00407d271a5e3b7cca26ccd8a531b87d9352730a4bc46a77dc451c7f4bf31240b763424d266fdefcf218d3562e54d74340626bc7d404f6f459485a44d2dadd15 SHA512 8c63d20a68e4fab5a8d0054ad7387c516c9044fa8efc316aabf8cc904a00a12cce3950a2f5aca41131806b15a7ee29b6cc5e59cf55934082c98c1543965cb4ef -DIST vivaldi-snapshot_3.8.2259.32-1_arm64.deb 74013108 BLAKE2B 420e3f1a1d32907fe00ae7c96d1ceb19df2528ab73057de4931445eb1a8bfdb51eabd9dda1ed677cd1f82c35cc85ade6235bdd69d4adff8926b6b8982bdd2e0e SHA512 dd273b7c6a4b6006842f79fd037bd1c106ff68d490df494104d40f2b6c0434663a112e6168a157d8817cd2f617674719e93210107bf1d7cf1415a815a4f11541 -DIST vivaldi-snapshot_3.8.2259.32-1_armhf.deb 72594652 BLAKE2B 0dab784efb4fdfbb32a88a9c212e030c40dff9e246236a5098ae2fa41752999f72c5085e5f2010611201a3c8856da1423227b371f65a78a7844fca1a666d87c0 SHA512 f0588d902750b1811fb2307ef240b5b34a54d13210e99b44a613a40ca49c6a9713399e623cfab68dbb35bfd6287a25ef7248a1deefcb4870fa6f5fb3025b5ea0 -DIST vivaldi-snapshot_3.8.2259.32-1_i386.deb 79500900 BLAKE2B 45a3f2a7b69e22222de4ae8fb4b3e86dbff3a545b86d5bfadcee96e68833d505bea2f99062b9998ce83cbb46d5ac8e8c815a12fa717ce1fcc58e8014dbdea77a SHA512 a28233f23cd3c9522fb27dd0f146b3e77e9f2f13cd0541d44e0f09cd8a2d5ee948584651fb9a6bf71afec83a01883334dae2f2deacbd550065ebb03c7c5b7280 DIST vivaldi-snapshot_3.9.2289.3-1_amd64.deb 83539836 BLAKE2B d8a9dcc850dbd4d15f1b80b05469b9e075a5e4d8b3b02dd008e6f0d4929590a5bc9ec28a35e000eaf51b915c2ad385a4080a2c04a70b4f19cadcc259cdb98718 SHA512 6c09de35d3c4e0f9b79c1fa1076754213b5acbcddb648731b9d214b1fa4820544842da2e11be6f71e547f431c3410479402003c6755664d2c36a1caa1cf6c23b DIST vivaldi-snapshot_3.9.2289.3-1_arm64.deb 79023788 BLAKE2B 163adf52c555f47ea1ac6b9f6e6ef457cf901a4be0b04590da482b22c330381437de9c23016759d5eb6d8da82061b451067840ffe097de3e273b569067d5d939 SHA512 5c8596448bdffd22bf6837b0fa966b049af8efa22a4da009f953e17743bd9497dc825589ea92bb672ebe1ce8a0003ace6f9a91f3d5e2c8d9092f9049d59ccc80 DIST vivaldi-snapshot_3.9.2289.3-1_armhf.deb 75093252 BLAKE2B 0deaff270b851a9febdbae29102d5e5e0e221ddee7e285db1fe13fbb3ba8b44d82cab61220a66d12ab31fb36300236b107848c401e2e1203bfd5330be254ac78 SHA512 1fc4a6f6b5abca3e45b7208c8416029c40641c5213fc472bf54ef6ea5284c7bfccfe1cdf66c623c88b7fe200fe8d7356c99a9baacd85944b0818006d9d54fe02 DIST vivaldi-snapshot_3.9.2289.3-1_i386.deb 82584664 BLAKE2B f5447df81bf87b128cf9e65443913f61b29417e2ade09407c4131a0211006b7779816d28ae777aaf8792bd3745e9669dbce03bdda83616e5a669333f9e520a06 SHA512 dedfa2249ebeae7a5f55a26235f25a351988e9ae9d6d6a383d4e5c2a0680eafeb3e30603e6476b0d814a9f5b1958b7e0894a4b60b47e5bb72d2af2e577ae35aa -DIST vivaldi-snapshot_3.9.2305.3-1_amd64.deb 83027644 BLAKE2B 311f182e5f4a8c56f82df083a0320dba0d3b62574fa54e0d9fe72a35b06efbc5f4290d6eb58e642585d7497d27a8513f201dced2e3acefe70829e02971e342c7 SHA512 d1c81b76a6d74fa2108895577bbe4ef1ce70fdf13954d5c1984eed8d25cb2216e188110286bf57c3e3e654285d70f28e12538c9bee322cc48274c27f8a1f4f6f -DIST vivaldi-snapshot_3.9.2305.3-1_arm64.deb 79064784 BLAKE2B 6eb6f0dae02e5d382e773ceaf39efa3d632d13abc1d8ebe0b07e4e63a877803a5696153b0b1616a7cdde15189156f2baa9f86c88dec7e2f31567dcac95ee3b6c SHA512 58fa598779563d112b34c0b60a5d61b6bbe8c352a564b9fcf255cff227351e4bd56dc5b84de9b65f3eaa4c204a0d619ce1e2365b6492c040d8d64bbd5e6798c7 -DIST vivaldi-snapshot_3.9.2305.3-1_armhf.deb 75195244 BLAKE2B 3f6b614b42b4d5d14da1b9b80a818130203db21606ea1baf1d081fe39cbd1bce2bba039862794415af5c0fc871d89c88e58738e072ff3f448039bb237d0cb5c6 SHA512 51a7350eeb600f375c9e67c393c56a5d8ebad26e3a44a173995246dd5cad8cb5c9271dfab5173547dedf58af5eb160710420b987624bc27dd417b1bd96d729de +DIST vivaldi-snapshot_4.0.2312.3-1_amd64.deb 84153620 BLAKE2B 689ac4debfc54e8d3512ddaecd7b785d51aebcac77b72cde33770a4f9c7431eac1cd7fd3955c15dacd6d1fd1075c37ad6d56a76845ae59e3c8940737cdcbe319 SHA512 a8e56a24d0dbfa6814d3950ca5b3e592be545ebc9ec71de3c78bcd3ca8e70b8f2f1442d89ae72ca9636e4442805a153e72b058a3e43a87152a102f0f5405f188 +DIST vivaldi-snapshot_4.0.2312.3-1_arm64.deb 79579564 BLAKE2B f0e58331139ae6df6268b34d8b799291199fc9edf6c5b4d4137061f9a0d7f600f674965970f4355848b4e2763d0c5b44b6518f5a4a05b7f2cbc2f7d4ff33d708 SHA512 668ec750cfe20ac4b827ccbb2d8eca987b10471e387245e4e14a3500865c30b0339845b60b7da86d8fafc5686b50adaeb9c684ad9868bb3bcabf864502047890 +DIST vivaldi-snapshot_4.0.2312.3-1_armhf.deb 75737268 BLAKE2B 867f5c717b016bf0e7136a62a7bef1dd97a15b655c377eaa5093e8c79bc5e7c9a93befdd7f6ad74f939f5ddabbbd2f16c70720c5c728be167ae3c639dcc3bcd5 SHA512 3836f99ca787764c7f365eaf9c1fd3a767ec1a8467c45cc7524df42cff2fed371bfc11ba0b9eef39b2065f12aa061d1a32daf2740ed5b821032f5934fc5bf2ba diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.8.2259.32.ebuild b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.8.2259.32.ebuild deleted file mode 100644 index 232d99b73e99..000000000000 --- a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.8.2259.32.ebuild +++ /dev/null @@ -1,206 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CHROMIUM_LANGS=" - af - am - ar - az - be - bg - bn - ca - cs - da - de - de-CH - el - en-GB - en-US - eo - es - es-419 - es-PE - et - eu - fa - fi - fil - fr - fy - gd - gl - gu - he - hi - hr - hu - hy - id - io - is - it - ja - jbo - ka - kab - kn - ko - ku - lt - lv - mk - ml - mr - ms - nb - nl - nn - pa - pl - pt-BR - pt-PT - ro - ru - sc - sk - sl - sq - sr - sr-Latn - sv - sw - ta - te - th - tr - uk - vi - zh-CN - zh-TW -" - -inherit chromium-2 desktop unpacker xdg - -VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}" -VIVALDI_HOME="opt/${PN}" -DESCRIPTION="A browser for our friends" -HOMEPAGE="https://vivaldi.com/" - -if [[ ${PV} = *_p* ]]; then - DEB_REV="${PV#*_p}" -else - DEB_REV=1 -fi - -VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_PN#vivaldi-}/${VIVALDI_PN}_${PV%_p*}-${DEB_REV}_" -SRC_URI=" - amd64? ( ${VIVALDI_BASE_URI}amd64.deb ) - arm64? ( ${VIVALDI_BASE_URI}arm64.deb ) - arm? ( ${VIVALDI_BASE_URI}armhf.deb ) - x86? ( ${VIVALDI_BASE_URI}i386.deb ) -" - -LICENSE="Vivaldi" -SLOT="0" -KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86" -IUSE="proprietary-codecs widevine" -RESTRICT="bindist mirror" - -RDEPEND=" - dev-libs/expat - dev-libs/glib:2 - dev-libs/nspr - dev-libs/nss - media-libs/alsa-lib - media-libs/fontconfig - media-libs/freetype - media-libs/speex - net-print/cups - sys-apps/dbus - sys-libs/libcap - x11-libs/cairo - x11-libs/gdk-pixbuf - x11-libs/gtk+:3 - x11-libs/libX11 - x11-libs/libXScrnSaver - 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/libXtst - x11-libs/pango[X] - proprietary-codecs? ( media-video/ffmpeg:0/56.58.58[chromium(-)] ) - widevine? ( www-plugins/chrome-binary-plugins ) -" - -QA_PREBUILT="*" -S="${WORKDIR}" - -src_unpack() { - unpack_deb ${A} -} - -src_prepare() { - # Rename docs directory to our needs. - mv usr/share/doc/{${VIVALDI_PN},${PF}}/ || die - - # Decompress the docs. - gunzip usr/share/doc/${PF}/changelog.gz || die - - # The appdata directory is deprecated. - mv usr/share/{appdata,metainfo}/ || die - - # Remove cron job for updating from Debian repos. - rm etc/cron.daily/${PN} ${VIVALDI_HOME}/cron/${PN} || die - rmdir etc/{cron.daily/,} ${VIVALDI_HOME}/cron/ || die - - # Remove scripts that will most likely break things. - rm ${VIVALDI_HOME}/update-{ffmpeg,widevine} || die - - pushd ${VIVALDI_HOME}/locales > /dev/null || die - rm ja-KS.pak || die # No flag for Kansai as not in IETF list. - chromium_remove_language_paks - popd > /dev/null || die - - if use proprietary-codecs; then - rm ${VIVALDI_HOME}/lib/libffmpeg.so || die - rmdir ${VIVALDI_HOME}/lib || die - fi - - eapply_user -} - -src_install() { - mv */ "${D}" || die - dosym /${VIVALDI_HOME}/${PN} /usr/bin/${PN} - fperms 4711 /${VIVALDI_HOME}/vivaldi-sandbox - - local logo size - for logo in "${ED}"/${VIVALDI_HOME}/product_logo_*.png; do - size=${logo##*_} - size=${size%.*} - newicon -s "${size}" "${logo}" ${PN}.png - done - - if use proprietary-codecs; then - dosym ../../usr/$(get_libdir)/chromium/libffmpeg.so \ - /${VIVALDI_HOME}/libffmpeg.so.$(ver_cut 1-2) - fi - - if use widevine; then - dosym ../../usr/$(get_libdir)/chromium-browser/WidevineCdm \ - /${VIVALDI_HOME}/WidevineCdm - else - rm "${ED}"/${VIVALDI_HOME}/WidevineCdm || die - fi - - [[ ${PN} = vivaldi-snapshot ]] && - dosym ${PN} /${VIVALDI_HOME}/vivaldi -} diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.9.2305.3.ebuild b/www-client/vivaldi-snapshot/vivaldi-snapshot-4.0.2312.3.ebuild index 922779ca6f6f..922779ca6f6f 100644 --- a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.9.2305.3.ebuild +++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-4.0.2312.3.ebuild diff --git a/www-misc/urlwatch/files/urlwatch-2.17-fix-yaml.load.patch b/www-misc/urlwatch/files/urlwatch-2.17-fix-yaml.load.patch deleted file mode 100644 index c8bd04ae932f..000000000000 --- a/www-misc/urlwatch/files/urlwatch-2.17-fix-yaml.load.patch +++ /dev/null @@ -1,18 +0,0 @@ -commit d00041bacd6343cadf29c3d0a98817a7b9fda2a1 -Author: Louis Sautier <sautier.louis@gmail.com> -Date: Sun Apr 14 14:49:24 2019 +0200 - - Fix YAMLLoadWarning in tests - -diff --git a/test/test_filters.py b/test/test_filters.py -index 3402616..da2393b 100644 ---- a/test/test_filters.py -+++ b/test/test_filters.py -@@ -33,6 +33,6 @@ def test_filters(): - eq_(result, expected_result) - - with open(os.path.join(os.path.dirname(__file__), 'data/filter_tests.yaml'), 'r', encoding='utf8') as fp: -- filter_tests = yaml.load(fp) -+ filter_tests = yaml.load(fp, Loader=yaml.SafeLoader) - for test_name in filter_tests: - yield check_filter, test_name diff --git a/www-misc/xxv/xxv-1.6.1-r1.ebuild b/www-misc/xxv/xxv-1.6.1-r2.ebuild index d1bb93512081..13b7f874d3a9 100644 --- a/www-misc/xxv/xxv-1.6.1-r1.ebuild +++ b/www-misc/xxv/xxv-1.6.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -15,7 +15,7 @@ SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="-mplayer themes" +IUSE="mplayer themes" RDEPEND=">=media-video/vdr-1.2.6 media-video/vdr2jpeg @@ -35,7 +35,7 @@ RDEPEND=">=media-video/vdr-1.2.6 dev-perl/Encode-Detect dev-perl/Event dev-perl/Font-TTF - dev-perl/GD[png,gif] + dev-perl/GD[png(+),gif(+)] dev-perl/IO-Socket-INET6 dev-perl/JSON dev-perl/JSON-XS diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index f32510b1b809..332a3cae23a6 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ -DIST google-chrome-beta_91.0.4472.77-1_amd64.deb 83320016 BLAKE2B 4e41c205dfadf67254e2e046857c2eaa5ee0f2eee74ae24a5c5cf46661b031262bb98977cfb2137829664c1a17589501a2733500cec24e798cf3671ddc4980e1 SHA512 7d3750e5662f4a51037da387298558671888ec2550b215585b6412b9014f6a1aff5dec857fe3c7857e73f74ba1211a69e1f9a2a9e0339d4cef4b6792c65975b0 +DIST google-chrome-beta_92.0.4515.40-1_amd64.deb 80212704 BLAKE2B e0754a0ae681e5976d602312abe936fc2e817e5828e40bb273b920fa185ff6a121d82dbdd839143f389f49b2ddc15da6f5b1014a3d7454ec5c56ad718b121875 SHA512 46926ec6a17324e04b71da8782e0acbfe3bb5b9a12b3a89d607a2c2f87858ab5b3fc72ed5e48e28df1476f3ea28a98e7f81e08dd659aef8b7a6d73ebd30881c9 DIST google-chrome-stable_91.0.4472.77-1_amd64.deb 83335940 BLAKE2B fc56be3cb0d71bc21fb60538383b2148d56ccb4ec111b82dadf19f6d81536d2f6f4ee94f09968772251cb03ba34905ca28c80eccba7f3ba48f092306fdea52e1 SHA512 a7d6c1f66afbd7668c135c90857adc78ad3fbe8b53188200086a6ae41bd7433e25f8169b5f436e809a0048076ffbb5fdee2480b9141840f2e15124fd2b2a7d69 DIST google-chrome-unstable_92.0.4515.40-1_amd64.deb 80196800 BLAKE2B fe2f3d7d35a380cd3f39318e642bc6441703013a05f91e757b4ff5ba52ceefedf42d0679c6ebb61cf4ec1828a44ab136b12ac81b19acbc38a3f5b09bf7357906 SHA512 353f3903d04097ec7a098f0e887e85dc056623006213059c7ac5d0e71c703e50aadb2738614087fc5c5ab5a02c4027cb2131b5fcf7a8a1d1441f5de6d8a781de diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-91.0.4472.77_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-92.0.4515.40_beta.ebuild index 969dd2f57c6a..969dd2f57c6a 100644 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-91.0.4472.77_beta.ebuild +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-92.0.4515.40_beta.ebuild diff --git a/www-servers/monkeyd/monkeyd-1.6.9-r1.ebuild b/www-servers/monkeyd/monkeyd-1.6.9-r1.ebuild index e211f86a380c..47ed44923c33 100644 --- a/www-servers/monkeyd/monkeyd-1.6.9-r1.ebuild +++ b/www-servers/monkeyd/monkeyd-1.6.9-r1.ebuild @@ -20,10 +20,10 @@ LICENSE="GPL-2" SLOT="0" # jemalloc is also off until we figure out how to work CMakeLists.txt magic. -#IUSE="cgi -debug fastcgi jemalloc php static-plugins ${PLUGINS}" +#IUSE="cgi debug fastcgi jemalloc php static-plugins ${PLUGINS}" PLUGINS="monkeyd_plugins_auth monkeyd_plugins_cheetah monkeyd_plugins_dirlisting +monkeyd_plugins_liana monkeyd_plugins_logger monkeyd_plugins_mandril monkeyd_plugins_tls" -IUSE="cgi -debug fastcgi php static-plugins ${PLUGINS}" +IUSE="cgi debug fastcgi php static-plugins ${PLUGINS}" # uclibc is often compiled without backtrace info so we should # force this off. If someone complains, consider relaxing it. diff --git a/www-servers/monkeyd/monkeyd-9999.ebuild b/www-servers/monkeyd/monkeyd-9999.ebuild index d818807591ad..dc3dfa6306e1 100644 --- a/www-servers/monkeyd/monkeyd-9999.ebuild +++ b/www-servers/monkeyd/monkeyd-9999.ebuild @@ -20,10 +20,10 @@ LICENSE="GPL-2" SLOT="0" # jemalloc is also off until we figure out how to work CMakeLists.txt magic. -#IUSE="cgi -debug fastcgi jemalloc php static-plugins ${PLUGINS}" +#IUSE="cgi debug fastcgi jemalloc php static-plugins ${PLUGINS}" PLUGINS="monkeyd_plugins_auth monkeyd_plugins_cheetah monkeyd_plugins_dirlisting +monkeyd_plugins_liana monkeyd_plugins_logger monkeyd_plugins_mandril monkeyd_plugins_tls" -IUSE="cgi -debug fastcgi php static-plugins ${PLUGINS}" +IUSE="cgi debug fastcgi php static-plugins ${PLUGINS}" # uclibc is often compiled without backtrace info so we should # force this off. If someone complains, consider relaxing it. diff --git a/x11-drivers/nvidia-drivers/Manifest b/x11-drivers/nvidia-drivers/Manifest index 2f48dc7a42c9..79c78e7e67f5 100644 --- a/x11-drivers/nvidia-drivers/Manifest +++ b/x11-drivers/nvidia-drivers/Manifest @@ -3,6 +3,7 @@ DIST NVIDIA-Linux-aarch64-450.119.03.run 80498137 BLAKE2B 1834fb1d1f6254665339b7 DIST NVIDIA-Linux-aarch64-460.67.run 112551235 BLAKE2B cc1166454f6e8771c7fe97010906919e9f2afd74ac86321006628f90f4d8dee033c3e09b2d9cac9063fe3fd313c0b529b347bcf38c051588ca7a972617c45026 SHA512 6ba17844dd215967f2f55a6620535464f244075a13f4b2b6d0ffaeeb6d97397fae0ba0de032d971847556d7b78ac8a1010ecec5127f45eb7ec73db87b1507ca1 DIST NVIDIA-Linux-aarch64-460.73.01.run 112529526 BLAKE2B 64481ebba998cf168e4b9b1ad47f474a174e3f5e384889695d5f240a9f8f5f3265efb344b9082e3d1ad74da9fc90381b5d6e72064cde463c6b3bc7bf62d9c520 SHA512 e6a7d0ecbd99b763f7bfc793c6dbea1a64e290e9d200d7e500896dffdc97aca01f14bf0d4d26286f381c8c986210e7cfb0345b004be085aa58578c30a4ba118e DIST NVIDIA-Linux-aarch64-460.80.run 112551983 BLAKE2B a07b24484b47ff98ae30a37f563dcdc31ab14b72f91aea2c15f79b6594aa232cafeaa3873a426610dbbf5f08f3d7fbd45fb609f4f5f9d74197f6f5294c6cafa4 SHA512 2ea5b1dd68cfc7c7168444ad917386523bd8aadde7a5341aee2f7d5e8e1047ccbed0f5b29c9c7fc0ef7002c85f61a3f2ef1003a92e0e56e38fe6d346b9175b1e +DIST NVIDIA-Linux-aarch64-460.84.run 112602151 BLAKE2B 7c8fee69c61f94d461286b2e96577b20da7e3ecfbb32fa9791e14006797bcc02d3123cb2101e718998fbc04d081f35c5802ddc52c71bc5eb51aefc27f45b8233 SHA512 76516a880fa5f28020ff7cb7a92d216f79ef9d510e0a1e696b614c1eb01702381f04bb1456588d43ff0a6c2824710f8b11f2e9788219207bd8b61821401306de DIST NVIDIA-Linux-aarch64-465.31.run 149782108 BLAKE2B 3f0efbfe48d901538ed627df127bfe98267ed9fa055c82da3de9e64ea32de53fc2f0b2e0bc2748c3ef0732e5f25db2b51bf8e3315010c70b21dc726575c862eb SHA512 093f74f8b0b068ba1ddd6dd80024d39def935c01bc7e98a3ed9965142ace773565f6768bff118098eb574c9ba0f34e4dbfa65754930e27e153a514310470ae67 DIST NVIDIA-Linux-x86-390.141.run 49589744 BLAKE2B 304672806b89885adbf8459ea99ca872769e44a42ff041a5b79ef05d113d7717f505f543441e7a2fc6c569f6d66391f0380a4f23f3e68108c8de817bf251f850 SHA512 6dfde3b54520070954b45f6bc071251084e1741f55e582b1abd806eb367e4b9ce0015615bf6a887fa784d075b3db08b6940da4163b960969773d1bdc52b4961e DIST NVIDIA-Linux-x86-390.143.run 49327068 BLAKE2B c6e0600885bfd834be6dca18346259a58e05640afe4b1ea394d5795e4c8a4b0fa9fdf5c4a331a128843708ece9e95df2ff7e0b3cf2ac5875b5d731c73423c112 SHA512 17bbcc2f5e9dde3f131b7924ea1e99a591b5e18b835dd324c528d17f74eded94e087c6a9a2b364189851e9972ad27bcd47e901c9ec14eedc568b99890f1e0a4f @@ -13,6 +14,7 @@ DIST NVIDIA-Linux-x86_64-450.119.03.run 141295706 BLAKE2B 854dd0063ea1f11e052f6b DIST NVIDIA-Linux-x86_64-460.67.run 177691692 BLAKE2B 25a7d87cc128933a98100d7c5ef37f93c3a870c096eea3228a28ef79d712ce104608f9422221cc1eadc21dccbbc8bc41ab1832795cfee75e217600ed0d76489e SHA512 80fdc023a8ce80e3a103896f28a5564bb43903af6bfc719f755c48eb225e79ec6abf219ab20eb80ada5808ef932ef5fa0fe710c6e0a07dd8a248daff2ba3b898 DIST NVIDIA-Linux-x86_64-460.73.01.run 177241975 BLAKE2B 5a43076c4f2c64ee7761824f8e4bf29dc053cf6ccd143b730ea062303124dbb5afe95882b752cd25e707375bafbca3beaabaee955cd2cf7b73a96190b9340bae SHA512 fa468747770f092b94658ef8c7896f69e05a8818f1269ce219c293cc02b0a042b73b755ef28a3012576dae54984a989cd3262ead674f62bdce4af13feac3c064 DIST NVIDIA-Linux-x86_64-460.80.run 176338282 BLAKE2B ccc97bf40848257cb7a2e7016c831618b4755e9cc6bfd9bf8c60ac0b5d899354196ff2201e8f92ce4d0742d58edd519a2ff2959f35f22030106c4244ca3ac9db SHA512 4ccfdcce53412b337b71d7ccefad2bdc700e2597e78f4e4601e6779f504e3644fe1d29bee7c3a5aad49f39f737e7d35fdf53be002649a19e37cb7688f252347a +DIST NVIDIA-Linux-x86_64-460.84.run 177840337 BLAKE2B fbaa295c59f1af79c59c28845b79924812ac1386cf2e42aa762120a618253686f1249d777cc6c8df88b52afa34b96131663962bf0b6621dea6dcbc1bad7f9e22 SHA512 2483a4d251da63334363f4ba9f7b5d2cbf310afdf16fbcfecf1269f65beaed0325f825472feea26ddca2455ed44f284f57a73662600a3b4a270167baeb33e4fb DIST NVIDIA-Linux-x86_64-465.31.run 236060463 BLAKE2B dfa877ddeb31961c7cdb621c30b1c61282152c27787e45542ee4a411ad8a08f732b149996a0b522638ad98f47a7c7f575a0f8b65e82413aee7823a6f0ac58426 SHA512 3ea65eda463320d0e2301e45daa5a725bd07f664ab117053f106b981801ae314faef320304f4b87dd8eb8868f9f86478b23fbca51d27ddc3968a5f5300e8cbf9 DIST nvidia-installer-390.141.tar.gz 205299 BLAKE2B b95ddcf9a8d61247572d73faa04558564962782b0eb222601315d741d1ee71fa0636fa87d31105ecc5ec61328d3174a3ed646046e02b6b5f29f071215a0e8bdd SHA512 3848a4ec17510bf4d3060e5ef8aafa1ad921215ec39d26c54b3bbdd8a5867c46e01d247b24b05ad6906fed7fb4ae6dc37346a7da6e5aae88b5b47584c0b07a02 DIST nvidia-installer-390.143.tar.gz 205320 BLAKE2B 5c27dd769ec5a2effc56ea86474ee45b86362c26844d2f902d7bb2ab8e58b2763f4f761341ce4051e85cfd8189eab9d441744f1b9946a6dc46105888dc5ba58a SHA512 a45cbae70e8d9f1108d5e2c04b4beee350b8469df987ff80793dda7fc4e6efe3a787db0d47e7dfe22b88b29647b99cc24ab418666d1ef2fc038143f574faba36 @@ -21,6 +23,7 @@ DIST nvidia-installer-450.119.03.tar.gz 197635 BLAKE2B 01581676e11622e3c6c32171e DIST nvidia-installer-460.67.tar.gz 198484 BLAKE2B 0eaf3e3eccd6749e4fe89394905dded58e739f42cbc33c8a91575f4505030a216670fc8c0fd4d1d42659acf301c9ba59d4052a80c6eba6c5db84ed022acb2620 SHA512 8fff0fa13a82cb7eaf2fd1d05be509e9124e67bb05810f8937fb1f16c4a2362a5c1a50bc9a5155cfc90a9bbcee38a54fb5ae0ae164e205900a49f6d21779d54f DIST nvidia-installer-460.73.01.tar.gz 198500 BLAKE2B 4036c8385e7ac59019ba2d189e227f46c52543d619aa9aa91bca726694bc0635e642a9e40b8fc785d7f7fe239062ca3bb7f4815f2c8f4722e6345b8a6f2a8493 SHA512 910e8dfb86147ecba6336f00d09f22d7505337832d0c0ace5d15fdfb355c22b6cd9d350bf469352db13971abb7379d980b05cd0c05271fe654122b92b4fa99ab DIST nvidia-installer-460.80.tar.bz2 144321 BLAKE2B 092014aaa5f41c0b6dcedcfc8fc9036e0c96e045c429d947313a70c933ab47bf0a2942b58747011d9b7ec78d1bb236b5600ee9f9cc44f5f916c40522d4041de2 SHA512 2b83cde25b0a5a267dd2c8e09574d1e78df8759ed31a0312233f39405789b4f3f105a5331f00e1098e82ac5a9e5e5c339b2745149e9eda94252013f0231abb0c +DIST nvidia-installer-460.84.tar.bz2 144516 BLAKE2B 1da114e13d675198d1c011d4f32cc5da350b0d10ffaa49634c06d91d520d40bd24be60d032fd0988e7be54691dbe9755e3b7297596bd4ab88c72c0fb831aa894 SHA512 afab294eddfea19a0d70b7193d40438c209ede757d614e96a6028b2569797a24cc26c4eafb41a4f35fff4496bfa7529f276ae054c9060b714f43ac0e9d3cf301 DIST nvidia-installer-465.31.tar.bz2 145645 BLAKE2B 455160cff1173a363d401083443f8c870d2e207c0b20ec6b8976e682c572a5d2561311dc8431ec66a022c4c99a6f9adcc38b9f5c1d29c3e365fd044de70222d0 SHA512 a9a0f377ea435a256faa0b5ee1edb8c8cec1d928f20d8c9fb8d0ded76bb6065033c7f09522a46c6d06a432a8d9486472052ada41558cb3271a05abd485fabbc2 DIST nvidia-modprobe-390.141.tar.gz 39965 BLAKE2B 46c01ec3e53569454a032e42561a81154712485ffb11d0393d9e9007a3825a33c8d045ea7296dd8465ad9b2cee36a639274c55ff31c70e93d334ac9fe724f7b1 SHA512 c0abec334fee4293a55a43edbcc6a7a8cd8ff6b6fbb954b428182542a24eba90f47100977c84ea9cbe557a39fc5fb90677b4f2227f49a6f30a56f6941508f40e DIST nvidia-modprobe-390.143.tar.gz 39968 BLAKE2B 09f043521f195327630c0ca575473da42e051e2d34def22dcfb54295a94ca85e95ff41ee9564765567df19b88f90aba3d8cfffd489054779f2ce7d29f6e64b76 SHA512 066aaf031907fe2ba424e3b92e677ae78b4a938308bea82b7aa20cf0ba5c3678f93b6c9bf8a41fcd4fadcdcc870674a2be777ddcc2a5018974bd56b09a9ef271 @@ -29,6 +32,7 @@ DIST nvidia-modprobe-450.119.03.tar.gz 42137 BLAKE2B 054879187d33fbaaf4debdaa530 DIST nvidia-modprobe-460.67.tar.gz 43140 BLAKE2B 8243d355f9d51495c9d09f25ccbcb39c0a6ef472cbfaded98f10818fae655e1cf62ff2edcf40baea72b8cca9eebc947742b2516bb057410239193201bb843538 SHA512 16c8239b54988622196e0eea113173e44ff8b60cdcdf585bf859e6440aff2c6699bb107962776e69056dd7d5e3bbd6289ea628a2255ac27e22ef79521e9baad3 DIST nvidia-modprobe-460.73.01.tar.gz 43136 BLAKE2B eca07b2573b0771989c6fa78a97336151a4ce157f363af0fabe3636d734c5ef4086e3e8e93913a20b0ac2bc1feb2e558575e128f5bc3a5264c13a32de406a055 SHA512 1b8462197cabd99116aeafcae26440eb3b6a535e3fa1de8a941b2fa14dc83944d1722fd58a4a99c76695f1e301cefdd805a3ad7eceee1b0d8a432b91e0c12ffc DIST nvidia-modprobe-460.80.tar.bz2 38144 BLAKE2B 8d200c7e819197a1417b3917f4c9b91753c815300d3b2bb4e51597a6d6711191cf9e478dbb1e3ab32b722e77a0129fe172bc2bb40d789a9c659a2e5c61ea15ac SHA512 833728d28c67178c95ff4895ac1d17a459f1b87dcb7748229a282d850274038f58c5f2e5ff4e0915e4204a36ce679147c63706ba2c0ee01b27fa26e3809a6cce +DIST nvidia-modprobe-460.84.tar.bz2 38114 BLAKE2B 5e08860d3fa1a3025b413ccc9e5c24f64deab475852ca725104eea76f1e919f70a76f99809fe3d92d024f9aecb8fb9622ddced926bc51bebe663422959d358ba SHA512 4bf971b7fa3b155a25123c8a0c0305c53da1d2d3bb509f31698d1db2b821517836bdd111faccca5fb1d998dc13771568e3cee5c56f73ff497ca36fc55ade4a00 DIST nvidia-modprobe-465.31.tar.bz2 38370 BLAKE2B 0c4c4974d8f1b017bd6676304d5714b19d494fa13bcd986641ab1b523dc20260fd050a1bf3bb729faa51420bb494ceac0b4124abb69fdca388c7e5b13e33c8f8 SHA512 37b1120a26257538ada0ab6d6af0f81ce2b59ac3ce7305ac7a448264fac2ba23156ec89c6e9adb60f4bc43ad0da9f09e7b0acf9f0ceb15bd28f3b86b926ae139 DIST nvidia-persistenced-390.141.tar.gz 55984 BLAKE2B c4e889d15643f6e8a4e37b32d89e14acaa792c681863c74281b17e414021dc56e4692e91e7552762ef8b8ef977284ee2f307b14216a2562a9d30b2ab7a1ba522 SHA512 d9ea32c842d8d13a59128b28ce985fe3a421d2848eac30fc8a671a391c63516b58c46d3c5b21403b4e5b016577d23aebaec1f5b4e59b25a20668120f52e231a5 DIST nvidia-persistenced-390.143.tar.gz 55994 BLAKE2B 1cfa469b84ecc9abdf0423d624244e7023a63225dfb16ac93223c462230b50099e4b59493be2d10cd6f2717e31c02655c76797e3222947d561f02ff72a52dd46 SHA512 37c3eb0bcce83e9b9ac5bdefa736e26e94b82de379a0f5c29e1611631c79103a797e58f5d1dea34221dd3a3f1a521b6db556eed48b1f38465481da2509d2f21a @@ -37,6 +41,7 @@ DIST nvidia-persistenced-450.119.03.tar.gz 52488 BLAKE2B bb6c759ce73f8c143d04e0c DIST nvidia-persistenced-460.67.tar.gz 53334 BLAKE2B 1354ec98fd2b95d264fd7df6219f639cf5d73173e6f0843a0880e6b18953904412cb756bd2c60432f6ae4c253d047515a9e32a128210fd94386ae6bc9a341b5c SHA512 0b4f7d8aa781c3536f6cd020225d2a3bab4b83498090419198488a2bec811534e61ba90461ae846bd09f4530f19984d77ca41edf0a851b1b700d1c0e053d537f DIST nvidia-persistenced-460.73.01.tar.gz 53338 BLAKE2B 5dac040fbc20a8fa94dd91845d71a78e437ef32a5d80751e7328c40b2e41c2ddf1966eba6dd23455a128e982a5cdb16fe9f5f80fb586d93842a27e103b111cac SHA512 00274992853e4d518b2cd1c8674fc56b8466da134320c318476ac94c1e8526a8f8511f040d68d7ebf62761029c8ce2e84de740d11b4e49c7a829a4cccc2c61ea DIST nvidia-persistenced-460.80.tar.bz2 46035 BLAKE2B 91d872aa27f5469a098734e4fea8240b9557e53e8b8e77572ffd01a5263ef425dbff7bcb6bc372ee230609d75a408e50fa086a72bbc220f122f78502b1f0f4ba SHA512 db67b86fae141e2931eedabca5613456ce04013e7d4681a33d6f828327cb08b413825f028f0293e3c4d5255a563dfe2433377b6d4ad0f47afeca374daaad125f +DIST nvidia-persistenced-460.84.tar.bz2 46048 BLAKE2B e3dc6168458d5da3517167cca43373b815104894f8e01785baa3c654717f4eb4841db014a7f8c73d4c24a1e849b86ffee51c33e457fcb4804cae856cd630100c SHA512 43fbc5caa13f1e47d59054ddb4ff6129cd464dd558f8166b1103a9238b42205695e78c75aa89af89921d928bf9be07d2a9593306ce53d29a5bfaf90699917b13 DIST nvidia-persistenced-465.31.tar.bz2 46227 BLAKE2B 57d66035908a4d7e9525538da61fa8038b9c53459d75db20cac170fa851369f5a7f143d76243889510559ed1aa251c48023319bf99947f8cc23eca2bfd1a0919 SHA512 2a447fa7a6b839db5a366f1deda33d74dfb034e664861807b3127d538d3822f9a7ef378bc6a5288a43fc447c64082e0a70551d13d92d560013c81aa48fd91bf8 DIST nvidia-settings-390.141.tar.gz 1297261 BLAKE2B 452870df1ba598692f5da47444eb2daf4db40c79cac98c10b1c994c0ff39fc7936909b9d7788cbfe784999e68a2bdbbc12e85d63c3bc02ac872e6b3c46834697 SHA512 dbf7c389bbdc94291a1b974adfa33414148b1ab752aa7d948a27e91ee1bceb3b8435aceb6b7ef3cb806333572db11b5524667045ef7686b119d7955d2699cb04 DIST nvidia-settings-390.143.tar.gz 1297258 BLAKE2B d63b48c03069d4d2ae7f7034b4bc13ff3a1004bd64ce54ee553e614cb88cb081842b6c1428fd556e031ce69361927074822c5c620d2cde8d37a5887051ff56de SHA512 7bbef03e77e73bb1e05585cfaf6823913e2446b1df8353044ae01f80693bb884fdcc1b38fa51b171756edaa234479cda027d6569d025b120b7b64f226f8eedce @@ -45,6 +50,7 @@ DIST nvidia-settings-450.119.03.tar.gz 1229730 BLAKE2B 17c7f4803b1a5ead8ea6616f3 DIST nvidia-settings-460.67.tar.gz 1233189 BLAKE2B 33ffceefea4e184cb1873cdce97db26637e87cd20c82bcabcbfe88bcb084ac3d833ac5688cafa33a5a89383040d5c1c5d46de9c3f9a8ba6174574aa57aea2e46 SHA512 d1828379aa477394747ae3e5d3505e864d38a349dd159a04cb263613380afea9aea2081300b0d2b8ae205b800bfe6e8ba504e612989da394d757f00e4399b617 DIST nvidia-settings-460.73.01.tar.gz 1233791 BLAKE2B 7f32764907f1444ed8a819e5cde7bc6306134eb69afeee8bb4dc2e0c2eb2b929ca00b16b5b698c0fe9dc0cdd3589814442fe008462896f9f02e760e320bb5253 SHA512 12ea1eb791b7b11b54a4e9518efc9c40ac8e33325996e23ff7cedcb33d32e0f83f6b15695b93c7adc9f95aaa7c6a56a6838c900796733cd5d9b642124cc1b207 DIST nvidia-settings-460.80.tar.bz2 1061084 BLAKE2B 5604552faef43afda01cd88155d4448aff44a0d08c05a2985042f6d5f28d9510157b11e8131893e4cde474ccf155083e0545ac20586f602de2b45083436bf3a9 SHA512 31abc8a1f62cfa67414a943222a37411e8e5045a0d15a1d7ae8c269c78ab2820d45a2bb0b7e85bea158b365a0093e0796eea12becc32652a41ee13ad8f3b87b6 +DIST nvidia-settings-460.84.tar.bz2 1061100 BLAKE2B 9098116b29dcb3124dfa2e8ae6e6e62e865ece37c4307843570753ecef1541feece3a945e0b2671da9273ec53fd97b75d6b07ed5db01a1ebb9e65a08b06f1fab SHA512 9cb7dbe97bd15e722d151cd6131c56e23eafbd8b491b774b7940165cefb446253c50d8794fcec5809d1e6c82cdf4236bc06b25059a28bdfa0dc17ce77eaf6476 DIST nvidia-settings-465.31.tar.bz2 1061200 BLAKE2B a7085e3eddd6e978b7efe349c3f9471210db139a1911e2c57377b7890d7bc9c1d258df16e57af3f031b9c1e19c65086bc8ad01958819c06c4d104ed770bbf6c7 SHA512 1a5631ad64fa2959682c86c6188a2f5f5c864faff85bfda0554d783183f17ce61b13c6adc1125cd7dc24276de32ce152d3fe0e438c58ce57929e6c950a628143 DIST nvidia-xconfig-390.141.tar.gz 140293 BLAKE2B 08ee93be953f75dbe078c557af7c062092ce8a3b53af0735d43b7feabe6d1c99390b9533027fbc5017d207a70dfa5aecf88d211905bf8f0e846f769a6ea16c2b SHA512 9fedee2f720d86bd24e393328249bf970a1f242b9e750543e757eb13ca30f6ecfda6c63441093ab96ae28d5f38d4e55cc6de6316eb82d2a2f33074144a1eef2f DIST nvidia-xconfig-390.143.tar.gz 140282 BLAKE2B 3de0fe4bc0a049381e4504002bbe94887334310ca7b17d83add1237d7c15b7783e4f418acba3e261da564b1c00ca244f4ad02f3d2cbca0f0f68ee2900098fb36 SHA512 0c82dda4dd6db0c21cd9a2b88e4a77129bc4a0be8a17b398497328f4f1cb5c319f0428d7fbc3b0177d69246d55f96b03dd740d3480d67bb03049cd0cbe190132 @@ -53,4 +59,5 @@ DIST nvidia-xconfig-450.119.03.tar.gz 141079 BLAKE2B 15200bdc8cfecb2575d95803b62 DIST nvidia-xconfig-460.67.tar.gz 142323 BLAKE2B 09c7281de09a2c2968b5f4a48eca63110e6db988429c844b55f8efc28fbcd9d44c79ad47149c25f657c2a98ae7576c01b2c9b7f643b8321fe1393adc571ebcaa SHA512 0e65c81ec40d3eaeec036fbd8f46a3052a75ff0ad200c58438ff6c782a5764e62e51d03b4a2080770c32522894641288ac495f62bc39c3d5658b1ff87c9f6cdd DIST nvidia-xconfig-460.73.01.tar.gz 142326 BLAKE2B eb833095365c18fd264086d333d366bf18b312055c59cfe3c50df5d94e4ff3e8dafcd11aab4de1ddfc8594b99216f14054d77263a02063497f6b665a9339a09c SHA512 3e292232a1593cc2893d673b176c1c9738b5c3d8127432d35d5a87d1a142311aec91ff5d59cc2074b1ea2411ac9c188c898fbc6a4c032718f1def92bd862b6dc DIST nvidia-xconfig-460.80.tar.bz2 108464 BLAKE2B 2e4a19d662aff7cb21ef02ea2adaa4997c08ebcc588f96836fb01e6f12bf5f09217ebd49ab8b4ace95f246dc752d3e312915f3e64f131132fbaf0d75685a27dc SHA512 7c1bd0726cd99cea98f9dfa1e7ad4dab049a7555f647edce4c9e081af315c5c32f76b27b9d543056e5547cbe26cf55811f885f61c08a378cc91181494a3053f1 +DIST nvidia-xconfig-460.84.tar.bz2 108471 BLAKE2B cc3f100902778b66088bca3ff74df19f9ec47f45b4137a60c702f6c6742f011af890d67cbee685f1d3e27d337e3dbf9c23b0ba0b46e5bd341c4c679e7ff54584 SHA512 0c1060d7107a9557e90291829dd0f8728b0c7d6315a898ea17485c8932db528439aa84cb769f5c14d3c70f57942ca6e4cc4248807ffd43c961f3c145752aa5a3 DIST nvidia-xconfig-465.31.tar.bz2 108616 BLAKE2B 3ed2e0df9e109534192df6a451bfae6c7f71db5d6f56c1d498daf64d60aa6271cab3dc7a0ed956364a14c96259e7816c62c01b73ea109696791c6282b6d0acaf SHA512 bbd0dbb1be452dff7e94ae4a58234d08d7004af02d7b4aba5623712c884b14a7828cc4d930b099231e149d6cae23336704f7a991f0b9ff87e2be967d535e54ab diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-460.84.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-460.84.ebuild new file mode 100644 index 000000000000..e22cf304401f --- /dev/null +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-460.84.ebuild @@ -0,0 +1,402 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MODULES_OPTIONAL_USE="driver" +inherit desktop linux-info linux-mod multilib-build optfeature \ + readme.gentoo-r1 systemd toolchain-funcs unpacker + +NV_KERNEL_MAX="5.12" +NV_URI="https://download.nvidia.com/XFree86/" + +DESCRIPTION="NVIDIA Accelerated Graphics Driver" +HOMEPAGE="https://www.nvidia.com/download/index.aspx" +SRC_URI=" + amd64? ( ${NV_URI}Linux-x86_64/${PV}/NVIDIA-Linux-x86_64-${PV}.run ) + arm64? ( ${NV_URI}Linux-aarch64/${PV}/NVIDIA-Linux-aarch64-${PV}.run ) + ${NV_URI}nvidia-installer/nvidia-installer-${PV}.tar.bz2 + ${NV_URI}nvidia-modprobe/nvidia-modprobe-${PV}.tar.bz2 + ${NV_URI}nvidia-persistenced/nvidia-persistenced-${PV}.tar.bz2 + ${NV_URI}nvidia-settings/nvidia-settings-${PV}.tar.bz2 + ${NV_URI}nvidia-xconfig/nvidia-xconfig-${PV}.tar.bz2" +# nvidia-installer is unused but here for GPL-2's "distribute sources" +S="${WORKDIR}" + +LICENSE="GPL-2 MIT NVIDIA-r2 ZLIB" +SLOT="0/${PV%%.*}" +KEYWORDS="-* ~amd64" +IUSE="+X +driver static-libs +tools" + +COMMON_DEPEND=" + acct-group/video + acct-user/nvpd + net-libs/libtirpc + tools? ( + dev-libs/atk + dev-libs/glib:2 + dev-libs/jansson + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXxf86vm + x11-libs/pango + )" +RDEPEND=" + ${COMMON_DEPEND} + X? ( + media-libs/libglvnd[X,${MULTILIB_USEDEP}] + x11-libs/libX11[${MULTILIB_USEDEP}] + x11-libs/libXext[${MULTILIB_USEDEP}] + )" +DEPEND=" + ${COMMON_DEPEND} + static-libs? ( + x11-libs/libX11 + x11-libs/libXext + ) + tools? ( + media-libs/libglvnd + sys-apps/dbus + x11-base/xorg-proto + x11-libs/libXrandr + x11-libs/libXv + x11-libs/libvdpau + )" +BDEPEND=" + app-misc/pax-utils + virtual/pkgconfig" + +QA_PREBUILT="opt/* usr/lib*" + +PATCHES=( + "${FILESDIR}"/nvidia-modprobe-390.141-uvm-perms.patch +) +DOCS=( + README.txt NVIDIA_Changelog supported-gpus/supported-gpus.json + nvidia-settings/doc/{FRAMELOCK,NV-CONTROL-API}.txt +) +HTML_DOCS=( html/. ) + +DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS="Users should be in the 'video' group to use NVIDIA devices. +You can add yourself by using: gpasswd -a my-user video + +For general information on using nvidia-drivers, please see: +https://wiki.gentoo.org/wiki/NVIDIA/nvidia-drivers" + +pkg_setup() { + use driver || return + + local CONFIG_CHECK=" + PROC_FS + ~DRM_KMS_HELPER + ~SYSVIPC + ~!LOCKDEP + !DEBUG_MUTEXES" + local ERROR_DRM_KMS_HELPER="CONFIG_DRM_KMS_HELPER: is not set but needed for Xorg auto-detection + of drivers (no custom config), and optional nvidia-drm.modeset=1. + Cannot be directly selected in the kernel's menuconfig, so enable + options such as CONFIG_DRM_FBDEV_EMULATION instead." + + BUILD_PARAMS='NV_VERBOSE=1 IGNORE_CC_MISMATCH=yes SYSSRC="${KV_DIR}" SYSOUT="${KV_OUT_DIR}"' + BUILD_TARGETS="modules" # defaults' clean sometimes deletes modules + MODULE_NAMES=" + nvidia(video:kernel) + nvidia-drm(video:kernel) + nvidia-modeset(video:kernel) + nvidia-uvm(video:kernel)" + + linux-mod_pkg_setup + + if [[ ${MERGE_TYPE} != binary ]] && kernel_is -gt ${NV_KERNEL_MAX/./ }; then + ewarn "Kernel ${KV_MAJOR}.${KV_MINOR} is either known to break this version of nvidia-drivers" + ewarn "or was not tested with it. It is recommended to use one of:" + ewarn " <=sys-kernel/gentoo-kernel-${NV_KERNEL_MAX}" + ewarn " <=sys-kernel/gentoo-sources-${NV_KERNEL_MAX}" + ewarn "You are free to try or use /etc/portage/patches, but support will" + ewarn "not be given and issues wait until NVIDIA releases a fixed version." + ewarn + ewarn "Do _not_ file a bug report if run into issues." + ewarn + fi +} + +src_prepare() { + # make user patches usable across versions + rm nvidia-modprobe && mv nvidia-modprobe{-${PV},} || die + rm nvidia-persistenced && mv nvidia-persistenced{-${PV},} || die + rm nvidia-settings && mv nvidia-settings{-${PV},} || die + rm nvidia-xconfig && mv nvidia-xconfig{-${PV},} || die + + default + + # prevent detection of incomplete kernel DRM support (bug #603818) + sed 's/defined(CONFIG_DRM)/defined(CONFIG_DRM_KMS_HELPER)/' \ + -i kernel/conftest.sh || die + + sed -e '/Exec=\|Icon=/s/_.*/nvidia-settings/' \ + -e '/Categories=/s/_.*/System;Settings;/' \ + -i nvidia-settings/doc/nvidia-settings.desktop || die + + # remove gtk2 support (bug #592730) + sed '/^GTK2LIB = /d;/INSTALL.*GTK2LIB/,+1d' \ + -i nvidia-settings/src/Makefile || die + + sed 's/__USER__/nvpd/' \ + nvidia-persistenced/init/systemd/nvidia-persistenced.service.template \ + > nvidia-persistenced.service || die + + gzip -d nvidia-{cuda-mps-control,smi}.1.gz || die +} + +src_compile() { + nvidia-drivers_make() { + emake -C nvidia-${1} ${2} \ + PREFIX="${EPREFIX}/usr" \ + HOST_CC="$(tc-getBUILD_CC)" \ + HOST_LD="$(tc-getBUILD_LD)" \ + NV_USE_BUNDLED_LIBJANSSON=0 \ + NV_VERBOSE=1 DO_STRIP= OUTPUTDIR=out + } + + tc-export AR CC LD OBJCOPY + + # may no longer be relevant but kept as a safety + export DISTCC_DISABLE=1 CCACHE_DISABLE=1 + + use driver && linux-mod_src_compile + + nvidia-drivers_make modprobe + nvidia-drivers_make persistenced + use X && nvidia-drivers_make xconfig + + if use tools; then + nvidia-drivers_make settings + elif use static-libs; then + nvidia-drivers_make settings/src out/libXNVCtrl.a + fi +} + +src_install() { + nvidia-drivers_make_install() { + emake -C nvidia-${1} install \ + DESTDIR="${D}" \ + PREFIX="${EPREFIX}/usr" \ + LIBDIR="${ED}/usr/$(get_libdir)" \ + NV_USE_BUNDLED_LIBJANSSON=0 \ + NV_VERBOSE=1 DO_STRIP= MANPAGE_GZIP= OUTPUTDIR=out + } + + nvidia-drivers_libs_install() { + local libs=( + EGL_nvidia + GLESv1_CM_nvidia + GLESv2_nvidia + cuda + nvcuvid + nvidia-allocator + nvidia-eglcore + nvidia-encode + nvidia-glcore + nvidia-glsi + nvidia-glvkspirv + nvidia-ml + nvidia-opencl + nvidia-opticalflow + nvidia-ptxjitcompiler + nvidia-tls + ) + use amd64 && libs+=( nvidia-compiler ) + + if use X; then + libs+=( + GLX_nvidia + vdpau_nvidia + ) + if use amd64; then + libs+=( + nvidia-fbc + nvidia-ifr + ) + fi + fi + + local libdir=. + if [[ ${ABI} == x86 ]]; then + libdir+=/32 + else + libs+=( + nvidia-cbl + nvidia-cfg + nvidia-rtcore + nvoptix + ) + use amd64 && libs+=( nvidia-ngx ) + fi + + local lib soname + for lib in "${libs[@]}"; do + lib=lib${lib}.so.${PV} + + # auto-detect soname and create appropriate symlinks + soname=$(scanelf -qF'%S#F' ${lib}) || die "Scanning ${lib} failed" + if [[ ${soname} && ${soname} != ${lib} ]]; then + ln -s ${lib} ${libdir}/${soname} || die + fi + ln -s ${lib} ${libdir}/${lib%.so*}.so || die + + dolib.so ${libdir}/${lib%.so*}* + done + } + + if use driver; then + linux-mod_src_install + + insinto /etc/modprobe.d + newins "${FILESDIR}"/nvidia-460.conf nvidia.conf + doins "${FILESDIR}"/nvidia-blacklist-nouveau.conf + doins "${FILESDIR}"/nvidia-rmmod.conf + + # used for gpu verification with binpkgs (not kept) + insinto /usr/share/nvidia + doins supported-gpus/supported-gpus.json + fi + + if use X; then + exeinto /usr/$(get_libdir)/xorg/modules/drivers + doexe nvidia_drv.so + + exeinto /usr/$(get_libdir)/xorg/modules/extensions + newexe libglxserver_nvidia.so{.${PV},} + + insinto /usr/share/X11/xorg.conf.d + newins {,50-}nvidia-drm-outputclass.conf + + # vulkan icd uses libGLX_nvidia.so and so requires X + insinto /usr/share/vulkan/icd.d + doins nvidia_icd.json + insinto /usr/share/vulkan/implicit_layer.d + doins nvidia_layers.json + fi + + insinto /usr/share/glvnd/egl_vendor.d + doins 10_nvidia.json + + insinto /etc/OpenCL/vendors + doins nvidia.icd + + insinto /etc/nvidia + newins nvidia-application-profiles{-${PV},}-rc + + # install built helpers + nvidia-drivers_make_install modprobe + # allow video group to load mods and create devs (bug #505092) + fowners root:video /usr/bin/nvidia-modprobe + fperms 4710 /usr/bin/nvidia-modprobe + + nvidia-drivers_make_install persistenced + newconfd "${FILESDIR}/nvidia-persistenced.confd" nvidia-persistenced + newinitd "${FILESDIR}/nvidia-persistenced.initd" nvidia-persistenced + systemd_dounit nvidia-persistenced.service + + use X && nvidia-drivers_make_install xconfig + + if use tools; then + nvidia-drivers_make_install settings + doicon nvidia-settings/doc/nvidia-settings.png + domenu nvidia-settings/doc/nvidia-settings.desktop + + insinto /usr/share/nvidia + newins nvidia-application-profiles{-${PV},}-key-documentation + + exeinto /etc/X11/xinit/xinitrc.d + newexe "${FILESDIR}"/95-nvidia-settings-r1 95-nvidia-settings + fi + + if use static-libs; then + dolib.a nvidia-settings/src/out/libXNVCtrl.a + + insinto /usr/include/NVCtrl + doins nvidia-settings/src/libXNVCtrl/NVCtrl{Lib,}.h + fi + + # install prebuilt-only helpers + exeinto /opt/bin + + doexe nvidia-cuda-mps-control + doman nvidia-cuda-mps-control.1 + doexe nvidia-cuda-mps-server + + doexe nvidia-debugdump + dobin nvidia-bug-report.sh + + doexe nvidia-smi + doman nvidia-smi.1 + + # install prebuilt-only libraries + multilib_foreach_abi nvidia-drivers_libs_install + + # install systemd sleep services + exeinto /lib/systemd/system-sleep + doexe nvidia + dobin nvidia-sleep.sh + systemd_dounit nvidia-{hibernate,resume,suspend}.service + + einstalldocs + readme.gentoo_create_doc +} + +pkg_preinst() { + use driver || return + linux-mod_pkg_preinst + + # set video group id based on live system (bug #491414) + local g=$(getent group video | cut -d: -f3) + [[ ${g} ]] || die "Failed to determine video group id" + sed "s/PACKAGE/${PF}/;s/VIDEOGID/${g}/" \ + -i "${ED}"/etc/modprobe.d/nvidia.conf || die + + # try to find driver mismatches using temporary supported-gpus.json + for g in $(grep -l 0x10de /sys/bus/pci/devices/*/vendor 2>/dev/null); do + g=$(grep -io "\"devid\":\"$(<${g%vendor}device)\"[^}]*branch\":\"[0-9]*" \ + "${ED}"/usr/share/nvidia/supported-gpus.json 2>/dev/null) + if [[ ${g} ]]; then + g=$((${g##*\"}+1)) + if ver_test -ge ${g}; then + NV_LEGACY_MASK=">=${CATEGORY}/${PN}-${g}" + break + fi + fi + done + rm "${ED}"/usr/share/nvidia/supported-gpus.json || die +} + +pkg_postinst() { + use driver && linux-mod_pkg_postinst + + readme.gentoo_print_elog + + optfeature "wayland EGLStream with nvidia-drm.modeset=1" gui-libs/egl-wayland + + if [[ -r /proc/driver/nvidia/version && + $(grep -o ' [0-9.]* ' /proc/driver/nvidia/version) != " ${PV} " ]]; then + ewarn "Currently loaded NVIDIA modules do not match the newly installed" + ewarn "libraries and will lead to GPU-using application issues." + use driver && ewarn "The easiest way to fix this is usually to reboot." + fi + + if [[ ${NV_LEGACY_MASK} ]]; then + ewarn "You are installing a version of nvidia-drivers known not to work" + ewarn "with a GPU of the current system. If unwanted, add the mask:" + if [[ -d ${EROOT}/etc/portage/package.mask ]]; then + ewarn " echo '${NV_LEGACY_MASK}' > ${EROOT}/etc/portage/package.mask/${PN}" + else + ewarn " echo '${NV_LEGACY_MASK}' >> ${EROOT}/etc/portage/package.mask" + fi + ewarn "...then downgrade to a legacy branch if possible. For details, see:" + ewarn "https://www.nvidia.com/object/IO_32667.html" + fi +} diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-465.31.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-465.31.ebuild index ebf2ce56a5a7..d327e03ff8f1 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-465.31.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-465.31.ebuild @@ -101,11 +101,6 @@ pkg_setup() { Cannot be directly selected in the kernel's menuconfig, so enable options such as CONFIG_DRM_FBDEV_EMULATION instead." - if kernel_is -lt 5 10; then - CONFIG_CHECK+=" PM" # needed since 460.67 (bug #778920) - local ERROR_PM="CONFIG_PM: is not set but needed with kernel version <5.10" - fi - BUILD_PARAMS='NV_VERBOSE=1 IGNORE_CC_MISMATCH=yes SYSSRC="${KV_DIR}" SYSOUT="${KV_OUT_DIR}"' BUILD_TARGETS="modules" # defaults' clean sometimes deletes modules MODULE_NAMES=" diff --git a/x11-misc/fbpager/fbpager-20090221-r1.ebuild b/x11-misc/fbpager/fbpager-20090221-r1.ebuild index 9a43ae1ded1a..f8cd87157bf5 100644 --- a/x11-misc/fbpager/fbpager-20090221-r1.ebuild +++ b/x11-misc/fbpager/fbpager-20090221-r1.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 +inherit flag-o-matic + DESCRIPTION="A Pager for fluxbox" HOMEPAGE="http://git.fluxbox.org/fbpager.git/" SRC_URI="mirror://gentoo/${P}.tar.bz2" @@ -16,6 +18,12 @@ DEPEND="x11-libs/libX11 xrender? ( x11-libs/libXrender )" RDEPEND="${DEPEND}" +src_prepare() { + append-cxxflags "-std=c++14" + + default +} + src_configure() { econf $(use_enable xrender) } diff --git a/x11-misc/fbpager/fbpager-20090221-r2.ebuild b/x11-misc/fbpager/fbpager-20090221-r2.ebuild new file mode 100644 index 000000000000..6980614a4620 --- /dev/null +++ b/x11-misc/fbpager/fbpager-20090221-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic + +DESCRIPTION="A Pager for fluxbox" +HOMEPAGE="http://git.fluxbox.org/fbpager.git/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86" +IUSE="+xrender" + +DEPEND="x11-libs/libX11 + xrender? ( x11-libs/libXrender )" +RDEPEND="${DEPEND}" + +src_prepare() { + append-cxxflags "-std=c++14" + + default +} + +src_configure() { + econf $(use_enable xrender) +} + +pkg_postinst() { + einfo "To run fbpager inside the FluxBox slit, use fbpager -w" +} diff --git a/x11-misc/xaos/xaos-3.6.ebuild b/x11-misc/xaos/xaos-3.6.ebuild index e5f86137a933..ffe1c9122b52 100644 --- a/x11-misc/xaos/xaos-3.6.ebuild +++ b/x11-misc/xaos/xaos-3.6.ebuild @@ -14,7 +14,7 @@ SRC_URI=" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux" -IUSE="aalib doc -gtk nls png svga threads X" +IUSE="aalib doc gtk nls png svga threads X" RDEPEND=" sci-libs/gsl:= diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-9.22-r9.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-9.22-r9.ebuild index bbc44b3c15e6..2e9acbe9987a 100644 --- a/x11-terms/rxvt-unicode/rxvt-unicode-9.22-r9.ebuild +++ b/x11-terms/rxvt-unicode/rxvt-unicode-9.22-r9.ebuild @@ -15,8 +15,8 @@ SRC_URI="http://dist.schmorp.de/rxvt-unicode/Attic/${P}.tar.bz2 LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris" -IUSE="-24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf iso14755 +mousewheel - +perl -sgrmouse startup-notification unicode3 +utmp +wtmp xft" +IUSE="24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf iso14755 +mousewheel + +perl sgrmouse startup-notification unicode3 +utmp +wtmp xft" RESTRICT="test" diff --git a/x11-themes/papirus-icon-theme/Manifest b/x11-themes/papirus-icon-theme/Manifest index bbd08c2d71e3..4118ef6c421b 100644 --- a/x11-themes/papirus-icon-theme/Manifest +++ b/x11-themes/papirus-icon-theme/Manifest @@ -1,3 +1,3 @@ -DIST papirus-icon-theme-20200901.tar.gz 24109177 BLAKE2B c30aefa8d056c4c8e86425b3ebca4720d01ca7b0853f33edfb382a280f347df5da75815b354549c96285478fd4e6bacf5469a4212047fe0ba14cc6d2d1b7e292 SHA512 0c1abdf58aeaff6aa8bce2b1db541377633e15282024f757d949adc4cf3e73d08b66b5188fa31530394cb804e88881b5a66c4d80772469d606cfc192c076224e DIST papirus-icon-theme-20210401.tar.gz 27153786 BLAKE2B 95f8b10cd13540f3d2b9f1b1febf0649764d8761f1b4a9d6a2038073b1e8e73e331226ee8c6a4069ac7d26052d49db3b18565ecfd08edd197d4f729769ddca9d SHA512 317eed658897dd55d8393669cb62b2a8f9211120b8e132263c70ddd2f5710973c78230f37bd0f60c75b7b67912d7d2cff2d048dd7b29ffb9c68c73c2ab89ee2b DIST papirus-icon-theme-20210501.tar.gz 27320777 BLAKE2B 4839189681e898eacc873a4077d92200085a1dbfb8e4d3298c8e6da0cc9966c9ceea903957abf8f4106538764fa73d27ec8375b8011b1196a4c97c6f8b23ce15 SHA512 65f096428756e52a4c373c206a320e2185fc176238100fd2e8dc9281c7772e3a3381a6ce2d4642be9ff0ea97f5e5292b1a5b631c07459d5863ee7e5cfcced8ac +DIST papirus-icon-theme-20210601.tar.gz 27817563 BLAKE2B 3f0be519dfdba08f1cc4e43f7ca92e117185ec18b48fa7fb037db686449ffb4f7b4bff949b55d914620d2b29676e43f05542db31daf18ddd8f175ee64328e449 SHA512 30b59e4f05718efb7790fa4e734d91886408adeb7e0adc9d98e7572ba5f4163fa81574ac8811b88106eebefd1b0dc71ffb4be07aac8f4720aa7b2a206a00150a diff --git a/x11-themes/papirus-icon-theme/metadata.xml b/x11-themes/papirus-icon-theme/metadata.xml index 65bdbf8e2f8b..68695ebf4e5b 100644 --- a/x11-themes/papirus-icon-theme/metadata.xml +++ b/x11-themes/papirus-icon-theme/metadata.xml @@ -11,6 +11,7 @@ </maintainer> <upstream> <remote-id type="github">PapirusDevelopmentTeam/papirus-icon-theme</remote-id> + <bugs-to>https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/issues</bugs-to> </upstream> <origin>gentoo-staging</origin> <stabilize-allarches/> diff --git a/x11-themes/papirus-icon-theme/papirus-icon-theme-20200901.ebuild b/x11-themes/papirus-icon-theme/papirus-icon-theme-20210601.ebuild index 7cac75a850ac..cdc7ac948197 100644 --- a/x11-themes/papirus-icon-theme/papirus-icon-theme-20200901.ebuild +++ b/x11-themes/papirus-icon-theme/papirus-icon-theme-20210601.ebuild @@ -1,17 +1,17 @@ -# Copyright 2019-2021 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit gnome2-utils xdg-utils +inherit xdg -DESCRIPTION="icon theme for Linux" +DESCRIPTION="Free and open source SVG icon theme" HOMEPAGE="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme" SRC_URI="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" src_compile() { :; } @@ -20,7 +20,3 @@ src_install() { doins -r ePapirus Papirus{,-Dark,-Light} } - -pkg_preinst() { gnome2_icon_savelist; } -pkg_postinst() { gnome2_icon_cache_update; } -pkg_postrm() { xdg_icon_cache_update; } |
